/* ============================================================
   THE GLOW ROOM — public content-partner recruitment microsite
   Standalone. No affiliation with any studio brand.
   Palette + type lifted from the Cherry Grove system so the
   two read as siblings, but this site stands entirely alone.
   ============================================================ */

:root {
  /* Surfaces — warm parchment, sand, bone */
  --ink:        #f5ead4;
  --ink-2:      #ece0c5;
  --ink-3:      #e4d6b8;

  /* Accents — earthy + warm */
  --rose:       #b85e48;
  --blush:      #c47a6b;
  --gold:       #b88944;
  --gold-soft:  #d4a85e;
  --champagne:  #e4cfa8;
  --sage:       #95a585;
  --sage-deep:  #6b7a5d;
  --peach:      #e8b48a;
  --ember:      #c2613a;

  /* Text */
  --cream:      #2c2218;
  --mist:       #6b5a48;
  --mist-soft:  #8d7d6a;
  --light:      #faf3e3;

  /* Lines */
  --line:       rgba(184, 137, 68, 0.30);
  --line-soft:  rgba(44, 34, 24, 0.10);

  --maxw: 1080px;
  --shadow: 0 18px 50px -20px rgba(60, 40, 20, 0.45);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.font-cinzel    { font-family: 'Cinzel', serif; }
.font-cormorant { font-family: 'Cormorant Garamond', serif; }

/* ---------- layout ---------- */
.section { padding: clamp(3.5rem, 9vw, 7rem) 1.5rem; position: relative; }
.container { max-width: var(--maxw); margin: 0 auto; }
.container.narrow { max-width: 720px; }

.section-eyebrow {
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-eyebrow { display: inline-flex; align-items: center; gap: 0.7rem; }
.section-eyebrow::before { content: ''; width: 28px; height: 1px; flex-shrink: 0; background: var(--gold); opacity: 0.75; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 1.2rem;
}
.section-lede {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  color: var(--mist);
  max-width: 640px;
  margin-bottom: 2.5rem;
}
em { color: var(--rose); font-style: italic; }
strong { color: var(--cream); font-weight: 600; }

/* ---------- scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  background: transparent; z-index: 200;
}
.scroll-progress-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--rose));
}

/* ---------- gate ---------- */
.gate {
  position: fixed; inset: 0; z-index: 1000;
  background: radial-gradient(circle at 50% 35%, #2a1d14 0%, #160f0a 100%);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.gate.unlock { opacity: 0; visibility: hidden; }
.gate-inner { text-align: center; padding: 2rem; max-width: 380px; }
.gate-sigil { font-size: 2.4rem; color: var(--gold-soft); margin-bottom: 1rem; }
.gate-eyebrow {
  font-family: 'Cinzel', serif; text-transform: uppercase;
  letter-spacing: 0.3em; font-size: 0.68rem; color: var(--gold); margin-bottom: 0.8rem;
}
.gate-title { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; color: var(--light); margin-bottom: 0.6rem; }
.gate-sub { color: #b9a589; font-size: 0.95rem; margin-bottom: 1.6rem; }
.gate-field { display: flex; gap: 0.5rem; }
.gate-field input {
  flex: 1; padding: 0.85rem 1rem; border-radius: 10px;
  border: 1px solid rgba(212,168,94,0.4); background: rgba(255,255,255,0.05);
  color: var(--light); font-size: 1rem; outline: none;
}
.gate-field input:focus { border-color: var(--gold-soft); }
.gate-field button {
  padding: 0.85rem 1.4rem; border-radius: 10px; border: none; cursor: pointer;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: #1a120b; font-weight: 600; font-family: 'Cinzel', serif; letter-spacing: 0.05em;
}
.gate-err { color: var(--rose); font-size: 0.85rem; margin-top: 0.9rem; opacity: 0; }
.gate-err.show { opacity: 1; }

/* ---------- topbar ---------- */
.topbar {
  position: fixed; top: 3px; left: 0; right: 0; z-index: 150;
  backdrop-filter: blur(10px);
  background: rgba(245,234,212,0.78);
  border-bottom: 1px solid var(--line-soft);
}
.topbar-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0.7rem 1.5rem;
  display: flex; align-items: center; gap: 0.9rem;
}
.brand { font-family: 'Cinzel', serif; letter-spacing: 0.14em; font-size: 0.95rem; color: var(--gold); }
.live-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--sage-deep); border: 1px solid var(--line); border-radius: 99px; padding: 0.2rem 0.6rem;
}
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
.brand-sub { margin-left: auto; font-size: 0.78rem; color: var(--mist-soft); }

/* ---------- hero ---------- */
.hero {
  min-height: 100vh; display: flex; align-items: flex-end;
  position: relative; padding: 0 1.5rem 5rem;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05); }
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,12,8,0.45) 0%, rgba(20,12,8,0.25) 40%, rgba(22,14,9,0.92) 100%);
}
.hero-content { position: relative; max-width: var(--maxw); margin: 0 auto; width: 100%; color: var(--light); }
.spots-badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.18em;
  background: rgba(184,94,72,0.22); border: 1px solid rgba(212,168,94,0.5);
  border-radius: 99px; padding: 0.35rem 0.85rem; color: var(--champagne); margin-bottom: 1.3rem;
}
.spots-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-soft); }
.eyebrow { font-family:'Cinzel',serif; text-transform: uppercase; letter-spacing: 0.3em; font-size: 0.72rem; color: var(--gold-soft); margin-bottom: 1rem; }
.hero-title { font-family:'Cormorant Garamond',serif; font-weight: 500; font-size: clamp(2.6rem, 8vw, 5.2rem); line-height: 1.02; }
.hero-title em { color: var(--gold-soft); }
.hero-tagline { font-family:'Cormorant Garamond',serif; font-size: clamp(1.2rem,2.6vw,1.6rem); color: #e9dcc4; margin-top: 1.4rem; max-width: 560px; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family:'Cinzel',serif; letter-spacing: 0.06em; font-size: 0.82rem;
  padding: 0.95rem 1.7rem; border-radius: 12px; cursor: pointer;
  border: 1px solid transparent; text-decoration: none; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary { background: linear-gradient(180deg, var(--gold-soft), var(--gold)); color: #1a120b; box-shadow: var(--shadow); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,0.06); color: var(--light); border-color: rgba(212,168,94,0.5); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); }

/* ---------- clarity / discretion banner ---------- */
.clarity { background: linear-gradient(180deg, var(--ink-2), var(--ink)); }
.clarity-card {
  border: 1px solid var(--line); border-radius: 18px; padding: clamp(1.6rem,4vw,2.6rem);
  background: rgba(255,255,255,0.4); box-shadow: var(--shadow);
}
.clarity-card h3 { font-family:'Cormorant Garamond',serif; font-size: 1.7rem; margin-bottom: 1rem; color: var(--rose); }
.clarity-list { list-style: none; display: grid; gap: 1rem; }
.clarity-list li { display: flex; gap: 0.8rem; align-items: flex-start; }
.clarity-list .ck { color: var(--gold); font-size: 1.1rem; line-height: 1.4; flex-shrink: 0; }

/* ---------- letter ---------- */
.letter-body p { font-family:'Cormorant Garamond',serif; font-size: 1.25rem; color: var(--mist); margin-bottom: 1.1rem; }
.letter-sign { font-family:'Cinzel',serif; color: var(--gold); margin-top: 1.5rem; letter-spacing: 0.08em; }

/* ---------- pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.2rem; }
.pillar { border: 1px solid var(--line-soft); border-radius: 16px; padding: 1.6rem; background: rgba(255,255,255,0.35); }
.pillar-num { font-family:'Cinzel',serif; color: var(--gold-soft); font-size: 0.85rem; letter-spacing: 0.2em; }
.pillar h3 { font-family:'Cormorant Garamond',serif; font-size: 1.45rem; margin: 0.5rem 0 0.6rem; }
.pillar p { color: var(--mist); font-size: 0.96rem; }

/* ---------- where we meet ---------- */
.meet-hero { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); margin-bottom: 2rem; }
.meet-hero img { width: 100%; height: clamp(240px,40vw,460px); object-fit: cover; }
.meet-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 1.2rem; }
.meet-card { border: 1px solid var(--line); border-radius: 16px; padding: 1.6rem; background: rgba(255,255,255,0.4); }
.meet-tag { font-family:'Cinzel',serif; font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold); }
.meet-card h3 { font-family:'Cormorant Garamond',serif; font-size: 1.5rem; margin: 0.5rem 0 0.6rem; }
.meet-card p { color: var(--mist); font-size: 0.97rem; }

