:root {
  --navy: #0C2340;
  --blue: #185FA5;
  --blue-dark: #0C447C;
  --blue-light: #E6F1FB;
  --teal: #0F6E56;
  --teal-light: #E1F5EE;
  --bg: #F4F7FB;
  --white: #FFFFFF;
  --text: #1A2433;
  --muted: #44546A;
  --border: #D9E2EC;
  --radius: 8px;
  --maxw: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
}

img { max-width: 100%; display: block; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

a { color: var(--blue); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy); color: #fff; padding: 10px 18px; z-index: 100;
}
.skip-link:focus { left: 0; }

header.site {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 50;
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 8px 24px;
  display: flex; align-items: center; justify-content: space-between;
  min-height: 68px; gap: 16px; flex-wrap: wrap;
}
.wordmark {
  font-weight: 800; font-size: 20px; letter-spacing: -0.02em;
  color: var(--navy); text-decoration: none;
}
.wordmark .metro { color: var(--blue); }
nav.main ul { list-style: none; display: flex; gap: 4px; align-items: center; flex-wrap: wrap; }
nav.main a {
  text-decoration: none; color: var(--muted); font-size: 15px; font-weight: 500;
  padding: 8px 12px; border-radius: 6px;
}
nav.main a:hover, nav.main a:focus { color: var(--navy); background: var(--bg); }
nav.main a.active { color: var(--navy); font-weight: 600; }
nav.main a.cta {
  background: var(--blue); color: #fff; font-weight: 600; padding: 10px 18px;
  border-radius: var(--radius); margin-left: 8px;
}
nav.main a.cta:hover, nav.main a.cta:focus { background: var(--blue-dark); color: #fff; }

.btn {
  display: inline-block; text-decoration: none; font-weight: 600; font-size: 16px;
  padding: 13px 26px; border-radius: var(--radius); border: 2px solid transparent;
  cursor: pointer; font-family: inherit; text-align: center;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover, .btn-primary:focus { background: var(--blue-dark); }
.btn-outline { border-color: var(--blue); color: var(--blue); background: transparent; }
.btn-outline:hover, .btn-outline:focus { background: var(--blue-light); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover, .btn-light:focus { background: var(--blue-light); }
.btn-ghost { border-color: rgba(255,255,255,0.6); color: #fff; background: transparent; }
.btn-ghost:hover, .btn-ghost:focus { background: rgba(255,255,255,0.12); }

.hero { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.hero .photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.28;
}
.hero .inner {
  position: relative; max-width: var(--maxw); margin: 0 auto;
  padding: 96px 24px 88px;
}
.kicker {
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: #8FC1EE; margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(34px, 5.5vw, 56px); line-height: 1.08; letter-spacing: -0.025em;
  font-weight: 800; max-width: 640px; margin-bottom: 20px;
}
.hero p.lede { font-size: 19px; color: #C9D6E6; max-width: 620px; margin-bottom: 34px; }
.hero .actions { display: flex; gap: 14px; flex-wrap: wrap; }

.page-hero { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.page-hero .photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.page-hero .inner { position: relative; max-width: var(--maxw); margin: 0 auto; padding: 64px 24px 56px; }
.page-hero h1 { font-size: clamp(30px, 4.5vw, 44px); letter-spacing: -0.02em; font-weight: 800; margin-bottom: 12px; }
.page-hero p { font-size: 18px; color: #C9D6E6; max-width: 640px; }

.stats { background: var(--bg); border-bottom: 1px solid var(--border); }
.stats .inner {
  max-width: var(--maxw); margin: 0 auto; padding: 40px 24px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px;
}
.stat .num { font-size: 34px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; line-height: 1.1; }
.stat .lbl { font-size: 14px; color: var(--muted); margin-top: 6px; }
.stat .src { font-size: 12px; color: #7B8794; }

section.band { padding: 72px 0; }
section.band.alt { background: var(--bg); }
.band h2 { font-size: clamp(26px, 3.5vw, 36px); letter-spacing: -0.02em; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.band .sub { font-size: 18px; color: var(--muted); max-width: 680px; margin-bottom: 36px; }
.band p + p { margin-top: 16px; }
.prose { max-width: 720px; }
.prose h3 { font-size: 21px; color: var(--navy); margin: 32px 0 10px; letter-spacing: -0.01em; }
.prose ul { margin: 12px 0 12px 22px; }
.prose li { margin-bottom: 8px; }

.grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card {
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  padding: 28px; display: flex; flex-direction: column;
}
.card .icon {
  width: 44px; height: 44px; border-radius: 10px; background: var(--blue-light);
  color: var(--blue-dark); display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px; font-weight: 800;
}
.card h3 { font-size: 19px; color: var(--navy); margin-bottom: 8px; letter-spacing: -0.01em; }
.card p { font-size: 15.5px; color: var(--muted); }
.card .more { margin-top: auto; padding-top: 14px; font-weight: 600; font-size: 15px; text-decoration: none; }

.pill {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 999px; margin-bottom: 14px;
}
.pill.blue { background: var(--blue-light); color: var(--blue-dark); }
.pill.teal { background: var(--teal-light); color: var(--teal); }

.progress-wrap { margin: 26px 0; max-width: 480px; }
.progress-label { display: flex; justify-content: space-between; font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.progress-bar { height: 12px; background: var(--border); border-radius: 999px; overflow: hidden; }
.progress-fill { height: 100%; width: 0%; background: var(--teal); border-radius: 999px; transition: width 0.8s ease; }

form.stack { display: grid; gap: 18px; max-width: 560px; }
.field label { display: block; font-weight: 600; font-size: 15px; color: var(--navy); margin-bottom: 6px; }
.field .hint { font-weight: 400; color: var(--muted); font-size: 13.5px; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field select, .field textarea {
  width: 100%; padding: 12px 14px; font-size: 16px; font-family: inherit;
  border: 1.5px solid var(--border); border-radius: var(--radius); background: #fff; color: var(--text);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 3px solid rgba(24, 95, 165, 0.35); border-color: var(--blue);
}
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--muted); }
.check input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--blue); }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .row-2 { grid-template-columns: 1fr; } }
.form-msg { padding: 14px 16px; border-radius: var(--radius); font-size: 15px; display: none; margin-top: 4px; }
.form-msg.ok { background: var(--teal-light); color: var(--teal); display: block; }
.form-msg.err { background: #FBEAEA; color: #A32D2D; display: block; }
.honeypot { position: absolute; left: -9999px; opacity: 0; }

ul.checklist { list-style: none; margin: 20px 0; }
ul.checklist li { padding-left: 30px; position: relative; margin-bottom: 12px; }
ul.checklist li::before {
  content: "\2713"; position: absolute; left: 0; top: 0;
  color: var(--teal); font-weight: 800;
}

.cta-band { background: var(--blue-dark); color: #fff; padding: 64px 0; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #C9D6E6; max-width: 620px; margin-bottom: 28px; font-size: 18px; }

footer.site { background: var(--navy); color: #A9B8CC; padding: 56px 0 32px; font-size: 15px; }
footer.site .cols {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: grid; gap: 36px; grid-template-columns: 2fr 1fr 1fr 1.4fr;
}
@media (max-width: 800px) { footer.site .cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { footer.site .cols { grid-template-columns: 1fr; } }
footer.site h4 { color: #fff; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
footer.site ul { list-style: none; }
footer.site li { margin-bottom: 8px; }
footer.site a { color: #C9D6E6; text-decoration: none; }
footer.site a:hover, footer.site a:focus { color: #fff; text-decoration: underline; }
.foot-brand { font-weight: 800; font-size: 20px; color: #fff; margin-bottom: 8px; }
.foot-tag { font-size: 15px; margin-bottom: 16px; }
.foot-bottom {
  max-width: var(--maxw); margin: 40px auto 0; padding: 24px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13.5px; color: #7B8CA6;
}
.foot-bottom a { color: #7B8CA6; }

.news-form { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.news-form input {
  flex: 1; min-width: 180px; padding: 10px 12px; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.08); color: #fff; font-size: 15px;
}
.news-form input::placeholder { color: #8CA0BC; }
.news-form button {
  padding: 10px 16px; border-radius: var(--radius); border: none; background: var(--blue);
  color: #fff; font-weight: 600; font-size: 15px; cursor: pointer;
}

.photo-credit { font-size: 12px; color: #7B8794; margin-top: 8px; }
.page-hero .photo-credit, .hero .photo-credit {
  position: absolute; right: 12px; bottom: 8px; color: rgba(255,255,255,0.55); margin: 0; z-index: 2;
}
.photo-credit a { color: inherit; }

.notice {
  background: var(--blue-light); border: 1px solid #B5D4F4; border-radius: var(--radius);
  padding: 16px 18px; font-size: 15px; color: var(--blue-dark); max-width: 720px;
}
.center { text-align: center; }
.mt-lg { margin-top: 40px; }
