/* ==========================================================================
   FashionWealth — Design System
   Ink / Icy / Cream / Gold. Fraunces (display) + Space Grotesk (UI).
   Edit tokens here; everything else inherits.
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* Brand */
  --ink:        #0C1116;
  --ink-2:      #131A21;
  --ink-3:      #1B242D;
  --ink-line:   #263141;
  --icy:        #EAF6FF;
  --icy-2:      #DCEEFC;
  --cream:      #FBF5E9;
  --cream-2:    #F3E9D4;
  --gold:       #F5C542;
  --gold-deep:  #C99213;
  --warm:       #FF7A18;
  --hot:        #FF3D10;
  --white:      #FFFFFF;

  /* Text */
  --on-dark:        #E9EEF4;
  --on-dark-muted:  #9DABB9;
  --on-dark-faint:  #6C7A88;
  --on-light:       #0C1116;
  --on-light-muted: #4C5866;

  /* Type */
  --font-display: "Fraunces", "Georgia", "Times New Roman", serif;
  --font-sans: "Space Grotesk", ui-sans-serif, system-ui, -apple-system,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Fluid scale */
  /* Capped so the hero headline lands in ~3-4 lines inside its column
     rather than becoming a tall stack of single words. */
  --fs-display: clamp(2.5rem, 1.6rem + 4vw, 4.5rem);
  --fs-h1:      clamp(2.15rem, 1.3rem + 3.9vw, 4.4rem);
  --fs-h2:      clamp(1.85rem, 1.2rem + 2.9vw, 3.4rem);
  --fs-h3:      clamp(1.3rem, 1.05rem + 1.05vw, 1.85rem);
  --fs-h4:      clamp(1.1rem, 1rem + 0.45vw, 1.3rem);
  --fs-lead:    clamp(1.05rem, 0.98rem + 0.5vw, 1.35rem);
  --fs-body:    clamp(1rem, 0.97rem + 0.16vw, 1.09rem);
  --fs-sm:      0.95rem;
  --fs-label:   0.78rem;

  /* Space */
  --gap:      clamp(1rem, 0.6rem + 1.6vw, 1.75rem);
  --section-y: clamp(4.5rem, 2.5rem + 7vw, 9rem);
  --container: 1200px;
  --pad-x:    clamp(1.25rem, 0.6rem + 3vw, 2.5rem);

  /* Form */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  --shadow-card: 0 1px 2px rgba(12,17,22,.05), 0 12px 32px -12px rgba(12,17,22,.16);
  --shadow-lift: 0 2px 4px rgba(12,17,22,.06), 0 26px 60px -18px rgba(12,17,22,.26);
  --shadow-gold: 0 10px 32px -10px rgba(201,146,19,.55);

  --nav-h: 68px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* keeps sticky nav from covering anchored headings */
  scroll-padding-top: calc(var(--nav-h) + 18px);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--on-light);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; /* guards against accidental horizontal scroll */
}

img, picture, video, iframe, svg { display: block; max-width: 100%; }
img, video { height: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.022em;
  margin: 0 0 .6em;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); font-family: var(--font-sans); letter-spacing: -0.01em; }

p { margin: 0 0 1.1em; max-width: 68ch; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.15em; }
li { margin-bottom: .45em; }
strong { font-weight: 700; }

button { font: inherit; color: inherit; }

/* Accessible focus — visible on both themes */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
.sec--dark :focus-visible, .site-nav :focus-visible, .site-footer :focus-visible {
  outline-color: var(--gold);
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 50%; top: 8px; transform: translate(-50%, -140%);
  z-index: 200; background: var(--gold); color: var(--ink);
  padding: .7rem 1.2rem; border-radius: var(--r-pill);
  font-weight: 700; font-size: var(--fs-sm); text-decoration: none;
  transition: transform .18s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); }

/* ---------- 3. Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.container--narrow { max-width: 880px; }
.container--wide   { max-width: 1340px; }

.section { padding-block: var(--section-y); position: relative; }
.section > .container { position: relative; z-index: 2; }

/* Section themes */
.sec--dark  { background: var(--ink);   color: var(--on-dark); }
.sec--ink2  { background: var(--ink-2); color: var(--on-dark); }
.sec--icy   { background: var(--icy);   color: var(--on-light); }
.sec--cream { background: var(--cream); color: var(--on-light); }
.sec--white { background: var(--white); color: var(--on-light); }

.sec--dark p, .sec--ink2 p { color: var(--on-dark-muted); }
.sec--icy p, .sec--cream p, .sec--white p { color: var(--on-light-muted); }
.sec--dark h2, .sec--dark h3, .sec--ink2 h2, .sec--ink2 h3 { color: var(--white); }

/* Section headers */
.sec-head { max-width: 46rem; margin-bottom: clamp(2.25rem, 4vw, 3.5rem); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center p { margin-inline: auto; }
.sec-head p { font-size: var(--fs-lead); }

/* Eyebrow / label */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: var(--fs-label); font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 1.1rem;
}
.sec--dark .eyebrow, .sec--ink2 .eyebrow { color: var(--gold); }
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: currentColor; opacity: .75;
}

.gold { color: var(--gold-deep); }
.sec--dark .gold, .sec--ink2 .gold, .hero .gold { color: var(--gold); }

