:root {
  /* ── Palette ── */
  --color-bg:             #fafafa;
  --color-surface:        #ffffff;
  --color-surface-raised: #ffffff;
  --color-text:           #0f172a;
  --color-text-secondary: #64748b;
  --color-text-muted:     #94a3b8;
  --color-border:         #e2e8f0;
  --color-border-subtle:  #f1f5f9;
  --color-code-bg:        #1e293b;
  --color-code-text:      #e2e8f0;

  /* Accent — Orange / Amber */
  --color-accent:         #f97316;
  --color-accent-hover:   #ea580c;
  --color-accent-light:   #fff7ed;
  --color-accent-50:      #fff7ed;
  --color-accent-100:     #ffedd5;
  --color-accent-200:     #fed7aa;
  --color-accent-500:     #f97316;
  --color-accent-600:     #ea580c;
  --color-accent-700:     #c2410c;
  --color-accent-glow:    rgba(249, 115, 22, 0.12);

  /* Glass / Bento */
  --glass-bg:             rgba(255, 255, 255, 0.65);
  --glass-bg-hover:       rgba(255, 255, 255, 0.85);
  --glass-border:         rgba(255, 255, 255, 0.45);
  --glass-shadow:         0 8px 32px rgba(0, 0, 0, 0.06);
  --glass-blur:           16px;

  /* ── Typography ── */
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:  'JetBrains Mono', 'Fira 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.2;
  --leading-snug:    1.35;
  --leading-normal:  1.6;
  --leading-relaxed: 1.75;

  --tracking-tight:  -0.02em;
  --tracking-normal:  0;
  --tracking-wide:    0.025em;

  /* ── Spacing scale ── */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* ── Layout ── */
  --container-max:  1200px;
  --container-wide: 1400px;
  --nav-height:     64px;

  /* ── Radius ── */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  /* ── Transitions ── */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast:   150ms;
  --duration-normal: 250ms;
  --duration-slow:   400ms;
}
