/* ==========================================================================
   VOID C8 DESIGN TOKENS & SYSTEM VARIABLES
   ========================================================================== */

:root {
  /* Color Palette - Premium Obsidian & Luminous Cyber Accents */
  --bg-primary: #07090e;
  --bg-secondary: #0c1017;
  --bg-tertiary: #111723;
  --bg-card: rgba(17, 24, 39, 0.7);
  --bg-card-hover: rgba(26, 35, 54, 0.85);
  --bg-glass: rgba(12, 16, 23, 0.75);
  --bg-glass-subtle: rgba(255, 255, 255, 0.03);
  --bg-input: rgba(15, 23, 42, 0.6);

  /* Borders & Dividers */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.15);
  --border-glow: rgba(99, 102, 241, 0.35);
  --border-cyan-glow: rgba(6, 182, 212, 0.35);

  /* Primary Luminous Accents */
  --primary: #6366f1;
  --primary-hover: #4f46e5;
  --primary-light: #818cf8;
  --primary-glow: rgba(99, 102, 241, 0.3);
  
  /* Cyber Cyan / Tech Accent */
  --accent-cyan: #06b6d4;
  --accent-cyan-light: #22d3ee;
  --accent-cyan-glow: rgba(6, 182, 212, 0.3);

  /* Emerald Glow (Pricing, Success, ROI) */
  --accent-green: #10b981;
  --accent-green-light: #34d399;
  --accent-green-glow: rgba(16, 185, 129, 0.25);

  /* Violet & Pink Accents */
  --accent-violet: #8b5cf6;
  --accent-purple: #a855f7;
  --accent-pink: #ec4899;

  /* Typography Colors */
  --text-white: #ffffff;
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, #6366f1 0%, #06b6d4 50%, #8b5cf6 100%);
  --gradient-text: linear-gradient(135deg, #ffffff 20%, #cbd5e1 50%, #06b6d4 100%);
  --gradient-glow: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(6, 182, 212, 0.15));
  --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  --gradient-accent-box: linear-gradient(135deg, #6366f1 0%, #3b82f6 50%, #06b6d4 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 35px rgba(99, 102, 241, 0.25);
  --shadow-cyan-glow: 0 0 35px rgba(6, 182, 212, 0.25);

  /* Typography */
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --font-mono: 'Space Grotesk', monospace;

  /* Radii */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --max-width: 1240px;
  --header-height: 80px;
}
