/* ==========================================================================
   GLOBAL EDU PLATFORM — DESIGN TOKENS (variables.css)
   Satu-satunya sumber kebenaran (Single Source of Truth) untuk semua token UI.
   ========================================================================== */

:root {
  /* Color Palette — Slate Focus & Vibrant Accents */
  --primary: #6366F1;
  --primary-hover: #4F46E5;
  --primary-light: #EEF2FF;
  --primary-glow: rgba(99, 102, 241, 0.35);

  --secondary: #10B981;
  --secondary-hover: #059669;
  --secondary-light: #ECFDF5;
  --secondary-glow: rgba(16, 185, 129, 0.3);

  --accent: #F59E0B;
  --accent-hover: #D97706;
  --accent-glow: rgba(245, 158, 11, 0.35);

  --danger: #EF4444;
  --danger-hover: #DC2626;
  --danger-glow: rgba(239, 68, 68, 0.3);

  --success: #22C55E;
  --success-glow: rgba(34, 197, 94, 0.3);

  --info: #38BDF8;

  /* Surfaces & Backgrounds */
  --bg: #0F172A;
  --bg-deep: #0B0F19;
  --surface: #1E293B;
  --surface-hover: #293548;
  --surface-alt: #162032;
  --border: rgba(148, 163, 184, 0.14);
  --border-focus: rgba(99, 102, 241, 0.5);

  /* Typography Colors */
  --text: #F8FAFC;
  --text-muted: #94A3B8;
  --text-subtle: #64748B;
  --text-inverse: #0F172A;

  /* Typography Font Families */
  --font-display: 'Nunito', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Font Sizes */
  --text-xs: 0.75rem;     /* 12px */
  --text-sm: 0.875rem;    /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-lg: 1.125rem;    /* 18px */
  --text-xl: 1.25rem;     /* 20px */
  --text-2xl: 1.5rem;     /* 24px */
  --text-3xl: 1.875rem;   /* 30px */
  --text-4xl: 2.25rem;    /* 36px */

  /* Spacing Scale */
  --space-1: 0.25rem;     /* 4px */
  --space-2: 0.5rem;      /* 8px */
  --space-3: 0.75rem;     /* 12px */
  --space-4: 1rem;        /* 16px */
  --space-5: 1.25rem;     /* 20px */
  --space-6: 1.5rem;      /* 24px */
  --space-8: 2rem;        /* 32px */
  --space-10: 2.5rem;     /* 40px */
  --space-12: 3rem;       /* 48px */

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
  --shadow-md: 0 4px 12px -2px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.45);
  --shadow-glow-primary: 0 0 20px var(--primary-glow);
  --shadow-glow-accent: 0 0 20px var(--accent-glow);

  /* Animation & Transitions */
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 600ms;

  /* Layout Max Widths */
  --container-max: 1200px;
  --header-height: 64px;
}
