/* ============================================================
   QuestLock — Landing styles
   Playful, gamified, cheeky. Goblin-powered.
   ============================================================ */

:root{
  /* surfaces */
  --bg:        #eceef8;
  --bg-soft:   #f4f5fb;
  --card:      #ffffff;
  --line:      #e6e7f2;

  /* ink */
  --ink:       #181a37;
  --ink-2:     #3b3e63;
  --ink-soft:  #6b6e8f;
  --ink-faint: #9a9cb8;

  /* brand */
  --violet:      #6d4bf0;
  --violet-2:    #8a6bf7;
  --violet-deep: #4a2fc0;
  --violet-wash: #efeafe;

  --orange:    #ff8a2b;
  --orange-2:  #ffae3d;
  --orange-wash:#fff0dd;

  --red:       #ff4d52;
  --green:     #2ec27a;
  --blue:      #3b82f6;
  --gold:      #d9a84e;
  --gold-wash: #f6e8c8;

  /* effects */
  --r-sm: 14px;
  --r:    22px;
  --r-lg: 32px;
  --r-xl: 42px;
  --shadow-sm: 0 2px 8px rgba(24,26,55,.05), 0 1px 2px rgba(24,26,55,.04);
  --shadow:    0 18px 40px -18px rgba(24,26,55,.22), 0 4px 12px rgba(24,26,55,.05);
  --shadow-lg: 0 40px 90px -30px rgba(60,40,170,.40), 0 12px 30px -12px rgba(24,26,55,.18);
  --ring: 0 0 0 1px var(--line);

  --maxw: 1180px;

  --font-display: "Baloo 2", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }

body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}

h1,h2,h3,h4{ font-family:var(--font-display); font-weight:800; margin:0; line-height:1.04; letter-spacing:-.01em; }
p{ margin:0; }
a{ color:inherit; text-decoration:none; }
img{ display:block; max-width:100%; }

.wrap{ width:100%; max-width:var(--maxw); margin:0 auto; padding:0 24px; }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-display); font-weight:700;
  font-size:13px; letter-spacing:.10em; text-transform:uppercase;
  color:var(--violet-deep);
  background:var(--violet-wash);
  padding:7px 14px; border-radius:999px; white-space:nowrap;
}
.eyebrow.is-orange{ color:#b85e00; background:var(--orange-wash); }

.section{ position:relative; padding:108px 0; }
.section-head{ max-width:680px; }
.section-head h2{ font-size:clamp(34px,4.6vw,56px); color:var(--ink); margin:18px 0 0; }
.section-head p{ font-size:18px; color:var(--ink-soft); margin-top:18px; line-height:1.55; }
.center{ text-align:center; margin-left:auto; margin-right:auto; }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family:var(--font-display); font-weight:700; font-size:16px;
  padding:15px 26px; border-radius:999px; border:0; cursor:pointer;
  transition:transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space:nowrap;
}
.btn-primary{
  color:#fff;
  background:linear-gradient(180deg,var(--violet-2),var(--violet));
  box-shadow:0 12px 26px -10px rgba(109,75,240,.65), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 18px 34px -10px rgba(109,75,240,.7); }