/* Editorial italic accent for display headings */
.accent-serif { font-style: italic; font-weight: 600; }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 54px; padding: .95rem 1.6rem;
  font-family: var(--font-sans); font-size: 1rem; font-weight: 700;
  letter-spacing: -0.005em; text-align: center; text-decoration: none;
  border: 2px solid transparent; border-radius: var(--r-pill);
  cursor: pointer; transition: transform .18s var(--ease), background-color .18s var(--ease),
    border-color .18s var(--ease), box-shadow .18s var(--ease), color .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold {
  background: var(--gold); color: var(--ink); border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { background: #FFD45E; border-color: #FFD45E; }

.btn--ghost-light { background: transparent; color: var(--white); border-color: rgba(233,238,244,.32); }
.btn--ghost-light:hover { border-color: var(--gold); color: var(--gold); }

.btn--ghost-dark { background: transparent; color: var(--ink); border-color: rgba(12,17,22,.22); }
.btn--ghost-dark:hover { border-color: var(--ink); background: rgba(12,17,22,.04); }

.btn--ink { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn--ink:hover { background: var(--ink-3); border-color: var(--ink-3); }

.btn--lg { min-height: 60px; padding: 1.05rem 2rem; font-size: 1.06rem; }
.btn--block { width: 100%; }

.btn .arr { transition: transform .18s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

.cta-row {
  display: flex; flex-wrap: wrap; gap: .85rem; align-items: center;
}
/* On narrow screens a stack of mismatched pill widths looks untidy and the
   primary action reads as smaller than it is — go full width instead. */
@media (max-width: 560px) {
  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row .btn { width: 100%; }
}
.cta-note {
  font-size: var(--fs-sm); color: var(--on-dark-faint);
  margin-top: 1.15rem; max-width: 42ch;
}
.sec--icy .cta-note, .sec--cream .cta-note, .sec--white .cta-note { color: var(--on-light-muted); }

/* ---------- 5. Navigation ---------- */
.site-nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color .28s var(--ease), border-color .28s var(--ease),
    backdrop-filter .28s var(--ease), box-shadow .28s var(--ease);
}
.site-nav.is-scrolled {
  background: rgba(12,17,22,.86);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom-color: var(--ink-line);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,.9);
}
/* Solid fallback where blur is unsupported */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-nav.is-scrolled { background: var(--ink); }
}

.nav-inner {
  width: 100%; max-width: var(--container); margin-inline: auto;
  padding-inline: var(--pad-x);
  display: flex; align-items: center; gap: 1rem;
}

.wordmark {
  display: inline-flex; align-items: baseline; gap: .5rem;
  font-family: var(--font-sans); font-weight: 700; font-size: 1.06rem;
  letter-spacing: -0.01em; color: var(--white); text-decoration: none;
  white-space: nowrap; margin-right: auto;
  padding-block: .55rem; /* lifts the tap target to a comfortable height */
}
.wordmark .brackets { color: var(--gold); font-weight: 700; letter-spacing: .04em; }

.nav-links {
  display: flex; align-items: center; gap: clamp(.75rem, 1.4vw, 1.6rem);
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  font-size: .93rem; font-weight: 500; color: var(--on-dark);
  text-decoration: none; padding: .45rem .2rem; white-space: nowrap;
  transition: color .16s var(--ease);
}
.nav-links a:hover { color: var(--gold); }

.nav-cta { margin-left: clamp(.5rem, 1.5vw, 1.25rem); }
.nav-cta.btn { min-height: 44px; padding: .6rem 1.25rem; font-size: .92rem; }

.nav-toggle {
  display: none; width: 46px; height: 46px; flex: 0 0 auto;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid rgba(233,238,244,.28);
  border-radius: var(--r-sm); cursor: pointer;
}
.nav-toggle span {
  display: block; position: relative; width: 20px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .22s var(--ease), background-color .22s var(--ease);
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px;
  background: var(--white); border-radius: 2px; transition: transform .22s var(--ease);
}
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after  { transform: translateY(6px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; order: 3; }
  .nav-cta { order: 2; margin-left: 0; }
  .nav-cta.btn { padding: .55rem 1rem; font-size: .88rem; }

  .nav-links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink); border-bottom: 1px solid var(--ink-line);
    padding: .5rem var(--pad-x) 1.5rem;
    max-height: calc(100dvh - var(--nav-h)); overflow-y: auto;
    /* hidden by default, revealed via [data-open] */
    display: none;
  }
  .nav-links[data-open="true"] { display: flex; }
  .nav-links li { margin: 0; border-bottom: 1px solid var(--ink-line); }
  .nav-links li:last-child { border-bottom: 0; }
  .nav-links a { display: block; padding: 1.05rem .25rem; font-size: 1.06rem; }
}

/* ---------- 6. Hero ---------- */
.hero {
  position: relative; isolation: isolate;
  background: var(--ink); color: var(--on-dark);
  padding-top: calc(var(--nav-h) + clamp(3rem, 8vw, 6rem));
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
}
/* Controlled gold light + vignette */
.hero::before {
  content: ""; position: absolute; z-index: -2; inset: 0;
  background:
    radial-gradient(58% 42% at 50% -6%, rgba(245,197,66,.20), transparent 68%),
    radial-gradient(42% 38% at 88% 12%, rgba(201,146,19,.14), transparent 70%),
    radial-gradient(70% 60% at 50% 110%, rgba(255,122,24,.07), transparent 72%);
}
/* Fine grain — inline SVG noise, no image request */
.hero::after {
  content: ""; position: absolute; z-index: -1; inset: 0; pointer-events: none;
  opacity: .5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}

/* VSL-led hero: copy, then the player, then the actions — all centred.
   Tighter top padding than the split hero so the player sits near the fold. */
.hero--vsl {
  text-align: center;
  padding-top: calc(var(--nav-h) + clamp(1.75rem, 4vw, 3.25rem));
}
.hero--vsl .hero-copy { max-width: 54rem; margin-inline: auto; }
.hero--vsl .hero-sub { margin-inline: auto; }
.hero--vsl .badge { margin-inline: auto; }

.hero-vsl {
  max-width: 940px; margin-inline: auto;
  margin-block: clamp(1.75rem, 4vw, 2.75rem);
}
.hero-vsl .video-frame {
  /* a touch more presence than a standard card */
  box-shadow: 0 50px 110px -45px rgba(0,0,0,.95),
              0 0 0 1px rgba(245,197,66,.16);
}
/* Keep the hero player clean: the caption text lives in the copy above it,
   so the overlay would just be a second thing competing for attention. */
.hero-vsl .video-meta { display: none; }

/* One short line, so it reads as a subhead rather than a paragraph */
.hero--vsl .hero-sub {
  font-size: clamp(1rem, .95rem + .4vw, 1.15rem);
  font-style: italic;
  color: var(--on-dark-muted);
  margin-bottom: 0;
}
.hero-actions { text-align: center; }
.hero-actions .cta-row { justify-content: center; }
.hero-actions .cta-note { margin-inline: auto; }

