/* tokens.css — Design tokens only. No selectors, no components.
   Every module imports this for color, type, spacing, motion, layout. */

:root {
  /* Canvas & surfaces */
  --bg: #020202;
  --surface: rgba(255,255,255,0.03);
  --glass: rgba(255,255,255,0.04);
  --glass-2: rgba(255,255,255,0.06);
  --glass-3: rgba(255,255,255,0.08);
  --inset: rgba(0,0,0,0.25);
  --solid-1: #0b0a0f;
  --solid-2: #121017;
  --solid-3: #1a1722;
  --solid-4: #221e2b;

  /* Text */
  --text: rgba(255,255,255,0.9);
  --text-2: rgba(255,255,255,0.6);
  --text-3: rgba(255,255,255,0.45);
  --text-faint: rgba(255,255,255,0.3);

  /* Borders */
  --border-subtle: rgba(255,255,255,0.05);
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);

  /* Accent */
  --accent: #8b5cf6;
  --accent-hover: #9b6df7;
  --accent-text: #a78bfa;
  --accent-a8: rgba(139,92,246,0.08);
  --accent-a12: rgba(139,92,246,0.12);
  --accent-dim: rgba(139,92,246,0.15);
  --accent-a20: rgba(139,92,246,0.20);
  --accent-a25: rgba(139,92,246,0.25);
  --accent-a40: rgba(139,92,246,0.40);

  /* Semantic */
  --success: #34d399;
  --warn: #e0a82e;
  --danger: #ef4444;

  /* Type */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Fraunces', 'Newsreader', Georgia, 'Times New Roman', serif;
  --mono: 'JetBrains Mono', 'Fira Code', monospace;
  --fs-xs: 11px;
  --fs-sm: 13px;
  --fs-base: 15px;
  --fs-md: 17px;
  --fs-lg: 20px;
  --fs-xl: 24px;
  --fs-2xl: 30px;
  --fs-3xl: 38px;
  --fs-display: clamp(36px, 6vw, 56px);
  --fs-display-sm: clamp(28px, 4.6vw, 44px);
  --fw-light: 300;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --lh-tight: 1.15;
  --lh-snug: 1.3;
  --lh-normal: 1.6;
  --lh-relaxed: 1.7;
  --ls-display: -0.02em;
  --ls-tight: -0.01em;
  --ls-label: 0.08em;

  /* 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;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-pill: 999px;

  /* Elevation */
  --focus-ring: 0 0 0 2px rgba(139,92,246,0.5);
  --shadow-float: 0 12px 40px rgba(0,0,0,0.5);

  /* Motion */
  --dur-fast: 0.15s;
  --dur: 0.25s;
  --dur-slow: 0.4s;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --wrap: 960px;
  --wrap-wide: 1200px;
  --measure: 64ch;
}
