/* ============================================================================
   SpotRank — nocturnal luxury. Hand-authored, from scratch.
   Deep black · warm ivory · cinematic photography · elegant serif display.
   ============================================================================ */

:root {
  --black: #060607;
  --black-2: #0b0b0d;
  --ivory: #f3efe7;
  --warm: #b8b2a6;
  --mute: #7d786e;
  --faint: #4c4842;
  --line: rgba(243, 239, 231, 0.12);
  --ember: #e0652e;      /* used sparingly */
  --serif: "Space Grotesk", ui-sans-serif, sans-serif;  /* display face */
  --sans: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  /* one fluid type scale used everywhere */
  --fs-display: clamp(2.8rem, 6.4vw, 5.4rem);
  --fs-h1: clamp(2.4rem, 5.2vw, 4rem);
  --fs-h2: clamp(2rem, 4.4vw, 3.3rem);
  --fs-h3: clamp(1.5rem, 2.8vw, 2.15rem);
  --fs-h4: clamp(1.2rem, 1.6vw, 1.45rem);
  --fs-lead: clamp(1.15rem, 1.5vw, 1.4rem);
  --fs-body: clamp(1.05rem, 1.15vw, 1.2rem);
  --fs-sm: 0.95rem;
  --fs-kicker: 0.74rem;
  --fs-score: clamp(5.5rem, 15vw, 12rem);
}

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

/* accessibility */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 100; background: var(--ivory); color: #101010;
  padding: 10px 18px; border-radius: 0 0 10px 0; font-weight: 500; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--ember); outline-offset: 3px; border-radius: 3px; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--black);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--ember); color: #fff; }

/* type primitives */
.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.015em; }
.kicker {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.34em; color: var(--mute);
}
.lead { color: var(--warm); font-size: var(--fs-lead); line-height: 1.7; }

/* layout */
/* edge-to-edge: no fixed cap, just a proportional gutter that scales with the viewport.
   Individual text blocks keep their own max-width so reading stays comfortable. */
.wrap { width: 100%; margin: 0 auto; padding: 0 clamp(22px, 4.6vw, 132px); }

/* ── nav ─────────────────────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 40px;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), padding 0.4s var(--ease);
}
.nav.scrolled { background: rgba(6, 6, 7, 0.72); backdrop-filter: blur(16px); padding: 16px 40px; border-bottom: 1px solid var(--line); }
.wordmark { font-family: var(--sans); font-weight: 600; letter-spacing: 0.14em; font-size: 0.95rem; }
.wordmark b { color: var(--ember); font-weight: 600; }
.nav-cta {
  font-size: 0.82rem; letter-spacing: 0.04em; color: var(--ivory);
  border: 1px solid var(--line); border-radius: 100px; padding: 9px 20px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav-cta:hover { border-color: var(--ember); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 0.9rem; color: var(--warm); transition: color 0.3s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--ivory); }
.topbar .nav-links a { color: var(--warm); }

/* ── inner-page header ───────────────────────────────────────── */
/* The .doc-wrap parent owns the top clearance below the sticky nav; page-head only
   pads its own bottom, so the two never stack into a dead black band on mobile. */
.page-head { padding: 0 0 40px; }
.page-head h1 { font-family: var(--serif); font-weight: 500; font-size: var(--fs-h1); line-height: 1.02; letter-spacing: -0.025em; margin-top: 16px; max-width: 18ch; }
.page-head .lead { max-width: 52ch; margin-top: 22px; }

/* ── features ────────────────────────────────────────────────── */
.feature { display: grid; grid-template-columns: 220px 1fr; gap: 44px; padding: 46px 0; border-top: 1px solid var(--line); align-items: start; }
.feature-n { font-family: var(--serif); font-style: normal; color: var(--ember); font-size: 1.05rem; letter-spacing: 0.2em; text-transform: uppercase; }
.feature h3 { font-family: var(--serif); font-weight: 500; font-size: var(--fs-h3); letter-spacing: -0.015em; }
.feature p { color: var(--warm); font-size: var(--fs-body); line-height: 1.72; margin-top: 14px; max-width: 52ch; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-item { border-top: 1px solid var(--line); padding: 30px 0; }
.faq-q { font-family: var(--serif); font-weight: 500; font-size: var(--fs-h4); letter-spacing: -0.01em; }
.faq-a { color: var(--warm); font-size: var(--fs-body); line-height: 1.72; margin-top: 12px; max-width: 64ch; }
.faq-a a { color: var(--ember); text-decoration: underline; text-underline-offset: 3px; }

/* ── story ───────────────────────────────────────────────────── */
.story-body { max-width: 640px; }
.story-body p { color: var(--warm); font-size: var(--fs-lead); line-height: 1.8; margin-bottom: 22px; }
.story-body p.big { font-family: var(--serif); font-weight: 500; color: var(--ivory); font-size: var(--fs-h3); line-height: 1.4; letter-spacing: -0.01em; margin: 8px 0 28px; }
.story-body strong { color: var(--ivory); font-weight: 500; }

/* ── hero ────────────────────────────────────────────────────── */
.hero { position: relative; height: 100svh; min-height: 620px; display: flex; align-items: flex-end; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 24s var(--ease) infinite alternate; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,6,7,0.5) 0%, rgba(6,6,7,0) 26%, rgba(6,6,7,0.42) 60%, rgba(6,6,7,0.97) 100%);
}
@keyframes kenburns { from { transform: scale(1.02); } to { transform: scale(1.12); } }