/* Simple VSL page pattern: one line of intent, one supporting line, one button */
.hero-kicker {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.15rem, 1rem + .8vw, 1.6rem); line-height: 1.25;
  letter-spacing: -0.015em; color: var(--white);
  margin: 0 auto .5rem; max-width: 34ch;
}
.hero-subkicker {
  font-size: .92rem; color: var(--on-dark-muted);
  margin: 0 auto 1.4rem; max-width: 44ch;
}
.hero-textlink {
  display: inline-block; margin-top: 1.1rem;
  font-size: .9rem; font-weight: 600; color: var(--on-dark-muted);
  text-decoration: underline; text-underline-offset: 4px;
  transition: color .16s var(--ease);
}
.hero-textlink:hover { color: var(--gold); }

.badge {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .5rem 1rem .5rem .8rem;
  font-size: var(--fs-label); font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,197,66,.07);
  border: 1px solid rgba(245,197,66,.34);
  border-radius: var(--r-pill);
  margin-bottom: clamp(1.25rem, 3vw, 1.9rem);
}
.badge .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 4px rgba(245,197,66,.18);
}

/* Capacity badge: red pulsing dot reads as "live / limited" at a glance.
   The gold frame stays so it still looks like the brand, not an alert box. */
.badge--live {
  border-color: rgba(255,61,16,.42);
  background: rgba(255,61,16,.08);
}
.badge--live .dot {
  background: var(--hot);
  box-shadow: 0 0 0 4px rgba(255,61,16,.2);
  animation: livePulse 1.9s cubic-bezier(.4,0,.2,1) infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,61,16,.6); }
  70%  { box-shadow: 0 0 0 9px rgba(255,61,16,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,61,16,0); }
}
@media (prefers-reduced-motion: reduce) {
  .badge--live .dot { animation: none; box-shadow: 0 0 0 4px rgba(255,61,16,.24); }
}

.hero h1 {
  font-size: var(--fs-display);
  color: var(--white);
  margin-bottom: 1.1rem;
}
.hero-sub {
  font-size: var(--fs-lead);
  color: var(--on-dark-muted);
  max-width: 40rem;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.4rem);
}
.hero .cta-note { color: var(--on-dark-faint); }

/* ---------- 7. Proof strip (marquee) ---------- */
.proof-strip {
  background: var(--ink-2);
  border-block: 1px solid var(--ink-line);
  padding-block: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--on-dark);
  overflow: hidden;
}
.proof-strip-head {
  text-align: center; margin-bottom: 1.5rem; padding-inline: var(--pad-x);
}
.proof-strip-head .h {
  font-family: var(--font-sans); font-weight: 700;
  font-size: var(--fs-label); letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold);
}

.marquee { position: relative; overflow: hidden; }
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: clamp(32px, 8vw, 110px);
  z-index: 2; pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(90deg, var(--ink-2), transparent); }
.marquee::after  { right: 0; background: linear-gradient(270deg, var(--ink-2), transparent); }

.marquee-track {
  display: flex; width: max-content; gap: 0;
  animation: marquee 42s linear infinite;
}
.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

.marquee-group { display: flex; align-items: stretch; }
.proof-item {
  display: flex; flex-direction: column; justify-content: center;
  gap: .3rem; padding: .35rem clamp(1.3rem, 3vw, 2.6rem);
  border-right: 1px solid var(--ink-line);
  white-space: nowrap;
}
.proof-item .num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.6rem, 1.1rem + 1.7vw, 2.5rem);
  line-height: 1; color: var(--gold); letter-spacing: -0.02em;
}
.proof-item .lbl {
  font-size: .82rem; color: var(--on-dark-muted); letter-spacing: .01em;
}

.proof-foot {
  text-align: center; margin-top: 1.5rem; padding-inline: var(--pad-x);
  font-size: .82rem; color: var(--on-dark-faint);
}
.proof-foot p { max-width: 62ch; margin-inline: auto; }

/* Reduced motion: no scroll, wrap into a readable grid */
@media (prefers-reduced-motion: reduce) {
  .marquee::before, .marquee::after { display: none; }
  .marquee-track { animation: none; width: 100%; flex-wrap: wrap; justify-content: center; }
  .marquee-group:last-child { display: none; }
  .marquee-group { flex-wrap: wrap; justify-content: center; }
  .proof-item { border-right: 0; }
}

/* ---------- 8. VSL ---------- */
.video-frame {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--ink-3);
  border: 1px solid var(--ink-line);
  box-shadow: 0 40px 90px -40px rgba(0,0,0,.85);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Click-to-load facade */
.video-facade {
  position: absolute; inset: 0; width: 100%; height: 100%;
  padding: 0; border: 0; cursor: pointer; background: var(--ink-3);
  display: block; overflow: hidden;
}
.video-facade img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease), opacity .3s var(--ease);
}
.video-facade:hover img { transform: scale(1.035); }
.video-facade::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(46% 46% at 50% 50%, rgba(12,17,22,.16), rgba(12,17,22,.5));
  pointer-events: none;
}
.play-btn {
  position: absolute; z-index: 3; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(64px, 11vw, 86px); aspect-ratio: 1;
  display: grid; place-items: center;
  background: var(--gold); color: var(--ink);
  border-radius: 50%;
  box-shadow: 0 14px 40px -10px rgba(0,0,0,.7), 0 0 0 0 rgba(245,197,66,.5);
  transition: transform .22s var(--ease), background-color .22s var(--ease);
}
.video-facade:hover .play-btn { transform: translate(-50%, -50%) scale(1.07); background: #FFD45E; }
.play-btn svg { width: 38%; height: 38%; margin-left: 8%; }

.video-meta {
  position: absolute; z-index: 3; left: 0; right: 0; bottom: 0;
  padding: clamp(1.1rem, 3vw, 1.9rem);
  background: linear-gradient(to top, rgba(12,17,22,.94), rgba(12,17,22,.55) 55%, transparent);
  text-align: left; pointer-events: none;
}
.video-meta .t {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.05rem, .95rem + .7vw, 1.45rem); line-height: 1.15;
  color: var(--white); letter-spacing: -0.015em;
}
.video-meta .d {
  font-size: .84rem; color: var(--on-dark-muted); margin-top: .35rem;
  display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
}
.dur-chip {
  display: inline-block; padding: .16rem .5rem; border-radius: 6px;
  background: rgba(233,238,244,.14); color: var(--on-dark);
  font-size: .78rem; font-weight: 600;
}

