/* ──────────────────────────────────────────────────────────────────────────
   Replay+ — site styles
   Authoritative source: docs/business/DESIGN-SYSTEM.md (Replay project)
   Voice: editorial paper (default) + sheet voice for interactive widgets.
   ────────────────────────────────────────────────────────────────────────── */

/* ── Tokens (mirror DESIGN-SYSTEM.md §2) ── */
:root {
  --bg: #f6f7f4;
  --bg-2: #ffffff;
  --bg-3: #edeee9;
  --ink: #0c1b2e;
  --ink-2: #4b5a70;
  --ink-3: #8c98aa;
  --rule: #d7dbe0;
  --rule-2: #e7ebf0;
  --accent: #1d6fe0;
  --accent-2: #5c9eff;
  --accent-3: #0b3c84;
  --pos: #1a8f5c;
  --danger: #e35252;
  --event-pass: #7fff9d;
  --event-shot: #ffd23d;
  --event-defend: #5c9eff;

  --f-sans: 'Inter Tight', system-ui, -apple-system, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;

  --container: 1200px;
  --gutter: 16px;
}

@media (min-width: 641px) { :root { --gutter: 24px; } }
@media (min-width: 1024px) { :root { --gutter: 32px; } }

/* ── Reset ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--f-sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

@media (min-width: 1024px) {
  body { font-size: 17px; }
}

::selection { background: var(--accent); color: var(--bg); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* Grid items default to min-width: auto which causes horizontal overflow when
   children have long content. Forcing min-width: 0 lets tracks respect the
   container width. Applies to all grid layouts we use. */
.hero-grid > *,
.steps > *,
.features-grid > *,
.s-head > *,
.founder-card > *,
footer .container > * {
  min-width: 0;
}

section {
  padding: 64px 0;
}

@media (min-width: 1024px) {
  section { padding: 96px 0; }
}

/* ── Header (sticky, editorial) ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 247, 244, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--rule);
  height: 64px;
}

.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
}

.wordmark .accent { color: var(--accent); margin-left: 1px; }

.header-nav {
  display: none;
  gap: 32px;
  align-items: center;
}

@media (min-width: 1024px) { .header-nav { display: flex; } }

.header-nav a {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  text-decoration: none;
  transition: color 0.15s ease;
}

.header-nav a:hover { color: var(--ink); }

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (min-width: 1024px) {
  .header-right { gap: 16px; }
}

.header-right .cta {
  display: none;
}

@media (min-width: 640px) {
  .header-right .cta {
    display: inline-flex;
    padding: 8px 16px;
    font-size: 13px;
    min-height: 36px;
  }
}

/* ── Language toggle ── */
.lang-toggle {
  display: flex;
  gap: 0;
  border: 1px solid var(--rule);
}

.lang-toggle button {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 10px;
  border: none;
  background: transparent;
  color: var(--ink-3);
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}

.lang-toggle button:hover { color: var(--ink); }

.lang-toggle button.active {
  background: var(--ink);
  color: var(--bg);
}

/* ── Section header (editorial s-head) ── */
.s-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
  align-items: center;
  text-align: center;
}

@media (min-width: 1024px) { .s-head { margin-bottom: 56px; } }

.s-head .num {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  padding: 5px 12px;
  background: rgba(29, 111, 224, 0.08);
  border-radius: 999px;
}

.s-head .title {
  font-family: var(--f-sans);
  font-size: clamp(28px, 6vw, 36px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
  text-wrap: balance;
  overflow-wrap: break-word;
  hyphens: auto;
  margin: 0;
  max-width: 20ch;
}

@media (min-width: 1024px) {
  .s-head .title { font-size: clamp(40px, 4vw, 52px); }
}

.s-head .meta {
  font-family: var(--f-sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink-2);
  max-width: 480px;
  text-transform: none;
  letter-spacing: 0;
}

@media (min-width: 1024px) { .s-head .meta { font-size: 17px; } }

/* ── Hero — stacked, video-led ── */
.hero {
  padding: 48px 0 64px;
  border-bottom: none;
}

@media (min-width: 1024px) {
  .hero { padding: 72px 0 96px; }
}

.hero .hero-text {
  max-width: 880px;
  margin: 0 auto 40px;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero .hero-text { margin-bottom: 56px; }
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  padding: 6px 12px;
  background: rgba(29, 111, 224, 0.08);
  border-radius: 999px;
}

.hero h1 {
  font-family: var(--f-sans);
  font-size: clamp(36px, 8vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--ink);
  margin: 0 auto 24px;
  max-width: 14ch;
  text-wrap: balance;
}

@media (min-width: 1024px) {
  .hero h1 { font-size: clamp(56px, 6.5vw, 80px); max-width: 16ch; }
}

.hero .lead {
  font-family: var(--f-sans);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink-2);
  margin: 0 auto 32px;
  max-width: 640px;
}

