/* ═══════════════════════════════════════════
   Design System — Variables
   ═══════════════════════════════════════════ */

:root {
  /* Background layers */
  --bg-primary:    #0A0A0F;
  --bg-secondary:  #111118;
  --bg-tertiary:   #1A1A24;
  --bg-elevated:   #222230;

  /* Text hierarchy */
  --text-primary:   #F0F0F5;
  --text-secondary: #A0A0B8;
  --text-tertiary:  #6B6B80;

  /* Accent */
  --accent:        #4F7BF7;
  --accent-light:  #6B93FF;
  --accent-glow:   rgba(79, 123, 247, 0.15);
  --accent-glow-strong: rgba(79, 123, 247, 0.25);

  /* Gold — automotive premium */
  --gold:          #C5A55A;
  --gold-muted:    rgba(197, 165, 90, 0.12);

  /* Borders */
  --border:        rgba(255, 255, 255, 0.06);
  --border-hover:  rgba(255, 255, 255, 0.12);
  --border-accent: rgba(79, 123, 247, 0.3);

  /* Fonts */
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:  'JetBrains Mono', 'Fira Code', monospace;

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

  /* Spacing scale */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-card:  0 1px 2px rgba(0, 0, 0, 0.3), 0 4px 16px rgba(0, 0, 0, 0.2);
  --shadow-glow:  0 0 20px var(--accent-glow), 0 0 60px rgba(79, 123, 247, 0.08);
  --shadow-gold:  0 0 20px var(--gold-muted);

  /* Transitions */
  --transition-fast:   150ms ease;
  --transition-base:   300ms ease;
  --transition-slow:   500ms ease;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --nav-height: 72px;
}