.hero-inner { position: relative; z-index: 2; padding-bottom: 8vh; }
.hero h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: var(--fs-display); line-height: 1.02; letter-spacing: -0.02em;
  max-width: 16ch; margin: 22px 0 0;
}
.hero .lead { max-width: 36ch; margin-top: 24px; color: rgba(243,239,231,0.92); text-shadow: 0 1px 20px rgba(0,0,0,0.5); }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 38px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.95rem; font-weight: 500; letter-spacing: 0.01em;
  background: var(--ivory); color: #101010; border-radius: 100px; padding: 15px 30px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border: none; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -18px rgba(243,239,231,0.5); }
.btn svg { width: 16px; height: 16px; }
.btn-ghost { background: transparent; color: var(--ivory); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--ivory); box-shadow: none; }

.scrollcue { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2;
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--mute);
  display: flex; flex-direction: column; align-items: center; gap: 10px; }
.scrollcue span { width: 1px; height: 42px; background: linear-gradient(var(--mute), transparent); animation: cue 2.4s var(--ease) infinite; }
@keyframes cue { 0%,100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ── statement ───────────────────────────────────────────────── */
.statement { padding: 20vh 0; text-align: center; }
.statement p {
  font-family: var(--serif); font-weight: 400;
  /* long sentence — starts smaller on mobile so it never runs off the edge */
  font-size: clamp(1.35rem, 4vw, 2.7rem); line-height: 1.3; letter-spacing: -0.015em;
  max-width: 28ch; margin: 0 auto; text-wrap: balance;
}
.statement p em { font-style: italic; color: var(--ember); }
.statement .sub { font-family: var(--sans); font-size: 1.05rem; color: var(--mute); max-width: 44ch; margin: 34px auto 0; letter-spacing: 0; }

/* ── acts (cinematic panels) ─────────────────────────────────── */
.act { position: relative; height: 96svh; min-height: 560px; display: flex; align-items: flex-end; overflow: hidden; }
.act-media { position: absolute; inset: 0; z-index: 0; }
.act-media img { width: 100%; height: 100%; object-fit: cover; }
.act-media::after { content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,6,7,0) 18%, rgba(6,6,7,0.55) 54%, rgba(6,6,7,0.97) 100%),
    linear-gradient(90deg, rgba(6,6,7,0.62) 0%, rgba(6,6,7,0.1) 52%, rgba(6,6,7,0) 72%); }
.act-inner { position: relative; z-index: 2; padding-bottom: 12vh; max-width: 640px; }
.act-num { font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: var(--ember); }
.act h2 { font-family: var(--serif); font-weight: 400; font-size: var(--fs-h2); line-height: 1.05; letter-spacing: -0.02em; margin: 14px 0 0; }
.act p { color: rgba(243,239,231,0.9); font-size: var(--fs-body); line-height: 1.7; max-width: 40ch; margin-top: 18px; text-shadow: 0 1px 20px rgba(0,0,0,0.5); }

/* ── score moment ────────────────────────────────────────────── */
.score { padding: 22vh 0; }
.score-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.score-num { font-family: var(--serif); font-weight: 400; font-size: var(--fs-score); line-height: 0.85; letter-spacing: -0.03em; }
.score-num sub { font-family: var(--sans); font-size: 0.16em; vertical-align: super; color: var(--mute); letter-spacing: 0.1em; }
.score-side h3 { font-family: var(--serif); font-size: var(--fs-h3); font-weight: 400; line-height: 1.1; letter-spacing: -0.015em; }
.score-side p { color: var(--warm); font-size: 1.1rem; margin-top: 18px; max-width: 42ch; }
.rule { height: 1px; background: var(--line); margin: 30px 0; }

