/* ─────────────────────────────────────────────────────────
   CFB AI · Design System
   impeccable v3.8.0 · ui-ux-pro-max guidance applied
   Palette: Terminal-native dark + amber authority
   Typography: Space Grotesk / JetBrains Mono / Inter
   ───────────────────────────────────────────────────────── */

/* ─── DESIGN TOKENS ───────────────────────────────────── */
:root {
  /* Color — OKLCH (impeccable requirement) */
  --bg:           oklch(0.09 0.000 0);       /* pure near-black, no hue tint */
  --surface:      oklch(0.13 0.005 240);     /* slate-tinted panel */
  --surface-2:    oklch(0.16 0.005 240);     /* table row alt */
  --surface-3:    oklch(0.19 0.007 240);     /* hover state */
  --border:       oklch(0.22 0.008 240);     /* subtle border */
  --border-strong:oklch(0.28 0.010 240);     /* active border */

  --ink:          oklch(0.93 0.005 240);     /* primary text — near white */
  --ink-muted:    oklch(0.58 0.008 240);     /* secondary text */
  --ink-faint:    oklch(0.38 0.006 240);     /* disabled / de-emphasized */

  --amber:        oklch(0.72 0.155 75);      /* primary brand accent — amber gold */
  --amber-dim:    oklch(0.60 0.120 75);      /* amber pressed / dark state */
  --amber-ghost:  oklch(0.72 0.155 75 / 0.12); /* amber tint bg */
  --amber-ghost2: oklch(0.72 0.155 75 / 0.06);

  --green:        oklch(0.65 0.16 142);      /* ACTIVE status */
  --green-ghost:  oklch(0.65 0.16 142 / 0.12);

  --slate-pill:   oklch(0.25 0.010 240);     /* PENDING / neutral pill bg */
  --slate-text:   oklch(0.68 0.010 240);     /* PENDING text */

  --red:          oklch(0.58 0.18 25);       /* negative ROI */
  --red-ghost:    oklch(0.58 0.18 25 / 0.10);

  /* Spacing */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  24px;
  --space-6:  32px;
  --space-7:  48px;
  --space-8:  64px;
  --space-9:  96px;
  --space-10: 128px;

  /* Typography */
  --font-head: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;

  /* Radii */
  --r-sm:   4px;
  --r-md:   6px;
  --r-lg:   10px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px oklch(0 0 0 / 0.4);
  --shadow-md:  0 4px 16px oklch(0 0 0 / 0.5);
  --shadow-amber: 0 0 24px oklch(0.72 0.155 75 / 0.15);

  /* Z-index scale */
  --z-base:   10;
  --z-sticky: 20;
  --z-nav:    30;
  --z-modal:  50;
  --z-toast:  60;

  /* Motion */
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --dur-fast:  150ms;
  --dur-med:   250ms;
  --dur-slow:  400ms;

  /* Layout */
  --max-w: 1200px;
  --nav-h:  60px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
table { border-collapse: collapse; width: 100%; }
details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }

/* ─── TYPOGRAPHY ──────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
  text-wrap: balance;
  letter-spacing: -0.03em;
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.85em;
  letter-spacing: 0;
}

.text-muted { color: var(--ink-muted); }
.text-faint { color: var(--ink-faint); }
.text-amber { color: var(--amber); }

.body-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: 65ch;
}

/* ─── LAYOUT ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

@media (max-width: 600px) {
  .container { padding-inline: var(--space-4); }
}

/* ─── NAVBAR ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: oklch(0.09 0.000 0 / 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: var(--z-nav);
  transition: background var(--dur-med) var(--ease-out-quart);
}

.nav__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--space-6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

.nav__brand {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}
.nav__brand-cfb { color: var(--ink); }
.nav__brand-ai  { color: var(--amber); }

.nav__center {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

/* Live pill */
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--r-full);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 oklch(0.72 0.155 75 / 0.5);
  animation: pulse-amber 2.5s ease-out infinite;
}

@keyframes pulse-amber {
  0%   { box-shadow: 0 0 0 0 oklch(0.72 0.155 75 / 0.5); }
  60%  { box-shadow: 0 0 0 7px oklch(0.72 0.155 75 / 0); }
  100% { box-shadow: 0 0 0 0 oklch(0.72 0.155 75 / 0); }
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-shrink: 0;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-muted);
  transition: color var(--dur-fast) var(--ease-out-quart);
  cursor: pointer;
}
.nav__link:hover { color: var(--ink); }
.nav__link:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
  border-radius: var(--r-sm);
}

@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__inner { padding-inline: var(--space-4); }
}

