/* ==========================================================================
   ORBIT SPACE SYSTEM PRO — Design Tokens
   Change values here to re-theme the entire site. Nothing else needs editing.
   ========================================================================== */

:root {
  /* ---- Deep space backgrounds ---- */
  --void-black: #050508;
  --space-black: #0a0a0f;
  --space-navy: #12121e;
  --space-purple: #1a1a2e;
  --nebula-blue: #0d1b2a;

  /* ---- Cosmic gold (primary accent) ---- */
  --cosmic-gold: #d4af37;
  --cosmic-gold-light: #f4d03f;
  --cosmic-gold-dark: #b8860b;
  --gold-glow: rgba(212, 175, 55, 0.4);

  /* ---- Neon (secondary accents) ---- */
  --neon-cyan: #00f5d4;
  --neon-pink: #f15bb5;
  --neon-blue: #00bbf9;
  --neon-purple: #9b5de5;

  /* ---- Data / status colors ---- */
  --data-green: #00ff88;
  --data-red: #ff3366;
  --data-amber: #ffaa00;

  /* ---- Glow layers ---- */
  --glow-gold: rgba(212, 175, 55, 0.3);
  --glow-cyan: rgba(0, 245, 212, 0.2);
  --glow-pink: rgba(241, 91, 181, 0.15);

  /* ---- Text ---- */
  --text-primary: #f0f0f5;
  --text-secondary: #a0a0b8;
  --text-muted: #606070;
  --text-data: #00ff88;

  /* ---- Glass surfaces ---- */
  --glass-bg: rgba(10, 10, 20, 0.6);
  --glass-border: rgba(212, 175, 55, 0.15);
  --glass-highlight: rgba(255, 255, 255, 0.05);

  /* ---- Spacing scale (4px base) ---- */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --space-16: 64px;
  --space-24: 96px;

  /* ---- Radii ---- */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;

  /* ---- Motion ---- */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 0.2s;
  --dur-base: 0.4s;
  --dur-slow: 0.8s;

  /* ---- Z-index scale ---- */
  --z-canvas: 0;
  --z-content: 1;
  --z-navbar: 100;
  --z-dropdown: 200;
  --z-modal: 1000;
}