/* ---------- cadence ---------- */
.cadence-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 1rem; margin-top: 1.5rem; }
.cadence-opt { border: 1px solid var(--line); border-radius: 16px; padding: 1.5rem; text-align: center; background: rgba(255,255,255,0.4); }
.cadence-opt .freq { font-family:'Cormorant Garamond',serif; font-size: 2rem; color: var(--rose); }
.cadence-opt .desc { color: var(--mist); font-size: 0.92rem; margin-top: 0.3rem; }

/* ---------- benefits grid ---------- */
.benefit-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap: 1rem; }
.benefit-card { border: 1px solid var(--line-soft); border-radius: 14px; padding: 1.4rem; background: rgba(255,255,255,0.35); }
.benefit-icon { font-size: 1.3rem; color: var(--gold); }
.benefit-card h4 { font-family:'Cormorant Garamond',serif; font-size: 1.3rem; margin: 0.4rem 0 0.5rem; }
.benefit-card p { color: var(--mist); font-size: 0.92rem; }

/* ---------- feature image ---------- */
.feature-img { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); margin: 2rem 0 0.8rem; }
.feature-img img { width: 100%; object-fit: cover; }
.feature-caption { color: var(--mist-soft); font-size: 0.88rem; text-align: center; }

/* ---------- gallery ---------- */
.mini-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.8rem; }
.mini-gallery a { border-radius: 14px; overflow: hidden; }
.mini-gallery img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.4s ease; }
.mini-gallery a:hover img { transform: scale(1.05); }