/* ─── TAGS / BADGES ───────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: var(--r-full);
  white-space: nowrap;
}
.tag--amber   { background: var(--amber-ghost); color: var(--amber); border: 1px solid oklch(0.72 0.155 75 / 0.25); }
.tag--slate   { background: var(--slate-pill); color: var(--slate-text); border: 1px solid var(--border); }
.tag--outline { background: transparent; color: var(--ink-muted); border: 1px solid var(--border-strong); }
.tag--green   { background: var(--green-ghost); color: var(--green); border: 1px solid oklch(0.65 0.16 142 / 0.25); }
.tag--red     { background: var(--red-ghost); color: var(--red); border: 1px solid oklch(0.58 0.18 25 / 0.25); }

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: oklch(0.09 0.000 0);   /* dark text on amber fill */
  background: var(--amber);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--r-md);
  cursor: pointer;
  transition:
    background var(--dur-fast) var(--ease-out-quart),
    box-shadow var(--dur-fast) var(--ease-out-quart),
    transform var(--dur-fast) var(--ease-out-quart);
}
.btn-primary:hover {
  background: oklch(0.78 0.16 75);
  box-shadow: var(--shadow-amber);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + var(--space-8));
  padding-bottom: var(--space-10);
  position: relative;
  overflow: hidden;
}

/* Subtle grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.35;
  pointer-events: none;
}

/* Amber radial glow */
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, oklch(0.72 0.155 75 / 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.hero__eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.hero__heading {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--ink);
  margin-bottom: var(--space-5);
  text-wrap: balance;
}

.hero__sub {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-bottom: var(--space-7);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-7);
  max-width: 800px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--space-4) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  transition:
    border-color var(--dur-fast) var(--ease-out-quart),
    background var(--dur-fast) var(--ease-out-quart);
}
.stat-card:hover {
  border-color: var(--amber);
  background: var(--amber-ghost2);
}

.stat-card__value {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--amber);
  line-height: 1;
}

.stat-card__label {
  font-size: 0.75rem;
  color: var(--ink-muted);
  letter-spacing: 0.01em;
  line-height: 1.3;
}

/* ─── SECTION HEADERS ────────────────────────────────── */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-5);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: var(--space-2);
}

.section-sub {
  font-size: 0.875rem;
  color: var(--ink-muted);
  max-width: 60ch;
  line-height: 1.6;
}

.section-meta {
  font-size: 0.75rem;
  padding-top: 4px;
}

/* ─── SYSTEMS SECTION ────────────────────────────────── */
.systems-section {
  padding-block: var(--space-9);
  background: linear-gradient(
    to bottom,
    transparent,
    oklch(0.11 0.003 240) 20%,
    oklch(0.11 0.003 240) 80%,
    transparent
  );
}

/* Table blocks */
.table-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: var(--space-3);
}

.table-block--active {
  border-color: oklch(0.72 0.155 75 / 0.3);
  box-shadow: 0 0 0 1px oklch(0.72 0.155 75 / 0.08) inset, var(--shadow-md);
}

.table-label {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.table-label__text {
  font-size: 0.8rem;
  color: var(--ink-muted);
  flex: 1;
}

.table-count {
  font-size: 0.72rem;
  color: var(--ink-faint);
}

/* Table badges */
.table-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: var(--r-sm);
  flex-shrink: 0;
}
.table-badge--active    { background: var(--amber-ghost); color: var(--amber); }
.table-badge--candidate { background: oklch(0.60 0.08 240 / 0.15); color: oklch(0.65 0.08 240); }
.table-badge--weak      { background: oklch(0.25 0.005 240); color: var(--ink-faint); }

/* Accordion trigger */
.table-accordion > summary { cursor: pointer; }

.table-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  list-style: none;
  transition: background var(--dur-fast) var(--ease-out-quart);
}
.table-accordion__trigger:hover { background: var(--surface-2); }
.table-accordion__trigger:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: -2px;
}

.table-accordion__trigger .table-label {
  border-bottom: none;
  flex: 1;
}

.accordion-chevron {
  margin-right: var(--space-5);
  color: var(--ink-faint);
  flex-shrink: 0;
  transition: transform var(--dur-med) var(--ease-out-quart);
}

details[open] .accordion-chevron { transform: rotate(180deg); }

.table-accordion[open] > summary .table-label {
  border-bottom: 1px solid var(--border);
}

/* ─── DATA TABLE ──────────────────────────────────────── */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.sys-table {
  min-width: 760px;
}

.sys-table th {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  padding: var(--space-3) var(--space-4);
  text-align: left;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  white-space: nowrap;
  user-select: none;
}

.sys-table td {
  font-size: 0.875rem;
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
  vertical-align: middle;
  transition: background var(--dur-fast) var(--ease-out-quart);
}

.sys-table tbody tr { cursor: default; }
.sys-table tbody tr:hover td { background: var(--surface-3); }
.sys-table tbody tr:last-child td { border-bottom: none; }

.sys-table--dim th { color: var(--ink-faint); opacity: 0.7; }
.sys-table--dim td { color: var(--ink-muted); }

