:root {
  /* Background / Surfaces */
  --bg-0: #0b0c0f;
  --bg-1: #111318;

  --surface-0: #151824;
  --surface-1: #1b2030;

  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  /* Text */
  --text-1: #f2f3f5;
  --text-2: rgba(242, 243, 245, 0.72);
  --text-3: rgba(242, 243, 245, 0.52);

  /* Accent */
  --accent: #8b5cf6;
  --accent-strong: #a78bfa;
  --accent-soft: rgba(139, 92, 246, 0.18);

  --accent-2: #3b82f6;
  --accent-2-soft: rgba(59, 130, 246, 0.14);

  /* Semantic */
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #38bdf8;

  /* Typography */
  --font-display: "Space Grotesk", Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --lh-tight: 1.15;
  --lh-normal: 1.45;
  --lh-loose: 1.65;

  --fs-1: 12px;
  --fs-2: 14px;
  --fs-3: 16px;
  --fs-4: 18px;
  --fs-5: 20px;
  --fs-6: 24px;
  --fs-7: 32px;
  --fs-8: 40px;
  --fs-9: 56px;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* Spacing (4px base) */
  --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 */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-1: 0 6px 20px rgba(0, 0, 0, 0.35);
  --shadow-2: 0 12px 40px rgba(0, 0, 0, 0.45);
  --shadow-3: 0 18px 60px rgba(0, 0, 0, 0.55);

  /* Border widths */
  --bw-1: 1px;
  --bw-2: 2px;

  /* Motion */
  --dur-1: 120ms;
  --dur-2: 180ms;
  --dur-3: 240ms;

  --ease-1: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-2: cubic-bezier(0.16, 1, 0.3, 1);

  /* Z-index */
  --z-base: 0;
  --z-header: 10;
  --z-dropdown: 20;
  --z-modal: 40;
  --z-toast: 60;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