/* ---------- perks ---------- */
ul.perks { list-style: none; display: grid; gap: 1.1rem; }
ul.perks li { border-left: 2px solid var(--gold); padding-left: 1.1rem; }
.perk-title { display: block; font-family:'Cormorant Garamond',serif; font-size: 1.3rem; color: var(--cream); }
.perk-body { color: var(--mist); font-size: 0.97rem; }

/* ---------- what a session looks like ---------- */
.session-flow { display: grid; gap: 1rem; }
.session-step { display: flex; gap: 1rem; align-items: flex-start; border: 1px solid var(--line-soft); border-radius: 14px; padding: 1.2rem 1.4rem; background: rgba(255,255,255,0.35); }
.session-num { font-family:'Cinzel',serif; color: var(--gold-soft); font-size: 1.1rem; min-width: 1.8rem; }
.session-step h4 { font-family:'Cormorant Garamond',serif; font-size: 1.25rem; margin-bottom: 0.2rem; }
.session-step p { color: var(--mist); font-size: 0.95rem; }

/* ---------- form ---------- */
.apply { background: linear-gradient(180deg, var(--ink-2), var(--ink-3)); }
.form-card {
  border: 1px solid var(--line); border-radius: 20px; padding: clamp(1.5rem,4vw,2.8rem);
  background: rgba(255,255,255,0.5); box-shadow: var(--shadow);
}
.form-grid { display: grid; gap: 1.3rem; }
.field { display: grid; gap: 0.4rem; }
.field label { font-family:'Cinzel',serif; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--mist); }
.field label .req { color: var(--rose); }
.field input, .field textarea, .field select {
  font-family: 'Inter', sans-serif; font-size: 0.98rem;
  padding: 0.8rem 0.95rem; border-radius: 10px; border: 1px solid var(--line);
  background: rgba(255,255,255,0.7); color: var(--cream); outline: none; width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); background: #fff; }