/* ---------- 9. Problem vs System ---------- */
.compare {
  display: grid; gap: var(--gap); grid-template-columns: 1fr;
}
@media (min-width: 860px) { .compare { grid-template-columns: 1fr 1fr; } }

.compare-card {
  padding: clamp(1.5rem, 3.2vw, 2.4rem);
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid rgba(12,17,22,.1);
  box-shadow: var(--shadow-card);
}
.compare-card--bad { background: var(--white); }
.compare-card--good {
  background: var(--ink); color: var(--on-dark);
  border-color: var(--ink-line);
  box-shadow: var(--shadow-lift);
  position: relative; overflow: hidden;
}
.compare-card--good::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 40% at 100% 0%, rgba(245,197,66,.14), transparent 70%);
}
.compare-card--good h3 { color: var(--white); }

.compare-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: var(--fs-label); font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; margin-bottom: 1rem;
  padding: .4rem .8rem; border-radius: var(--r-pill);
}
.compare-card--bad  .compare-tag { color: #A6410F; background: rgba(255,61,16,.09); border: 1px solid rgba(255,61,16,.24); }
.compare-card--good .compare-tag { color: var(--gold); background: rgba(245,197,66,.09); border: 1px solid rgba(245,197,66,.32); }

.check-list { list-style: none; padding: 0; margin: 1.25rem 0 0; }
.check-list li {
  position: relative; padding-left: 2rem; margin-bottom: .85rem;
  font-size: var(--fs-body); line-height: 1.55;
}
.check-list li:last-child { margin-bottom: 0; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .42em;
  width: 18px; height: 18px; border-radius: 50%;
  background-repeat: no-repeat; background-position: center; background-size: 11px;
}
/* cross */
.check-list--x li { color: var(--on-light-muted); }
.check-list--x li::before {
  background-color: rgba(255,61,16,.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C0330C' stroke-width='3.4' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E");
}
/* check */
.check-list--v li { color: var(--on-dark); }
.check-list--v li::before {
  background-color: rgba(245,197,66,.16);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F5C542' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.5l5.2 5.2L20 7'/%3E%3C/svg%3E");
}
/* dark-section variant of the x list */
.sec--dark .check-list--x li, .sec--ink2 .check-list--x li { color: var(--on-dark-muted); }

.reframe {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.4rem, 3vw, 2.1rem) clamp(1.4rem, 3vw, 2.4rem);
  border-left: 3px solid var(--gold);
  background: rgba(245,197,66,.07);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  max-width: 62rem;
}
.reframe p {
  font-family: var(--font-display); font-size: var(--fs-h3);
  line-height: 1.28; color: var(--on-light); font-weight: 600;
  letter-spacing: -0.015em; margin: 0;
  max-width: none;
}
.sec--dark .reframe p, .sec--ink2 .reframe p { color: var(--white); }

/* ---------- 10. Phases ---------- */
.phases { display: grid; gap: var(--gap); grid-template-columns: 1fr; counter-reset: ph; }
@media (min-width: 780px)  { .phases { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .phases { grid-template-columns: repeat(3, 1fr); } }

.phase {
  position: relative; display: flex; flex-direction: column;
  padding: clamp(1.6rem, 3vw, 2.3rem);
  border-radius: var(--r-lg);
  background: var(--cream);
  border: 1px solid rgba(12,17,22,.09);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.phase:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.phase::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
}
.phase-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.6rem, 2rem + 2.4vw, 4rem); line-height: .9;
  color: var(--gold-deep); opacity: .32; letter-spacing: -0.04em;
  margin-bottom: .5rem;
}
.phase-days {
  display: inline-block; font-size: var(--fs-label); font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--ink); background: rgba(12,17,22,.07);
  padding: .38rem .75rem; border-radius: var(--r-pill);
  margin-bottom: .9rem;
}
.phase h3 { margin-bottom: .75rem; }
.phase ul {
  list-style: none; padding: 0; margin: 0; border-top: 1px solid rgba(12,17,22,.1);
  padding-top: 1rem;
}
.phase li {
  position: relative; padding-left: 1.15rem; margin-bottom: .55rem;
  font-size: var(--fs-sm); color: var(--on-light-muted); line-height: 1.5;
}
.phase li::before {
  content: ""; position: absolute; left: 0; top: .6em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold-deep);
}

/* ---------- 11. Includes grid ---------- */
.cards {
  display: grid; gap: var(--gap);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
}
.card {
  position: relative; display: flex; flex-direction: column;
  padding: clamp(1.4rem, 2.6vw, 1.9rem);
  border-radius: var(--r-md);
  background: var(--white);
  border: 1px solid rgba(12,17,22,.1);
  box-shadow: var(--shadow-card);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); border-color: rgba(201,146,19,.42); }
.card h3 { font-size: var(--fs-h4); font-family: var(--font-sans); font-weight: 700; margin-bottom: .5rem; }
.card p { font-size: var(--fs-sm); margin: 0; }

.tag-included {
  align-self: flex-start; display: inline-flex; align-items: center; gap: .4rem;
  font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-deep); background: rgba(245,197,66,.14);
  border: 1px solid rgba(201,146,19,.3);
  padding: .3rem .6rem; border-radius: var(--r-pill);
  margin-bottom: .9rem;
}
.tag-included svg { width: 11px; height: 11px; }

/* ---------- 12. Case studies ---------- */
.case-grid {
  display: grid; gap: var(--gap);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}
