/* ==========================================================================
   Formula Coaching — VIP Landing Page
   Brand tokens taken from the Formula brand guideline sheet.
   ========================================================================== */

/* ---------- fonts (self-hosted, no external requests) ---------- */
@font-face { font-family: 'Archivo Black'; src: url('fonts/archivoblack-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('fonts/poppins-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('fonts/poppins-500.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('fonts/poppins-600.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('fonts/poppins-700.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }

/* ---------- tokens ---------- */
:root {
  --navy: #0A263E;
  --navy-deep: #071B2C;
  --dusk: #153A53;
  --peptide-blue: #61BCD8;
  --peptide-blue-light: #8FD2E6;
  --moss: #E2FF68;
  --crisp-white: #FFFFFF;
  --fg-on-dark: #FFFFFF;
  --fg-on-dark-muted: #9FB4C4;
  --fg-on-light: #0A263E;
  --fg-on-light-muted: #4A6478;
  --border-on-dark: rgba(255, 255, 255, 0.14);
  --gradient-bar: linear-gradient(90deg, #61BCD8 0%, #E2FF68 100%);

  --display: 'Archivo Black', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --nav-h: 84px;
  --ease: cubic-bezier(0.22, 0.7, 0.3, 1);
  --wrap: 1180px;
  --pad: clamp(20px, 5vw, 40px);
}

/* ---------- reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  background: var(--navy-deep);
  color: var(--fg-on-dark);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* Visible focus for keyboard users on every interactive element. */
:focus-visible { outline: 3px solid var(--moss); outline-offset: 3px; border-radius: 2px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.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; top: -100px; left: 12px; z-index: 200;
  background: var(--moss); color: var(--navy); padding: 12px 20px;
  font-weight: 700; border-radius: 0 0 6px 6px;
}
.skip-link:focus { top: 0; }

/* ---------- type ---------- */
h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: 1.04; letter-spacing: -0.015em; text-wrap: balance; text-transform: uppercase; }
h1 { font-size: clamp(32px, 7vw, 72px); }
h2 { font-size: clamp(28px, 4.5vw, 44px); }
h3 { font-size: clamp(17px, 2vw, 21px); }
.eyebrow {
  font-family: var(--body); font-weight: 600; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--peptide-blue);
}
.lede { color: var(--fg-on-dark-muted); font-size: clamp(15px, 1.7vw, 18px); max-width: 60ch; }
.rule { height: 3px; width: 64px; background: var(--gradient-bar); border-radius: 3px; }

section { padding: clamp(56px, 8vw, 104px) 0; position: relative; }
.section-head { max-width: 720px; margin-bottom: clamp(32px, 4vw, 52px); display: flex; flex-direction: column; gap: 14px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--body); font-weight: 700; font-size: 13px;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 17px 30px; border-radius: 4px; text-align: center;
  transition: background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease), transform .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--peptide-blue); color: var(--navy); }
.btn-primary:hover { background: var(--peptide-blue-light); }
.btn-moss { background: var(--moss); color: var(--navy); }
.btn-moss:hover { background: #EDFF95; }
.btn-outline { border: 1px solid var(--border-on-dark); color: var(--fg-on-dark); }
.btn-outline:hover { border-color: var(--peptide-blue); color: var(--peptide-blue); }
.btn-block { width: 100%; }

/* ==========================================================================
   1. NAV
   ========================================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; height: var(--nav-h); z-index: 100;
  display: flex; align-items: center;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.nav.is-scrolled { background: rgba(10, 38, 62, 0.94); backdrop-filter: blur(12px); border-bottom-color: var(--border-on-dark); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; }
.brand { font-family: var(--display); font-size: 20px; letter-spacing: 0.02em; text-transform: uppercase; }
.brand span { color: var(--peptide-blue); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-size: 12px; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: var(--fg-on-dark-muted); transition: color .18s var(--ease); }
.nav-links a:hover { color: var(--peptide-blue); }
.nav-cta { flex: none; }
.burger { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--fg-on-dark); transition: transform .25s var(--ease), opacity .2s var(--ease); }
.nav.is-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .burger span:nth-child(2) { opacity: 0; }
.nav.is-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .burger { display: flex; }
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--navy); border-bottom: 1px solid var(--border-on-dark);
    padding: 8px var(--pad) 22px;
    transform: translateY(-130%); transition: transform .3s var(--ease);
  }
  .nav.is-open .nav-links { transform: translateY(0); }
  .nav-links a { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 13px; }
  /* The apply button stays visible at every width — brief requirement. */
  .nav-cta { display: inline-flex; padding: 13px 18px; font-size: 11px; }
}

