/* ============================================
   Design Tokens — Dark Quant Terminal
   ============================================ */

:root {
  /* ── Base Colors ── */
  --bg-base: #0A0A0A;
  --bg-elevated: #111111;
  --bg-surface: rgba(255,255,255,0.03);
  --bg-surface-hover: rgba(255,255,255,0.06);
  --bg-overlay: rgba(0,0,0,0.7);

  /* ── Glow Accents ── */
  --glow-positive: #00FF9F;
  --glow-insight: #00E5FF;
  --glow-warning: #FFB300;
  --glow-risk: #FF3B5C;

  /* ── Domain Accent (override per domain) ── */
  --accent: #00FF9F;
  --accent-rgb: 0, 255, 159;
  --accent-soft: rgba(0, 255, 159, 0.1);
  --accent-glow: rgba(0, 255, 159, 0.3);

  /* ── Text ── */
  --text-primary: #F0F0F0;
  --text-secondary: #8B8B8B;
  --text-muted: #555555;
  --text-accent: var(--accent);

  /* ── Borders ── */
  --border-default: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.12);
  --border-accent: var(--accent);

  /* ── Typography ── */
  --font-display: 'Clash Display', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'Geist Mono', 'SF Mono', monospace;

  /* ── Spacing ── */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-section: 80px;

  /* ── Radius ── */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;

  /* ── Container ── */
  --container-max: 1200px;
  --nav-height: 60px;

  /* ── Shadows ── */
  --shadow-1: 0 2px 8px rgba(0,0,0,0.2);
  --shadow-2: 0 4px 16px rgba(0,0,0,0.3);
  --shadow-3: 0 8px 32px rgba(0,0,0,0.4);

  /* ── Animation ── */
  --duration-fast: 200ms;
  --duration-base: 300ms;
  --duration-slow: 500ms;
  --ease-default: cubic-bezier(0.4, 0, 0.2, 1);
  --stagger: 0.08s;
}

/* ── Domain Overrides ── */
[data-domain="idpranks"] {
  --accent: #FF6B2B;
  --accent-rgb: 255, 107, 43;
  --accent-soft: rgba(255, 107, 43, 0.1);
  --accent-glow: rgba(255, 107, 43, 0.3);
}

[data-domain="draftsim"] {
  --accent: #3B82F6;
  --accent-rgb: 59, 130, 246;
  --accent-soft: rgba(59, 130, 246, 0.1);
  --accent-glow: rgba(59, 130, 246, 0.3);
}

[data-domain="superflex"] {
  --accent: #A855F7;
  --accent-rgb: 168, 85, 247;
  --accent-soft: rgba(168, 85, 247, 0.1);
  --accent-glow: rgba(168, 85, 247, 0.3);
}

[data-domain="draftstrategy"] {
  --accent: #14B8A6;
  --accent-rgb: 20, 184, 166;
  --accent-soft: rgba(20, 184, 166, 0.1);
  --accent-glow: rgba(20, 184, 166, 0.3);
}
