:root {
  /* BRAND */
  --brand-bg: #0f172a;
  --brand-surface: #111827;
  --brand-surface-soft: #0d1a31;
  --brand-text: #e5e7eb;
  --brand-muted: #9ca3af;
  --brand-line: rgba(255, 255, 255, 0.08);
  --brand-line-strong: rgba(255, 255, 255, 0.14);
  --brand-accent: #22c55e;
  --brand-accent-strong: #166534;
  --brand-accent-soft: rgba(34, 197, 94, 0.24);
  --brand-blue: #4a60ff;
  --brand-violet: #6473ff;
  --brand-amber: #f0be6a;
  --brand-danger: #ff453a;
  --brand-glow-cobalt: rgba(74, 96, 255, 0.22);
  --brand-glow-lava: rgba(255, 69, 58, 0.22);

  /* SPACING */
  --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;

  /* TYPOGRAPHY */
  --font-sans: "Inter", "Segoe UI", system-ui, sans-serif;
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "Roboto Mono", monospace;

  --text-xs: 11px;
  --text-sm: 13px;
  --text-base: 15px;
  --text-md: 16px;
  --text-lg: 18px;
  --text-xl: 20px;
  --text-2xl: 24px;
  --text-3xl: 30px;
  --text-4xl: 36px;
  --text-5xl: clamp(40px, 5vw, 56px);
  --text-hero: clamp(48px, 7vw, 80px);

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

  --leading-tight: 1.15;
  --leading-snug: 1.3;
  --leading-normal: 1.5;
  --leading-relaxed: 1.65;

  --tracking-tight: -0.03em;
  --tracking-normal: 0em;
  --tracking-wide: 0.04em;
  --tracking-wider: 0.08em;
  --tracking-widest: 0.12em;

  /* RADIUS */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-pill: 999px;

  /* SHADOW */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.18);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.22), 0 1px 2px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.28), 0 2px 6px rgba(0, 0, 0, 0.16);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.36), 0 4px 12px rgba(0, 0, 0, 0.18);
  --shadow-xl: 0 16px 56px rgba(0, 0, 0, 0.44), 0 6px 20px rgba(0, 0, 0, 0.22);
  --shadow-glow-accent: 0 0 20px rgba(34, 197, 94, 0.28);
  --shadow-glow-blue: 0 0 20px rgba(74, 96, 255, 0.28);

  /* Z-INDEX */
  --z-base: 1;
  --z-raised: 10;
  --z-dropdown: 20;
  --z-sticky: 30;
  --z-nav: 40;
  --z-overlay: 50;
  --z-modal: 60;
  --z-toast: 70;
  --z-tooltip: 80;

  /* TRANSITIONS */
  --ease-default: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  --duration-fast: 120ms;
  --duration-normal: 200ms;
  --duration-slow: 320ms;
  --duration-slower: 480ms;

  --transition-fast: var(--duration-fast) var(--ease-out);
  --transition-normal: var(--duration-normal) var(--ease-out);
  --transition-slow: var(--duration-slow) var(--ease-default);
  --transition-spring: var(--duration-slow) var(--ease-spring);

  /* LAYOUT */
  --container-max: 1180px;
  --container-pad: var(--space-4);
  --nav-height: 60px;
  --nav-height-mobile: 56px;

  /* BORDERS */
  --border-subtle: 1px solid var(--brand-line);
  --border-default: 1px solid var(--brand-line-strong);
  --border-accent: 1px solid var(--brand-accent);
}