/* ==========================================================================
   2. HERO
   ========================================================================== */
.hero {
  position: relative; overflow: hidden;
  padding-top: calc(var(--nav-h) + clamp(28px, 4vw, 52px));
  padding-bottom: clamp(32px, 4.5vw, 60px);
  background:
    radial-gradient(70% 55% at 78% 42%, rgba(97, 188, 216, 0.20), transparent 70%),
    var(--navy);
}
.hero-watermark {
  position: absolute; top: 46%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--display); font-size: clamp(90px, 19vw, 280px); line-height: 1;
  letter-spacing: 0.02em; white-space: nowrap; pointer-events: none;
  color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
  will-change: transform; user-select: none;
}
.hero .wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1.22fr 0.78fr; gap: clamp(24px, 4vw, 44px); align-items: end; }
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; padding-bottom: clamp(10px, 3vw, 34px); }
/* Capped below the global h1 scale: these are hard-broken lines, and 72px
   overflows the hero's copy column. */
.hero h1 { display: flex; flex-direction: column; font-size: clamp(28px, 4.5vw, 51px); }
.hero h1 span { white-space: nowrap; }
/* Highlight any phrase inside a heading: <span class="moss">…</span> */
h1 .moss, h2 .moss, h3 .moss { color: var(--moss); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-note { font-size: 13px; color: var(--fg-on-dark-muted); max-width: 44ch; }
.hero-img { position: relative; align-self: end; }
/* The photo is a cut-out that ends mid-thigh, so fade the bottom into the
   navy rather than letting it stop on a hard horizontal edge. */
.hero-img img {
  width: 100%; max-width: 420px; margin: 0 auto;
  -webkit-mask-image: linear-gradient(to bottom, #000 58%, rgba(0,0,0,.75) 76%, rgba(0,0,0,.28) 90%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 58%, rgba(0,0,0,.75) 76%, rgba(0,0,0,.28) 90%, transparent 100%);
}

@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 2px; }
  /* Deliberately small on phones: the photo sits above the copy, so a large
     one pushes the headline and buttons below the fold on landing. */
  .hero-img { max-width: 150px; margin: 0 auto; order: -1; }
  .hero-copy { align-items: flex-start; gap: 14px; }
  .hero { padding-top: calc(var(--nav-h) + 14px); }
  /* Buttons sit side by side rather than stacking, saving ~60px of height. */
  .hero-actions { gap: 10px; }
  .hero-actions .btn { flex: 1 1 auto; padding-inline: 16px; }
  /* On phones the photo sits at the top, so bring the watermark up to run
     behind it instead of behind the copy. */
  .hero-watermark { top: 232px; font-size: clamp(104px, 31vw, 150px); -webkit-text-stroke-width: 1px; }
}

/* staggered entrance */
.fade-rise { animation: fadeRise .8s var(--ease) both; }
.fade-rise:nth-child(1) { animation-delay: .05s; }
.fade-rise:nth-child(2) { animation-delay: .15s; }
.fade-rise:nth-child(3) { animation-delay: .25s; }
.fade-rise:nth-child(4) { animation-delay: .35s; }
.fade-rise:nth-child(5) { animation-delay: .45s; }
@keyframes fadeRise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

/* ==========================================================================
   3. MARQUEE
   ========================================================================== */
.marquee {
  background: var(--dusk); border-block: 1px solid var(--border-on-dark);
  overflow: hidden; padding: 15px 0; display: flex;
}
.marquee-track { display: flex; flex: none; gap: 0; animation: scrollX 42s linear infinite; }
.marquee-track span {
  font-family: var(--display); font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--fg-on-dark-muted); padding-inline: 20px; white-space: nowrap;
}
.marquee-track span::after { content: '·'; margin-left: 40px; color: var(--peptide-blue); }
@keyframes scrollX { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==========================================================================
   4. VSL
   ========================================================================== */
.vsl { background: var(--navy); }
.vsl .section-head { max-width: 640px; margin-inline: auto; text-align: center; align-items: center; }
.vsl-frame {
  max-width: 900px; margin-inline: auto; aspect-ratio: 16 / 9;
  background: var(--navy-deep); border: 1px solid var(--border-on-dark); border-radius: 10px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  position: relative; overflow: hidden;
}
.vsl-frame::before { content: ''; position: absolute; inset: 0; background: radial-gradient(50% 60% at 50% 45%, rgba(97,188,216,0.14), transparent 72%); }
.vsl-frame > * { position: relative; z-index: 1; }
.vsl-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 2; }
.play {
  width: 80px; height: 80px; border-radius: 50%; background: var(--peptide-blue);
  display: grid; place-items: center; flex: none;
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.play::after { content: ''; border-style: solid; border-width: 16px 0 16px 26px; border-color: transparent transparent transparent var(--navy); margin-left: 7px; }
button.play:hover { transform: scale(1.07); background: var(--peptide-blue-light); }
.placeholder-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-on-dark-muted); text-align: center; padding-inline: 24px; max-width: 46ch;
}
.vsl-caption { text-align: center; margin-top: 18px; font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--peptide-blue); }

