/* variables.css */
:root {
  /* Colors */
  --color-bg:           #0d0f14;
  --color-surface:      #141720;
  --color-border:       #1e2433;
  --color-text:         #e2e4ec;
  --color-muted:        #6b7394;
  --color-accent:       #5b8dee;
  --color-accent-soft:  #1a2540;
  --color-green:        #4ade9a;
  --color-yellow:       #f5c842;
  --color-yellow-soft:  #2a2010;

  /* Typography */
  --font-display: 'DM Serif Display', serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* Spacing scale */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Layout */
  --max-width: 1100px;
  --nav-height: 60px;

  /* Borders */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Transitions */
  --transition-fast:   150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow:   400ms ease;
}