.field textarea { resize: vertical; min-height: 90px; }
.field .hint { font-size: 0.8rem; color: var(--mist-soft); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.chip-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  cursor: pointer; user-select: none; font-size: 0.85rem;
  border: 1px solid var(--line); border-radius: 99px; padding: 0.45rem 0.9rem; background: rgba(255,255,255,0.6);
}
.chip input { display: none; }
.chip.on { background: var(--gold); color: #1a120b; border-color: var(--gold); }
.check-line { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.9rem; color: var(--mist); }
.check-line input { margin-top: 0.25rem; width: 18px; height: 18px; accent-color: var(--gold); flex-shrink: 0; }
.form-submit { margin-top: 0.5rem; }
.form-note { font-size: 0.82rem; color: var(--mist-soft); margin-top: 0.8rem; }

.form-success { display: none; text-align: center; padding: 2rem 1rem; }
.form-success.show { display: block; }
.form-success .sig { font-size: 2.6rem; color: var(--gold); }
.form-success h3 { font-family:'Cormorant Garamond',serif; font-size: 2rem; margin: 0.6rem 0; }
.form-success p { color: var(--mist); }

/* ---------- faq ---------- */
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-q { width: 100%; text-align: left; cursor: pointer; background: none; border: none; padding: 1.2rem 0; font-family:'Cormorant Garamond',serif; font-size: 1.3rem; color: var(--cream); display: flex; justify-content: space-between; gap: 1rem; }
.faq-q .pl { color: var(--gold); transition: transform 0.3s; }
.faq-item.open .faq-q .pl { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; color: var(--mist); }
.faq-a-inner { padding: 0 0 1.2rem; font-size: 0.98rem; }

/* ---------- footer ---------- */
.footer { padding: 3rem 1.5rem; text-align: center; border-top: 1px solid var(--line-soft); background: var(--ink-2); }
.footer p { color: var(--mist-soft); font-size: 0.82rem; margin-bottom: 0.4rem; }
.footer .brand { font-size: 1.2rem; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- divider ---------- */
.svg-divider { display: flex; justify-content: center; color: var(--gold); padding: 1rem 0; opacity: 0.7; }

/* ---------- responsive ---------- */
@media (max-width: 640px) {
  .field-row { grid-template-columns: 1fr; }
  .mini-gallery { grid-template-columns: 1fr 1fr; }
  .mini-gallery img { height: 160px; }
  .brand-sub { display: none; }
}

/* ============================================================
   v2 ADDITIONS — tabs, pay, content menu, locations,
   bring-a-friend, compliance, NDA
   ============================================================ */

/* ---------- tab bar ---------- */
.tabbar {
  position: fixed; top: 44px; left: 0; right: 0; z-index: 145;
  display: flex; gap: 0.4rem; justify-content: center;
  padding: 0.5rem 1rem; background: rgba(245,234,212,0.92);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--line-soft);
}
#view-nda { padding-top: 7rem; }
.tab {
  font-family:'Cinzel',serif; font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.55rem 1.1rem; border-radius: 99px;
  cursor: pointer; border: 1px solid var(--line); background: transparent; color: var(--mist);
}
.tab.active { background: var(--gold); color: #1a120b; border-color: var(--gold); }

.view[hidden] { display: none; }

/* ---------- privacy / promise band ---------- */
.promise { background: linear-gradient(180deg, var(--ink), var(--ink-2)); }
.promise-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 1rem; }
.promise-card {
  border: 1px solid var(--line); border-radius: 16px; padding: 1.5rem; background: rgba(255,255,255,0.45);
}
.promise-card .pc-icon { font-size: 1.4rem; color: var(--rose); }
.promise-card h4 { font-family:'Cormorant Garamond',serif; font-size: 1.35rem; margin: 0.4rem 0 0.5rem; }
.promise-card p { color: var(--mist); font-size: 0.95rem; }
.promise-card .pc-tag { display:inline-block; font-family:'Cinzel',serif; font-size:0.58rem; letter-spacing:0.16em; text-transform:uppercase; color:var(--sage-deep); border:1px solid var(--line); border-radius:99px; padding:0.15rem 0.55rem; margin-top:0.6rem; }

/* ---------- pay tiers ---------- */
.pay-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 1.1rem; }
.pay-card { border: 1px solid var(--line); border-radius: 16px; padding: 1.6rem; background: rgba(255,255,255,0.45); text-align: center; }
.pay-card.feature { border-color: var(--gold); background: rgba(212,168,94,0.16); box-shadow: var(--shadow); }
.pay-card.feature { position: relative; border-width: 2px; box-shadow: 0 24px 60px -26px rgba(184,137,68,0.65); }
.pay-card.feature::before { content: 'The long game'; position: absolute; top: -0.72rem; left: 50%; transform: translateX(-50%); font-family: 'Cinzel', serif; font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase; background: linear-gradient(180deg, var(--gold-soft), var(--gold)); color: #1a120b; border-radius: 99px; padding: 0.22rem 0.75rem; white-space: nowrap; box-shadow: 0 6px 16px -8px rgba(184,137,68,0.7); }
.pay-num { font-family:'Cormorant Garamond',serif; font-size: 2.6rem; color: var(--rose); line-height: 1; }
.pay-num small { font-size: 1rem; color: var(--mist); }
.pay-card h4 { font-family:'Cinzel',serif; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin: 0.6rem 0 0.4rem; }
.pay-card p { color: var(--mist); font-size: 0.92rem; }
.pay-bullets { list-style: none; display: grid; gap: 0.8rem; margin-top: 1.6rem; }
.pay-bullets li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--mist); }
.pay-bullets .b { color: var(--gold); flex-shrink: 0; }

