@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Source+Serif+4:wght@600;700&display=swap");

:root {
  --bg: #f4f6f8;
  --surface: #ffffff;
  --surface-alt: #eef2f5;
  --ink: #0f1b2d;
  --muted: #425264;
  --line: #d6dee7;
  --navy: #0f2747;
  --navy-2: #17385f;
  --red: #9f2330;
  --steel: #7f8fa4;
  --accent: #d7dee8;
  --success: #1f5d48;
  --shadow: 0 10px 28px rgba(15, 27, 45, 0.06);
  --radius: 14px;
  --radius-sm: 10px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: linear-gradient(180deg, #f4f6f8 0%, #edf2f6 100%);
  color: var(--ink);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .76rem;
  font-weight: 700;
  color: var(--red);
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(159,35,48,0));
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(244,246,248,.84);
  border-bottom: 1px solid rgba(15,39,71,.08);
}
.header-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  padding: 16px 0 18px;
}
.header-top {
  display: flex;
  justify-content: center;
  padding-bottom: 4px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-weight: 800;
  letter-spacing: .03em;
}
.site-header .brand img {
  width: auto;
  height: 104px;
  flex: 0 0 auto;
}
.site-footer .brand img {
  width: auto;
  height: 64px;
  flex: 0 0 auto;
}
.brand-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
}
.brand-stack > span {
  font-size: 1.52rem;
  line-height: 1;
}
.brand-stack small {
  font-size: .84rem;
  color: var(--muted);
  letter-spacing: .2em;
  text-transform: uppercase;
}
.header-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-top: 1px solid rgba(15,39,71,.08);
  gap: 20px;
  padding-top: 12px;
}
.nav-toggle {
  display: none;
  border: 0;
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 700;
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .92rem;
  color: var(--muted);
}
.site-nav a:hover, .site-nav a.active { color: var(--navy); }
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  padding: 11px 16px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  box-shadow: 0 8px 18px rgba(15,39,71,.16);
}
.btn-secondary {
  border-color: rgba(15,39,71,.14);
  background: rgba(255,255,255,.75);
  color: var(--navy);
}
.header-cta .btn-secondary {
  padding-inline: 14px;
  font-size: .9rem;
}
.hero {
  padding: 72px 0 34px;
}
.hero-shell {
  background: radial-gradient(circle at top right, rgba(159,35,48,.12), transparent 30%), linear-gradient(160deg, #102645 0%, #163156 52%, #1a3558 100%);
  border-radius: 24px;
  padding: 52px;
  color: #fff;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr .9fr;
  gap: 40px;
  align-items: center;
}
.hero h1, .page-hero h1 {
  margin: 14px 0 18px;
  font-family: 'Source Serif 4', serif;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -.03em;
}
.hero p.lead, .page-hero p.lead {
  margin: 0 0 28px;
  font-size: 1.08rem;
  color: rgba(255,255,255,.84);
  max-width: 720px;
}
.hero-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 22px;
}
.hero-card h3, .panel h3, .card h3, .mini-card h3 {
  margin: 0 0 10px;
  font-size: 1.03rem;
}
.hero-card p { color: rgba(255,255,255,.78); margin: 0; }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.stat {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 16px;
}
.stat strong { display:block; font-size: 1.55rem; }
.stat span { color: rgba(255,255,255,.74); font-size: .93rem; }
section { padding: 34px 0; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 22px;
}
.section-head h2, .page-hero h1 + .section-title, .cta-band h2 {
  margin: 8px 0 0;
  font-family: 'Source Serif 4', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.06;
  letter-spacing: -.03em;
}
.section-head p { max-width: 660px; color: var(--muted); margin: 0; }
.grid-3, .grid-2, .grid-4 {
  display: grid;
  gap: 20px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card, .panel, .mini-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.card { padding: 22px; }
.panel { padding: 26px; }
.mini-card { padding: 16px; }
.card p, .panel p, .mini-card p, .copy p { color: var(--muted); }
.card ul, .panel ul, .copy ul, .copy ol, .timeline { padding-left: 18px; color: var(--muted); }
.card li, .panel li, .copy li, .timeline li { margin: 8px 0; }
.kicker {
  color: var(--navy);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  margin-bottom: 12px;
}
.banner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.banner-item {
  border-right: 1px solid var(--line);
  padding-right: 10px;
}
.banner-item:last-child {
  border-right: 0;
  padding-right: 0;
}
.banner-item strong { display:block; color: var(--navy); }
.banner-item span { color: var(--muted); font-size: .92rem; }
.page-hero {
  padding: 56px 0 20px;
}
.page-hero-shell {
  background: linear-gradient(150deg, #0f2747, #17385f);
  border-radius: 22px;
  padding: 44px;
  color: #fff;
  box-shadow: var(--shadow);
}
.page-hero .lead { max-width: 840px; }
.split {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
}
.list-clean { list-style: none; padding: 0; margin: 0; }
.list-clean li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.list-clean li:last-child { border-bottom: 0; }
.metric-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.metric-line:last-child { border-bottom: 0; }
.past-item {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 22px;
  align-items: start;
}
.tag-row {
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.tag {
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(15,39,71,.07);
  color: var(--navy);
  font-weight: 600;
  font-size: .9rem;
}
.notice {
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(159,35,48,.08);
  border: 1px solid rgba(159,35,48,.14);
  color: var(--ink);
}
.cta-band {
  margin: 36px 0 56px;
}
.cta-band .panel {
  background: linear-gradient(150deg, #0f2747, #18365a);
  color: #fff;
}
.cta-band .panel p { color: rgba(255,255,255,.8); }
.site-footer {
  padding: 20px 0 46px;
}
.footer-shell {
  background: #10233f;
  color: rgba(255,255,255,.82);
  border-radius: 20px;
  padding: 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 24px;
}
.footer-shell a { color: #fff; }
.footer-shell small { color: rgba(255,255,255,.62); }
.footer-links { display: grid; gap: 10px; }
.copy strong { color: var(--navy); }
@media (max-width: 980px) {
  .hero-grid, .split, .past-item, .footer-grid, .grid-3, .grid-4, .grid-2, .banner { grid-template-columns: 1fr; }
  .header-inner { padding: 14px 0; }
  .header-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 6px;
  }
  .site-nav.open { display: flex; }
  .header-cta {
    justify-content: center;
    justify-self: auto;
  }
  .hero-shell, .page-hero-shell, .footer-shell { padding: 30px; }
  .stat-grid { grid-template-columns: 1fr; }
  .banner-item { border-right: 0; padding-right: 0; }
}

@media (max-width: 640px) {
  .container { width: min(var(--max), calc(100% - 22px)); }
  .hero, section, .page-hero { padding-top: 22px; }
  .hero-shell, .page-hero-shell { padding: 24px; border-radius: 22px; }
  .btn { width: 100%; }
  .header-cta { width: 100%; }
  .header-cta .btn { flex: 1; }
  .brand {
    gap: 14px;
    align-items: center;
  }
  .site-header .brand img { height: 82px; }
  .site-footer .brand img { height: 52px; }
  .brand-stack > span { font-size: 1.14rem; }
  .brand-stack small { font-size: .66rem; letter-spacing: .14em; }
}
