/* ============================================================================
   NEW HEITS FITNESS — design system
   Aesthetic: Elite Athletic Luxury. Near-black canvas, gold-foil accents,
   condensed poster display (Anton) + refined geometric body (Sora).
   Mobile-first. Vanilla. No build step.
   ========================================================================== */

/* ---- tokens ---------------------------------------------------------------*/
:root {
  --ink:        #0a0a0b;
  --ink-1:      #0e0e10;
  --ink-2:      #141417;
  --ink-3:      #1b1b20;
  --line:       rgba(212, 175, 55, 0.16);
  --line-soft:  rgba(255, 255, 255, 0.08);

  --gold:        #d4af37;
  --gold-bright: #f4dd8a;
  --gold-deep:   #9e7c1e;
  --gold-grad:   linear-gradient(180deg, #f4dd8a 0%, #d4af37 46%, #9e7c1e 100%);
  --gold-sheen:  linear-gradient(135deg, #f7e7a8 0%, #d4af37 40%, #b8941f 70%, #f4dd8a 100%);

  --bone:   #ece8df;
  --white:  #ffffff;
  --smoke:  #b2aca0;
  --smoke-2:#948e82;

  --danger: #e5564b;

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body:    'Sora', system-ui, -apple-system, sans-serif;

  --maxw: 1200px;
  --gutter: clamp(1.15rem, 5vw, 2.5rem);
  --radius: 16px;
  --radius-sm: 11px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 24px 60px -22px rgba(0, 0, 0, 0.75);
  --shadow-gold: 0 18px 50px -20px rgba(212, 175, 55, 0.45);
}

/* ---- reset ----------------------------------------------------------------*/
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--bone);
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ---- atmosphere: grain + page glow ----------------------------------------*/
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.035; mix-blend-mode: screen;
}

/* ---- typography -----------------------------------------------------------*/
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; line-height: 0.95; letter-spacing: 0.01em; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 0.7em;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--gold-grad); flex: none;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ""; width: 26px; height: 1px; background: var(--gold-grad); }

.gold-text {
  background: var(--gold-sheen);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.lede { font-size: clamp(1.02rem, 1.6vw, 1.22rem); color: var(--smoke); max-width: 60ch; }

/* ---- layout ---------------------------------------------------------------*/
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); position: relative; z-index: 1; }
.section { padding-block: clamp(4rem, 9vw, 7.5rem); position: relative; z-index: 1; }
.section--tight { padding-block: clamp(2.6rem, 6vw, 4rem); }
.center { text-align: center; }
.stack > * + * { margin-top: 1.1rem; }

/* ---- buttons --------------------------------------------------------------*/
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  font-family: var(--font-body); font-weight: 700;
  font-size: 0.96rem; letter-spacing: 0.02em;
  padding: 1.05rem 1.9rem; border-radius: 999px;
  min-height: 54px; text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), filter 0.3s var(--ease);
  will-change: transform;
}
.btn--gold {
  color: #1a1406; background: var(--gold-grad);
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255,255,255,0.5);
}
.btn--gold:hover { transform: translateY(-3px); filter: brightness(1.06); box-shadow: 0 26px 60px -18px rgba(212,175,55,0.6), inset 0 1px 0 rgba(255,255,255,0.5); }
.btn--ghost {
  color: var(--bone); border: 1px solid var(--line);
  background: rgba(255,255,255,0.02); backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--white); transform: translateY(-2px); }
.btn--lg { font-size: 1.04rem; padding: 1.2rem 2.4rem; min-height: 60px; }
.btn--block { display: flex; width: 100%; }
.btn__arrow { transition: transform 0.3s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ---- header / nav ---------------------------------------------------------*/
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.95rem var(--gutter);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,11,0.82); backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line); padding-block: 0.7rem;
}
.brand { display: inline-flex; align-items: baseline; gap: 0.12em; font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--white); }
.brand b { font-weight: 400; }
.brand .dot { color: var(--gold); }
.brand .hl { background: var(--gold-sheen); -webkit-background-clip: text; background-clip: text; color: transparent; }
.brand sup { font-family: var(--font-body); font-size: 0.5rem; letter-spacing: 0.34em; color: var(--smoke); font-weight: 700; transform: translateY(-0.9em); }

