@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
  src: url('../assets/fonts/outfit.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../assets/fonts/plus-jakarta-sans.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* Brand Colors */
  --primary-blue: #1678dc;
  --primary-blue-hover: #1263b8;
  --primary-blue-light: #48a7e0;
  --primary-blue-glow: rgba(22, 120, 220, 0.4);
  
  --dark-blue: #2c4461;
  --dark-blue-light: #3a577c;
  --navy-deep: #071322;
  --navy-surface: #0b1d33;
  --navy-card: rgba(15, 34, 59, 0.75);
  --navy-card-border: rgba(70, 110, 160, 0.35);
  
  --accent-orange: #f37021;
  --accent-orange-hover: #e05e0e;
  --accent-orange-glow: rgba(243, 112, 33, 0.45);
  
  --text-white: #ffffff;
  --text-light: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --text-dark: #2c4461;
  --text-dark-muted: #5a7390;
  --surface-white: #ffffff;
  --surface-gray: #e6ebf0;
  --card-light-bg: #f3f8fc;
  --card-light-border: #c5dcf0;
  
  --success: #10b981;
  --gold: #f59e0b;

  /* Typography */
  --font-heading: 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --container-width: 1240px;
  --section-padding: 5rem 1.5rem;

  /* Transitions & Shadows */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.45);
  --shadow-glow-blue: 0 0 35px var(--primary-blue-glow);
  --shadow-glow-orange: 0 0 35px var(--accent-orange-glow);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}
