/* Design tokens - futuristic dark theme */
:root {
  /* Colors - dark palette with cyan/blue accent */
  --color-text: #E8EEF4;
  --color-text-muted: #94A3B8;
  --color-accent: #22D3EE;
  --color-accent-hover: #06B6D4;
  --color-accent-glow: rgba(34, 211, 238, 0.25);
  --color-bg: #0A0E17;
  --color-bg-subtle: #0F1623;
  --color-surface: #131B2E;
  --color-border: #1E293B;
  --color-bg-glow: rgba(34, 211, 238, 0.08);
  --color-on-accent: #0A0E17;
  --navbar-bg: rgba(10, 14, 23, 0.85);

  /* Spacing scale (8px base) */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 40px;
  --space-2xl: 48px;
  --space-3xl: 60px;
  --space-4xl: 64px;

  /* Typography */
  --font-sans: 'Syne', system-ui, sans-serif;
  --font-display: 'Syne', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-size-base: 1rem;
  --font-size-lg: 1.15rem;
  --font-size-xl: 1.75rem;
  --font-size-2xl: 2.25rem;
  --line-height: 1.65;
  --font-weight-bold: 700;
  --font-weight-semibold: 600;

  /* Borders */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;

  /* Breakpoints */
  --bp-sm: 600px;
  --bp-md: 768px;
  --bp-lg: 1050px;

  /* Mouse/touch position for interactive background (updated by JS) */
  --mouse-x: 50%;
  --mouse-y: 50%;
  --mouse-x-pct: 0.5;
  --mouse-y-pct: 0.5;
}

/* Light theme - warm daytime (space theme’s “day” side) */
[data-theme="light"] {
  --color-text: #1C1917;
  --color-text-muted: #57534E;
  --color-accent: #E0782D;
  --color-accent-hover: #C26522;
  --color-accent-glow: rgba(224, 120, 45, 0.22);
  --color-bg: #ffffff;
  --color-bg-subtle: #FEF3C7;
  --color-surface: #FFFDF5;
  --color-border: #E7E5E4;
  --color-bg-glow: rgba(251, 191, 36, 0.12);
  --color-on-accent: #FFFFFF;
  --navbar-bg: rgba(255, 251, 235, 0.92);
}