@media (min-width: 1024px) { .hero .lead { font-size: 22px; } }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.hero-meta {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: center;
}

/* ── CTA Button (sheet voice — pill) ── */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--bg);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  min-height: 44px;
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .cta { font-size: 16px; padding: 14px 28px; }
}

.cta:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.cta--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
}

.cta--ghost:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.cta--accent {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

.cta--accent:hover {
  background: var(--accent-3);
  border-color: var(--accent-3);
}

.cta--large { padding: 16px 32px; font-size: 16px; min-height: 52px; }

/* ── Hero demo block (real Replay demo video) ── */
.demo-block {
  margin: 0;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.demo-video {
  width: 100%;
  aspect-ratio: 3 / 2;
  background: var(--bg-2);
  border-radius: 12px;
  border: 1px solid var(--rule);
  display: block;
  object-fit: cover;
  box-shadow: 0 24px 64px -32px rgba(12, 27, 46, 0.32);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.demo-video:hover {
  box-shadow: 0 32px 80px -28px rgba(12, 27, 46, 0.42);
}

.demo-caption {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 0 4px;
}

.demo-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--accent);
  color: var(--bg);
  letter-spacing: 0.16em;
  border-radius: 4px;
  font-weight: 700;
}

.demo-meta { flex: 1; min-width: 200px; }

/* ── Stats strip ── */
.stats-strip {
  padding: 32px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

@media (min-width: 1024px) { .stats-strip { padding: 48px 0; } }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 16px;
}

@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; } }

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.stat-label {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  line-height: 1.4;
}

@media (min-width: 1024px) { .stat-label { font-size: 11px; } }

.stat-value {
  font-family: var(--f-mono);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

@media (min-width: 1024px) { .stat-value { font-size: 48px; } }

.stat-value--accent { color: var(--accent); }

.stat-unit {
  font-size: 0.55em;
  font-weight: 500;
  margin-left: 2px;
  color: var(--ink-3);
}

.stat-value--accent .stat-unit { color: var(--accent-2); }

/* ── Step visuals (mini app mockups inside step cards) ── */
.step-visual {
  position: relative;
  width: 100%;
  height: 96px;
  margin-bottom: 24px;
  background: var(--bg-3);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Step 1 — Filme: REC indicator */
.step-visual--filme { background: var(--ink); }
.rec-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--danger);
  animation: pulse 1.6s ease-in-out infinite;
  box-shadow: 0 0 0 4px rgba(227, 82, 82, 0.18);
}
.rec-label {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--bg);
}
.step-visual__time {
  position: absolute;
  right: 12px;
  top: 12px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(246, 247, 244, 0.6);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* Step 2 — Analyse: progress + checklist */
.step-visual--analyse {
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 14px 16px;
  gap: 8px;
}
.ana-bar {
  height: 4px;
  background: var(--rule);
  border-radius: 999px;
  overflow: hidden;
}
.ana-bar__fill {
  width: 66%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
}
.ana-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 3px; }
.ana-list__item {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  padding-left: 14px;
  position: relative;
}
.ana-list__item::before {
  content: '○';
  position: absolute;
  left: 0;
  color: var(--ink-3);
}
.ana-list__item--done { color: var(--ink); }
.ana-list__item--done::before { content: '✓'; color: var(--pos); }

/* Step 3 — Progresse: tip card preview */
.step-visual--progresse {
  align-items: stretch;
  padding: 12px;
  background: var(--bg-2);
  border: 1px solid var(--rule);
}
.tip-mini {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  padding: 10px;
  border-radius: 6px;
  background: var(--bg);
  border-left: 3px solid var(--accent);
}
.tip-mini__tag {
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent);
}
.tip-mini__title {
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.tip-mini__meta {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--pos);
  font-weight: 600;
}

/* ── How It Works (sheet-voice cards) ── */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

