/* ============================================
   4Geeks AI Convergence — Design Tokens
   ============================================ */

:root {
  /* ── Background ── */
  --bg-deep: #060614;
  --bg-section: #0a0a1f;
  --bg-card: rgba(15, 15, 40, 0.7);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --bg-glass-border: rgba(255, 255, 255, 0.08);

  /* ── Brand Colors ── */
  --accent-blue: #0084FF;
  --accent-blue-glow: rgba(0, 132, 255, 0.4);
  --accent-cyan: #00d4ff;
  --accent-cyan-glow: rgba(0, 212, 255, 0.3);

  /* ── Course Colors ── */
  --color-fullstack: #f59e0b;
  --color-fullstack-glow: rgba(245, 158, 11, 0.35);
  --color-datascience: #a855f7;
  --color-datascience-glow: rgba(168, 85, 247, 0.35);
  --color-cybersecurity: #10b981;
  --color-cybersecurity-glow: rgba(16, 185, 129, 0.35);

  /* ── Text ── */
  --text-primary: #f0f0f8;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-accent: var(--accent-blue);

  /* ── Typography ── */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Inter', sans-serif;

  --fs-hero: clamp(3rem, 8vw, 7rem);
  --fs-h1: clamp(2.5rem, 5vw, 4.5rem);
  --fs-h2: clamp(1.8rem, 3.5vw, 3rem);
  --fs-h3: clamp(1.2rem, 2vw, 1.75rem);
  --fs-body: clamp(1rem, 1.2vw, 1.2rem);
  --fs-small: clamp(0.85rem, 1vw, 1rem);
  --fs-caption: 0.8rem;

  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-black: 900;

  /* ── Spacing ── */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 10rem;

  /* ── Border Radius ── */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* ── Transitions ── */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 800ms;
  --duration-slower: 1200ms;

  /* ── Z-Index Scale ── */
  --z-canvas: 0;
  --z-content: 10;
  --z-overlay: 20;
  --z-modal: 30;
  --z-toast: 40;

  /* ── Shadows ── */
  --shadow-glow-blue: 0 0 40px var(--accent-blue-glow), 0 0 80px rgba(0, 132, 255, 0.15);
  --shadow-glow-cyan: 0 0 40px var(--accent-cyan-glow), 0 0 80px rgba(0, 212, 255, 0.1);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 1px rgba(255, 255, 255, 0.05);
  --shadow-card-hover: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 1px rgba(255, 255, 255, 0.1);
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --duration-fast: 0ms;
    --duration-normal: 0ms;
    --duration-slow: 0ms;
    --duration-slower: 0ms;
  }
}