/* ---------- content menu ---------- */
.menu-note { border: 1px dashed var(--line); border-radius: 14px; padding: 1.1rem 1.3rem; background: rgba(255,255,255,0.35); color: var(--mist); font-size: 0.95rem; margin-bottom: 1.6rem; }
.content-menu { list-style: none; display: grid; gap: 0.6rem; counter-reset: cm; }
.content-item {
  display: grid; grid-template-columns: auto 1fr auto; gap: 0.9rem; align-items: center;
  border: 1px solid var(--line-soft); border-radius: 12px; padding: 0.85rem 1.1rem; background: rgba(255,255,255,0.4);
}
.content-item .ci-num { font-family:'Cinzel',serif; color: var(--gold-soft); font-size: 0.85rem; min-width: 1.6rem; }
.content-item .ci-name { font-family:'Cormorant Garamond',serif; font-size: 1.22rem; color: var(--cream); }
.content-item .ci-name small { display:block; font-family:'Inter',sans-serif; font-size: 0.82rem; color: var(--mist-soft); }
.content-item .ci-len { font-size: 0.78rem; color: var(--mist-soft); white-space: nowrap; }
.content-item.opener { border-color: var(--gold); background: rgba(212,168,94,0.15); }
.content-item.optional { opacity: 0.92; }
.content-item.optional .ci-len { color: var(--rose); }

/* ---------- locations ---------- */
.loc-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap: 1rem; }
.loc-card { border: 1px solid var(--line); border-radius: 16px; padding: 1.5rem; background: rgba(255,255,255,0.45); }
.loc-card .loc-name { font-family:'Cormorant Garamond',serif; font-size: 1.5rem; color: var(--rose); }
.loc-card .loc-area { color: var(--mist); font-size: 0.92rem; margin-top: 0.3rem; }
.loc-pin { color: var(--gold); font-size: 1.1rem; }

/* ---------- bring a friend ---------- */
.friend { background: linear-gradient(180deg, var(--ink-2), var(--ink)); }
.friend-hero { border: 1px solid var(--gold); border-radius: 20px; padding: clamp(1.6rem,4vw,2.6rem); background: rgba(212,168,94,0.14); box-shadow: var(--shadow); }
.friend-steps { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 1rem; margin-top: 1.6rem; }
.friend-step { text-align: center; }
.friend-step .fs-num { font-family:'Cormorant Garamond',serif; font-size: 2rem; color: var(--rose); }
.friend-step p { color: var(--mist); font-size: 0.92rem; margin-top: 0.3rem; }
.friend-highlight { margin-top: 1.6rem; padding: 1.1rem 1.3rem; border-radius: 12px; background: rgba(255,255,255,0.5); border-left: 3px solid var(--gold); color: var(--cream); font-family:'Cormorant Garamond',serif; font-size: 1.25rem; }

/* ---------- circle / other girls ---------- */
.circle-card { border: 1px solid var(--line); border-radius: 18px; padding: clamp(1.5rem,4vw,2.4rem); background: rgba(255,255,255,0.42); }

/* ---------- NDA document ---------- */
.nda-doc { max-width: 760px; margin: 0 auto; background: rgba(255,255,255,0.6); border: 1px solid var(--line); border-radius: 18px; padding: clamp(1.6rem,5vw,3rem); box-shadow: var(--shadow); }
.nda-doc h1 { font-family:'Cormorant Garamond',serif; font-size: clamp(1.7rem,4vw,2.4rem); text-align: center; margin-bottom: 0.4rem; }
.nda-doc .nda-sub { text-align: center; color: var(--mist-soft); font-size: 0.9rem; margin-bottom: 2rem; }
.nda-doc h2 { font-family:'Cinzel',serif; font-size: 0.92rem; letter-spacing: 0.06em; color: var(--gold); margin: 1.8rem 0 0.6rem; text-transform: uppercase; }
.nda-doc p, .nda-doc li { color: var(--cream); font-size: 0.95rem; margin-bottom: 0.7rem; line-height: 1.7; }
.nda-doc ol, .nda-doc ul { padding-left: 1.3rem; }
.nda-doc .nda-note { background: rgba(184,94,72,0.12); border: 1px solid var(--line); border-radius: 12px; padding: 1rem 1.2rem; font-size: 0.86rem; color: var(--mist); margin: 1.4rem 0; }
.nda-sign { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2.4rem; }
.nda-sign .sig-line { border-top: 1px solid var(--cream); padding-top: 0.4rem; font-size: 0.8rem; color: var(--mist); }
.nda-sign .sig-block { margin-bottom: 1.4rem; }
@media (max-width: 560px){ .nda-sign { grid-template-columns: 1fr; } }