.nav__links { display: none; align-items: center; gap: 2rem; }
.nav__links a { font-size: 0.9rem; font-weight: 600; color: var(--bone); letter-spacing: 0.01em; position: relative; padding-block: 0.4rem; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--gold-grad); transition: width 0.3s var(--ease); }
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: none; }

.burger { display: inline-flex; flex-direction: column; gap: 5px; padding: 10px; margin-right: -10px; z-index: 110; }
.burger span { width: 24px; height: 2px; background: var(--bone); transition: transform 0.35s var(--ease), opacity 0.2s; transform-origin: center; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.drawer {
  position: fixed; inset: 0; z-index: 105;
  background: rgba(8,8,9,0.97); backdrop-filter: blur(10px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem;
  opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.drawer.open { opacity: 1; visibility: visible; }
.drawer a { font-family: var(--font-display); font-size: 2rem; text-transform: uppercase; color: var(--bone); letter-spacing: 0.02em; }
.drawer a:hover { color: var(--gold); }
.drawer .btn { font-family: var(--font-body); font-size: 1rem; margin-top: 1rem; }

@media (min-width: 940px) {
  .nav__links, .nav__cta { display: inline-flex; }
  .burger { display: none; }
}

/* ---- hero -----------------------------------------------------------------*/
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: 6rem; padding-bottom: 4rem; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; opacity: 0.42; filter: grayscale(0.3) contrast(1.05); }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 85% 10%, rgba(212,175,55,0.18), transparent 55%),
    linear-gradient(180deg, rgba(10,10,11,0.55) 0%, rgba(10,10,11,0.78) 55%, var(--ink) 100%),
    linear-gradient(90deg, var(--ink) 0%, rgba(10,10,11,0.2) 60%, transparent 100%);
}
.hero__inner { position: relative; z-index: 2; max-width: 50rem; }
.hero h1 { font-size: clamp(2.9rem, 9vw, 6.4rem); margin-top: 1.3rem; color: var(--white); }
.hero h1 .gold-text { display: inline-block; }
.hero p { margin-top: 1.5rem; font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--smoke); max-width: 46ch; }
.hero__cta { margin-top: 2.3rem; display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero__meta { margin-top: 2.6rem; display: flex; flex-wrap: wrap; gap: 1.6rem 2.4rem; align-items: center; }
.hero__meta .stat b { font-family: var(--font-display); font-size: 1.7rem; color: var(--gold); display: block; line-height: 1; }
.hero__meta .stat span { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--smoke-2); }
.scroll-cue { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); z-index: 2; font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--smoke-2); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.scroll-cue::after { content: ""; width: 1px; height: 36px; background: linear-gradient(var(--gold), transparent); animation: cue 2s var(--ease) infinite; }
@media (max-width: 820px) { .scroll-cue { display: none; } }
@keyframes cue { 0%,100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ---- quiz -----------------------------------------------------------------*/
.quiz-wrap { position: relative; }
.quiz-card {
  background: linear-gradient(180deg, var(--ink-2), var(--ink-1));
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: clamp(1.4rem, 4vw, 2.6rem);
  max-width: 640px; margin-inline: auto; position: relative; overflow: hidden;
}
.quiz-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold-grad); }
.quiz-progress { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.6rem; }
.quiz-progress__bar { flex: 1; height: 4px; border-radius: 999px; background: var(--ink-3); overflow: hidden; }
.quiz-progress__fill { height: 100%; width: 25%; background: var(--gold-grad); border-radius: 999px; transition: width 0.5s var(--ease); }
.quiz-progress__label { font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--smoke); white-space: nowrap; }

