/* Design Tokens */
:root {
  /* Colors */
  --color-bg: #0A0A0A;
  --color-text: #FFFFFF;
  --color-accent: #A7FC00;
  --color-muted: rgba(250, 250, 250, 0.5);
  --color-border: rgba(250, 250, 250, 0.12);
  --color-secondary: #FFFFFF;

  /* Typography */
  --font-primary: 'Aktiv Grotesk', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-secondary: 'Space Mono', 'Courier New', Courier, monospace;
  --font-size-base: 16px;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 64px;
  --space-xl: 128px;

  /* Transitions */
  --transition-base: 300ms ease;
  --transition-slow: 600ms ease;

  /* Layout */
  --max-width: 1440px;
  --grid-gap: 2px;
}