/* ==========================================================================
   CREDENTIAL STRIP
   ========================================================================== */
.creds { background: var(--navy-deep); border-block: 1px solid var(--border-on-dark); padding: clamp(28px, 4vw, 44px) 0; }
.creds .wrap { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 26px; }
.cred { display: flex; flex-direction: column; gap: 4px; }
.cred b { font-family: var(--display); font-size: clamp(26px, 3.4vw, 38px); color: var(--peptide-blue); line-height: 1; }
.cred span { font-size: 12px; font-weight: 600; letter-spacing: 0.11em; text-transform: uppercase; color: var(--fg-on-dark-muted); }

/* ==========================================================================
   5. THE PROBLEM
   ========================================================================== */
.problem { background: var(--navy); }
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; }
.pcard {
  background: var(--dusk); border: 1px solid var(--border-on-dark); border-radius: 10px;
  padding: 26px 22px; display: flex; flex-direction: column; gap: 10px;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.pcard:hover { border-color: var(--peptide-blue); transform: translateY(-3px); }
.pcard b { font-family: var(--display); font-size: 13px; color: var(--peptide-blue); letter-spacing: 0.1em; }
.pcard h3 { font-size: 15px; letter-spacing: 0.04em; }
.pcard p { font-size: 14px; color: var(--fg-on-dark-muted); }
.problem-foot { margin-top: 30px; max-width: 70ch; color: var(--fg-on-dark-muted); font-size: clamp(15px, 1.6vw, 17px); border-left: 3px solid var(--moss); padding-left: 20px; }

/* ==========================================================================
   6. THE COACH
   ========================================================================== */
.coach { background: var(--navy-deep); }
.coach .wrap { display: grid; grid-template-columns: 1fr 0.85fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.coach p { color: var(--fg-on-dark-muted); margin-bottom: 16px; }
.coach-facts { display: flex; flex-direction: column; gap: 0; margin-top: 26px; border-top: 1px solid var(--border-on-dark); }
.coach-fact { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--border-on-dark); font-size: 14px; }
.coach-fact span:first-child { color: var(--fg-on-dark-muted); }
.coach-fact span:last-child { color: var(--peptide-blue); font-weight: 600; text-align: right; }
.coach-photos { display: flex; flex-direction: column; gap: 12px; }
.coach-photos img { border-radius: 10px; border: 1px solid var(--border-on-dark); }
.coach-photos figcaption { font-size: 12px; font-weight: 600; letter-spacing: 0.11em; text-transform: uppercase; color: var(--fg-on-dark-muted); margin-top: 8px; }
@media (max-width: 860px) { .coach .wrap { grid-template-columns: 1fr; } }

/* ==========================================================================
   SERVICES — four ways to work with Gary
   ========================================================================== */
.services { background: var(--navy); }
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 760px) { .svc-grid { grid-template-columns: 1fr; } }
/* Short page: only the VIP card remains, so centre it rather than leaving it
   stranded in one half of a two-column grid. */
.svc-grid--single { grid-template-columns: 1fr; max-width: 640px; margin-inline: auto; }
.svc {
  background: var(--dusk); border: 1px solid var(--border-on-dark); border-radius: 10px;
  padding: 30px 26px; display: flex; flex-direction: column; gap: 14px;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.svc:hover { transform: translateY(-3px); border-color: var(--peptide-blue); }
.svc.is-flagship { border-color: var(--moss); }
.svc-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--fg-on-dark-muted); }
.svc.is-flagship .svc-tag { color: var(--moss); }
.svc h3 { font-size: clamp(19px, 2.2vw, 24px); }
.svc-price { font-family: var(--display); font-size: clamp(28px, 3.4vw, 36px); color: var(--crisp-white); line-height: 1; }
.svc-price small { display: block; font-family: var(--body); font-size: 12px; font-weight: 500; letter-spacing: 0.06em; color: var(--fg-on-dark-muted); margin-top: 8px; line-height: 1.5; text-transform: none; }
.svc > p { font-size: 14.5px; color: var(--fg-on-dark-muted); }
.svc ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.svc li { font-size: 14px; color: var(--fg-on-dark-muted); padding-left: 24px; position: relative; line-height: 1.5; }
.svc li::before { content: '+'; position: absolute; left: 0; color: var(--peptide-blue); font-weight: 700; }
.svc-note { font-size: 12.5px; color: var(--fg-on-dark-muted); border-left: 2px solid var(--border-on-dark); padding-left: 12px; line-height: 1.5; }
.svc .btn { margin-top: auto; }