/* ---------- small print ---------- */
.fineprint { font-size: 0.8rem; color: var(--mist-soft); }

/* ---- fast-track optional add-ons (mini-quests) ---- */
.ft-optional { margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid rgba(184,137,68,0.28); text-align: left; }
.ft-opt-head { font-family: 'Cinzel', serif; text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.66rem; color: var(--gold); text-align: center; margin-bottom: 1rem; }
.ft-opt-card { background: rgba(255,255,255,0.55); border: 1px solid var(--line); border-radius: 14px; padding: 1.1rem 1.2rem; margin-bottom: 0.9rem; box-shadow: 0 10px 28px -22px rgba(60,40,20,0.4); }
.ft-opt-card h4 { font-family: 'Cinzel', serif; font-size: 0.98rem; color: var(--cream); margin: 0 0 0.3rem; }
.ft-opt-card h4 strong { color: var(--rose); }
.ft-opt-sub { font-size: 0.82rem; color: var(--mist); margin: 0 0 0.8rem; line-height: 1.5; }
.ft-opt-card .btn { margin-top: 0.7rem; width: 100%; }
.ft-status.ok { color: var(--sage-deep); }

/* ---- existing NSFW / OnlyFans block (success screen) ---- */
.of-block { margin-top: 1.4rem; padding: 1.1rem 1.15rem; background: rgba(255,255,255,0.55); border: 1px solid var(--line); border-radius: 14px; text-align: left; }
.of-eyebrow { font-family:'Cinzel',serif; text-transform:uppercase; letter-spacing:0.22em; font-size:0.62rem; color:var(--rose); margin-bottom:0.6rem; }
.of-q { font-size:0.95rem; color:var(--cream); font-weight:600; margin:0 0 0.7rem; }
.of-sub { color:var(--mist-soft); font-size:0.82rem; line-height:1.45; }
.of-pitch { margin:0.5rem 0 0.3rem; padding:0.75rem 0.85rem; border-left:2px solid var(--gold); background:rgba(184,137,68,0.08); border-radius:6px; }
.of-pitch p { font-size:0.85rem; color:var(--mist); line-height:1.5; margin:0 0 0.6rem; }
.of-block .btn { margin-top:0.7rem; }
.pf-tat { margin-top: 0.4rem; }
.pf-tat .check-line { font-size: 0.85rem; }

/* ---- hero money callout (fast-track = earn today) ---- */
.hero-money { margin-top: 1.2rem; padding: 0.7rem 1rem; display: inline-block; font-size: 0.92rem; line-height: 1.5; color: var(--ink); background: rgba(184,137,68,0.12); border: 1px solid rgba(184,137,68,0.35); border-radius: 10px; }
.hero-money strong { color: var(--gold-soft); }
.hero-money em { color: var(--gold-soft); font-style: italic; }