.step {
  position: relative;
  padding: 24px 24px 28px;
  background: var(--bg-2);
  border: 1px solid var(--rule);
  border-radius: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.step:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -12px rgba(12, 27, 46, 0.18);
  border-color: var(--accent);
}

.step-num {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.step h3 {
  font-family: var(--f-sans);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  color: var(--ink);
}

@media (min-width: 1024px) { .step h3 { font-size: 24px; } }

.step p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
}

@media (min-width: 1024px) { .step p { font-size: 17px; } }

/* ── Returns (what Replay gives back) ── */
.returns-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) { .returns-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.return-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.return-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -16px rgba(12, 27, 46, 0.22);
  border-color: var(--accent);
}

.return-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
}

.return-body { padding: 24px; }

.return-num {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}

.return-body h3 {
  font-family: var(--f-sans);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 8px;
}

.return-body p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
}

/* Visual #1 — annotated clip */
.ret-clip {
  position: relative;
  width: 100%;
  height: 100%;
  background: #07101c;
  border-radius: 6px;
  padding: 12px;
}
.ret-clip__time {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(246, 247, 244, 0.7);
}
.ret-clip__tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  background: var(--accent);
  color: var(--bg);
  padding: 3px 8px;
  border-radius: 3px;
}
.ret-clip__pitch {
  position: absolute;
  inset: 36px 12px 12px;
  background: linear-gradient(180deg, rgba(31, 102, 56, 0.5), rgba(31, 102, 56, 0.3));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}
.ret-clip__dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid;
}
.ret-clip__dot--a { background: var(--accent); border-color: var(--bg); top: 30%; left: 25%; }
.ret-clip__dot--a.ret-clip__dot--7 { top: 55%; left: 55%; width: 14px; height: 14px; }
.ret-clip__dot--a.ret-clip__dot--7::after {
  content: '7';
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 700;
  color: var(--bg);
  background: var(--accent);
  padding: 1px 4px;
  border-radius: 2px;
}
.ret-clip__dot--b { background: var(--bg); border-color: var(--ink); top: 65%; left: 35%; }
.ret-clip__dot--ball { background: var(--event-shot); border-color: var(--event-shot); width: 6px; height: 6px; top: 60%; left: 45%; box-shadow: 0 0 8px var(--event-shot); }
.ret-clip__arrow {
  position: absolute;
  top: 40%; left: 30%;
  width: 30%;
  height: 1px;
  background: var(--accent-2);
  transform: rotate(20deg);
  transform-origin: left;
}
.ret-clip__arrow::after {
  content: '';
  position: absolute;
  right: -1px; top: -3px;
  width: 0; height: 0;
  border-left: 6px solid var(--accent-2);
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
}

/* Visual #2 — heatmap SVG */
.ret-heatmap {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 6px;
}

/* Visual #3 — tip card */
.ret-tip {
  width: 100%;
  background: var(--bg);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ret-tip__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ret-tip__tag {
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.ret-tip__delta {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--pos);
}
.ret-tip__title {
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.ret-tip__body {
  font-size: 11px;
  color: var(--ink-2);
  line-height: 1.45;
}
.ret-tip__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 6px;
  border-top: 1px solid var(--rule-2);
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.ret-tip__chev { color: var(--accent); font-size: 12px; }

/* ── Personas ── */
.personas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) { .personas-grid { grid-template-columns: repeat(3, 1fr); } }

.persona-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px 28px;
  background: var(--bg-2);
  border: 1px solid var(--rule);
  border-radius: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.persona-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -16px rgba(12, 27, 46, 0.18);
  border-color: var(--accent);
}

.persona-card--featured {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.persona-card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
}

.persona-card__tag {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 4px;
}

.persona-card--featured .persona-card__tag { color: var(--accent-2); }

.persona-card__title {
  font-family: var(--f-sans);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
}

.persona-card--featured .persona-card__title { color: var(--bg); }

.persona-card__body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}

.persona-card--featured .persona-card__body { color: rgba(246, 247, 244, 0.78); }

.persona-card__list {
  list-style: none;
  padding: 12px 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--rule);
}

.persona-card--featured .persona-card__list { border-top-color: rgba(246, 247, 244, 0.12); }

.persona-card__list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.4;
}

.persona-card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.persona-card--featured .persona-card__list li { color: rgba(246, 247, 244, 0.78); }
.persona-card--featured .persona-card__list li::before { color: var(--accent-2); }