.quiz-step { display: none; animation: stepIn 0.45s var(--ease); }
.quiz-step.active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.quiz-step .step-label { font-size: 0.74rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.quiz-step h2 { font-size: clamp(1.5rem, 4vw, 2.1rem); color: var(--white); margin-top: 0.6rem; margin-bottom: 1.4rem; line-height: 1.04; }
.quiz-note { font-size: 0.9rem; color: var(--smoke); margin: -0.6rem 0 1.2rem; }

.options { display: grid; gap: 0.8rem; }
.option {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  width: 100%; text-align: left; padding: 1.15rem 1.3rem;
  background: var(--ink-3); border: 1px solid var(--line-soft); border-radius: var(--radius-sm);
  color: var(--bone); font-weight: 600; font-size: 1.02rem;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.2s var(--ease);
}
.option:hover, .option:focus-visible { border-color: var(--gold); background: #211e16; transform: translateY(-2px); }
.option .tick { width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; flex: none; color: var(--gold); transition: border-color 0.2s, background 0.2s; }
.option:hover .tick { border-color: var(--gold); }

.form-grid { display: grid; gap: 0.9rem; }
@media (min-width: 520px) { .form-grid.two { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--smoke); margin-bottom: 0.45rem; font-weight: 600; }
.field label .opt { color: var(--smoke-2); text-transform: none; letter-spacing: 0; font-weight: 400; }
.field input {
  width: 100%; padding: 0.95rem 1.05rem; border-radius: var(--radius-sm);
  background: var(--ink); border: 1px solid var(--line-soft); color: var(--white);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input::placeholder { color: var(--smoke-2); }
.field input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.14); }
.quiz-back { background: none; color: var(--smoke); font-size: 0.85rem; font-weight: 600; padding: 0.6rem 0; display: inline-flex; align-items: center; gap: 0.4rem; }
.quiz-back:hover { color: var(--bone); }
.quiz-footnote { margin-top: 1.1rem; font-size: 0.82rem; color: var(--smoke-2); display: flex; gap: 1.2rem; flex-wrap: wrap; justify-content: center; }
.quiz-footnote span { display: inline-flex; align-items: center; gap: 0.4rem; }

.loading-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(8,8,9,0.92); backdrop-filter: blur(6px); display: none; place-items: center; }
.loading-overlay.active { display: grid; }
.spinner { width: 48px; height: 48px; border-radius: 50%; border: 3px solid var(--ink-3); border-top-color: var(--gold); animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- section heading block ------------------------------------------------*/
.head { max-width: 56rem; }
.head.center { margin-inline: auto; }
.head h2 { font-size: clamp(2rem, 5.5vw, 3.4rem); color: var(--white); margin-top: 1rem; }
.head p { margin-top: 1.1rem; }

/* ---- challenge / steps grid ----------------------------------------------*/
.split { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1.05fr 0.95fr; } .split.rev > :first-child { order: 2; } }

.ladder { display: grid; gap: 0.9rem; counter-reset: step; }
.rung { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start; padding: 1.2rem 1.3rem; background: var(--ink-2); border: 1px solid var(--line-soft); border-radius: var(--radius-sm); transition: border-color 0.3s var(--ease), transform 0.3s var(--ease); }
.rung:hover { border-color: var(--line); transform: translateX(4px); }
.rung__n { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--gold-grad); flex: none; }
.rung h3 { font-family: var(--font-body); font-weight: 700; text-transform: none; font-size: 1.06rem; color: var(--white); letter-spacing: 0; margin-bottom: 0.25rem; }
.rung p { font-size: 0.94rem; color: var(--smoke); }

.checks { display: grid; gap: 0.7rem; margin-top: 1.4rem; }
.checks li { display: flex; align-items: flex-start; gap: 0.7rem; list-style: none; color: var(--bone); }
.checks svg { color: var(--gold); flex: none; margin-top: 3px; }

.panel { background: linear-gradient(180deg, var(--ink-2), var(--ink-1)); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow); }