.case-card {
  display: flex; flex-direction: column;
  background: var(--ink-2); border: 1px solid var(--ink-line);
  border-radius: var(--r-md); overflow: hidden;
  transition: transform .2s var(--ease), border-color .2s var(--ease);
}
.case-card:hover { transform: translateY(-3px); border-color: rgba(245,197,66,.4); }
.case-card .video-frame {
  border-radius: 0; border: 0; border-bottom: 1px solid var(--ink-line);
  box-shadow: none;
}
.case-body { padding: clamp(1.1rem, 2.4vw, 1.5rem); }
.case-body h3 {
  font-size: var(--fs-h4); font-family: var(--font-display); font-weight: 700;
  color: var(--white); margin-bottom: .4rem; line-height: 1.2;
}
.case-body p { font-size: var(--fs-sm); margin: 0; color: var(--on-dark-muted); }

/* ---------- 12b. Results carousel ---------- */
.carousel { position: relative; }

.car-track {
  display: flex; gap: var(--gap);
  list-style: none; margin: 0; padding: 0 0 .5rem;
  overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  /* hide the native bar; the arrows and dots are the affordance */
  scrollbar-width: none; -ms-overflow-style: none;
}
.car-track::-webkit-scrollbar { display: none; }
@media (prefers-reduced-motion: reduce) { .car-track { scroll-behavior: auto; } }

.car-slide {
  flex: 0 0 100%; min-width: 0; margin: 0;
  scroll-snap-align: center;
}
@media (min-width: 760px)  { .car-slide { flex-basis: 60%; } }
@media (min-width: 1100px) { .car-slide { flex-basis: 44%; } }

.win { margin: 0; display: flex; flex-direction: column; height: 100%; }
.win-shot {
  position: relative; display: block; width: 100%; padding: 0;
  background: var(--ink); border: 1px solid var(--ink-line);
  border-radius: var(--r-md); overflow: hidden; cursor: zoom-in;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.win-shot:hover { border-color: rgba(245,197,66,.5); transform: translateY(-3px); }
/* contain, never cover — screenshots must not lose their numbers */
.win-shot img {
  width: 100%; height: clamp(280px, 42vw, 420px);
  object-fit: contain; object-position: center;
  background: #0A0E12; padding: .5rem;
}
.win figcaption {
  margin-top: .85rem; font-size: var(--fs-sm); line-height: 1.5;
  color: var(--on-dark-muted);
}
.win figcaption strong { color: var(--white); }
.sec--icy .win figcaption, .sec--cream .win figcaption { color: var(--on-light-muted); }

/* Arrows */
.car-arrow {
  position: absolute; top: clamp(140px, 21vw, 210px); z-index: 4;
  transform: translateY(-50%);
  width: 52px; height: 52px; display: grid; place-items: center;
  border-radius: 50%; cursor: pointer;
  background: var(--gold); color: var(--ink); border: 0;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,.7);
  transition: background-color .18s var(--ease), transform .18s var(--ease), opacity .18s var(--ease);
}
.car-arrow:hover { background: #FFD45E; transform: translateY(-50%) scale(1.07); }
.car-arrow svg { width: 22px; height: 22px; }
.car-arrow--prev { left: -10px; }
.car-arrow--next { right: -10px; }
.car-arrow[disabled] { opacity: .3; cursor: default; }
.car-arrow[disabled]:hover { transform: translateY(-50%); background: var(--gold); }
@media (min-width: 1340px) {
  .car-arrow--prev { left: -26px; }
  .car-arrow--next { right: -26px; }
}
@media (max-width: 620px) {
  .car-arrow { width: 46px; height: 46px; }
  .car-arrow--prev { left: 2px; }
  .car-arrow--next { right: 2px; }
}

/* Dots */
.car-dots {
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap; gap: .55rem; margin-top: clamp(1.25rem, 3vw, 1.9rem);
}
.car-dot {
  width: 34px; height: 34px; padding: 0; border: 0; background: none;
  cursor: pointer; display: grid; place-items: center;
}
.car-dot::before {
  content: ""; width: 9px; height: 9px; border-radius: 50%;
  background: rgba(233,238,244,.28);
  transition: background-color .2s var(--ease), transform .2s var(--ease), width .2s var(--ease);
}
.car-dot:hover::before { background: rgba(245,197,66,.6); }
.car-dot[aria-selected="true"]::before {
  background: var(--gold); width: 26px; border-radius: var(--r-pill);
}
.sec--icy .car-dot::before, .sec--cream .car-dot::before { background: rgba(12,17,22,.22); }
.sec--icy .car-dot[aria-selected="true"]::before,
.sec--cream .car-dot[aria-selected="true"]::before { background: var(--gold-deep); }

.car-hint {
  text-align: center; font-size: .82rem; color: var(--on-dark-faint);
  margin-top: .75rem;
}

/* ---------- Mobile-only carousel (What You Get) ----------
   Above the breakpoint this is an ordinary grid and the controls are hidden.
   Below it, the same container becomes a scroll-snap track. */
@media (min-width: 760px) {
  .carousel--mobile .car-arrow,
  .carousel--mobile .car-dots { display: none; }
}
@media (max-width: 759px) {
  .carousel--mobile .cards {
    display: flex; flex-wrap: nowrap;
    grid-template-columns: none;
    overflow-x: auto; overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory; scroll-behavior: smooth;
    scrollbar-width: none; -ms-overflow-style: none;
    padding-bottom: .25rem;
  }
  .carousel--mobile .cards::-webkit-scrollbar { display: none; }
  .carousel--mobile .cards > .card {
    flex: 0 0 84%; min-width: 0; scroll-snap-align: center;
  }
  .carousel--mobile .car-arrow { top: 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .carousel--mobile .cards { scroll-behavior: auto; }
}

/* ---------- 13. Proof gallery ---------- */
.zoom-hint {
  position: absolute; z-index: 2; right: .7rem; bottom: .7rem;
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .4rem .7rem; border-radius: var(--r-pill);
  background: rgba(12,17,22,.82); color: var(--on-dark);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(233,238,244,.16);
  font-size: .74rem; font-weight: 600; letter-spacing: .02em;
}
/* Lightbox */
/* NOTE: a <dialog> is hidden by the UA stylesheet only via
   `dialog:not([open]) { display: none }`. Setting `display` on `.lightbox`
   unconditionally would beat that rule and leave the overlay covering the
   page on load — so the display switch must be keyed off [open]. */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  display: none;
  place-items: center;
  padding: clamp(.75rem, 3vw, 2.5rem);
  background: rgba(6,9,12,.94);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 0; width: 100%; max-width: 100%; height: 100%; max-height: 100%;
}
.lightbox[open] { display: grid; }
.lightbox::backdrop { background: rgba(6,9,12,.94); }
.lightbox-inner {
  position: relative; display: flex; flex-direction: column; gap: .9rem;
  max-width: min(1400px, 100%); max-height: 100%;
}
.lightbox img {
  max-width: 100%; max-height: calc(100dvh - 9rem);
  width: auto; object-fit: contain;
  border-radius: var(--r-sm); border: 1px solid var(--ink-line);
  background: var(--ink-2);
}
.lightbox-cap { font-size: var(--fs-sm); color: var(--on-dark-muted); text-align: center; max-width: 70ch; margin-inline: auto; }
.lightbox-close {
  position: absolute; top: -.4rem; right: -.4rem; transform: translate(40%, -40%);
  width: 46px; height: 46px; display: grid; place-items: center;
  border-radius: 50%; background: var(--gold); color: var(--ink);
  border: 0; cursor: pointer; font-size: 1.4rem; line-height: 1;
}
@media (max-width: 620px) {
  .lightbox-close { transform: none; top: .25rem; right: .25rem; }
}

/* ---------- 14. Meet your mentor ---------- */
.mentor-grid {
  display: grid; gap: clamp(2rem, 4.5vw, 4.5rem); grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 960px) {
  .mentor-grid { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); }
}

