/* GoLive Design Tokens */
:root {
  /* Primary Colors */
  --primary: #7C5CFC;
  --primary-hover: #6B4AEB;
  --primary-light: rgba(124, 92, 252, 0.1);
  --primary-glow: rgba(124, 92, 252, 0.25);

  /* Accent */
  --accent: #00D4AA;
  --accent-hover: #00C09A;
  --accent-light: rgba(0, 212, 170, 0.15);

  /* Status Colors */
  --success: #00D4AA;
  --warning: #FFB224;
  --warning-light: rgba(255, 178, 36, 0.15);
  --error: #FF4D6A;
  --error-light: rgba(255, 77, 106, 0.15);
  --info: #3B82F6;

  /* Surfaces */
  --bg: #F0F2F8;
  --bg-secondary: #E8EAF2;
  --surface: #FFFFFF;
  --surface-hover: #F5F5FA;
  --surface-elevated: #F0F0F6;
  --surface-border: rgba(200, 200, 220, 0.5);

  /* Text */
  --text-primary: #1A1D2E;
  --text-secondary: #555770;
  --text-muted: #7A7E94;
  --text-faint: #A0A3B5;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-pill: 24px;
  --radius-full: 50%;
  --radius-2xl: 28px;

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

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.05), 0 12px 40px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 20px rgba(124, 92, 252, 0.3), 0 0 60px rgba(124, 92, 252, 0.1);

  /* Glass Surfaces */
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-bg-strong: rgba(255, 255, 255, 0.7);
  --glass-bg-subtle: rgba(255, 255, 255, 0.35);
  --glass-border: rgba(255, 255, 255, 0.45);
  --glass-border-light: rgba(255, 255, 255, 0.25);
  --glass-blur: blur(16px);
  --glass-blur-strong: blur(24px);

  /* Layered Shadows */
  --shadow-glass: 0 1px 2px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.06), 0 12px 40px rgba(0, 0, 0, 0.08);
  --shadow-glass-hover: 0 2px 4px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.1), 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-elevated: 0 2px 8px rgba(0, 0, 0, 0.04), 0 8px 32px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.5);

  /* Glow Variants */
  --glow-primary: 0 0 30px rgba(124, 92, 252, 0.3);
  --glow-primary-strong: 0 0 50px rgba(124, 92, 252, 0.4), 0 0 100px rgba(124, 92, 252, 0.15);
  --glow-accent: 0 0 30px rgba(0, 212, 170, 0.3);
  --glow-accent-strong: 0 0 50px rgba(0, 212, 170, 0.4), 0 0 100px rgba(0, 212, 170, 0.15);

  /* Gradient Orb Colors */
  --orb-primary: rgba(124, 92, 252, 0.15);
  --orb-accent: rgba(0, 212, 170, 0.12);

  /* Spring Easing */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Layout */
  --header-height: 64px;
  --sidebar-width: 260px;
  --content-max-width: 1200px;

  /* Font */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;

  /* 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: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.5rem;

  /* Line Heights */
  --leading-tight: 1.2;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;

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