:root {

  /* =========================
     COLORS
  ========================= */

  --color-primary-600: #2563eb;
  --color-primary-500: #3b82f6;
  --color-primary-400: #60a5fa;
  --color-primary-300: #93c5fd;

  --color-text-900: #111827;
  --color-text-700: #374151;
  --color-text-500: #6b7280;
  --color-text-300: #d1d5db;

  --color-bg: #f5f7fb;
  --color-surface: #ffffff;
  --color-surface-soft: #f8fafc;
  --color-border: #e5e7eb;

  --color-success: #16a34a;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;

  /* =========================
     TYPOGRAPHY
  ========================= */

  --font-heading:
    "Plus Jakarta Sans",
    Inter,
    sans-serif;

  --font-body:
    Inter,
    sans-serif;

  --text-display: 72px;
  --text-h1: 56px;
  --text-h2: 40px;
  --text-h3: 28px;
  --text-h4: 22px;

  --text-body-lg: 18px;
  --text-body: 16px;
  --text-body-sm: 14px;
  --text-caption: 12px;

  --line-tight: 1.05;
  --line-heading: 1.12;
  --line-body: 1.6;

  --tracking-tight: -0.03em;

  /* =========================
     SPACING SCALE
  ========================= */

  --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;
  --space-20: 80px;
  --space-24: 96px;

  /* =========================
     RADIUS
  ========================= */

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* =========================
     SHADOWS
  ========================= */

  --shadow-sm:
    0 1px 2px rgba(16,24,40,0.04);

  --shadow-md:
    0 8px 20px rgba(16,24,40,0.06);

  --shadow-lg:
    0 20px 40px rgba(16,24,40,0.08);

  /* =========================
     LAYOUT
  ========================= */

  --container-width: 1440px;
  --container-narrow: 1200px;

  --header-height: 84px;

  /* =========================
     TRANSITIONS
  ========================= */

  --transition-fast: 0.2s ease;
}