.btn-ghost{ background:#fff; color:var(--ink); box-shadow:var(--ring),var(--shadow-sm); }
.btn-ghost:hover{ transform:translateY(-2px); }
.btn-dark{ background:var(--ink); color:#fff; }
.btn-dark:hover{ transform:translateY(-2px); }

/* app store badge */
.store-badge{
  display:inline-flex; align-items:center; gap:13px;
  padding:12px 22px 12px 18px; border-radius:16px;
  background:var(--ink); color:#fff; cursor:pointer;
  transition:transform .15s ease, box-shadow .2s ease;
  box-shadow:0 14px 30px -14px rgba(24,26,55,.6);
}
.store-badge:hover{ transform:translateY(-2px); }
.store-badge svg{ width:30px; height:30px; flex:none; }
.store-badge .sb-small{ display:block; font-size:11px; opacity:.78; font-family:var(--font-body); letter-spacing:.02em; line-height:1.1; }
.store-badge .sb-big{ display:block; font-family:var(--font-display); font-weight:700; font-size:21px; line-height:1; margin-top:2px; white-space:nowrap; }

.soon-pill{
  display:inline-flex; align-items:center; gap:7px;
  font-size:13px; font-weight:600; color:var(--ink-soft);
}
.soon-pill .dot{ width:8px; height:8px; border-radius:50%; background:var(--green); box-shadow:0 0 0 4px rgba(46,194,122,.18); }

/* ---------- NAV ---------- */
.nav{
  position:sticky; top:0; z-index:60;
  padding:14px 0;
  transition:background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.nav.scrolled{
  background:rgba(244,245,251,.82);
  backdrop-filter:saturate(160%) blur(14px);
  box-shadow:0 1px 0 rgba(24,26,55,.06);
}
.nav .wrap{ display:flex; align-items:center; gap:24px; }
.brand{ display:flex; align-items:center; gap:11px; font-family:var(--font-display); font-weight:800; font-size:22px; color:var(--ink); }
.brand .mark{
  width:38px; height:38px; border-radius:11px; flex:none;
  display:grid; place-items:center; color:#fff;
  background:linear-gradient(150deg,var(--violet-2),var(--violet-deep));
  box-shadow:0 8px 18px -8px rgba(74,47,192,.8), inset 0 1px 0 rgba(255,255,255,.4);
}
.brand .mark svg{ width:21px; height:21px; }
.nav-links{ display:flex; gap:6px; margin-left:14px; }
.nav-links a{
  font-weight:600; font-size:15px; color:var(--ink-2);
  padding:9px 14px; border-radius:11px; transition:background .15s ease, color .15s ease;
}
.nav-links a:hover{ background:#fff; color:var(--ink); }
.nav-cta{ margin-left:auto; display:flex; align-items:center; gap:12px; }
.nav-burger{ display:none; }

/* ---------- HERO ---------- */
.hero{ position:relative; padding:64px 0 92px; overflow:hidden; }
.hero-sky{
  position:absolute; inset:0; z-index:0;
  background:
    radial-gradient(1100px 520px at 78% 8%, rgba(138,107,247,.16), transparent 60%),
    radial-gradient(900px 480px at 12% 30%, rgba(255,174,61,.14), transparent 62%),
    linear-gradient(180deg,#f3f1fd 0%, var(--bg) 56%);
}
.hero .wrap{ position:relative; z-index:2; display:grid; grid-template-columns:1.05fr .95fr; gap:48px; align-items:center; }
.hero-copy h1{
  font-size:clamp(44px,5.6vw,74px); color:var(--ink); margin:22px 0 0;
}
.hero-copy h1 .hl{ color:var(--violet); position:relative; white-space:nowrap; }
.hero-copy .lede{ font-size:19px; line-height:1.55; color:var(--ink-2); margin-top:22px; max-width:520px; }
.hero-actions{ display:flex; align-items:center; gap:16px; margin-top:30px; flex-wrap:wrap; }
.hero-trust{ display:flex; align-items:center; gap:14px; margin-top:26px; color:var(--ink-soft); font-size:14px; font-weight:600; }
.hero-trust .stars{ color:var(--orange); letter-spacing:2px; font-size:15px; }

/* hero stage */
.stage{ position:relative; display:grid; place-items:center; min-height:540px; }
.stage-glow{
  position:absolute; width:78%; aspect-ratio:1; border-radius:50%;
  background:radial-gradient(circle,rgba(138,107,247,.34),rgba(138,107,247,0) 64%);
  filter:blur(8px);
}
.phone{
  position:relative; z-index:3;
  width:288px; border-radius:46px; padding:11px;
  background:linear-gradient(160deg,#23243f,#0e0f1f);
  box-shadow:var(--shadow-lg);
}
.phone::after{ /* notch */
  content:""; position:absolute; top:20px; left:50%; transform:translateX(-50%);
  width:106px; height:26px; background:#0e0f1f; border-radius:0 0 16px 16px; z-index:4;
}
.phone img{ width:100%; border-radius:36px; display:block; }
.phone.tilt{ transform:rotate(-3deg); }

/* floating chips */
.chip{
  position:absolute; z-index:5;
  display:flex; align-items:center; gap:10px;
  background:#fff; border-radius:16px; padding:12px 15px;
  box-shadow:var(--shadow); font-weight:700; color:var(--ink);
  animation:float 5s ease-in-out infinite;
}
.chip .ic{ width:34px; height:34px; border-radius:10px; display:grid; place-items:center; font-size:18px; flex:none; }
.chip small{ display:block; font-weight:600; font-size:11px; color:var(--ink-soft); font-family:var(--font-body); }
.chip b{ font-family:var(--font-display); font-size:16px; }
.chip-streak{ top:8%; left:-6%; animation-delay:.2s; }
.chip-quest{ top:40%; right:-12%; animation-delay:1.2s; }
.chip-coin{ bottom:9%; left:-9%; animation-delay:.7s; }
@keyframes float{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-12px); } }
@media (prefers-reduced-motion: reduce){ .chip{ animation:none; } }

/* hero goblin character */
.stage-goblin{
  position:absolute; z-index:4; width:230px; right:2%; bottom:-2%;
  filter:drop-shadow(0 24px 30px rgba(24,26,55,.28));
  animation:bob 6s ease-in-out infinite;
}
@keyframes bob{ 0%,100%{ transform:translateY(0) rotate(0deg); } 50%{ transform:translateY(-10px) rotate(-1.5deg); } }
@media (prefers-reduced-motion: reduce){ .stage-goblin{ animation:none; } }

/* problem visual — addicted goblin on a soft stage */
.prob-stage{ position:relative; display:grid; place-items:center; min-height:420px; }
.prob-stage .halo{ position:absolute; width:78%; aspect-ratio:1; border-radius:50%;
  background:radial-gradient(circle, rgba(255,77,82,.18), rgba(255,77,82,0) 66%); }
.prob-stage img.goblin{ position:relative; z-index:2; width:78%; max-width:380px;
  filter:drop-shadow(0 30px 36px rgba(24,26,55,.22)); }
.prob-stage .float-num{ position:absolute; z-index:3; background:#fff; border-radius:16px;
  padding:12px 16px; box-shadow:var(--shadow); font-weight:700; color:var(--ink); }
.prob-stage .float-num b{ font-family:var(--font-display); color:var(--red); display:block; font-size:22px; }
.prob-stage .float-num small{ font-size:12px; color:var(--ink-soft); font-weight:600; }
.pn-1{ top:6%; left:0; }
.pn-2{ bottom:10%; right:0; }

/* coach image */
.coach-portrait{ position:relative; display:grid; place-items:center; }
.coach-portrait .ring{ position:absolute; width:84%; aspect-ratio:1; border-radius:50%;
  background:radial-gradient(circle, rgba(217,168,78,.32), transparent 66%); }
.coach-portrait img{ position:relative; z-index:2; width:74%; max-width:360px;
  filter:drop-shadow(0 26px 30px rgba(120,90,20,.28)); }

/* journey warrior in cta */
.journey-cta .jc-warrior{ width:150px; flex:none; filter:drop-shadow(0 18px 24px rgba(0,0,0,.4)); }

/* final cta goblins */
.final-card .fc-warrior{ position:absolute; z-index:1; width:230px; right:-30px; bottom:-30px;
  filter:drop-shadow(0 20px 30px rgba(0,0,0,.4)); opacity:.96; }
.final-card .fc-defeated{ position:absolute; z-index:1; width:150px; left:-30px; bottom:-20px;
  filter:drop-shadow(0 20px 30px rgba(0,0,0,.4)); transform:rotate(-6deg); }
@media (max-width: 760px){ .final-card .fc-warrior, .final-card .fc-defeated{ display:none; } }

/* logo cloud / honest stat strip */
.proofbar{ margin-top:14px; }
.proofbar .wrap{ display:flex; flex-wrap:wrap; gap:14px 38px; align-items:center; justify-content:center;
  border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding:26px 24px; }
.proofbar .pb-item{ display:flex; align-items:center; gap:11px; color:var(--ink-2); font-weight:700; }
.proofbar .pb-item b{ font-family:var(--font-display); font-size:26px; color:var(--ink); }
.proofbar .pb-item span{ font-size:14px; color:var(--ink-soft); font-weight:600; }
.proofbar .pb-ic{ font-size:22px; }

/* ---------- PROBLEM ---------- */
.problem{ background:var(--bg-soft); }
.problem .wrap{ display:grid; grid-template-columns:.92fr 1.08fr; gap:54px; align-items:center; }
.scene{
  position:relative; border-radius:var(--r-xl); overflow:hidden;
  box-shadow:var(--shadow); border:1px solid var(--line);
}
.scene img{ width:100%; display:block; }
.scene .scene-tag{
  position:absolute; left:20px; bottom:20px;
  background:rgba(255,255,255,.92); backdrop-filter:blur(6px);
  border-radius:14px; padding:11px 16px; font-weight:700; color:var(--ink);
  box-shadow:var(--shadow-sm);
}
.problem h2{ font-size:clamp(32px,4.4vw,52px); }
.problem h2 .strike{ text-decoration:line-through; text-decoration-color:var(--red); text-decoration-thickness:5px; color:var(--ink-faint); }
.stat-row{ display:flex; gap:14px; margin-top:30px; flex-wrap:wrap; }
.stat{ background:#fff; border-radius:var(--r); padding:20px 22px; box-shadow:var(--shadow-sm); border:1px solid var(--line); flex:1; min-width:150px; }
.stat .n{ font-family:var(--font-display); font-weight:800; font-size:34px; color:var(--violet); }
.stat .t{ font-size:14px; color:var(--ink-soft); margin-top:4px; font-weight:600; }

/* ---------- HOW IT WORKS ---------- */
.steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:56px; }
.step{
  position:relative; background:#fff; border-radius:var(--r-lg); padding:30px 28px 34px;
  box-shadow:var(--shadow); border:1px solid var(--line);
  display:flex; flex-direction:column;
}
.step .num{
  font-family:var(--font-display); font-weight:800; font-size:15px; color:#fff;
  width:38px; height:38px; border-radius:12px; display:grid; place-items:center;
  background:linear-gradient(150deg,var(--violet-2),var(--violet-deep));
  box-shadow:0 8px 16px -8px rgba(74,47,192,.7);
}
.step h3{ font-size:24px; margin:20px 0 0; }
.step p{ color:var(--ink-soft); margin-top:10px; line-height:1.55; font-size:15.5px; }
.step .mini{
  margin-top:22px; border-radius:18px; overflow:hidden; align-self:center;
  width:166px; box-shadow:var(--shadow); background:#0e0f1f; padding:6px;
}
.step .mini img{ border-radius:13px; width:100%; }
.step .arrow{ position:absolute; top:46px; right:-28px; z-index:3; color:var(--violet-2); font-size:26px; }
.step:last-child .arrow{ display:none; }

/* ---------- FEATURES (bento) ---------- */
.features{ background:linear-gradient(180deg,var(--bg) 0%, #f0effb 100%); }
.bento{ display:grid; grid-template-columns:repeat(6,1fr); gap:20px; margin-top:56px; }
.f-card{
  background:#fff; border-radius:var(--r-lg); padding:28px; border:1px solid var(--line);
  box-shadow:var(--shadow-sm); transition:transform .18s ease, box-shadow .2s ease;
  display:flex; flex-direction:column; min-height:200px;
}
.f-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow); }
.f-card .f-ic{
  width:54px; height:54px; border-radius:15px; display:grid; place-items:center;
  font-size:26px; margin-bottom:18px; flex:none;
}
.f-card h3{ font-size:21px; }
.f-card p{ color:var(--ink-soft); margin-top:9px; line-height:1.5; font-size:15px; }
.span-3{ grid-column:span 3; }
.span-2{ grid-column:span 2; }
.span-6{ grid-column:span 6; }
.f-wide{ flex-direction:row; align-items:center; gap:28px; }
.f-wide .f-ic{ margin-bottom:0; width:64px; height:64px; }
.f-wide .f-body{ flex:1; }
.ic-violet{ background:var(--violet-wash); color:var(--violet); }
.ic-orange{ background:var(--orange-wash); color:#e07400; }
.ic-red{ background:#ffe6e7; color:var(--red); }
.ic-green{ background:#d9f6e7; color:#0f9d58; }
.ic-blue{ background:#dbeafe; color:var(--blue); }
.ic-gold{ background:var(--gold-wash); color:#a9791f; }

.tag-mini{ display:inline-block; margin-top:14px; font-weight:700; font-size:12.5px; color:var(--violet-deep);
  background:var(--violet-wash); padding:5px 11px; border-radius:999px; align-self:flex-start; }

/* feature with phone */
.f-phone{ background:linear-gradient(150deg,#2b1d6e,#5436c9); color:#fff; overflow:hidden; position:relative; }
.f-phone h3{ color:#fff; }
.f-phone p{ color:rgba(255,255,255,.8); }
.f-phone .tag-mini{ background:rgba(255,255,255,.16); color:#fff; }
.f-phone .pic{ position:absolute; right:-20px; bottom:-40px; width:180px; border-radius:26px; padding:7px; background:#0e0f1f; box-shadow:var(--shadow-lg); transform:rotate(6deg); }
.f-phone .pic img{ border-radius:20px; }
.f-phone .f-body{ max-width:58%; }

/* ---------- JOURNEY ---------- */
.journey{ background:var(--ink); color:#fff; overflow:hidden; }
.journey .hero-sky{ background:radial-gradient(900px 500px at 80% 0%, rgba(138,107,247,.28), transparent 60%),
  radial-gradient(700px 460px at 10% 90%, rgba(255,138,43,.16), transparent 60%); }
.journey .eyebrow{ background:rgba(138,107,247,.2); color:#cbbcff; }
.journey .section-head h2{ color:#fff; }
.journey .section-head p{ color:rgba(255,255,255,.66); }
.journey .wrap{ position:relative; z-index:2; }
.evo{ display:grid; grid-template-columns:repeat(5,1fr); gap:16px; margin-top:54px; }
.evo-card{
  background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1);
  border-radius:var(--r); padding:22px 18px; text-align:center; position:relative;
  transition:transform .18s ease, background .2s ease;
}
.evo-card:hover{ transform:translateY(-5px); background:rgba(255,255,255,.09); }
.evo-card .lv{ font-family:var(--font-display); font-weight:700; font-size:12px; letter-spacing:.08em;
  text-transform:uppercase; color:var(--orange-2); }
.evo-card .orb{
  width:74px; height:74px; border-radius:50%; margin:14px auto 0;
  background:linear-gradient(160deg,var(--violet-2),var(--violet-deep));
  display:grid; place-items:center; font-size:32px;
  box-shadow:0 14px 30px -12px rgba(109,75,240,.8), inset 0 2px 0 rgba(255,255,255,.3);
}
.evo-card.locked .orb{ background:linear-gradient(160deg,#3a3c5e,#262842); color:rgba(255,255,255,.4); box-shadow:none; }
.evo-card h4{ font-size:18px; margin-top:16px; color:#fff; }
.evo-card .day{ font-size:13px; color:rgba(255,255,255,.5); margin-top:5px; font-weight:600; }
.evo-line{ display:flex; align-items:center; gap:14px; justify-content:space-between;
  margin-top:46px; flex-wrap:wrap; }
.journey-cta{ display:flex; align-items:center; gap:22px; margin-top:50px; flex-wrap:wrap;
  background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); border-radius:var(--r-lg); padding:28px 32px; }
.journey-cta .jc-phone{ width:172px; border-radius:28px; padding:7px; background:#0e0f1f; flex:none; box-shadow:var(--shadow-lg); }
.journey-cta .jc-phone img{ border-radius:19px; }
.journey-cta h3{ color:#fff; font-size:26px; }
.journey-cta p{ color:rgba(255,255,255,.7); margin-top:8px; line-height:1.5; }

/* ---------- STORYLINES ---------- */
.stories-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:54px; }
.story{
  background:#fff; border-radius:var(--r-lg); overflow:hidden; border:1px solid var(--line);
  box-shadow:var(--shadow-sm); transition:transform .18s ease, box-shadow .2s ease;
}
.story:hover{ transform:translateY(-5px); box-shadow:var(--shadow); }
.story .art{
  height:150px; display:grid; place-items:center; position:relative;
  font-family:var(--font-body); color:rgba(255,255,255,.85); font-size:12px; font-weight:600;
  background-size:18px 18px;
}
.story .art .emoji{ font-size:52px; filter:drop-shadow(0 6px 12px rgba(0,0,0,.25)); }
.story .body{ padding:20px 22px 24px; }
.story h4{ font-size:20px; }
.story p{ color:var(--ink-soft); font-size:14.5px; margin-top:7px; line-height:1.5; }
.story .play{ display:inline-flex; align-items:center; gap:7px; margin-top:14px; white-space:nowrap;
  font-family:var(--font-display); font-weight:700; color:#e07400; font-size:14px;
  background:var(--orange-wash); padding:7px 14px; border-radius:999px; }

.art-1{ background-color:#2f8fff; }
.art-2{ background-color:#f5a623; }
.art-3{ background-color:#ff5a4d; }
.art-4{ background-color:#3aa76d; }

/* ---------- COACH ---------- */
.coach{ background:var(--gold-wash); }
.coach .wrap{ display:grid; grid-template-columns:.8fr 1.2fr; gap:48px; align-items:center; }
.coach-card{
  background:#fff; border-radius:var(--r-xl); padding:40px; box-shadow:var(--shadow);
  border:1px solid #efe2c2; position:relative;
}
.coach-card .qmark{ font-family:var(--font-display); font-size:90px; line-height:.6; color:var(--gold); opacity:.4; }
.coach-card blockquote{ margin:0; font-family:var(--font-display); font-weight:700; font-size:clamp(22px,2.6vw,30px);
  color:var(--ink); line-height:1.25; }
.coach-card .who{ display:flex; align-items:center; gap:14px; margin-top:24px; }
.coach-card .who .av{ width:52px; height:52px; border-radius:14px; background:linear-gradient(150deg,#5b6cff,#2c2f8f);
  display:grid; place-items:center; font-size:26px; }
.coach-card .who b{ font-family:var(--font-display); font-size:17px; }
.coach-card .who span{ display:block; font-size:13px; color:var(--ink-soft); }
.coach-feats{ display:grid; gap:14px; }
.coach-feat{ display:flex; gap:16px; align-items:flex-start; background:rgba(255,255,255,.6); border-radius:var(--r);
  padding:18px 20px; border:1px solid rgba(217,168,78,.25); }
.coach-feat .ck{ width:30px; height:30px; border-radius:9px; background:var(--gold); color:#fff;
  display:grid; place-items:center; flex:none; font-weight:800; }
.coach-feat h4{ font-size:18px; }
.coach-feat p{ font-size:14.5px; color:var(--ink-2); margin-top:4px; line-height:1.5; }

/* ---------- FAQ ---------- */
.faq-list{ max-width:820px; margin:50px auto 0; display:grid; gap:14px; }
.faq{ background:#fff; border:1px solid var(--line); border-radius:var(--r); box-shadow:var(--shadow-sm); overflow:hidden; }
.faq summary{ list-style:none; cursor:pointer; padding:24px 26px; display:flex; align-items:center; justify-content:space-between;
  font-family:var(--font-display); font-weight:700; font-size:19px; color:var(--ink); }
.faq summary::-webkit-details-marker{ display:none; }
.faq summary .pm{ width:30px; height:30px; border-radius:9px; background:var(--violet-wash); color:var(--violet);
  display:grid; place-items:center; flex:none; font-size:20px; transition:transform .2s ease; }
.faq[open] summary .pm{ transform:rotate(45deg); }
.faq .ans{ padding:0 26px 24px; color:var(--ink-soft); line-height:1.6; font-size:16px; }

/* ---------- FINAL CTA ---------- */
.final{ position:relative; overflow:hidden; padding:120px 0; }
.final .glow{ position:absolute; inset:0; z-index:0;
  background:radial-gradient(800px 500px at 50% 120%, rgba(138,107,247,.4), transparent 60%); }
.final-card{
  position:relative; z-index:2; text-align:center; max-width:880px; margin:0 auto;
  background:linear-gradient(160deg,#5a3df0,#3a1fb8);
  border-radius:var(--r-xl); padding:64px 48px;
  box-shadow:var(--shadow-lg); color:#fff; overflow:hidden;
}
.final-card::before{ content:""; position:absolute; inset:0;
  background:radial-gradient(500px 280px at 85% 10%, rgba(255,174,61,.3), transparent 60%); }
.final-card > *{ position:relative; z-index:2; }
.final-card h2{ font-size:clamp(36px,5vw,58px); color:#fff; }
.final-card p{ font-size:19px; color:rgba(255,255,255,.85); margin-top:18px; max-width:560px; margin-left:auto; margin-right:auto; }
.final-actions{ display:flex; gap:16px; justify-content:center; align-items:center; margin-top:34px; flex-wrap:wrap; }
.final .store-badge{ background:#fff; color:var(--ink); }
.final .soon-pill{ color:rgba(255,255,255,.85); }

/* ---------- FOOTER ---------- */
.footer{ background:var(--bg-soft); border-top:1px solid var(--line); padding:72px 0 36px; }
.footer .top{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:36px; }
.footer .brand{ font-size:24px; }
.footer .f-about{ color:var(--ink-soft); margin-top:16px; line-height:1.6; max-width:300px; font-size:15px; }
.footer .f-store{ margin-top:22px; }
.footer h5{ font-family:var(--font-display); font-weight:700; font-size:14px; letter-spacing:.06em; text-transform:uppercase;
  color:var(--ink-faint); margin:0 0 16px; }
.footer ul{ list-style:none; padding:0; margin:0; display:grid; gap:11px; }
.footer ul a{ color:var(--ink-2); font-weight:600; font-size:15px; transition:color .15s ease; }
.footer ul a:hover{ color:var(--violet); }
.footer .bottom{ display:flex; align-items:center; justify-content:space-between; gap:16px;
  margin-top:48px; padding-top:26px; border-top:1px solid var(--line); flex-wrap:wrap; }
.footer .bottom p{ color:var(--ink-soft); font-size:14px; }
.footer .socials{ display:flex; gap:10px; }
.footer .socials a{ width:38px; height:38px; border-radius:11px; background:#fff; border:1px solid var(--line);
  display:grid; place-items:center; color:var(--ink-2); transition:transform .15s ease, color .15s; }
.footer .socials a:hover{ transform:translateY(-2px); color:var(--violet); }

/* ---------- reveal ----------
   NOTE: opacity/transform reveal removed intentionally. Preview/verifier iframes
   throttle CSS transitions, which can freeze elements at opacity:0. Content is
   always visible; .reveal is kept as a harmless hook. ------------------------- */
html.reveal-ready .reveal{ opacity:1; transform:none; }

/* ---------- responsive ---------- */
@media (max-width: 980px){
  .hero .wrap{ grid-template-columns:1fr; gap:20px; }
  .stage{ min-height:480px; order:-1; }
  .hero-copy{ text-align:center; }
  .hero-copy .lede{ margin-left:auto; margin-right:auto; }
  .hero-actions, .hero-trust{ justify-content:center; }
  .problem .wrap, .coach .wrap{ grid-template-columns:1fr; gap:34px; }
  .steps{ grid-template-columns:1fr; }
  .step .arrow{ display:none; }
  .bento{ grid-template-columns:repeat(2,1fr); }
  .span-3,.span-2,.span-6{ grid-column:span 2; }
  .f-phone .f-body{ max-width:60%; }
  .evo{ grid-template-columns:repeat(2,1fr); }
  .stories-grid{ grid-template-columns:repeat(2,1fr); }
  .footer .top{ grid-template-columns:1fr 1fr; }
}
@media (max-width: 760px){
  .nav-links{ display:none; }
  .section{ padding:74px 0; }
  .hero{ padding:34px 0 64px; }
  .bento{ grid-template-columns:1fr; }
  .span-3,.span-2,.span-6{ grid-column:span 1; }
  .f-phone .pic{ display:none; }
  .f-phone .f-body{ max-width:100%; }
  .evo{ grid-template-columns:1fr 1fr; }
  .stories-grid{ grid-template-columns:1fr; }
  .footer .top{ grid-template-columns:1fr; }
  .footer .bottom{ flex-direction:column-reverse; align-items:flex-start; }
  .chip-quest{ right:-4%; }
  .chip-streak{ left:0; }
  .chip-coin{ left:-2%; }
}

/* Mobile fix: keep comparison-card labels inside their cards */
@media (max-width: 760px){
  .stat{ padding-left:14px; padding-right:14px; }
  .stat .n{ font-size:clamp(28px,7.8vw,34px); line-height:1; white-space:nowrap; }
}