/* ---- testimonials ---------------------------------------------------------*/
.tgrid { display: grid; gap: 1.1rem; }
@media (min-width: 720px) { .tgrid { grid-template-columns: 1fr 1fr; } }
.tcard { background: var(--ink-2); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 1.6rem; position: relative; transition: border-color 0.3s var(--ease), transform 0.3s var(--ease); }
.tcard:hover { border-color: var(--line); transform: translateY(-3px); }
.tcard .stars { color: var(--gold); letter-spacing: 0.15em; font-size: 0.9rem; margin-bottom: 0.9rem; }
.tcard blockquote { font-size: 1.02rem; color: var(--bone); line-height: 1.55; }
.tcard .who { margin-top: 1.2rem; display: flex; align-items: center; gap: 0.85rem; }
.tcard .who . av { width: 42px; height: 42px; border-radius: 50%; background: var(--gold-grad); color: var(--ink); display: grid; place-items: center; font-family: var(--font-display); font-size: 1.1rem; flex: none; }
.tcard .who b { color: var(--white); font-size: 0.95rem; display: block; }
.tcard .who span { color: var(--smoke); font-size: 0.82rem; }

/* ---- stats ----------------------------------------------------------------*/
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; }
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat-cell { background: var(--ink-1); padding: 1.6rem 1.2rem; text-align: center; }
.stat-cell b { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3rem); color: transparent; background: var(--gold-sheen); -webkit-background-clip: text; background-clip: text; display: block; line-height: 1; }
.stat-cell span { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--smoke); margin-top: 0.6rem; display: block; }

.portrait { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.portrait img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center top; }
.portrait::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(10,10,11,0.85)); }
.portrait .tag { position: absolute; left: 1.2rem; bottom: 1.2rem; z-index: 2; }
.portrait .tag b { font-family: var(--font-display); font-size: 1.4rem; color: var(--white); display: block; text-transform: uppercase; }
.portrait .tag span { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; }

/* ---- final CTA ------------------------------------------------------------*/
.cta-band { position: relative; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 120% at 50% 0%, rgba(212,175,55,0.16), transparent 60%); }
.cta-band h2 { font-size: clamp(2.2rem, 6vw, 4rem); color: var(--white); }