.mentor-media { position: relative; }
/* Soft gold halo behind the card */
.mentor-media::before {
  content: ""; position: absolute; z-index: 0;
  inset: 6% -4% -4% -4%;
  border-radius: var(--r-xl);
  background: radial-gradient(60% 50% at 50% 50%, rgba(245,197,66,.42), transparent 72%);
  filter: blur(34px);
  pointer-events: none;
}

.mentor-card {
  position: relative; z-index: 1; margin: 0;
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--ink-2);
  border: 1px solid rgba(12,17,22,.14);
  box-shadow: 0 2px 4px rgba(12,17,22,.06), 0 34px 70px -24px rgba(12,17,22,.42);
}
.mentor-photo {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center;
  display: block;
}

.mentor-id {
  position: absolute; inset: auto 0 0 0;
  padding: clamp(1.1rem, 3vw, 1.6rem);
  background: linear-gradient(to top, rgba(8,11,15,.92) 12%, rgba(8,11,15,.55) 62%, transparent);
  color: var(--white);
}
.mentor-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.6rem, 1.2rem + 1.7vw, 2.25rem); line-height: 1;
  letter-spacing: -0.02em; color: var(--white); margin: 0;
}
.mentor-role {
  font-size: .86rem; color: rgba(233,238,244,.78);
  margin: .3rem 0 0; max-width: none;
}
.mentor-socials { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .9rem; }
.social-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  min-height: 40px; padding: .45rem .85rem;
  font-size: .84rem; font-weight: 600; text-decoration: none;
  color: var(--white);
  background: rgba(255,255,255,.12);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-pill);
  transition: background-color .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}
.social-pill svg { width: 15px; height: 15px; flex: 0 0 auto; }
.social-pill:hover {
  background: var(--gold); border-color: var(--gold); color: var(--ink);
}

.mentor-copy .eyebrow { margin-bottom: .9rem; }
.mentor-copy h2 { margin-bottom: 1.1rem; }

/* Stat tiles: confirmed offer facts, not performance claims */
.stat-tiles {
  list-style: none; margin: clamp(1.75rem, 3.5vw, 2.5rem) 0 0; padding: 0;
  display: grid; gap: .7rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 620px) { .stat-tiles { grid-template-columns: repeat(4, 1fr); } }
/* Three-up variant: full width tiles on phones, since the labels are longer */
.stat-tiles--3 { grid-template-columns: 1fr; }
@media (min-width: 520px) { .stat-tiles--3 { grid-template-columns: repeat(3, 1fr); } }

.stat-note {
  margin-top: .85rem;
  font-size: .78rem; line-height: 1.5;
  color: var(--on-light-muted); opacity: .85;
}
.stat-tiles li {
  margin: 0; padding: 1.05rem .8rem;
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(12,17,22,.1);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-card);
}
.stat-num {
  display: block;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.45rem, 1.2rem + 1vw, 1.9rem); line-height: 1;
  letter-spacing: -0.02em; color: var(--gold-deep);
}
.stat-lbl {
  display: block; margin-top: .4rem;
  font-size: .78rem; font-weight: 600; line-height: 1.3;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--on-light-muted);
}

/* ---------- 15. Fit columns ---------- */
.fit-grid { display: grid; gap: var(--gap); grid-template-columns: 1fr; }
@media (min-width: 860px) { .fit-grid { grid-template-columns: 1fr 1fr; } }

.fit-col {
  padding: clamp(1.6rem, 3.2vw, 2.4rem);
  border-radius: var(--r-lg);
}
.fit-col--yes {
  background: var(--ink); color: var(--on-dark); border: 1px solid var(--ink-line);
  position: relative; overflow: hidden;
}
.fit-col--yes::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 45% at 0% 0%, rgba(245,197,66,.13), transparent 70%);
}
.fit-col--yes h3 { color: var(--white); }
.fit-col--no {
  background: var(--white); border: 1px solid rgba(12,17,22,.11);
  box-shadow: var(--shadow-card);
}

/* ---------- 16. Application CTA band ---------- */
.cta-band {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--ink); color: var(--on-dark);
}
.cta-band::before {
  content: ""; position: absolute; z-index: -1; inset: 0;
  background:
    radial-gradient(52% 60% at 50% 0%, rgba(245,197,66,.19), transparent 68%),
    radial-gradient(40% 50% at 92% 100%, rgba(255,122,24,.09), transparent 70%);
}
.cta-band .container { text-align: center; }
.cta-band h2 { color: var(--white); max-width: 30ch; margin-inline: auto; }
.cta-band p { margin-inline: auto; }
.cta-band .cta-row { justify-content: center; }
.cta-band .cta-note { margin-inline: auto; }

