/* ─── DESIGN TOKENS — DEFAULT (Navy / .NET / Homepage) ─── */
:root {
  --primary:        #0a3d62;
  --primary-dark:   #061f33;
  --primary-mid:    #0d4f80;
  --accent:         #f6b93b;
  --accent-light:   #ffd866;
  --accent-dark:    #d4941a;
  --white:          #ffffff;
  --off-white:      #f8fafc;
  --light-bg:       #f1f5f9;
  --border:         #e2e8f0;
  --text:           #0f172a;
  --text-light:     #475569;
  --text-muted:     #94a3b8;
  --success:        #10b981;
  --danger:         #dc2626;
  --grad-primary:   linear-gradient(135deg, #061f33 0%, #0a3d62 50%, #0d5a8e 100%);
  --grad-accent:    linear-gradient(135deg, #f6b93b 0%, #ffc107 100%);
  --shadow-xs:      0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow:         0 8px 32px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-lg:      0 20px 48px rgba(0,0,0,0.11), 0 8px 20px rgba(0,0,0,0.06);
  --shadow-xl:      0 32px 80px rgba(0,0,0,0.15), 0 12px 32px rgba(0,0,0,0.08);
  --radius-sm:      10px;
  --radius:         16px;
  --radius-lg:      24px;
  --radius-xl:      32px;
  --ease:           cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:       cubic-bezier(0, 0, 0.2, 1);
  /* navbar bg derived from primary-dark */
  --navbar-bg:      rgba(6,31,51,0.98);
  /* font stack */
  --font-base:      'Inter', 'Poppins', system-ui, -apple-system, sans-serif;
  --font-display:   'Poppins', 'Inter', system-ui, sans-serif;
}
