/* ═══════════════════════════════════════════════════════════════════════════
   🧱 KOLOPLUS TOKENS — Single source of truth
   Loaded BEFORE theme-v2 + all other CSS.
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  /* ── Base Palette (do not theme-switch these) ── */
  --k-yellow: #F5DF4D;
  --k-yellow-light: #FBBF24;
  --k-yellow-dark: #D9C43D;

  --k-cyan: #22D3EE;
  --k-cyan-light: #67E8F9;
  --k-cyan-dark: #0EA5B7;

  --k-green: #10B981;
  --k-green-light: #34D399;

  --k-red: #EF4444;
  --k-red-light: #F87171;

  --k-blue: #3B82F6;
  --k-blue-light: #60A5FA;

  --k-purple: #A855F7;
  --k-purple-light: #C084FC;

  --k-pink: #EC4899;
  --k-pink-light: #F472B6;

--k-orange: #FF6B35;
--k-orange-dark: #E85D2C;
--k-white: #FFFFFF;

--k-slate-800: #1E293B;
--k-slate-600: #475569;
--k-slate-400: #94A3B8;
--k-slate-100: #F1F5F9;

/* Auth light mesh palette */
--k-auth-light-1: #FEF3E2;
--k-auth-light-2: #FCE7F3;
--k-auth-light-3: #EDE9FE;
--k-auth-light-4: #E0F2FE;
--k-auth-light-5: #ECFEFF;

/* Auth deep ink (used by auth background) */
--k-auth-ink: #080A14;


  /* ── Extended Palette (exact legacy colors, for zero visual drift) ── */
  --k-slate-900: #0F172A;
  --k-blue-200: #93C5FD;

  --k-amber-500: #F59E0B;
  --k-amber-600: #D97706;

  --k-red-600: #DC2626;
  --k-red-700: #B91C1C;

  --k-violet-600: #7C3AED;
  --k-violet-700: #6D28D9;

  --k-emerald-200: #6EE7B7;

  --k-kp-blue: #1F76FF;
  --k-kp-rose: #FF1F5E;
  --k-kp-magenta: #FF006A;
  --k-kp-pink: #FF4D7A;
  --k-kp-hotred: #FF3B3B;
  --k-kp-salmon: #FCA5A5;
  --k-kp-lavender: #D8B4FE;


  --k-slate-500: #64748B;
  --k-slate-50: #F8FAFC;

  --k-kp-coral: #FF6B6B;
  --k-kp-amber: #FF9F0A;
  --k-kp-night: #1E1E2A;
  --k-kp-ink: #0B1220;

  --k-indigo-300: #A5B4FC;
  --k-kp-sky: #4DA3FF;
  --k-kp-sky-strong: #1E66FF;
  --k-kp-deep: #0F1020;
  --k-kp-neon-cyan: #00D4FF;

  --k-yellow-500: #F7C948;
  --k-orange-700: #E5541F;
  --k-gray-400: #A8B0B8;
  --k-violet-300: #A78BFA;

  /* ── Aliases (theme-v2 sets primary/secondary/bg/text/border/etc) ── */
  --k-success: var(--k-green);
  --k-danger: var(--k-red);
  --k-warning: var(--k-yellow);
  --k-info: var(--k-cyan);

  /* ── Radii ── */
  --k-radius-xs: 0.25rem;
  --k-radius-sm: 0.375rem;
  --k-radius-md: 0.5rem;
  --k-radius-lg: 0.75rem;
  --k-radius-xl: 1rem;
  --k-radius-2xl: 1.25rem;
  --k-radius-full: 9999px;

  /* ── Spacing ── */
  --k-space-1: 0.25rem;
  --k-space-2: 0.5rem;
  --k-space-3: 0.75rem;
  --k-space-4: 1rem;
  --k-space-5: 1.25rem;
  --k-space-6: 1.5rem;
  --k-space-8: 2rem;
  --k-space-10: 2.5rem;
  --k-space-12: 3rem;
  --k-space-16: 4rem;

  /* ── Typography ── */
  --k-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --k-font-mono: 'JetBrains Mono', 'Fira Code', monospace;

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

  --k-leading-tight: 1.25;
  --k-leading-normal: 1.5;
  --k-leading-relaxed: 1.625;

  --k-weight-normal: 400;
  --k-weight-medium: 500;
  --k-weight-semibold: 600;
  --k-weight-bold: 700;
  --k-weight-extrabold: 800;

  /* ── Motion ── */
  --k-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --k-ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --k-duration-fast: 150ms;
  --k-duration-normal: 250ms;
  --k-duration-slow: 350ms;

  /* ── Z ── */
  --k-z-dropdown: 100;
  --k-z-sticky: 200;
  --k-z-fixed: 300;
  --k-z-modal-backdrop: 400;
  --k-z-modal: 500;
  --k-z-tooltip: 700;
  --k-z-toast: 800;

  /* ── Layout ── */
  --k-container-sm: 640px;
  --k-container-md: 768px;
  --k-container-lg: 1024px;
  --k-container-xl: 1280px;
  --k-header-height: 60px;
  --k-footer-height: 60px;
  --k-sidebar-width: 280px;

  /* ── Tier Colors ── */
  --tier-wood: #8B6914;
  --tier-bronze: #CD7F32;
  --tier-silver: #C0C0C0;
  --tier-gold: #FFD700;
  --tier-platinum: #E5E4E2;
  --tier-diamond: #B9F2FF;
  --tier-legendary: #FF4500;

  /* ── Game Stats ── */
  --k-stat-strength: #ff2d55;
  --k-stat-defense: #007aff;
  --k-stat-agility: var(--k-yellow-light);
  --k-stat-health: var(--k-green);
  --k-stat-mastery: #bf5af2;
  --k-stat-endurance: #ff9f0a;
}
