:root {
  /* Colors */
  --color-bg: #05070D;
  --color-surface: #0B1220;
  --color-surface-2: #111827;
  --color-accent: #00E5FF;
  --color-accent-2: #6C3BFF;
  --color-accent-3: #3DFFD1;
  --color-text: #E8EDF5;
  --color-muted: #7A8BA0;
  --color-border: rgba(0, 229, 255, 0.15);
  --color-overlay: rgba(5, 7, 13, 0.85);

  /* Gradients */
  --gradient-accent: linear-gradient(135deg, #6C3BFF, #00E5FF);
  --gradient-accent-2: linear-gradient(135deg, #00E5FF, #3DFFD1);
  --gradient-hero: linear-gradient(180deg, rgba(5,7,13,0) 0%, rgba(5,7,13,0.8) 100%);
  --gradient-card: linear-gradient(135deg, #0B1220 0%, #111827 100%);

  /* Glow */
  --glow-accent: 0 0 20px rgba(0, 229, 255, 0.4), 0 0 40px rgba(0, 229, 255, 0.15);
  --glow-accent-sm: 0 0 10px rgba(0, 229, 255, 0.3);
  --glow-btn: 0 0 20px rgba(0, 229, 255, 0.5), 0 4px 15px rgba(0, 229, 255, 0.2);

  /* Typography */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Spacing (4px base unit) */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;
  --sp-32: 128px;

  /* Border radius */
  --radius-sm: 4px;
  --radius-btn: 8px;
  --radius-card: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* Layout */
  --max-width: 1280px;
  --header-height: 72px;
}
