:root {
  --color-bg: #080b13;
  --color-bg-alt: #0c101a;
  --color-surface: #10141f;
  --color-surface-alt: #141a28;
  --color-border: #202737;
  --color-text: #eef1f6;
  --color-text-muted: #8992a6;
  --color-text-faint: #545e72;

  --color-accent: #5b7cfa;
  --color-accent-strong: #4361ee;
  --color-accent-soft: rgba(91, 124, 250, 0.12);
  --color-violet: #a78bfa;
  --color-violet-soft: rgba(167, 139, 250, 0.14);
  --color-success: #34d399;
  --color-gold: #f5b942;
  --color-gold-soft: rgba(245, 185, 66, 0.12);

  --gradient-accent: linear-gradient(135deg, var(--color-accent), var(--color-violet));

  --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;

  --container-width: 1160px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 5rem;
  --space-8: 7rem;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;

  --shadow-md: 0 10px 30px -12px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 25px 60px -20px rgba(0, 0, 0, 0.65);

  --transition-fast: 180ms ease;
  --transition-base: 300ms cubic-bezier(0.22, 1, 0.36, 1);
  --transition-slow: 600ms cubic-bezier(0.22, 1, 0.36, 1);

  --z-nav: 100;
  --z-progress: 110;
  --z-fab: 95;
}