:root {
  /* Colors */
  --bg-color: #09090b; /* Pitch black */
  --text-color: #fafafa; /* Off-white */
  --accent-color: #e11d48; /* Crimson red */
  --surface-color: #18181b; /* Dark gray for cards/sections */
  --border-color: #27272a; /* Subtle borders */
  --muted-text: #a1a1aa; /* Dimmed text */
  --error-color: #ef4444;
  --success-color: #22c55e;

  /* Typography */
  --font-display: 'Space Mono', monospace;
  --font-text: 'Chivo', sans-serif;

  --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: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  --leading-none: 1;
  --leading-tight: 1.25;
  --leading-normal: 1.5;
  --leading-loose: 2;

  --weight-normal: 400;
  --weight-bold: 700;

  /* 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;

  /* Borders & Radii - explicitly sharp/brutalist */
  --radius-none: 0;
  --border-width-thin: 1px;
  --border-width-thick: 2px;
  --border-width-heavy: 4px;

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