/* ---- calendar embed -------------------------------------------------------*/
.cal-shell { background: var(--ink-1); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(0.5rem, 2vw, 1rem); box-shadow: var(--shadow); overflow: hidden; }
.cal-shell iframe { width: 100%; min-height: 860px; border: 0; border-radius: 10px; background: #fff; }
@media (min-width: 760px) { .cal-shell iframe { min-height: 700px; } }

/* ---- GHL form embed (challenge) -------------------------------------------*/
.ghl-form-shell { background: var(--ink-1); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(0.4rem, 2vw, 0.9rem); box-shadow: var(--shadow); }
.ghl-form-shell iframe { width: 100%; border: 0; border-radius: 10px; background: #fff; min-height: 560px; display: block; }

/* ---- FAQ ------------------------------------------------------------------*/
.faq { display: grid; gap: 0.8rem; max-width: 760px; margin-inline: auto; }
.faq details { background: var(--ink-2); border: 1px solid var(--line-soft); border-radius: var(--radius-sm); padding: 0 1.3rem; transition: border-color 0.3s var(--ease); }
.faq details[open] { border-color: var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 1.15rem 0; font-weight: 700; color: var(--white); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { color: var(--gold); font-size: 1.4rem; transition: transform 0.3s var(--ease); flex: none; line-height: 1; }
.faq details[open] summary .pm { transform: rotate(45deg); }
.faq p { padding: 0 0 1.2rem; color: var(--smoke); margin: 0; }

/* ---- footer ---------------------------------------------------------------*/
.footer { border-top: 1px solid var(--line); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; position: relative; z-index: 1; }
.footer__top { display: grid; gap: 2.4rem; }
@media (min-width: 820px) { .footer__top { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer h4, .footer h3 { font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; color: var(--gold); margin-bottom: 1.1rem; }
.footer ul { list-style: none; padding: 0; display: grid; gap: 0.6rem; }
.footer ul a { color: var(--smoke); font-size: 0.94rem; transition: color 0.2s; }
.footer ul a:hover { color: var(--white); }
.footer__brand p { color: var(--smoke); font-size: 0.94rem; margin-top: 1rem; max-width: 34ch; }
.socials { display: flex; gap: 0.7rem; margin-top: 1.3rem; }
.socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--bone); transition: all 0.25s var(--ease); }
.socials a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.footer__bottom { margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--line-soft); display: flex; flex-wrap: wrap; gap: 0.8rem 1.5rem; align-items: center; justify-content: space-between; }
.footer__bottom p, .footer__bottom a { font-size: 0.82rem; color: var(--smoke-2); }
.footer__bottom a:hover { color: var(--bone); }
.footer__legal { display: flex; gap: 1.3rem; flex-wrap: wrap; }

/* ---- legal / article pages ------------------------------------------------*/
.page-hero { padding-top: 9rem; padding-bottom: 3rem; position: relative; border-bottom: 1px solid var(--line); }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 120% at 80% 0%, rgba(212,175,55,0.12), transparent 60%); }
.page-hero h1 { font-size: clamp(2.4rem, 7vw, 4.4rem); color: var(--white); }
.page-hero p { margin-top: 1rem; color: var(--smoke); }
.prose { max-width: 800px; margin-inline: auto; }
.prose h2 { font-family: var(--font-body); font-weight: 800; text-transform: none; letter-spacing: -0.01em; font-size: 1.45rem; color: var(--white); margin-top: 2.6rem; margin-bottom: 0.9rem; display: flex; align-items: baseline; gap: 0.7rem; }
.prose h2 .num { font-family: var(--font-display); color: var(--gold); font-size: 1.2rem; }
.prose h3 { font-family: var(--font-body); font-weight: 700; text-transform: none; letter-spacing: 0; font-size: 1.06rem; color: var(--gold-bright); margin-top: 1.5rem; margin-bottom: 0.4rem; }
.prose p, .prose li { color: var(--smoke); line-height: 1.75; }
.prose p { margin-top: 0.8rem; }
.prose ul { margin-top: 0.7rem; padding-left: 1.2rem; display: grid; gap: 0.4rem; }
.prose ul li::marker { color: var(--gold); }
.prose a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; }
.prose .callout { background: var(--ink-2); border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: var(--radius-sm); padding: 1.2rem 1.4rem; margin-top: 1.4rem; }
.prose .callout p { margin: 0; color: var(--bone); }
.toc { background: var(--ink-2); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 1.4rem 1.6rem; margin-bottom: 2.4rem; }
.toc h4, .toc .toc-h { font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.76rem; color: var(--gold); margin-bottom: 0.9rem; }
.toc ol { columns: 2; column-gap: 2rem; padding-left: 1.1rem; margin: 0; }
.toc li { color: var(--smoke); margin-bottom: 0.4rem; }
.toc a { color: var(--smoke); }
.toc a:hover { color: var(--gold); }

/* ---- 404 ------------------------------------------------------------------*/
.err { min-height: 100svh; display: grid; place-items: center; text-align: center; padding: 6rem var(--gutter) 3rem; position: relative; }
.err__code { font-family: var(--font-display); font-size: clamp(7rem, 26vw, 16rem); line-height: 0.8; color: transparent; background: var(--gold-sheen); -webkit-background-clip: text; background-clip: text; }
.err h1 { font-size: clamp(1.8rem, 5vw, 3rem); color: var(--white); margin-top: 0.6rem; }
.err p { color: var(--smoke); margin-top: 1rem; max-width: 46ch; margin-inline: auto; }
.err .quote { color: var(--gold); font-style: italic; margin-top: 1.4rem; }
.err__cta { margin-top: 2rem; display: flex; gap: 0.8rem; flex-wrap: wrap; justify-content: center; }

/* ---- reveal animations ----------------------------------------------------*/
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .quiz-step { animation: none; }
  .scroll-cue::after { animation: none; }
}

/* ---- hero load-in ---------------------------------------------------------*/
.load > * { opacity: 0; transform: translateY(20px); animation: loadUp 0.8s var(--ease) forwards; }
.load > *:nth-child(1) { animation-delay: 0.1s; }
.load > *:nth-child(2) { animation-delay: 0.22s; }
.load > *:nth-child(3) { animation-delay: 0.34s; }
.load > *:nth-child(4) { animation-delay: 0.46s; }
.load > *:nth-child(5) { animation-delay: 0.58s; }
@keyframes loadUp { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .load > * { opacity: 1; transform: none; animation: none; } }