/* ---- perks ladder / value tracker ---- */
.perk-track { position: relative; margin-top: 2rem; padding-left: 0.4rem; }
.perk-track::before { content: ''; position: absolute; left: 21px; top: 14px; bottom: 14px; width: 2px; background: linear-gradient(180deg, var(--gold-soft), rgba(184,137,68,0.15)); }
.perk-node { position: relative; display: flex; gap: 1.1rem; padding: 0 0 1.8rem 0; }
.perk-node:last-child { padding-bottom: 0; }
.pn-marker { position: relative; z-index: 1; flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Cinzel', serif; font-weight: 700; font-size: 1.05rem; color: #1a120b; background: linear-gradient(180deg, var(--gold-soft), var(--gold)); box-shadow: 0 0 0 4px rgba(184,137,68,0.18); }
.pn-now .pn-marker { background: linear-gradient(180deg, #7fc88a, #4e9a5c); color: #0e1a10; box-shadow: 0 0 0 4px rgba(127,200,138,0.18); }
.pn-body { background: rgba(255,255,255,0.5); border: 1px solid var(--line); border-radius: 14px; padding: 1.1rem 1.25rem; flex: 1; box-shadow: 0 12px 34px -24px rgba(60,40,20,0.4); transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.perk-node:hover .pn-body { border-color: var(--gold); box-shadow: 0 16px 40px -22px rgba(184,137,68,0.5); }
.pn-badge { display: inline-block; font-family: 'Cinzel', serif; text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.62rem; color: #1a120b; background: var(--gold-soft); padding: 0.2rem 0.6rem; border-radius: 99px; margin-bottom: 0.55rem; font-weight: 700; }
.pn-now .pn-badge { background: #7fc88a; }
.pn-body h3 { font-family: 'Cinzel', serif; font-size: 1.02rem; color: var(--cream); margin: 0 0 0.4rem; }
.pn-body p { font-size: 0.9rem; color: var(--mist); line-height: 1.6; margin: 0; }
.pn-body p + p { margin-top: 0.45rem; }
.pn-value { font-family: 'Cinzel', serif; letter-spacing: 0.08em; font-size: 0.78rem !important; color: var(--gold) !important; font-weight: 700; }
@media (max-width: 480px) {
  .perk-node { gap: 0.75rem; }
  .pn-marker { width: 36px; height: 36px; font-size: 0.92rem; }
  .perk-track::before { left: 17px; }
  .pn-body { padding: 0.9rem 1rem; }
  .pn-body h3 { font-size: 0.95rem; }
}


/* ---- reveal stagger: cards cascade in instead of popping at once ---- */
.reveal .pillar, .reveal .promise-card, .reveal .loc-card, .reveal .pay-card,
.reveal .friend-step, .reveal .perk-node, .reveal .control-item, .reveal .glow-card {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.in .pillar, .reveal.in .promise-card, .reveal.in .loc-card, .reveal.in .pay-card,
.reveal.in .friend-step, .reveal.in .perk-node, .reveal.in .control-item, .reveal.in .glow-card {
  opacity: 1; transform: none;
}
.reveal.in .pillar:nth-child(2), .reveal.in .promise-card:nth-child(2), .reveal.in .loc-card:nth-child(2),
.reveal.in .pay-card:nth-child(2), .reveal.in .friend-step:nth-child(2), .reveal.in .perk-node:nth-child(2),
.reveal.in .control-item:nth-child(2), .reveal.in .glow-card:nth-child(2) { transition-delay: 0.1s; }
.reveal.in .pillar:nth-child(3), .reveal.in .promise-card:nth-child(3), .reveal.in .loc-card:nth-child(3),
.reveal.in .pay-card:nth-child(3), .reveal.in .friend-step:nth-child(3), .reveal.in .perk-node:nth-child(3),
.reveal.in .control-item:nth-child(3), .reveal.in .glow-card:nth-child(3) { transition-delay: 0.2s; }
.reveal.in .pillar:nth-child(4), .reveal.in .promise-card:nth-child(4), .reveal.in .loc-card:nth-child(4),
.reveal.in .control-item:nth-child(4), .reveal.in .glow-card:nth-child(4) { transition-delay: 0.3s; }
.reveal.in .promise-card:nth-child(5), .reveal.in .control-item:nth-child(5), .reveal.in .glow-card:nth-child(5) { transition-delay: 0.4s; }
.reveal.in .promise-card:nth-child(n+6), .reveal.in .glow-card:nth-child(n+6), .reveal.in .control-item:nth-child(n+6) { transition-delay: 0.5s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal .pillar, .reveal .promise-card, .reveal .loc-card, .reveal .pay-card,
  .reveal .friend-step, .reveal .perk-node, .reveal .control-item, .reveal .glow-card {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
}

/* ---- interactive states: calm gold feedback everywhere she touches ---- */
.chip { transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease; }
.chip:hover { border-color: var(--gold); background: rgba(212,168,94,0.2); }
.chip:active { transform: scale(0.97); }
.chip.on { box-shadow: 0 6px 16px -10px rgba(184,137,68,0.7); }
.field input:focus, .field textarea:focus, .field select:focus,
.ft-field input:focus, .gate-field input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,137,68,0.18);
}
.btn:focus-visible, .tab:focus-visible, .faq-q:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn-primary:hover { box-shadow: 0 22px 55px -18px rgba(184,137,68,0.55); }
.btn-primary:active { transform: translateY(0); }
.faq-q { transition: color 0.25s ease; }
.faq-q:hover { color: var(--rose); }

/* ---- tabbar: hover states + one-line mobile fit ---- */
.tab { transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease; white-space: nowrap; }
.tab:hover { border-color: var(--gold); color: var(--cream); background: rgba(212,168,94,0.15); }
.tab.active:hover { background: var(--gold); color: #1a120b; }
@media (max-width: 480px) {
  .tabbar { gap: 0.3rem; padding: 0.45rem 0.4rem; }
  .tab { font-size: 0.62rem; letter-spacing: 0.08em; padding: 0.5rem 0.72rem; }
}

/* ---- friend steps: card treatment + gold step markers ---- */
.friend-step { background: rgba(255,255,255,0.45); border: 1px solid var(--line-soft); border-radius: 14px; padding: 1.2rem 1rem 1.3rem; }
.friend-step .fs-num { width: 42px; height: 42px; margin: 0 auto 0.55rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: #1a120b; background: linear-gradient(180deg, var(--gold-soft), var(--gold)); box-shadow: 0 0 0 4px rgba(184,137,68,0.16); }

/* ---- global finishing: selection, scrollbar, anchor offset ---- */
::selection { background: rgba(184,137,68,0.35); color: #1a120b; }
.section { scroll-margin-top: 96px; }
html { scrollbar-color: rgba(184,137,68,0.55) var(--ink-2); }
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--ink-2); }
::-webkit-scrollbar-thumb { background: rgba(184,137,68,0.45); border-radius: 8px; border: 3px solid var(--ink-2); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ---- quest meter + collapsible quest cards ---- */
.quest-meter { margin: 0 0 1rem; text-align: center; }
.qm-line { font-family:'Cinzel',serif; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mist); margin: 0 0 0.45rem; }
.qm-line #qmEarned { color: var(--rose); font-size: 0.9rem; }
.qm-bar { height: 7px; border-radius: 99px; background: rgba(0,0,0,0.14); border: 1px solid rgba(184,137,68,0.35); overflow: hidden; }
.qm-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--gold), var(--gold-soft)); transition: width 0.6s ease; }
.qm-sub { font-size: 0.78rem; color: var(--mist-soft); margin: 0.45rem 0 0; }
.ft-opt-card > h4 { cursor: pointer; position: relative; padding-right: 1.4rem; }
.ft-opt-card > h4:after { content: '+'; position: absolute; right: 0; top: 0; color: var(--gold); font-family: 'Inter', sans-serif; font-weight: 400; }
.ft-opt-card.qopen > h4:after { content: '\2212'; }
.ft-opt-card.qdone > h4:before { content: '\2713  '; color: var(--sage-deep); }
.ft-opt-card:not(.qopen) > *:not(h4) { display: none; }

/* centered eyebrow (#join): mirror the dash so the label stays optically centered */
#join .section-eyebrow::after { content: ''; width: 28px; height: 1px; flex-shrink: 0; background: var(--gold); opacity: 0.75; }

/* ---- account: topbar login link + success-screen CTA ---- */
.topbar-login { margin-left: auto; color: var(--gold); text-decoration: none; font-size: 0.78rem; font-family: 'Cinzel', serif; letter-spacing: 0.06em; border: 1px solid var(--line); padding: 0.28rem 0.75rem; border-radius: 99px; white-space: nowrap; }
.topbar-login:hover { border-color: var(--gold); color: var(--rose); }
.acct-cta { margin-top: 1rem; padding-top: 1.1rem; border-top: 1px solid rgba(184,137,68,0.28); text-align: center; }
.acct-cta .btn { width: 100%; }

/* ---- mobile header: keep the compact topbar from covering the tab menu ---- */
@media (max-width: 640px) {
  .topbar-inner { padding: 0.4rem 1rem; gap: 0.55rem; flex-wrap: nowrap; }
  .topbar .brand { font-size: 0.9rem; letter-spacing: 0.08em; white-space: nowrap; }
  .topbar .brand-sub { display: none; }
  .topbar .live-badge { font-size: 0.58rem; padding: 0.18rem 0.5rem; white-space: nowrap; }
  .topbar-login { font-size: 0.66rem; padding: 0.2rem 0.55rem; }
  .tabbar { top: 41px; padding: 0.4rem 0.5rem; }
  .tab { font-size: 0.6rem; letter-spacing: 0.05em; padding: 0.45rem 0.55rem; }
}

/* ---- gentle "apply at the bottom" cues sprinkled through the funnel ---- */
.scroll-cue { text-align: center; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.08rem; color: var(--ink-3); max-width: 540px; margin: 0 auto; padding: 1.8rem 1.4rem 0.2rem; line-height: 1.5; }
.scroll-cue .cue-arrow { display: block; font-family: 'Cinzel', serif; font-style: normal; text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.6rem; color: var(--gold-soft); margin-top: 0.6rem; }
