:root {
  --mono: 'JetBrains Mono', monospace;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --size-sm: 0.8rem;
  --size-base: 0.9rem;
  --size-lg: clamp(2rem, 4.5vw, 3rem);
  --spacing-lg: 2.5rem;
  --color-primary: #818cf8;
  --color-accent: #00ffb2;
  --color-bg: #07070d;
  --color-surface: #0d0d14;
  --color-text: #e8e8f0;
  --color-muted: #686890;
  --color-border: #1a1a2e;
}
:root.light {
  --color-primary: #6366f1;
  --color-accent: #059669;
  --color-bg: #f8f8fc;
  --color-surface: #ffffff;
  --color-text: #1a1a2e;
  --color-muted: #7878a0;
  --color-border: #e0e0ee;
}
