@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;1,600&family=DM+Mono:wght@400;500&family=DM+Sans:wght@300;400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #1B3A6B;
  --navy2:   #254d8f;
  --navym:   #2D6BB3;
  --navyd:   #0F2347;
  --ink:     #080E1A;
  --ice:     #D8E8F4;
  --pale:    #F0F5FA;
  --off:     #F7F9FC;
  --white:   #FFFFFF;
  --border:  #E2EAF4;
  --gray:    #8A9AB5;
  --dark:    #111827;
  --green:   #1E6B3C;
  --ltgreen: #E8F5EE;
  --amber:   #92600A;
  --ltamber: #FFF8E8;
  --red:     #8B1A1A;
  --shadow:     0 2px 12px rgba(27,58,107,0.07);
  --shadow-md:  0 4px 24px rgba(27,58,107,0.11);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* Nav */
nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 300;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  gap: 16px;
}
.nav-brand {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  flex-wrap: nowrap;
}
.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-links a.active { color: var(--white); }
.nav-links .nav-cta {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.22);
  margin-left: 4px;
}
.nav-links .nav-cta:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.4); }
.hamburger {
  display: none;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  padding: 4px;
  font-size: 20px;
  line-height: 1;
}
.mobile-menu {
  display: none;
  background: var(--navyd);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 8px 0;
}
.mobile-menu a {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 11px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.15s;
}
.mobile-menu a:hover { color: var(--white); }
.mobile-menu.open { display: block; }

/* Ticker */
.ticker {
  background: var(--navyd);
  padding: 7px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 48px;
  animation: ticker 45s linear infinite;
}
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ticker-item {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
}
.ticker-item b { color: rgba(255,255,255,0.75); font-weight: 500; }

/* Page hero (inner pages) */
.page-hero {
  background: var(--navy);
  padding: 56px 28px 48px;
}
.page-hero-inner { max-width: 1100px; margin: 0 auto; }
.page-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}
.page-hero h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}
.page-hero h1 strong { font-weight: 600; font-style: italic; }
.page-hero p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  max-width: 560px;
  line-height: 1.65;
}

/* Layout */
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.section { padding: 88px 28px; max-width: 1100px; margin: 0 auto; }
.section-sm { padding: 64px 28px; max-width: 1100px; margin: 0 auto; }
.band-pale { background: var(--pale); }
.band-white { background: var(--white); }
.band-navy { background: var(--navy); }
.band-ink { background: var(--ink); }

/* Eyebrows and headings */
.eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navym);
  margin-bottom: 16px;
  display: block;
}
.eyebrow-light { color: rgba(255,255,255,0.35); }
h2.display {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(26px, 3.8vw, 40px);
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 14px;
}
h2.display strong { font-weight: 600; font-style: italic; }
h2.display-light { color: var(--white); }
.section-intro {
  font-size: 15px;
  color: var(--gray);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 48px;
}
.section-intro-light { color: rgba(255,255,255,0.5); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  letter-spacing: -0.01em;
  border: none;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy2); }
.btn-ghost { background: transparent; color: var(--navy); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--navy); background: var(--pale); }
.btn-ghost-light { background: transparent; color: rgba(255,255,255,0.75); border: 1px solid rgba(255,255,255,0.2); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); color: var(--white); }

/* Cards */
.card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 28px; box-shadow: var(--shadow); }

/* Grid */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* Footer */
footer {
  background: var(--ink);
  padding: 48px 28px 32px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.footer-brand { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.footer-tagline { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.2); }
.footer-nav-group h4 { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 12px; }
.footer-nav-group a { display: block; font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; margin-bottom: 8px; transition: color 0.15s; }
.footer-nav-group a:hover { color: rgba(255,255,255,0.75); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-entity { font-family: 'DM Mono', monospace; font-size: 10px; color: rgba(255,255,255,0.2); letter-spacing: 0.5px; line-height: 1.8; }
.footer-disclaimer { font-family: 'DM Mono', monospace; font-size: 9px; color: rgba(255,255,255,0.15); text-align: right; max-width: 400px; line-height: 1.6; letter-spacing: 0.3px; }

/* Responsive */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 64px 20px; }
  .section-sm { padding: 48px 20px; }
  .footer-top { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-disclaimer { text-align: left; }
}
@media (max-width: 480px) {
  .section { padding: 48px 16px; }
  .page-hero { padding: 40px 16px 36px; }
}