/* rev-light Street Score bar — echoes the app's signature meter */
.revbar { display: flex; gap: 6px; margin-top: 30px; max-width: 360px; }
.revbar i { flex: 1; height: 30px; border-radius: 3px; background: rgba(243,239,231,0.08);
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.revbar.lit i { background: var(--ember); box-shadow: 0 0 12px -2px var(--ember); }
.revbar.lit i:nth-child(1) { transition-delay: 0.05s; }
.revbar.lit i:nth-child(2) { transition-delay: 0.10s; }
.revbar.lit i:nth-child(3) { transition-delay: 0.15s; }
.revbar.lit i:nth-child(4) { transition-delay: 0.20s; }
.revbar.lit i:nth-child(5) { transition-delay: 0.25s; }
.revbar.lit i:nth-child(6) { transition-delay: 0.30s; }
.revbar.lit i:nth-child(7) { transition-delay: 0.35s; }
.revbar.lit i:nth-child(8) { transition-delay: 0.40s; }
.revbar.lit i:nth-child(9) { transition-delay: 0.45s; }
.revbar.lit i:nth-child(10) { transition-delay: 0.50s; }
.revbar.lit i:nth-child(11) { transition-delay: 0.55s; }
/* 12th stays dim — headroom above 9.x, just like the app */
.revbar.lit i:nth-child(12) { background: rgba(243,239,231,0.08); box-shadow: none; }

/* ── closing ─────────────────────────────────────────────────── */
.closing { position: relative; min-height: 92svh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; padding: 12vh 0; }
.closing-media { position: absolute; inset: 0; z-index: 0; }
.closing-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.closing-media::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(6,6,7,0.55), rgba(6,6,7,0.94)); }
.closing-inner { position: relative; z-index: 2; }
.closing h2 { font-family: var(--serif); font-weight: 400; font-size: var(--fs-display); line-height: 1.04; letter-spacing: -0.02em; max-width: 16ch; margin: 20px auto 0; }
.closing .lead { max-width: 42ch; margin: 24px auto 0; }

/* waitlist form */
.waitlist { display: flex; gap: 12px; max-width: 460px; margin: 40px auto 0; }
.waitlist input {
  flex: 1; background: rgba(243,239,231,0.05); border: 1px solid var(--line); border-radius: 100px;
  padding: 15px 24px; color: var(--ivory); font-family: var(--sans); font-size: 0.98rem; text-align: center;
}
.waitlist input::placeholder { color: var(--faint); }
.waitlist input:focus { outline: none; border-color: var(--ember); }
.note { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mute); margin-top: 18px; }