/* ── Recognition (awards + articles) ── */
.recognition-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) { .recognition-grid { grid-template-columns: repeat(2, 1fr); } }

.award-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  background: var(--bg-2);
  border: 1px solid var(--rule);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}

.award-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -16px rgba(12, 27, 46, 0.18);
  border-color: var(--accent);
}

.award-card:hover .award-card__cta { color: var(--accent); }

.award-card--featured {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.award-card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
}

.award-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.award-card__tag {
  background: var(--accent);
  color: var(--bg);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.award-card--featured .award-card__tag {
  background: var(--accent-2);
  color: var(--ink);
}

.award-card__date { color: var(--ink-3); }
.award-card--featured .award-card__date { color: rgba(246, 247, 244, 0.55); }

.award-card__title {
  font-family: var(--f-sans);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--ink);
  margin: 0;
}

.award-card--featured .award-card__title { color: var(--bg); }

@media (min-width: 1024px) { .award-card__title { font-size: 22px; } }

.award-card__body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}

.award-card--featured .award-card__body { color: rgba(246, 247, 244, 0.78); }

.award-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  margin-top: auto;
  border-top: 1px solid var(--rule);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.award-card--featured .award-card__foot { border-top-color: rgba(246, 247, 244, 0.12); }

.award-card__source { color: var(--ink-3); }
.award-card--featured .award-card__source { color: rgba(246, 247, 244, 0.55); }

.award-card__cta {
  color: var(--ink);
  font-weight: 600;
  transition: color 0.15s ease;
}

.award-card--featured .award-card__cta { color: var(--accent-2); }

/* ── Sports strip ── */
.sports { padding: 32px 0; }
@media (min-width: 1024px) { .sports { padding: 48px 0; } }

.sports-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: var(--bg-2);
  border: 1px solid var(--rule);
  border-radius: 12px;
}

@media (min-width: 768px) {
  .sports-strip {
    flex-direction: row;
    align-items: center;
    padding: 20px 32px;
  }
}

.sports-strip__label {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  white-space: nowrap;
}

.sports-strip__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  flex: 1;
}

.sports-strip__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 500;
  background: var(--bg);
  border: 1px solid var(--rule);
}

.sports-strip__tag {
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.sports-strip__item--now {
  background: rgba(29, 111, 224, 0.08);
  border-color: var(--accent);
}
.sports-strip__item--now .sports-strip__tag { color: var(--accent); }
.sports-strip__item--now .sports-strip__name { color: var(--ink); font-weight: 600; }

.sports-strip__item--next .sports-strip__name { color: var(--ink-2); }
.sports-strip__item--later .sports-strip__name { color: var(--ink-3); }

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.price-card {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  background: var(--bg-2);
  border: 1px solid var(--rule);
  border-radius: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}

.price-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -16px rgba(12, 27, 46, 0.18);
  border-color: var(--accent);
}

.price-card--featured {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  box-shadow: 0 12px 32px -12px rgba(12, 27, 46, 0.3);
}

.price-card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 12px 12px 0 0;
}

.price-card__tag {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  margin-bottom: 12px;
}

.price-card--featured .price-card__tag { color: var(--accent-2); }

.price-card__name {
  font-family: var(--f-sans);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}

.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule);
}

.price-card--featured .price-card__price {
  border-bottom-color: rgba(246, 247, 244, 0.12);
}

.price-card__amount {
  font-family: var(--f-sans);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-card__unit {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-3);
}

.price-card--featured .price-card__unit { color: rgba(246, 247, 244, 0.6); }

.price-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.price-card__list li {
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink-2);
  padding-left: 22px;
  position: relative;
}

.price-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

.price-card--featured .price-card__list li { color: rgba(246, 247, 244, 0.85); }
.price-card--featured .price-card__list li::before { color: var(--accent-2); }

.price-card__cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ── Capture guide ── */
.capture-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 900px) {
  .capture-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}

.capture-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.capture-list li {
  display: flex;
  gap: 16px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-2);
}

.capture-list strong { color: var(--ink); font-weight: 600; }

