:root {
  --navy: #061e42;
  --navy-2: #0b2c58;
  --sky: #73b4e6;
  --sky-soft: #eaf5fc;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --text: #172033;
  --muted: #687386;
  --line: #dce4ee;
  --danger: #c6382e;
  --warning: #d67c17;
  --success: #2d7a55;
  --shadow: 0 18px 55px rgba(6, 30, 66, .10);
  --radius: 20px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--navy);
  color: white;
  padding: 10px 14px;
  z-index: 999;
}
.skip-link:focus { left: 10px; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand img { width: 210px; max-height: 74px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 22px; }
.main-nav a {
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
}
.main-nav a:hover { color: #327fb8; }
.nav-cta {
  background: var(--navy);
  color: white !important;
  padding: 11px 16px;
  border-radius: 999px;
}
.menu-toggle { display: none; }

.hero {
  padding: 88px 0 70px;
  background:
    radial-gradient(circle at 85% 15%, rgba(115,180,230,.28), transparent 29%),
    linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 64px;
  align-items: center;
}
.eyebrow, .section-label, .panel-kicker, .code {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 700;
  color: #337eb4;
}
h1, h2, h3 {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  color: var(--navy);
  line-height: 1.05;
  margin-top: 0;
}
h1 { font-size: clamp(3rem, 6vw, 5.8rem); max-width: 850px; margin-bottom: 24px; }
h2 { font-size: clamp(2.2rem, 4.4vw, 4rem); margin-bottom: 20px; }
h3 { font-size: 1.65rem; margin-bottom: 10px; }
.hero-lead { font-size: 1.16rem; max-width: 740px; color: #445066; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 30px; }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.button-primary { background: var(--navy); color: white; }
.button-primary:hover { background: var(--navy-2); }
.button-secondary { border-color: var(--navy); color: var(--navy); background: white; }
.button-secondary:hover { background: var(--sky-soft); }
.full { width: 100%; }

.private-notice {
  max-width: 760px;
  border-left: 4px solid var(--sky);
  padding: 15px 18px;
  background: white;
  box-shadow: 0 10px 30px rgba(6,30,66,.06);
  font-size: .92rem;
}
.private-notice strong { color: var(--navy); }

.hero-panel {
  background: var(--navy);
  color: white;
  padding: 34px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.panel-kicker { color: var(--sky); }
.method-list { list-style: none; padding: 0; margin: 20px 0 0; }
.method-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 16px;
  padding: 19px 0;
  border-top: 1px solid rgba(255,255,255,.15);
}
.method-list span { grid-row: 1 / span 2; color: var(--sky); font-weight: 700; }
.method-list strong { font-size: 1.05rem; }
.method-list small { color: #cbd8e8; }

.metrics { background: var(--navy); color: white; }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.metric-grid article { padding: 28px; text-align: center; border-right: 1px solid rgba(255,255,255,.13); }
.metric-grid article:last-child { border-right: 0; }
.metric-grid strong { display: block; font: 700 2.7rem/1 "Barlow Condensed"; color: var(--sky); }
.metric-grid span { font-size: .9rem; }

.section { padding: 96px 0; }
.section-soft { background: var(--off-white); }
.section-navy { background: var(--navy); color: white; }
.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.prose { font-size: 1.05rem; color: #4b566c; }
.prose p:first-child { margin-top: 0; }
.text-link { font-weight: 700; color: #2f79ad; text-decoration: none; }
.text-link:hover { text-decoration: underline; }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}
.section-heading h2 { margin-bottom: 0; }
.inverse h2, .inverse p { color: white; }

.cards { display: grid; gap: 22px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 12px 35px rgba(6,30,66,.05);
}
.card p { color: #5d687b; }
.status {
  display: inline-block;
  margin: 4px 0 18px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 700;
}
.status-prep { color: #8a4d05; background: #fff0d9; }
.status-active { color: #18593d; background: #e6f5ed; }
.card-link { color: #2f79ad; font-weight: 700; text-decoration: none; }
.muted { color: #98a2b2; }

.legend { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; font-size: .92rem; }
.legend span { display: flex; align-items: center; gap: 8px; }
.risk { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.risk-high { background: var(--danger); }
.risk-medium { background: var(--warning); }
.risk-info { background: var(--sky); }

.search-preview {
  max-width: 850px;
  margin: 30px auto 0;
  padding: 34px;
  background: white;
  color: var(--text);
  border-radius: var(--radius);
}
.search-preview label { display: block; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.search-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.search-row input { min-width: 0; }
.search-row button {
  border: 0;
  border-radius: 8px;
  background: var(--sky);
  color: var(--navy);
  padding: 0 24px;
  font-weight: 800;
}
.search-preview p { color: var(--muted); font-size: .9rem; margin-bottom: 0; }

.lab-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.lab-grid article {
  border-top: 4px solid var(--sky);
  background: var(--off-white);
  padding: 24px;
}
.lab-grid span { font-weight: 800; color: #4c92c5; }
.lab-grid p { color: var(--muted); }

.fine-print { font-size: .88rem; }
.document-box {
  background: var(--sky-soft);
  border: 1px solid #cbe3f4;
  border-radius: var(--radius);
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.document-box p { max-width: 760px; color: #4b566c; }

.contact-section { background: #f7fbff; }
.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 72px;
  align-items: start;
}
.contact-note {
  margin-top: 28px;
  background: white;
  border-left: 4px solid var(--sky);
  padding: 16px;
  font-size: .9rem;
}
.contact-form {
  background: white;
  padding: 34px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: block; margin-bottom: 16px; font-size: .9rem; font-weight: 700; color: var(--navy); }
.contact-form label span, .file-field small { color: var(--muted); font-weight: 400; }
input, textarea, select {
  width: 100%;
  margin-top: 7px;
  border: 1px solid #cdd7e4;
  border-radius: 8px;
  padding: 12px 13px;
  background: white;
}
input:focus, textarea:focus, select:focus {
  outline: 3px solid rgba(115,180,230,.25);
  border-color: #5ba4d8;
}
.file-field small { display: block; margin-top: 7px; }
.check { display: flex !important; gap: 10px; align-items: flex-start; }
.check input { width: auto; margin-top: 4px; }
.form-message { min-height: 24px; margin-bottom: 0; font-weight: 600; }

.site-footer { background: #04152e; color: #d7e3f1; padding: 58px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.footer-grid strong { font: 700 3rem/1 "Barlow Condensed"; color: white; }
.footer-tagline { color: var(--sky); }
.footer-grid nav { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.footer-grid a { text-decoration: none; }
.footer-grid a:hover { color: var(--sky); }
.legal { border-top: 1px solid rgba(255,255,255,.13); margin-top: 38px; padding-top: 24px; font-size: .8rem; color: #a9b8c9; }

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    border: 0;
    background: transparent;
    padding: 10px;
  }
  .menu-toggle span:not(.sr-only) { width: 25px; height: 2px; background: var(--navy); }
  .main-nav {
    display: none;
    position: absolute;
    top: 91px;
    left: 0; right: 0;
    padding: 18px 20px 24px;
    background: white;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
  }
  .main-nav.open { display: flex; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; gap: 38px; }
  .cards.three { grid-template-columns: 1fr; }
  .lab-grid { grid-template-columns: 1fr 1fr; }
  .metric-grid { grid-template-columns: 1fr 1fr; }
  .metric-grid article:nth-child(2) { border-right: 0; }
  .section-heading { align-items: start; flex-direction: column; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand img { width: 165px; }
  .header-inner { min-height: 76px; }
  .main-nav { top: 75px; }
  .hero { padding-top: 58px; }
  h1 { font-size: 3.2rem; }
  .section { padding: 72px 0; }
  .metric-grid, .lab-grid, .footer-grid, .form-row { grid-template-columns: 1fr; }
  .metric-grid article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .metric-grid article:last-child { border-bottom: 0; }
  .document-box { align-items: stretch; flex-direction: column; }
  .search-row { grid-template-columns: 1fr; }
  .search-row button { min-height: 46px; }
  .footer-grid nav { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 18px; }
}
