:root {
  /* ── Neutral scale (Tailwind slate) ───────────────────────────────────── */
  --gray-50:  #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* ── Blue accent ──────────────────────────────────────────────────────── */
  --blue-400: #60a5fa;
  --blue-500: #2563eb;
  --blue-600: #1d4ed8;
  --blue-700: #1e40af;

  /* ── Semantic tokens ──────────────────────────────────────────────────── */
  --color-primary:          var(--blue-500);
  --color-primary-hover:    var(--blue-600);
  --color-surface:          #ffffff;
  --color-surface-elevated: #ffffff;
  --color-canvas:           var(--gray-50);
  --color-border:           var(--gray-200);
  --color-text:             var(--gray-900);
  --color-text-muted:       var(--gray-500);
  --color-success:          #16a34a;
  --color-warning:          #d97706;
  --color-danger:           #dc2626;
  --color-info:             var(--blue-500);

  /* ── Spacing (8px grid) ───────────────────────────────────────────────── */
  --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;

  /* ── Typography ───────────────────────────────────────────────────────── */
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'Cascadia Code', monospace;
  --text-xs:   12px;
  --text-sm:   13px;
  --text-base: 14px;
  --text-md:   16px;
  --text-lg:   18px;
  --text-xl:   20px;
  --text-2xl:  24px;
  --text-3xl:  30px;

  /* ── Radius ───────────────────────────────────────────────────────────── */
  --radius-sm:   4px;
  --radius:      6px;
  --radius-lg:   8px;
  --radius-full: 9999px;

  /* ── Shadows ──────────────────────────────────────────────────────────── */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow:    0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);

  /* ── Transitions ──────────────────────────────────────────────────────── */
  --transition-fast: 150ms ease-out;
}

/* Apply Inter font globally */
body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background-color: var(--color-canvas);
  font-size: var(--text-base);
}