.capture-list__k {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  background: rgba(29, 111, 224, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
  height: fit-content;
  flex-shrink: 0;
}

.capture-diagram {
  margin: 0;
  background: var(--bg-2);
  padding: 16px;
  border: 1px solid var(--rule);
  border-radius: 12px;
}

.capture-diagram svg { width: 100%; height: auto; display: block; border-radius: 8px; }

.capture-diagram figcaption {
  margin-top: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: center;
}

/* ── Privacy & trust ── */
.privacy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) { .privacy-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .privacy-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.privacy-item {
  padding: 24px;
  background: var(--bg-2);
  border: 1px solid var(--rule);
  border-radius: 12px;
  position: relative;
}

.privacy-item::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 24px;
  width: 32px;
  height: 3px;
  background: var(--accent);
  border-radius: 0 0 4px 4px;
}

.privacy-item__k {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 12px;
  margin-top: 4px;
}

.privacy-item h3 {
  font-family: var(--f-sans);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 8px;
}

.privacy-item p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
}

/* ── Founder (compact) ── */
.founder-mini {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  padding: 32px;
  background: var(--bg-2);
  border: 1px solid var(--rule);
  border-radius: 16px;
}

@media (min-width: 768px) {
  .founder-mini {
    flex-direction: row;
    text-align: left;
    gap: 32px;
    padding: 32px 40px;
  }
}

.founder-mini .founder-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--bg-3);
}

.founder-mini .founder-photo img { width: 100%; height: 100%; object-fit: cover; }

.founder-mini .founder-quote {
  font-family: var(--f-sans);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
  border: none;
  padding: 0;
  margin: 0 0 12px;
}

@media (min-width: 1024px) { .founder-mini .founder-quote { font-size: 19px; } }

.founder-meta {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.founder-meta .founder-name { color: var(--ink); font-weight: 600; }

/* ── Features grid (sheet voice) ── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 1280px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }

.feature-card {
  position: relative;
  padding: 28px 24px;
  background: var(--bg-2);
  border: 1px solid var(--rule);
  border-radius: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -12px rgba(12, 27, 46, 0.18);
  border-color: var(--accent);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  width: 24px;
  height: 2px;
  background: var(--accent);
}

.feat-num {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: var(--f-sans);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
}

/* ── Comparison table (editorial dt) ── */
.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--rule);
  background: var(--bg-2);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  text-align: left;
  min-width: 640px;
}

.comparison-table thead {
  background: var(--bg-3);
}

.comparison-table thead th {
  padding: 14px 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--rule);
  text-align: left;
  white-space: nowrap;
}

.comparison-table thead th:first-child {
  color: var(--ink-3);
  width: 35%;
}

.comparison-table thead th.highlight {
  background: var(--ink);
  color: var(--bg);
  position: relative;
}

.comparison-table thead th.highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
}

.comparison-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--rule-2);
  color: var(--ink-2);
  font-variant-numeric: tabular-nums;
}

.comparison-table tbody td:first-child {
  color: var(--ink);
  font-weight: 500;
}

.comparison-table .highlight {
  background: rgba(29, 111, 224, 0.05);
  color: var(--ink);
}

.comparison-table tbody tr:last-child td {
  border-top: 2px solid var(--accent);
  border-bottom: none;
  font-weight: 600;
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: 13px;
}

.comparison-table tbody tr:last-child td:first-child {
  font-family: var(--f-sans);
  font-size: 15px;
}

.check {
  display: inline-block;
  color: var(--pos);
  font-weight: 700;
  font-size: 16px;
}

.cross {
  display: inline-block;
  color: var(--ink-3);
  font-weight: 400;
  font-size: 16px;
}

.comparison-note {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 16px;
}

/* ── Founder ── */
.founder-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}

@media (min-width: 768px) {
  .founder-card { grid-template-columns: auto 1fr; gap: 48px; }
}

.founder-photo {
  width: 160px;
  height: 200px;
  background: var(--bg-3);
  overflow: hidden;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
}

.founder-quote {
  font-family: var(--f-sans);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 24px;
  border-left: 2px solid var(--accent);
  padding-left: 24px;
  font-style: normal;
}

@media (min-width: 1024px) { .founder-quote { font-size: 24px; } }

