/* ============================================================
   DESIGN TOKENS — Change design system values here
   ============================================================ */
:root {
  /* ── Palette ── */
  --color-navy-950: #030712;
  --color-navy-900: #060b18;
  --color-navy-800: #0d1529;
  --color-navy-700: #111d35;
  --color-navy-600: #162240;
  --color-navy-500: #1e2d4a;
  --color-navy-400: #2d4163;

  --color-amber-300: #fcd34d;
  --color-amber-400: #fbbf24;
  --color-amber-500: #f59e0b;
  --color-amber-600: #d97706;

  --color-slate-100: #f1f5f9;
  --color-slate-200: #e2e8f0;
  --color-slate-300: #cbd5e1;
  --color-slate-400: #94a3b8;
  --color-slate-500: #64748b;
  --color-slate-600: #475569;

  --color-green-400: #4ade80;
  --color-green-500: #22c55e;

  /* ── Semantic aliases (swap here to retheme) ── */
  --bg-base:        #f8fafc;
  --bg-surface:     #f1f5f9;
  --bg-card:        #ffffff;
  --bg-card-hover:  #f8fafc;
  --border:         #e2e8f0;
  --border-hover:   #cbd5e1;

  --accent:         var(--color-amber-600);
  --accent-hover:   var(--color-amber-500);
  --accent-subtle:  rgba(217, 119, 6, 0.08);
  --accent-glow:    rgba(217, 119, 6, 0.2);

  --text-primary:   #0f172a;
  --text-secondary: #334155;
  --text-muted:     #64748b;

  /* ── Typography ── */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;

  --text-xs:   0.75rem;    /* 12px */
  --text-sm:   0.875rem;   /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-lg:   1.125rem;   /* 18px */
  --text-xl:   1.25rem;    /* 20px */
  --text-2xl:  1.5rem;     /* 24px */
  --text-3xl:  1.875rem;   /* 30px */
  --text-4xl:  2.25rem;    /* 36px */
  --text-5xl:  3rem;       /* 48px */
  --text-6xl:  3.75rem;    /* 60px */

  --leading-tight:  1.25;
  --leading-snug:   1.375;
  --leading-normal: 1.5;
  --leading-relaxed:1.625;

  --weight-normal:  400;
  --weight-medium:  500;
  --weight-semibold:600;
  --weight-bold:    700;

  /* ── Spacing (4px base) ── */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* ── Radii ── */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  16px;
  --radius-full:9999px;

  /* ── Shadows ── */
  --shadow-card:  0 1px 3px rgba(0,0,0,0.07), 0 0 0 1px var(--border);
  --shadow-hover: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-glow:  0 0 24px var(--accent-glow);

  /* ── Transitions ── */
  --ease-base: 180ms ease;
  --ease-fast: 120ms ease;

  /* ── Layout ── */
  --container-max:     1200px;
  --container-padding: var(--sp-6);
  --section-padding-y: var(--sp-24);
}