/* ---- utilities ------------------------------------------------------------*/
.mt-0 { margin-top: 0; }
.muted { color: var(--smoke); }
.hide { display: none !important; }
.divider { height: 1px; background: var(--line); border: 0; }
.pill { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border-radius: 999px; border: 1px solid var(--line); background: rgba(212,175,55,0.05); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); font-weight: 600; }

/* ============================================================================
   EXPANSION COMPONENTS — offer ladder, app showcase, process, Suicide Saturday
   ========================================================================== */
:root { --ember: #e35a23; --ember-deep: #b8410f; }

/* ---- offer ladder / pricing -----------------------------------------------*/
.price-grid { display: grid; gap: 1.2rem; align-items: stretch; }
@media (min-width: 900px) { .price-grid.three { grid-template-columns: repeat(3, 1fr); } }
.price-card { display: flex; flex-direction: column; background: linear-gradient(180deg, var(--ink-2), var(--ink-1)); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 1.8rem 1.6rem; position: relative; transition: border-color 0.3s var(--ease), transform 0.3s var(--ease); }
.price-card:hover { border-color: var(--line); transform: translateY(-4px); }
.price-card.featured { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.price-card.featured::before { content: "Most Popular"; position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--gold-grad); color: #1a1406; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.32rem 0.9rem; border-radius: 999px; white-space: nowrap; }
.price-card__name { font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.86rem; color: var(--gold); }
.price-card__price { font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 3.2rem); color: var(--white); line-height: 1; margin-top: 0.7rem; }
.price-card__price small { font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; color: var(--smoke); letter-spacing: 0; text-transform: none; }
.price-card__alt { font-size: 0.85rem; color: var(--smoke); margin-top: 0.45rem; }
.price-card__alt b { color: var(--gold-bright); }
.price-card ul { list-style: none; padding: 0; margin: 1.3rem 0 1.6rem; display: grid; gap: 0.6rem; }
.price-card li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.92rem; color: var(--bone); }
.price-card li svg { color: var(--gold); flex: none; margin-top: 3px; }
.price-card .btn { margin-top: auto; }
.price-note { text-align: center; color: var(--smoke); font-size: 0.92rem; margin-top: 1.4rem; }
.price-note b { color: var(--gold-bright); }

/* ---- app / feature showcase ----------------------------------------------*/
.feature-grid { display: grid; gap: 1rem; }
@media (min-width: 680px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .feature-grid.five { grid-template-columns: repeat(3, 1fr); } }
.feature-card { background: var(--ink-2); border: 1px solid var(--line-soft); border-radius: var(--radius-sm); padding: 1.5rem; transition: border-color 0.3s var(--ease), transform 0.3s var(--ease); }
.feature-card:hover { border-color: var(--line); transform: translateY(-3px); }
.feature-card .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(212,175,55,0.1); border: 1px solid var(--line); color: var(--gold); margin-bottom: 1rem; }
.feature-card h3 { font-family: var(--font-body); font-weight: 700; text-transform: none; letter-spacing: 0; font-size: 1.05rem; color: var(--white); margin-bottom: 0.4rem; }
.feature-card p { font-size: 0.92rem; color: var(--smoke); }