/* ── sub-pages (legal / support / auth) ──────────────────────── */
.page { display: flex; flex-direction: column; min-height: 100vh; }
.topbar { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid var(--line); background: rgba(6,6,7,0.88); backdrop-filter: blur(14px); }
.topbar-in { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.topbar nav { display: flex; gap: 28px; }
.topbar nav a { font-size: 0.9rem; color: var(--warm); transition: color 0.3s var(--ease); }
.topbar nav a:hover { color: var(--ivory); }

.doc-wrap { flex: 1; padding: 88px 0 108px; }
.doc { max-width: 720px; }
.doc h1 { font-family: var(--serif); font-weight: 400; font-size: var(--fs-h1); letter-spacing: -0.02em; line-height: 1.05; margin-top: 16px; }
.doc .updated { font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.72rem; color: var(--mute); margin: 16px 0 42px; }
.doc h2 { font-family: var(--serif); font-weight: 400; font-size: var(--fs-h3); letter-spacing: -0.01em; margin: 46px 0 14px; }
.doc h3 { font-family: var(--serif); font-weight: 400; font-size: var(--fs-h4); margin: 28px 0 8px; color: var(--ivory); }
.doc p { color: var(--warm); font-size: var(--fs-body); line-height: 1.75; margin-bottom: 16px; }
.doc ul { margin: 0 0 18px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.doc li { color: var(--warm); line-height: 1.65; list-style: none; position: relative; padding-left: 22px; }
.doc li::before { content: ""; position: absolute; left: 0; top: 12px; width: 11px; height: 1px; background: var(--ember); }
.doc a { color: var(--ember); text-decoration: underline; text-underline-offset: 3px; }
.doc a:hover { color: #f0834f; }
.doc strong { color: var(--ivory); font-weight: 600; }

.center-page { flex: 1; display: flex; align-items: center; justify-content: center; padding: 80px 24px; text-align: center; }
.check { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px; font-size: 1.7rem; background: rgba(224,101,46,0.14); color: var(--ember); }

/* Space Grotesk display: medium weight reads better than 400 at large sizes,
   and it has no true italic — so drop the italic treatments. */
.serif, .hero h1, .statement p, .act h2, .act-num, .score-num, .score-side h3,
.closing h2, .doc h1, .doc h2, .doc h3 { font-weight: 500; letter-spacing: -0.02em; }
.statement p em, .act-num { font-style: normal; }
.statement p em { color: var(--ember); }

/* ── app showcase (real screenshots in device frames) ────────── */
.showcase { padding: 18vh 0; text-align: center; }
.showcase .lead { max-width: 46ch; margin: 22px auto 0; }
.phones { display: flex; justify-content: center; align-items: flex-end; gap: 26px; margin-top: 66px; }
.phone { width: 248px; flex-shrink: 0; border-radius: 34px; padding: 7px;
  background: linear-gradient(165deg, #1d1d21, #050506); border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 45px 100px -35px rgba(0,0,0,0.95), 0 0 0 1px rgba(255,255,255,0.03) inset; }
.phone img { width: 100%; border-radius: 28px; display: block; }
.phone.raise { transform: translateY(-34px) scale(1.05); z-index: 2; }

/* ── interactive rating ──────────────────────────────────────── */
.rate-game { padding: 16vh 0; text-align: center; }
.rate-game .lead { max-width: 42ch; margin: 20px auto 0; }
.rate { max-width: 640px; margin: 52px auto 0; }
.rate-photo { position: relative; aspect-ratio: 16 / 10; border-radius: 20px; overflow: hidden; border: 1px solid var(--line); }
.rate-photo img { width: 100%; height: 100%; object-fit: cover; }
.rate-veil { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(6,6,7,0.85)); }
.rate-name { position: absolute; left: 18px; bottom: 15px; font-family: var(--serif); font-weight: 500; font-size: var(--fs-h4); color: var(--ivory); }
.rate-bar { display: flex; gap: 6px; margin-top: 24px; }
.rate-bar button { flex: 1; height: 46px; border-radius: 6px; border: none; padding: 0; cursor: pointer;
  background: rgba(243,239,231,0.08); transition: background 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.15s var(--ease); }
.rate-bar button:hover { transform: translateY(-2px); }
.rate-bar button.lit { background: var(--ember); box-shadow: 0 0 16px -3px var(--ember); }
.rate-scale { display: flex; justify-content: space-between; margin-top: 10px; font-size: 0.82rem; letter-spacing: 0.12em; color: var(--mute); }
.rate-result { margin-top: 26px; font-size: var(--fs-lead); color: var(--mute); transition: color 0.3s var(--ease); }
.rate-result.done { color: var(--ivory); }
.rate-result b { color: var(--ember); font-weight: 500; }

/* ── interactive battle ──────────────────────────────────────── */
.vs-game { padding: 16vh 0; text-align: center; }
.vs-game .lead { max-width: 40ch; margin: 20px auto 0; }
.vs { display: flex; align-items: center; justify-content: center; gap: 16px; max-width: 720px; margin: 52px auto 0; }
.vs-card { flex: 1; position: relative; aspect-ratio: 4 / 5; border-radius: 20px; overflow: hidden; padding: 0; cursor: pointer;
  border: 1px solid var(--line); background: var(--black-2); transition: border-color 0.4s var(--ease), opacity 0.5s var(--ease); }
.vs-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.vs-card:hover img { transform: scale(1.05); }
.vs-veil { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(6,6,7,0.9)); }
.vs-name { position: absolute; left: 16px; bottom: 15px; z-index: 2; font-family: var(--serif); font-weight: 500; font-size: 1.12rem; color: var(--ivory); }
.vs-pct { position: absolute; right: 15px; top: 14px; z-index: 2; font-family: var(--serif); font-weight: 500; font-size: 1.7rem; color: var(--ivory);
  opacity: 0; transform: translateY(-8px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.vs.decided .vs-pct { opacity: 1; transform: none; }
.vs-mid { flex-shrink: 0; }
.vs-badge { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%;
  background: var(--ember); color: #fff; font-family: var(--serif); font-weight: 600; font-size: 0.9rem; box-shadow: 0 0 34px -6px var(--ember); }
.vs-card.win { border-color: var(--ember); }
.vs-card.win .vs-pct { color: var(--ember); }
.vs-card.lose { opacity: 0.48; }
.vs-hint { margin-top: 26px; font-size: 0.9rem; letter-spacing: 0.02em; color: var(--mute); transition: color 0.3s var(--ease); }
.vs-hint.done { color: var(--ivory); }

/* ── creed / trust strip ─────────────────────────────────────── */
.creed { display: grid; grid-template-columns: repeat(2, 1fr); gap: 60px; padding: 13vh 0; border-top: 1px solid var(--line); max-width: 900px; margin: 0 auto; }
.creed-k { display: block; font-family: var(--serif); font-weight: 500; font-size: var(--fs-h4); letter-spacing: -0.01em; }
.creed-d { display: block; color: var(--mute); font-size: 0.98rem; line-height: 1.62; margin-top: 12px; }

/* ── coming-soon store badges ────────────────────────────────── */
.stores { display: flex; gap: 14px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.store-badge { display: inline-flex; align-items: center; gap: 11px; padding: 11px 20px; border-radius: 14px;
  border: 1px solid var(--line); background: rgba(243,239,231,0.04); color: var(--ivory); cursor: default; }
.store-badge svg { width: 24px; height: 24px; fill: var(--ivory); flex-shrink: 0; }
.store-t { display: flex; flex-direction: column; line-height: 1.12; text-align: left; }
.store-t small { font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); }
.store-t b { font-size: 1rem; font-weight: 500; }

/* ── footer ──────────────────────────────────────────────────── */
.foot { border-top: 1px solid var(--line); padding: 48px 0; }
.foot-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.foot-links { display: flex; gap: 30px; }
.foot-links a { font-size: 0.9rem; color: var(--warm); transition: color 0.3s var(--ease); }
.foot-links a:hover { color: var(--ivory); }
.foot small { color: var(--faint); font-size: 0.8rem; letter-spacing: 0.06em; }

/* ── motion / reveal ─────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.12s; }
.reveal.d2 { transition-delay: 0.24s; }
.reveal.d3 { transition-delay: 0.36s; }

/* ── responsive ──────────────────────────────────────────────── */
@media (max-width: 860px) {
  .nav { padding: 18px 22px; }
  .wrap { padding: 0 22px; }
  .score-grid { grid-template-columns: 1fr; gap: 22px; text-align: center; }
  .revbar { margin: 22px auto 0; max-width: 300px; }
  .rule { width: 60px; margin: 22px auto; }
  .score-side h3, .score-side p { margin-left: auto; margin-right: auto; }
  .hero .lead, .act p { font-size: 1.05rem; }

  /* Cinematic text-on-image on mobile: a portrait-framed photo (car centered) with
     the writing sitting ON it — not stacked like an article. */
  .hero, .act { height: auto; min-height: 0; display: block; position: relative; }
  .hero-media, .act-media { position: relative; inset: auto; height: auto; }
  .hero-media img, .act-media img { width: 100%; height: auto; aspect-ratio: 4 / 5;
    object-fit: cover; object-position: center; opacity: 1; animation: none; }
  .hero-inner, .act-inner { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; max-width: none; padding: 0 22px 26px; }
  .scrollcue { display: none; }
  .hero-actions { margin-top: 22px; }
  /* closing keeps its centered CTA on black (text + store badges = too much to overlay) */
  .closing { height: auto; min-height: 0; display: block; text-align: center; padding: 0 0 40px; }
  .closing-media { position: relative; inset: auto; height: auto; }
  .closing-media img { width: 100%; height: auto; object-fit: contain; opacity: 0.5; animation: none; }
  .closing-media::after { display: none; }
  .closing-inner { position: relative; z-index: 2; padding: 30px 0 0; max-width: none; }
  .statement { padding: 90px 0; }
  .score, .score.wrap { padding: 90px 0; }
  .showcase { padding: 90px 0; }
  .phones { flex-direction: column; align-items: center; gap: 40px; margin-top: 48px; }
  .phone { width: 240px; }
  .phone.raise { transform: none; }
  .creed { grid-template-columns: 1fr; gap: 30px; padding: 80px 0; text-align: center; }
  .revbar { max-width: none; }
  .vs-game { padding: 90px 0; }
  .vs { gap: 10px; margin-top: 40px; }
  .vs-badge { width: 40px; height: 40px; font-size: 0.8rem; }
  .vs-name { font-size: 0.95rem; left: 12px; bottom: 12px; }
  .vs-pct { font-size: 1.3rem; right: 12px; top: 12px; }
  .nav-links { gap: 16px; }
  .nav-links a, .topbar nav a { font-size: 0.82rem; }
  .feature { grid-template-columns: 1fr; gap: 12px; padding: 34px 0; }
  .doc-wrap { padding: 44px 0 72px; }
  .page-head { padding: 0 0 20px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* section headings that only had .serif get an explicit scale size */
.showcase h2, .vs-game h2 { font-size: var(--fs-h2); line-height: 1.06; }
