:root {
  /* Colors - Stark, Utilitarian, Precision Golf */
  --color-bg: #09090b; /* Almost black */
  --color-text: #fafafa; /* Off-white */
  --color-text-muted: #a1a1aa;
  --color-accent: #16a34a; /* Precise green */
  --color-accent-hover: #15803d;
  --color-border: #27272a;
  --color-surface: #18181b;

  /* Typography */
  --font-display: 'Oswald', system-ui, sans-serif;
  --font-text: 'Chivo', system-ui, sans-serif;

  /* Scale */
  --step--2: 0.694rem;
  --step--1: 0.833rem;
  --step-0: 1rem;
  --step-1: 1.2rem;
  --step-2: 1.44rem;
  --step-3: 1.728rem;
  --step-4: 2.074rem;
  --step-5: 2.488rem;
  --step-6: 2.986rem;

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

  /* Radii - minimal/none for brutalist/industrial feel */
  --radius-none: 0;
  --radius-sm: 2px;

  /* Layout */
  --container-width: 1200px;
}