/* ============================================================
   WHITE PREDICT — DESIGN TOKENS
   Colors · Spacing · Type scale · Radii · Shadows · Motion
   ============================================================ */

:root {
  /* ---------- Color ---------- */
  --bg: #0a0a0a;
  --bg-raised: #0d0d0f;
  --bg-card: #111111;
  --bg-card-hover: #161616;

  --text: #f5f5f4;
  --text-dim: #a3a3a0;
  --text-faint: #8f8f8b; /* 6.10:1 on --bg (WCAG AA for the 11px mono labels) */

  --accent: #a855f7;
  --accent-soft: #8b5cf6;
  --accent-cyan: #67e8f9;

  --hairline: #242424;
  --hairline-soft: #1a1a1a;

  --yes: #4ade80;
  --no: #525252;

  /* ---------- Typography ---------- */
  --font-title: 'Nippo', 'Arial Narrow', sans-serif;
  --font-body: 'IBM Plex Sans', -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'Departure Mono', 'SF Mono', 'Courier New', monospace;

  /* Type scale */
  --fs-hero: clamp(1.75rem, 4vw, 2.75rem);
  --fs-h2: clamp(2rem, 4.5vw, 3.5rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.625rem);
  --fs-lead: clamp(1.0625rem, 1.5vw, 1.25rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-mono: 0.8125rem;
  --fs-micro: 0.6875rem;

  --lh-tight: 1.05;
  --lh-heading: 1.15;
  --lh-body: 1.6;

  --ls-tight: -0.03em;
  --ls-mono: 0.08em;

  /* ---------- Spacing ---------- */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-section: clamp(3rem, 7vw, 5.5rem);
  --container: 76rem;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  /* ---------- Radii ---------- */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  /* ---------- Shadows / glass ---------- */
  --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.35);
  --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.45);
  --blur-glass: 0;

  /* ---------- Motion ---------- */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 200ms;
  --dur-med: 450ms;
  --dur-slow: 800ms;
}
