/**
 * Swarm Intelligence - CSS Design Tokens
 * Dark theme with grays, pink, and neon accents
 */

:root {
  /* Brand Colors - Pink/Magenta primary */
  --color-primary: #e91e8c;
  --color-primary-light: #ff4da6;
  --color-primary-dark: #c4176f;
  --color-primary-alpha-10: rgba(233, 30, 140, 0.15);
  --color-primary-alpha-20: rgba(233, 30, 140, 0.25);

  /* Neon accent colors */
  --color-neon: #00ff88;
  --color-neon-blue: #00d4ff;
  --color-neon-purple: #bf5af2;

  /* Background Colors - Dark grays */
  --color-bg: #0d0d12;
  --color-bg-secondary: #14141c;
  --color-bg-tertiary: #1c1c28;
  --color-bg-elevated: #222230;

  /* Text Colors */
  --color-text: #f0f0f5;
  --color-text-secondary: #a0a0b0;
  --color-text-muted: #6a6a7a;
  --color-text-inverse: #ffffff;

  /* Status Colors */
  --color-success: #00ff88;
  --color-warning: #ffaa00;
  --color-error: #ff4466;
  --color-info: #00d4ff;

  /* Intent Colors (for purchase intent) */
  --color-intent-very-high: #00ff88;
  --color-intent-high: #88ff00;
  --color-intent-medium: #ffaa00;
  --color-intent-low: #6a6a7a;

  /* Border Colors */
  --color-border: #2a2a3a;
  --color-border-light: #1c1c28;

  /* Typography */
  --font-heading: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Cabin', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;

  /* Font Weights */
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;

  /* Line Heights */
  --leading-tight: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;

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

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

  /* Shadows - with neon glow */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4), 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.4), 0 4px 6px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.4), 0 8px 10px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 20px rgba(233, 30, 140, 0.3);
  --shadow-neon: 0 0 10px rgba(0, 255, 136, 0.4);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 200ms ease;
  --transition-slow: 300ms ease;

  /* Layout */
  --sidebar-width: 320px;
  --header-height: 72px;

  /* Z-index */
  --z-dropdown: 100;
  --z-modal: 200;
  --z-tooltip: 300;
}