/* ---------- 17. Tally application ---------- */
.apply-shell {
  background: var(--white);
  border: 1px solid rgba(12,17,22,.12);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lift);
  padding: clamp(.6rem, 2vw, 1.5rem);
  overflow: hidden; /* keeps rounded corners clean */
}
/* The min-height only reserves room for the loading spinner. Once Tally reports
   its real height (dynamicHeight=1 sets an inline height on the iframe) the
   min-height is dropped, otherwise it would floor the embed taller than the
   form and leave dead space under the last question. */
.tally-wrap { position: relative; min-height: 420px; }
.tally-wrap iframe {
  width: 100%; min-height: 420px; border: 0; display: block;
}
.tally-wrap.is-sized, .tally-wrap.is-sized iframe { min-height: 0; }
.tally-loading {
  position: absolute; inset: 0; display: grid; place-items: center;
  gap: .75rem; text-align: center; padding: 2rem;
  color: var(--on-light-muted); font-size: var(--fs-sm);
}
.spinner {
  width: 30px; height: 30px; border-radius: 50%;
  border: 3px solid rgba(12,17,22,.14); border-top-color: var(--gold-deep);
  animation: spin .8s linear infinite; margin-inline: auto;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .spinner { animation-duration: 2.4s; } }

.apply-fallback {
  text-align: center; margin-top: 1.4rem; font-size: var(--fs-sm);
}
.apply-fallback a { color: var(--gold-deep); font-weight: 700; }

/* ---------- 18. FAQ ---------- */
.faq { max-width: 900px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid rgba(12,17,22,.14);
}
.sec--dark .faq-item, .sec--ink2 .faq-item { border-bottom-color: var(--ink-line); }
.faq-item summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1.25rem;
  padding: clamp(1.1rem, 2.4vw, 1.5rem) 0;
  cursor: pointer; list-style: none;
  font-family: var(--font-sans); font-weight: 700;
  font-size: clamp(1.03rem, .98rem + .35vw, 1.18rem);
  line-height: 1.4; color: var(--on-light);
  transition: color .16s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-deep); }
.faq-item .ico {
  flex: 0 0 auto; width: 26px; height: 26px; margin-top: .1em;
  position: relative; border-radius: 50%;
  background: rgba(12,17,22,.06); transition: background-color .2s var(--ease);
}
.faq-item .ico::before, .faq-item .ico::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 11px; height: 2px; border-radius: 2px;
  background: var(--on-light); transform: translate(-50%, -50%);
  transition: transform .22s var(--ease), background-color .2s var(--ease);
}
.faq-item .ico::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .ico { background: var(--gold); }
.faq-item[open] .ico::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-answer { padding: 0 0 clamp(1.1rem, 2.4vw, 1.6rem); max-width: 68ch; }
.faq-answer p { font-size: var(--fs-body); }
.faq-answer p:last-child { margin-bottom: 0; }

/* ---------- 19. Disclaimer note ---------- */
.disclaimer {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.1rem, 2.4vw, 1.5rem);
  border: 1px dashed rgba(12,17,22,.2);
  border-radius: var(--r-md);
  font-size: .86rem; line-height: 1.6;
  color: var(--on-light-muted);
  max-width: 70rem;
}
.sec--dark .disclaimer, .sec--ink2 .disclaimer, .cta-band .disclaimer {
  border-color: var(--ink-line); color: var(--on-dark-faint);
}
.disclaimer p { max-width: none; font-size: inherit; color: inherit; }

/* ---------- 20. Footer ---------- */
.site-footer {
  background: var(--ink); color: var(--on-dark-muted);
  border-top: 1px solid var(--ink-line);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  font-size: var(--fs-sm);
}
.footer-grid {
  display: grid; gap: clamp(2rem, 4vw, 3rem);
  grid-template-columns: 1fr;
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--ink-line);
}
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }

.site-footer h2, .site-footer h3 {
  font-family: var(--font-sans); font-size: .8rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--white); margin-bottom: 1.1rem;
}
.footer-brand .wordmark { margin-bottom: 1rem; font-size: 1.2rem; }
.footer-brand p { max-width: 34ch; color: var(--on-dark-muted); }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: .2rem; }
/* Inline-block + vertical padding so the tap target clears 44px on touch */
.footer-list a {
  display: inline-flex; align-items: center; min-height: 44px;
  padding-block: .35rem;
  color: var(--on-dark-muted); text-decoration: none;
  transition: color .16s var(--ease);
}
.footer-list a:hover { color: var(--gold); text-decoration: underline; }

/* Same treatment for the remaining footer/legal links */
.footer-bottom a, .footer-legal a {
  display: inline-flex; align-items: center; min-height: 44px; padding-block: .35rem;
}

.footer-bottom {
  padding-top: 1.75rem;
  display: flex; flex-wrap: wrap; gap: 1rem 1.5rem;
  align-items: center; justify-content: space-between;
  font-size: .82rem; color: var(--on-dark-faint);
}
.footer-legal { max-width: 78ch; }
.footer-legal p { font-size: .82rem; color: var(--on-dark-faint); margin-bottom: .5rem; }

/* ---------- 20b. Confirmation page ---------- */

/* Green-tinted "done" variant of the badge */
.badge--done {
  color: #7CE0A8;
  border-color: rgba(124,224,168,.4);
  background: rgba(124,224,168,.08);
}
.badge--done .tick {
  display: inline-flex; align-items: center; justify-content: center;
  width: 15px; height: 15px; flex: 0 0 auto;
}
.badge--done .tick svg { width: 100%; height: 100%; }

/* Attention card for the "keep your phone nearby" notice */
.alert-card {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border-radius: var(--r-lg);
  background: rgba(255,61,16,.07);
  border: 1px solid rgba(255,61,16,.34);
  border-left: 4px solid var(--hot);
}
.alert-kicker {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: var(--fs-label); font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: #FF8A62; margin: 0 0 .75rem;
}
.alert-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--hot);
  animation: livePulse 1.9s cubic-bezier(.4,0,.2,1) infinite;
}
@media (prefers-reduced-motion: reduce) { .alert-dot { animation: none; } }
.alert-card h2 { margin-bottom: .6rem; }
.alert-card p:last-child { margin-bottom: 0; }
.alert-card strong { color: var(--white); }

