:root {
  /* Colors - High Contrast Minimalist Point of View */
  --color-bg: #0f1014;
  --color-surface: #1a1c23;
  --color-surface-hover: #262933;
  --color-border: #313540;

  --color-text-main: #f0f2f5;
  --color-text-muted: #8b92a5;

  --color-accent: #ccff00; /* Neon yellow/green */
  --color-accent-hover: #b3e600;

  --color-error: #ff4a4a;

  /* Typography */
  --font-display: 'Syne', sans-serif;
  --font-text: 'DM Sans', sans-serif;

  /* Type Scale */
  --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: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.5rem;
  --text-6xl: 4.5rem;
  --text-7xl: 6rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;

  /* Grid & Columns */
  --grid-gap: var(--space-8);
}