/* =========================================
   CSS Custom Properties — Global Design Tokens
   ========================================= */
:root {
  /* Brand Colors */
  --color-primary: #1075bd;
  --color-primary-dark: #0b5c96;
  --color-primary-light: #3b9ad4;
  --color-white: #ffffff;
  --color-accent: #1075bd;

  /* Neutrals */
  --gray-light: #f5f7fa;
  --gray-mid: #e2e6eb;
  --gray-text: #5f6b7a;
  --dark-bg: #070b14;
  --dark-surface: #0d1525;
  --text-primary: #111827;
  --text-secondary: #374151;

  /* Layout */
  --nav-height: 100px;
  --max-w: 1600px;
  --desktop-px: 3vw;
  --mobile-px: 5vw;

  /* Typography */
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Open Sans", sans-serif;

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

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-primary: 0 4px 20px rgba(16, 117, 189, 0.35);

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}
