/* tokens.css — single source of truth for ONL public design system */
:root {
  /* Brand */
  --onl-navy: #0a1628;
  --onl-navy-card: #111e33;
  --onl-navy-mid: #1a2e4a;
  --onl-blue: #0052cc;
  --onl-blue-light: #1d6ae5;
  --onl-blue-muted: rgba(0, 82, 204, 0.12);
  --onl-gold: #c9a84c;
  --onl-gold-light: #e8c97a;
  --onl-gold-muted: rgba(201, 168, 76, 0.15);
  --onl-cream: #f5f0e8;
  --onl-slate: #8a9bb5;
  --onl-white: #ffffff;

  /* Borders */
  --onl-border: rgba(255, 255, 255, 0.08);
  --onl-border-gold: rgba(201, 168, 76, 0.25);
  --onl-border-blue: rgba(0, 82, 204, 0.3);

  /* Semantic */
  --safe: #4ade80;
  --lean: #60a5fa;
  --tossup: #c9a84c;
  --danger: #f87171;

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Menlo', monospace;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition-fast: 120ms ease;
  --transition-base: 200ms ease;
}