/* ==========================================================================
   7. INCLUSIONS CHECKLIST
   ========================================================================== */
.coaching { background: var(--navy-deep); }
.check-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 12px 30px; list-style: none; }
.check-grid li { display: flex; gap: 13px; align-items: flex-start; padding: 11px 0; border-bottom: 1px solid var(--border-on-dark); font-size: 15px; color: var(--fg-on-dark-muted); }
.tick { flex: none; width: 21px; height: 21px; border-radius: 50%; background: rgba(97,188,216,0.15); color: var(--peptide-blue); display: grid; place-items: center; font-size: 11px; font-weight: 700; margin-top: 2px; }
.limited { margin-bottom: 28px; padding: 18px 22px; background: var(--dusk); border-left: 3px solid var(--moss); border-radius: 6px; color: var(--fg-on-dark-muted); font-size: 15px; }

/* ==========================================================================
   8. PRICE BAND
   ========================================================================== */
.price-band { background: var(--navy); }
.price-card {
  background: linear-gradient(135deg, var(--dusk) 0%, var(--navy) 100%);
  border: 1px solid var(--peptide-blue); border-radius: 14px;
  padding: clamp(30px, 4vw, 48px);
  display: grid; grid-template-columns: 1fr auto; gap: clamp(24px, 3vw, 44px); align-items: center;
}
@media (max-width: 780px) { .price-card { grid-template-columns: 1fr; } }
.price-card h3 { font-size: clamp(20px, 2.6vw, 27px); margin-bottom: 18px; }
.price-rows { display: flex; flex-direction: column; gap: 10px; }
.price-row { display: flex; justify-content: space-between; gap: 20px; font-size: 15px; color: var(--fg-on-dark-muted); border-bottom: 1px solid var(--border-on-dark); padding-bottom: 10px; }
.price-row b { color: var(--crisp-white); font-weight: 600; }
.price-figure { text-align: center; }
.price-figure .big { font-family: var(--display); font-size: clamp(52px, 8vw, 82px); line-height: 1; color: var(--moss); }
.price-figure .sub { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-on-dark-muted); margin: 10px 0 20px; }
.price-note { font-size: 13px; color: var(--fg-on-dark-muted); margin-top: 16px; }

/* ==========================================================================
   9. RESULTS CAROUSEL
   ========================================================================== */
.results { background: var(--navy-deep); }
.carousel-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 28px; }
.car-controls { display: flex; gap: 10px; }
.car-btn {
  width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--border-on-dark);
  display: grid; place-items: center; font-size: 19px; color: var(--fg-on-dark);
  transition: background .18s var(--ease), color .18s var(--ease), opacity .18s var(--ease), border-color .18s var(--ease);
}
.car-btn:hover:not(:disabled) { background: var(--peptide-blue); color: var(--navy); border-color: var(--peptide-blue); }
.car-btn:disabled { opacity: 0.28; cursor: default; }
.rail {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -webkit-overflow-scrolling: touch; padding-bottom: 6px;
}
.rail::-webkit-scrollbar { display: none; }
.slide { flex: 0 0 auto; width: clamp(240px, 68vw, 340px); scroll-snap-align: start; }
.slide img { border-radius: 10px; border: 1px solid var(--border-on-dark); width: 100%; }
.slide figcaption { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--peptide-blue); margin-top: 12px; }
.dots { display: flex; gap: 7px; justify-content: center; margin-top: 26px; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border-on-dark); transition: background .18s var(--ease), width .18s var(--ease); }
.dot[aria-current='true'] { background: var(--peptide-blue); width: 26px; border-radius: 5px; }

/* ==========================================================================
   10. VIDEO TESTIMONIALS
   ========================================================================== */
.testimonials { background: var(--navy); }
.vid-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 800px) { .vid-grid { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; } }
.vid {
  background: var(--navy-deep); border: 1px solid var(--border-on-dark); border-radius: 10px;
  aspect-ratio: 9 / 16; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; position: relative; overflow: hidden;
}
.vid::before { content: ''; position: absolute; inset: 0; background: radial-gradient(55% 45% at 50% 42%, rgba(97,188,216,0.14), transparent 72%); }
.vid > * { position: relative; z-index: 1; }
.vid .play { width: 62px; height: 62px; }
.vid .play::after { border-width: 12px 0 12px 20px; margin-left: 5px; }

