:root {
  /* Colors */
  --bg: #09090B;
  --fg: #FAFAFA;
  --accent: #DFE104;
  --accent-fg: #000000;
  --muted: #27272A;
  --muted-fg: #A1A1AA;
  --border: #3F3F46;

  /* Typography */
  --font-primary: 'Space Grotesk', 'Inter', system-ui, sans-serif;

  /* Type Scale */
  --text-hero: clamp(3rem, 12vw, 14rem);
  --text-section: clamp(2.5rem, 8vw, 6rem);
  --text-card: clamp(1.5rem, 4vw, 3.75rem);
  --text-body: clamp(1.125rem, 2vw, 1.5rem);
  --text-small: clamp(0.75rem, 1.5vw, 1.125rem);
  --text-nav: clamp(0.875rem, 1.2vw, 1rem);
  --text-massive: clamp(6rem, 15vw, 12rem);

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* Layout */
  --max-width: 95vw;
  --max-width-content: 1200px;
  --max-width-text: 672px;

  /* Borders */
  --border-width: 2px;
  --radius: 0px;

  /* Transitions */
  --transition-fast: 200ms ease;
  --transition-base: 300ms ease;

  /* Z-index layers */
  --z-base: 1;
  --z-nav: 100;
  --z-dropdown: 200;
  --z-overlay: 300;
  --z-noise: 9999;
}
