/* ============================================
   QUANTUM PARADOX — Design Tokens
   ============================================ */

:root {
  /* === Backgrounds === */
  --bg-primary: #0B1026;
  --bg-surface: #1A1A2E;
  --bg-elevated: #2B2D42;
  
  /* === Metallic Accents === */
  --metal-gunmetal: #3D4F5F;
  --metal-silver: #A8B2C1;
  --metal-chrome: #C8D2DC;
  
  /* === Primary Accent === */
  --accent-blue: #0066FF;
  --accent-blue-bright: #3388FF;
  --accent-blue-dim: #004DBF;
  --accent-blue-glow: rgba(0, 102, 255, 0.5);
  --accent-blue-subtle: rgba(0, 102, 255, 0.15);
  --accent-blue-ghost: rgba(0, 102, 255, 0.08);
  
  /* === Text === */
  --text-primary: #E8E0D4;
  --text-secondary: #8A8A9A;
  --text-heading: #F0ECE4;
  --text-bright: #FFFFFF;
  
  /* === Functional === */
  --color-danger: #CC3344;
  --color-success: #1B5E20;
  
  /* === Typography === */
  --font-display: 'Cinzel', Georgia, serif;
  --font-subheading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  
  /* === Spacing Scale === */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  
  /* === Border Radius === */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  
  /* === Shadows === */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px var(--accent-blue-glow);
  --shadow-glow-lg: 0 0 40px var(--accent-blue-glow), 0 0 80px rgba(0, 102, 255, 0.2);
  
  /* === Transitions === */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-spring: 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  
  /* === Layout === */
  --container-max: 1200px;
  --container-narrow: 800px;
  --nav-height: 80px;
}
