/* ============================================
   THE PROSPECT LAB — Design Tokens
   Palette: Dark navy/blue-black, electric blue accent
   ============================================ */

:root,
[data-theme='dark'] {
  /* Surfaces — deep navy/blue-black */
  --color-bg: #05080f;
  --color-surface: #090d17;
  --color-surface-2: #0d1220;
  --color-surface-offset: #101626;
  --color-surface-offset-2: #141b2d;
  --color-surface-dynamic: #1a2238;
  --color-divider: #1e2840;
  --color-border: #263050;

  /* Text */
  --color-text: #e8edf8;
  --color-text-muted: #7a8baa;
  --color-text-faint: #3d4f70;
  --color-text-inverse: #05080f;

  /* Primary Accent — Electric Blue */
  --color-primary: #4d9fff;
  --color-primary-hover: #2e8fff;
  --color-primary-active: #1a7fe0;
  --color-primary-highlight: #0a1e3d;

  /* Secondary */
  --color-secondary: #e8edf8;

  /* Error */
  --color-error: #e05565;

  /* Success */
  --color-success: #4ec98a;

  /* Shadows */
  --shadow-sm: 0 1px 3px oklch(0 0 0 / 0.5);
  --shadow-md: 0 4px 16px oklch(0 0 0 / 0.6);
  --shadow-lg: 0 12px 40px oklch(0 0 0 / 0.7);
  --shadow-glow: 0 0 48px oklch(0.65 0.2 240 / 0.25);

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 400ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;

  /* Type Scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 0.5rem + 7vw, 8rem);

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

  /* Fonts */
  --font-display: 'Clash Display', 'Arial Black', sans-serif;
  --font-body: 'Satoshi', 'Inter', sans-serif;
}

/* Light mode */
[data-theme='light'] {
  --color-bg: #f0f4ff;
  --color-surface: #ffffff;
  --color-surface-2: #f5f8ff;
  --color-surface-offset: #eaf0ff;
  --color-surface-offset-2: #e0e9ff;
  --color-surface-dynamic: #d4e0ff;
  --color-divider: #c8d5f0;
  --color-border: #b8c8e8;
  --color-text: #050810;
  --color-text-muted: #3d5280;
  --color-text-faint: #8899bb;
  --color-text-inverse: #e8edf8;
  --color-primary: #1a72e0;
  --color-primary-hover: #0f60cc;
  --color-primary-active: #0a4eaa;
  --color-primary-highlight: #daeaff;
  --shadow-sm: 0 1px 3px oklch(0.2 0.05 240 / 0.08);
  --shadow-md: 0 4px 16px oklch(0.2 0.05 240 / 0.1);
  --shadow-lg: 0 12px 40px oklch(0.2 0.05 240 / 0.14);
  --shadow-glow: 0 0 40px oklch(0.55 0.2 240 / 0.15);
}
