:root {
  /* Colors - Dark theme (default) */
  --bg: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --text: #e0e0e0;
  --text-secondary: #999999;
  --text-tertiary: #555555;
  --accent: #00ffd0;
  --accent-hover: #33ffe0;
  --accent-dim: rgba(0, 255, 208, 0.15);
  --accent-muted: rgba(0, 255, 208, 0.4);
  --border: #222222;

  /* Typography */
  --font-mono: 'JetBrains Mono', ui-monospace, 'Cascadia Code', 'Fira Code', monospace;
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  --space-2xl: 8rem;

  /* Layout */
  --max-width: 1000px;
  --nav-height: 60px;
  --padding-x: clamp(1rem, 5vw, 3rem);

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

  /* Shadows */
  --glow: 0 0 20px var(--accent-dim);
}