/* ==========================================================================
   11. HOW IT WORKS
   ========================================================================== */
.how { background: var(--navy-deep); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; counter-reset: step; }
.step { background: var(--dusk); border: 1px solid var(--border-on-dark); border-radius: 10px; padding: 28px 24px; display: flex; flex-direction: column; gap: 10px; position: relative; }
.step b { font-family: var(--display); font-size: 30px; color: var(--peptide-blue); line-height: 1; opacity: 0.55; }
.step h3 { font-size: 15px; letter-spacing: 0.05em; }
.step p { font-size: 14px; color: var(--fg-on-dark-muted); }

/* ==========================================================================
   12. FAQ
   ========================================================================== */
.faq { background: var(--navy); }
.faq-list { max-width: 860px; }
details { border-bottom: 1px solid var(--border-on-dark); }
details summary {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 0; cursor: pointer; list-style: none;
  font-family: var(--display); font-size: clamp(15px, 1.9vw, 19px); text-transform: uppercase; letter-spacing: -0.01em;
}
details summary::-webkit-details-marker { display: none; }
details summary::after { content: '+'; font-family: var(--body); font-size: 26px; font-weight: 300; color: var(--peptide-blue); flex: none; line-height: 1; transition: transform .22s var(--ease); }
details[open] summary::after { transform: rotate(45deg); }
details summary:hover { color: var(--peptide-blue); }
.faq-answer { padding-bottom: 24px; color: var(--fg-on-dark-muted); font-size: 15.5px; max-width: 72ch; }

/* ==========================================================================
   13. APPLY
   ========================================================================== */
.apply { background: var(--navy-deep); overflow: hidden; text-align: center; }
.apply-watermark {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--display); font-size: clamp(70px, 17vw, 230px); line-height: 1;
  white-space: nowrap; pointer-events: none; user-select: none;
  color: transparent; -webkit-text-stroke: 1px rgba(226, 255, 104, 0.13);
}
.apply .wrap { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.apply .lede { margin-inline: auto; }
.apply-price { display: flex; align-items: baseline; gap: 12px; justify-content: center; flex-wrap: wrap; }
.apply-price .big { font-family: var(--display); font-size: clamp(44px, 7vw, 70px); color: var(--moss); line-height: 1; }
.apply-price span { font-size: 13px; color: var(--fg-on-dark-muted); }
.form-slot { width: 100%; max-width: 720px; margin-top: 12px; }
/* Tall enough that Typeform's start button is visible without scrolling
   inside the frame — people don't scroll embedded forms. */
.form-slot iframe { width: 100%; height: clamp(560px, 78vh, 720px); border: 0; border-radius: 10px; display: block; }
.form-placeholder {
  border: 1px dashed var(--border-on-dark); border-radius: 10px; padding: 44px 26px;
  color: var(--fg-on-dark-muted); font-size: 14px; background: rgba(21, 58, 83, 0.4);
}
.whatsapp { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: var(--peptide-blue); }
.whatsapp:hover { color: var(--peptide-blue-light); text-decoration: underline; }

/* ==========================================================================
   14. FOOTER + STICKY BAR
   ========================================================================== */
footer { background: var(--navy); border-top: 1px solid var(--border-on-dark); padding: 46px 0 34px; }
.foot-top { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; padding-bottom: 22px; border-bottom: 1px solid var(--border-on-dark); }
.foot-links { display: flex; gap: 22px; flex-wrap: wrap; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-on-dark-muted); }
.foot-links a:hover { color: var(--peptide-blue); }
.disclaimer { margin-top: 22px; font-size: 12.5px; line-height: 1.65; color: #7C93A5; max-width: 86ch; }
.disclaimer b { color: var(--peptide-blue); }

.sticky-apply {
  position: fixed; inset: auto 0 0 0; z-index: 90; display: none;
  padding: 12px var(--pad) calc(12px + env(safe-area-inset-bottom));
  background: rgba(7, 27, 44, 0.96); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-on-dark);
  transform: translateY(110%); transition: transform .3s var(--ease);
}
.sticky-apply.is-visible { transform: translateY(0); }
@media (max-width: 860px) { .sticky-apply { display: block; } body { padding-bottom: 0; } }

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ==========================================================================
   REDUCED MOTION — disable every animation and parallax
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .btn:hover, .pcard:hover, .svc:hover { transform: none; }
}
