:root {
  /* Colors - Industrial, precise, cold aesthetic */
  --color-black: #050505; /* Deep space black */
  --color-white: #fafafa; /* Stark white */
  --color-orange: #ff4500; /* Safety orange */
  --color-gray-900: #1a1a1a;
  --color-gray-800: #2d2d2d;
  --color-gray-700: #4a4a4a;
  --color-gray-500: #7a7a7a;
  --color-gray-300: #b0b0b0;
  --color-gray-100: #e0e0e0;

  --color-bg: var(--color-black);
  --color-bg-alt: var(--color-gray-900);
  --color-text: var(--color-white);
  --color-text-muted: var(--color-gray-300);
  --color-accent: var(--color-orange);
  --color-border: var(--color-gray-800);

  /* Typography */
  --font-display: 'Space Grotesk', sans-serif;
  --font-text: 'IBM Plex Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace; /* fallback */

  /* Font sizes - purposeful hierarchy */
  --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: 5rem;

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

  /* Container */
  --container-width: 1200px;
  --container-padding: var(--space-4);

  /* Borders */
  --border-width: 1px;
  --border-width-thick: 3px;
  --radius-none: 0;

  /* Transitions */
  --transition-fast: 0.15s ease-out;
}