/* Video inside an FAQ answer */
.faq-video { margin-bottom: 1.1rem; max-width: 620px; }
.faq-video .video-frame { border-radius: var(--r-md); }

/* Shown when someone reaches the confirmation page without applying */
.gate-block {
  min-height: 100dvh; display: grid; place-items: center; text-align: center;
  background: var(--ink); color: var(--on-dark);
  padding: calc(var(--nav-h) + 3rem) var(--pad-x) 4rem;
  position: relative; isolation: isolate; overflow: hidden;
}
.gate-block::before {
  content: ""; position: absolute; z-index: -1; inset: 0;
  background: radial-gradient(55% 45% at 50% 0%, rgba(245,197,66,.14), transparent 70%);
}
.gate-block h1 { color: var(--white); }
.gate-block p { margin-inline: auto; }

/* ---------- 21. 404 ---------- */
.err-page {
  min-height: 100dvh; display: grid; place-items: center;
  text-align: center; background: var(--ink); color: var(--on-dark);
  padding: calc(var(--nav-h) + 2rem) var(--pad-x) 3rem;
  position: relative; isolation: isolate; overflow: hidden;
}
.err-page::before {
  content: ""; position: absolute; z-index: -1; inset: 0;
  background: radial-gradient(55% 45% at 50% 0%, rgba(245,197,66,.16), transparent 70%);
}
.err-code {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(5rem, 3rem + 14vw, 12rem); line-height: .85;
  color: var(--gold); letter-spacing: -0.05em; margin-bottom: 1rem;
}
.err-page h1 { color: var(--white); }
.err-page p { margin-inline: auto; }
.err-page .cta-row { justify-content: center; }

/* ---------- 22. Legal pages ---------- */
.legal { padding-top: calc(var(--nav-h) + clamp(2.5rem, 6vw, 4.5rem)); }
.legal h1 { margin-bottom: .5rem; }
.legal .updated { font-size: var(--fs-sm); color: var(--on-light-muted); margin-bottom: 2.5rem; }
.legal h2 {
  font-size: var(--fs-h3); margin-top: 2.5rem;
  padding-top: 1.5rem; border-top: 1px solid rgba(12,17,22,.12);
}
.legal ul { max-width: 68ch; }
.legal li { color: var(--on-light-muted); }

/* ---------- 23. Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .btn:hover, .card:hover, .phase:hover, .case-card:hover, .proof-shot:hover,
  .video-facade:hover img, .video-facade:hover .play-btn { transform: none; }
}

/* Reveal-on-scroll (progressive enhancement; JS adds .is-in) */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
/* If JS never runs, never hide content */
.no-js .reveal { opacity: 1; transform: none; }

/* ==========================================================================
   24. Mobile polish
   Most traffic arrives from Instagram / Meta Ads, so phones get an explicit
   pass: less vertical padding, tighter card padding, shorter media, and
   nothing that needs a precise tap.
   ========================================================================== */
@media (max-width: 759px) {
  :root {
    --section-y: 3.25rem;
    --gap: .9rem;
    /* Hero headline is long, so on a phone it needs to be a readable size
       rather than a poster size. ~32px at 390px wide. */
    --fs-display: clamp(1.85rem, 1.3rem + 3vw, 2.5rem);
    --fs-h2: clamp(1.7rem, 1.15rem + 2.6vw, 2.1rem);
    --fs-h3: 1.22rem;
    --fs-lead: 1.02rem;
  }

  /* Tight display leading looks cramped once a headline wraps to 4 lines */
  .hero--vsl h1 { line-height: 1.13; letter-spacing: -0.018em; }
  .hero--vsl .hero-sub { font-size: .95rem; }
  .hero-kicker { font-size: 1.1rem; }
  .hero-subkicker { font-size: .86rem; }
  .badge { font-size: .68rem; letter-spacing: .1em; padding: .45rem .8rem .45rem .7rem; }

  /* Hero: get the video closer to the fold */
  .hero--vsl { padding-top: calc(var(--nav-h) + 1.25rem); padding-bottom: 2.5rem; }
  .hero-vsl { margin-block: 1.35rem; }
  .hero-sub { font-size: 1.02rem; }

  /* Proof marquee: smaller, quicker to read past */
  .proof-item { padding-inline: 1.1rem; }
  .proof-item .num { font-size: 1.5rem; }
  .proof-item .lbl { font-size: .76rem; }

  /* Cards and panels: reclaim horizontal space */
  .card { padding: 1.25rem; }
  .phase { padding: 1.35rem; }
  .compare-card, .fit-col { padding: 1.35rem; }
  .reframe { padding: 1.15rem 1.25rem; }
  .apply-shell { padding: .35rem; border-radius: var(--r-md); }

  /* Results carousel: shorter slides, arrows centred on the image */
  .win-shot img { height: 260px; }
  .carousel .car-arrow { top: 145px; }
  .car-dot { width: 30px; height: 30px; }

  /* Long lists breathe less */
  .check-list li { margin-bottom: .7rem; padding-left: 1.75rem; }
  .phase ul { padding-top: .8rem; }

  /* Mentor card should not eat the whole screen */
  .mentor-photo { aspect-ratio: 1 / 1; }
  .mentor-media::before { display: none; }

  /* Section headers */
  .sec-head { margin-bottom: 1.75rem; }
}

/* Very narrow phones */
@media (max-width: 380px) {
  .carousel--mobile .cards > .card { flex-basis: 90%; }
  .win-shot img { height: 230px; }
  .carousel .car-arrow { top: 130px; }
}

/* ---------- 25. Print ---------- */
@media print {
  .site-nav, .video-facade, .lightbox, .marquee::before, .marquee::after { display: none !important; }
  body { background: #fff; color: #000; }
  .sec--dark, .sec--ink2, .cta-band, .hero { background: #fff !important; color: #000 !important; }
}