/* Column-specific styles */
.col-rank { width: 44px; text-align: center; }
.col-id   { width: 96px; }
.col-name { min-width: 200px; }
.col-n, .col-roi, .col-score { width: 72px; text-align: right; }
.col-wl   { width: 80px; }
.col-status, .col-clv { width: 100px; text-align: center; }

td.col-rank {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink-faint);
  text-align: center;
}

td.col-id {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink-muted);
}

td.col-name {
  font-weight: 500;
  color: var(--ink);
}

td.col-n, td.col-wl, td.col-score {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--ink-muted);
  text-align: right;
}

td.col-roi {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: right;
}

td.col-roi.roi-pos { color: var(--amber); }
td.col-roi.roi-neg { color: var(--red); }
td.col-roi.roi-null { color: var(--ink-faint); }

td.col-status, td.col-clv {
  text-align: center;
}

/* Status pill */
.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: var(--r-full);
}

.status-pill--active    { background: var(--green-ghost); color: var(--green); border: 1px solid oklch(0.65 0.16 142 / 0.3); }
.status-pill--candidate { background: oklch(0.55 0.08 250 / 0.12); color: oklch(0.65 0.10 250); border: 1px solid oklch(0.55 0.08 250 / 0.25); }
.status-pill--weak      { background: transparent; color: var(--ink-faint); border: 1px solid var(--border); }
.status-pill--pending   { background: var(--slate-pill); color: var(--slate-text); border: 1px solid var(--border); }

/* ─── PICKS SECTION ───────────────────────────────────── */
.picks-section {
  padding-block: var(--space-9);
}

.picks-meta {
  font-size: 0.78rem;
  margin-top: var(--space-2);
}

.picks-live {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.pick-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--space-4) var(--space-5);
}

.pick-card__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}

.pick-card__matchup {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}

.pick-card__line {
  font-size: 0.75rem;
  color: var(--amber);
}

.pick-card__meta {
  font-size: 0.72rem;
  margin-bottom: var(--space-3);
}

.pick-card__fires {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.pick-fire {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  gap: var(--space-2);
  align-items: center;
  font-size: 0.8rem;
  padding: var(--space-2) var(--space-3);
  background: var(--surface-2);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
}

.pick-fire__sys {
  color: var(--amber);
  font-size: 0.72rem;
}

.pick-fire__side {
  color: var(--ink);
}

.pick-fire__spread {
  color: var(--ink-muted);
  margin-left: 0.35rem;
}

.pick-fire__units {
  color: var(--ink-faint);
  font-size: 0.72rem;
}

.picks-empty {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.picks-empty__icon {
  width: 56px;
  height: 56px;
  background: var(--surface-2);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: var(--space-5);
  color: var(--amber);
}

.picks-empty__title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--space-2);
}

.picks-empty__sub {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-bottom: var(--space-6);
}

.clv-notice {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--space-4);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.clv-notice__row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 0.8rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* ─── ABOUT SECTION ───────────────────────────────────── */
.about-section {
  padding-block: var(--space-9);
  border-top: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-9);
  align-items: start;
}

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: var(--space-7); }
}

.about-subtitle {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: var(--space-5);
}

/* Checklist */
.checklist {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-5);
}

.checklist__item {
  display: flex;
  gap: var(--space-3);
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.55;
  align-items: flex-start;
}

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

.check-icon {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--amber);
}

/* Check table */
.check-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.check-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--dur-fast) var(--ease-out-quart);
}
.check-row:last-child { border-bottom: none; }
.check-row:hover { background: var(--surface-2); }

.check-icon-wrap {
  flex-shrink: 0;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border);
  background: var(--amber-ghost2);
  color: var(--amber);
  padding: var(--space-4) 0;
}

.check-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--space-3) var(--space-4);
}

.check-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}

.check-desc {
  font-size: 0.75rem;
  line-height: 1.4;
}

/* ─── FOOTER ──────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding-block: var(--space-7);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: flex-start;
}

.footer__brand {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
}

.footer__version {
  font-size: 0.72rem;
}

.footer__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.75rem;
}

.footer__sep {
  color: var(--ink-faint);
}

.footer__disclaimer {
  font-size: 0.72rem;
  color: var(--ink-faint);
  max-width: 60ch;
  line-height: 1.5;
  margin-top: var(--space-2);
}

/* ─── SCROLL REVEAL ANIMATIONS ───────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition:
      opacity var(--dur-slow) var(--ease-out-quart),
      transform var(--dur-slow) var(--ease-out-quart);
  }

  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-delay-1 { transition-delay: 80ms; }
  .reveal-delay-2 { transition-delay: 160ms; }
  .reveal-delay-3 { transition-delay: 240ms; }
}

/* ─── RESPONSIVE ADJUSTMENTS ─────────────────────────── */
@media (max-width: 480px) {
  .hero__heading { letter-spacing: -0.03em; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .section-header { flex-direction: column; gap: var(--space-3); }
}
