:root {
  /* Base dark theme */
  --bg-primary: #0a0e17;
  --bg-secondary: #0f1420;
  --bg-card: #151b28;
  --bg-elevated: #1e2738;
  --bg-hover: #212c40;

  /* Borders */
  --border: #2a3441;
  --border-light: #3a4558;
  --border-glow: rgba(0, 212, 170, 0.3);

  /* Text */
  --text-primary: #e2e8f0;
  --text-secondary: #8892a4;
  --text-muted: #5a6478;
  --text-inverse: #0a0e17;

  /* Accents - Trading terminal palette */
  --accent-green: #00d4aa;
  --accent-green-dim: rgba(0, 212, 170, 0.15);
  --accent-red: #ff4757;
  --accent-red-dim: rgba(255, 71, 87, 0.15);
  --accent-blue: #3498ff;
  --accent-blue-dim: rgba(52, 152, 255, 0.15);
  --accent-gold: #f1c40f;
  --accent-gold-dim: rgba(241, 196, 15, 0.15);
  --accent-purple: #a855f7;
  --accent-orange: #ff8c42;

  /* Semantic */
  --bullish: var(--accent-green);
  --bearish: var(--accent-red);
  --neutral: var(--accent-blue);

  /* Spacing */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;

  /* Radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 24px rgba(0, 212, 170, 0.2);

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Consolas, monospace;

  /* Layout */
  --sidebar-w: 72px;
  --header-h: 60px;
  --status-h: 32px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 150ms;
  --dur-med: 250ms;
  --dur-slow: 400ms;
}
