/* ============================================
   SHILOHI SAFETY NETS — Design Tokens
   ============================================ */

:root {
  /* ── Color Palette ── */
  --navy: #061326;
  --midnight: #0B1F3A;
  --royal: #0757C9;
  --electric: #1688FF;
  --light-blue: #DCEBFF;
  --gold: #C9A34A;
  --soft-gold: #E5C76B;
  --white: #FFFFFF;
  --off-white: #F0F4F8;
  --gray-100: #E8ECF1;
  --gray-200: #C4CDD8;
  --gray-300: #8A97A8;
  --gray-400: #5A6A7E;
  --dark-surface: #0A1628;
  --danger: #E5444B;

  /* ── Glassmorphism ── */
  --glass-dark: rgba(6, 19, 38, 0.75);
  --glass-navy: rgba(11, 31, 58, 0.7);
  --glass-blue: rgba(7, 87, 201, 0.15);
  --glass-light: rgba(255, 255, 255, 0.08);
  --glass-gold: rgba(201, 163, 74, 0.12);

  /* ── Gradients ── */
  --grad-navy: linear-gradient(180deg, #061326 0%, #0B1F3A 100%);
  --grad-hero: linear-gradient(135deg, rgba(6,19,38,0.92) 0%, rgba(11,31,58,0.7) 50%, rgba(7,87,201,0.3) 100%);
  --grad-royal: linear-gradient(135deg, #0757C9 0%, #1688FF 100%);
  --grad-gold: linear-gradient(135deg, #C9A34A 0%, #E5C76B 50%, #C9A34A 100%);
  --grad-gold-text: linear-gradient(135deg, #E5C76B 0%, #C9A34A 40%, #E5C76B 60%, #C9A34A 100%);
  --grad-metallic: linear-gradient(135deg, #C9A34A 0%, #F5E6B8 25%, #C9A34A 50%, #F5E6B8 75%, #C9A34A 100%);
  --grad-dark-section: linear-gradient(180deg, #061326 0%, #0A1628 50%, #061326 100%);
  --grad-blue-section: linear-gradient(180deg, #0B1F3A 0%, #061326 100%);
  --grad-radial-glow: radial-gradient(ellipse at center, rgba(22, 136, 255, 0.15) 0%, transparent 70%);
  --grad-radial-gold: radial-gradient(ellipse at center, rgba(201, 163, 74, 0.1) 0%, transparent 70%);

  /* ── Typography ── */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Space Grotesk', sans-serif;

  /* Type Scale (clamp for fluid typography) */
  --text-xs: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  --text-sm: clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
  --text-base: clamp(0.95rem, 0.9rem + 0.3vw, 1.05rem);
  --text-lg: clamp(1.1rem, 1rem + 0.5vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  --text-3xl: clamp(2rem, 1.5rem + 2.5vw, 3rem);
  --text-4xl: clamp(2.5rem, 1.8rem + 3.5vw, 4rem);
  --text-5xl: clamp(3rem, 2rem + 5vw, 5.5rem);
  --text-6xl: clamp(3.5rem, 2.5rem + 5vw, 7rem);

  --line-tight: 1.1;
  --line-snug: 1.25;
  --line-normal: 1.5;
  --line-relaxed: 1.7;

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

  --tracking-tight: -0.03em;
  --tracking-normal: 0em;
  --tracking-wide: 0.05em;
  --tracking-wider: 0.1em;
  --tracking-widest: 0.2em;

  /* ── Spacing ── */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  --space-6xl: 12rem;

  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  --container-2xl: 1440px;

  /* ── Borders & Radius ── */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  --border-subtle: 1px solid rgba(255, 255, 255, 0.06);
  --border-gold: 1px solid rgba(201, 163, 74, 0.3);
  --border-blue: 1px solid rgba(22, 136, 255, 0.2);
  --border-glass: 1px solid rgba(255, 255, 255, 0.1);

  /* ── Shadows ── */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
  --shadow-glow-blue: 0 0 30px rgba(22, 136, 255, 0.3);
  --shadow-glow-gold: 0 0 30px rgba(201, 163, 74, 0.3);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.3);

  /* ── Z-Index ── */
  --z-behind: -1;
  --z-base: 0;
  --z-above: 10;
  --z-sticky: 100;
  --z-header: 1000;
  --z-overlay: 2000;
  --z-modal: 3000;
  --z-toast: 4000;
  --z-top: 9999;

  /* ── Transitions ── */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;
  --duration-slower: 800ms;
  --duration-slowest: 1200ms;

  /* ── Net Pattern ── */
  --net-size: 40px;
  --net-color: rgba(201, 163, 74, 0.08);
  --net-color-hover: rgba(201, 163, 74, 0.15);
}