.founder-name {
  font-family: var(--f-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.founder-role {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ── Waitlist — inverted "ink card" (design system §9) ── */
.waitlist { padding: 48px 0; }

@media (min-width: 1024px) { .waitlist { padding: 80px 0; } }

.ink-card {
  background: var(--ink);
  color: var(--bg);
  border-radius: 16px;
  padding: 48px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px -24px rgba(12, 27, 46, 0.4);
}

@media (min-width: 768px) {
  .ink-card { padding: 64px 48px; }
}

@media (min-width: 1024px) {
  .ink-card { padding: 80px 64px; }
}

.ink-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 4px;
  background: var(--accent);
}

.ink-eyebrow {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 20px;
  padding: 6px 12px;
  background: rgba(92, 158, 255, 0.12);
  border-radius: 999px;
}

.ink-title {
  font-family: var(--f-sans);
  font-size: clamp(28px, 6vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 auto 16px;
  max-width: 18ch;
  color: var(--bg);
  text-wrap: balance;
}

@media (min-width: 1024px) {
  .ink-title { font-size: clamp(40px, 4.5vw, 56px); }
}

.ink-lead {
  font-size: 17px;
  color: rgba(246, 247, 244, 0.7);
  margin: 0 auto 32px;
  max-width: 520px;
  line-height: 1.5;
}

@media (min-width: 1024px) {
  .ink-lead { font-size: 18px; margin-bottom: 40px; }
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto 40px;
}

@media (min-width: 640px) { .waitlist-form { flex-direction: row; } }

.waitlist-form input[type="email"] {
  font-family: var(--f-sans);
  font-size: 16px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid rgba(246, 247, 244, 0.18);
  background: rgba(246, 247, 244, 0.06);
  color: var(--bg);
  outline: none;
  flex: 1;
  min-height: 48px;
  width: 100%;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.waitlist-form input[type="email"]::placeholder { color: rgba(246, 247, 244, 0.4); }

.waitlist-form input[type="email"]:focus {
  border-color: var(--accent-2);
  background: rgba(246, 247, 244, 0.1);
}

.ink-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(246, 247, 244, 0.12);
  text-align: left;
  max-width: 720px;
  margin: 0 auto;
}

@media (min-width: 640px) { .ink-meta { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.ink-meta-item { display: flex; flex-direction: column; gap: 6px; }

.ink-meta-k {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.ink-meta-v {
  font-size: 14px;
  color: rgba(246, 247, 244, 0.85);
  line-height: 1.4;
}

/* ── Sticky mobile CTA ── */
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(246, 247, 244, 0.96);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-top: 1px solid var(--rule);
  display: flex;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.mobile-cta .cta { flex: 1; justify-content: center; }

.mobile-cta--hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 768px) {
  .mobile-cta { display: none; }
}

/* Pad the body so content isn't hidden under the sticky CTA on mobile */
@media (max-width: 767px) {
  body { padding-bottom: 80px; }
}

/* ── FAQ ── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid var(--rule);
}

.faq-item { border-bottom: 1px solid var(--rule); }

.faq-item summary {
  font-family: var(--f-sans);
  font-size: 17px;
  font-weight: 600;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
  transition: color 0.15s ease;
  letter-spacing: -0.005em;
}

@media (min-width: 1024px) { .faq-item summary { font-size: 18px; } }

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover { color: var(--accent); }

.faq-item summary::after {
  content: '+';
  font-family: var(--f-mono);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink-3);
  transition: transform 0.2s ease, color 0.2s ease;
  margin-left: 16px;
  line-height: 1;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-item .faq-answer {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.6;
  padding-bottom: 24px;
  max-width: 720px;
}

@media (min-width: 1024px) { .faq-item .faq-answer { font-size: 17px; } }

/* ── Footer (ink) ── */
footer {
  background: var(--ink);
  color: var(--bg);
  padding: 64px 0 32px;
  border-bottom: none;
}

footer .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  footer .container {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

footer .wordmark {
  color: var(--bg);
  font-size: 28px;
}

footer .wordmark .accent { color: var(--accent-2); }

.footer-tagline {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 247, 244, 0.55);
  margin-top: 16px;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: var(--bg);
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 8px;
  opacity: 0.85;
  transition: opacity 0.15s ease, color 0.15s ease;
}

.footer-col a:hover {
  opacity: 1;
  color: var(--accent-2);
}

.footer-copy {
  grid-column: 1 / -1;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 247, 244, 0.4);
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(246, 247, 244, 0.1);
  text-align: left;
}

/* ── Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1,
.hero .lead,
.hero .description,
.hero-cta {
  animation: fadeUp 0.7s ease both;
}

.hero .lead { animation-delay: 0.08s; }
.hero .description { animation-delay: 0.16s; }
.hero-cta { animation-delay: 0.24s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .pitch-center-circle,
  .player-dot,
  .hud-badge::before { animation: none !important; }
}