/* ---- process steps --------------------------------------------------------*/
.process { display: grid; gap: 1rem; counter-reset: ps; }
@media (min-width: 820px) { .process { grid-template-columns: repeat(4, 1fr); } }
.pstep { position: relative; background: var(--ink-2); border: 1px solid var(--line-soft); border-radius: var(--radius-sm); padding: 1.5rem 1.3rem; }
.pstep__n { font-family: var(--font-display); font-size: 1.1rem; color: #1a1406; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--gold-grad); margin-bottom: 0.9rem; }
.pstep h3 { font-family: var(--font-body); font-weight: 700; text-transform: none; letter-spacing: 0; font-size: 1.02rem; color: var(--white); margin-bottom: 0.35rem; }
.pstep p { font-size: 0.9rem; color: var(--smoke); }

/* ---- Suicide Saturday -----------------------------------------------------*/
.sat-hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; padding: 7rem 0 3rem; overflow: hidden; }
.sat-hero__bg { position: absolute; inset: 0; z-index: 0; }
.sat-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0.5; filter: grayscale(0.25) contrast(1.08); }
.sat-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,8,9,0.7) 0%, rgba(8,8,9,0.55) 40%, rgba(8,8,9,0.92) 88%, var(--ink) 100%), radial-gradient(90% 60% at 50% 110%, rgba(227,90,35,0.16), transparent 60%); }
.sat-hero__inner { position: relative; z-index: 2; }
.sat-hero h1 { font-size: clamp(3rem, 12vw, 8rem); color: var(--white); line-height: 0.85; }
.sat-hero h1 .ember { color: transparent; background: linear-gradient(180deg, #ffb47a, var(--ember) 60%, var(--ember-deep)); -webkit-background-clip: text; background-clip: text; }
.eyebrow.ember { color: var(--ember); }
.eyebrow.ember::before, .eyebrow.ember.center::after { background: linear-gradient(90deg, var(--ember), transparent); }
.btn--ember { color: #fff; background: linear-gradient(180deg, #f0703a, var(--ember) 55%, var(--ember-deep)); box-shadow: 0 18px 50px -20px rgba(227,90,35,0.55), inset 0 1px 0 rgba(255,255,255,0.3); }
.btn--ember:hover { transform: translateY(-3px); filter: brightness(1.07); }

.stat-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line-soft); border-block: 1px solid var(--line-soft); }
@media (min-width: 720px) { .stat-strip { grid-template-columns: repeat(4, 1fr); } }
.stat-strip .cell { background: var(--ink); padding: 1.5rem 1rem; text-align: center; }
.stat-strip .cell b { font-family: var(--font-display); font-size: clamp(1.7rem, 5vw, 2.4rem); color: var(--white); display: block; line-height: 1; }
.stat-strip .cell b.hot { color: var(--ember); }
.stat-strip .cell span { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--smoke); margin-top: 0.5rem; display: block; }

.moves { display: grid; gap: 0.9rem; }
@media (min-width: 700px) { .moves { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .moves { grid-template-columns: repeat(3, 1fr); } }
.move { display: flex; gap: 1rem; align-items: flex-start; background: var(--ink-2); border: 1px solid var(--line-soft); border-radius: var(--radius-sm); padding: 1.3rem; transition: border-color 0.3s var(--ease), transform 0.3s var(--ease); }
.move:hover { border-color: rgba(227,90,35,0.4); transform: translateY(-3px); }
.move .num { font-family: var(--font-display); font-size: 1.3rem; color: var(--ember); flex: none; line-height: 1; opacity: 0.85; }
.move h3 { font-family: var(--font-body); font-weight: 700; text-transform: none; letter-spacing: 0; font-size: 1.02rem; color: var(--white); margin-bottom: 0.3rem; }
.move p { font-size: 0.9rem; color: var(--smoke); }

.gallery { columns: 2; column-gap: 0.8rem; }
@media (min-width: 720px) { .gallery { columns: 3; } }
@media (min-width: 1040px) { .gallery { columns: 4; } }
.gallery img { width: 100%; margin-bottom: 0.8rem; border-radius: 10px; border: 1px solid var(--line-soft); display: block; break-inside: avoid; filter: grayscale(0.15) contrast(1.03); transition: filter 0.4s var(--ease), transform 0.4s var(--ease); }
.gallery img:hover { filter: none; transform: scale(1.02); }

.register-card { background: linear-gradient(180deg, var(--ink-2), var(--ink-1)); border: 1px solid rgba(227,90,35,0.3); border-radius: var(--radius); box-shadow: var(--shadow); padding: clamp(1.2rem, 3vw, 2rem); max-width: 620px; margin-inline: auto; }
.register-card::before { content: ""; display: block; height: 3px; border-radius: 999px; background: linear-gradient(90deg, var(--ember), var(--gold)); margin: -0.4rem 0 1.4rem; }
.register-card .ghl-form-shell { border-color: rgba(227,90,35,0.25); }

.tag-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.tag-row .pill { border-color: rgba(227,90,35,0.3); color: #f0a17a; background: rgba(227,90,35,0.06); }
