
:root {
  --ink: #172033;
  --muted: #5a6475;
  --line: #dce3ee;
  --surface: #f6f8fb;
  --white: #ffffff;
  --blue: #174a7c;
  --blue-dark: #0d3158;
  --teal: #1d7a78;
  --gold: #b9872f;
  --focus: #f4b740;
  --shadow: 0 18px 45px rgba(23, 32, 51, 0.12);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  background: var(--white);
  line-height: 1.65;
}
a { color: var(--blue); text-decoration-thickness: 0.08em; text-underline-offset: 0.18em; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 3vw, 34px);
  min-height: 92px;
  padding: 12px clamp(18px, 5vw, 64px);
  color: white;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.22);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}
.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255,255,255,0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 34px rgba(23,32,51,0.10);
  backdrop-filter: blur(14px);
}
.site-header.menu-open {
  z-index: 100;
  color: var(--ink);
  background: rgba(255,255,255,0.98);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 34px rgba(23,32,51,0.10);
}
.nav-open { overflow: hidden; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; color: currentColor; font-weight: 800; text-decoration: none; }
.brand img { display: block; width: auto; height: 58px; max-width: 44px; object-fit: contain; }
.brand span { font-family: "Barlow Condensed", Inter, sans-serif; font-size: 1.75rem; letter-spacing: 0; white-space: nowrap; }
.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: currentColor;
  border: 1px solid rgba(255,255,255,0.76);
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}
.site-header.is-scrolled .nav-toggle,
.site-header.menu-open .nav-toggle {
  color: var(--blue-dark);
  border-color: var(--blue);
  background: white;
}
.site-header.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.primary-nav { display: flex; align-items: center; justify-content: flex-end; gap: 4px; flex: 1 1 auto; flex-wrap: wrap; min-width: 0; font-size: 0.94rem; font-weight: 650; }
.primary-nav a { color: currentColor; text-decoration: none; }
.nav-group { position: relative; }
.nav-group::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 16px;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 42px;
  padding: 9px 11px;
  border-radius: 6px;
  text-shadow: 0 1px 18px rgba(0,0,0,0.34);
}
.nav-link::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.72;
}
.nav-link:hover,
.nav-group:focus-within .nav-link {
  background: rgba(255,255,255,0.14);
  color: white;
}
.site-header.is-scrolled .nav-link { text-shadow: none; }
.site-header.is-scrolled .nav-link:hover,
.site-header.is-scrolled .nav-group:focus-within .nav-link {
  background: #eef4fa;
  color: var(--blue-dark);
}
.submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 40;
  display: grid;
  min-width: 270px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-4px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 160ms ease 260ms, transform 160ms ease 260ms, visibility 0s linear 420ms;
}
.nav-group:last-of-type .submenu,
.nav-group:nth-last-of-type(2) .submenu {
  right: 0;
  left: auto;
}
.nav-group:hover .submenu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition-delay: 180ms, 180ms, 0s;
}
.nav-group.is-open .submenu,
.nav-group:focus-within .submenu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}
.submenu a {
  display: block;
  padding: 10px 11px;
  border-radius: 6px;
  color: var(--ink);
  text-shadow: none;
  line-height: 1.25;
}
.submenu a:hover,
.submenu a:focus-visible {
  background: #eef4fa;
  color: var(--blue-dark);
}
.nav-cta {
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,0.78);
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  text-shadow: 0 1px 18px rgba(0,0,0,0.34);
}
.nav-cta:hover { background: rgba(255,255,255,0.14); color: white; }
.site-header.is-scrolled .nav-cta {
  color: var(--blue-dark);
  background: white;
  border-color: var(--blue);
  text-shadow: none;
}
.site-header.is-scrolled .nav-cta:hover { color: white; background: var(--blue-dark); }
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(740px, 92vh, 940px);
  padding: clamp(150px, 18vh, 210px) clamp(22px, 6vw, 96px) clamp(74px, 10vh, 112px);
  color: white;
  background-image:
    linear-gradient(90deg, rgba(5,18,32,0.94) 0%, rgba(5,18,32,0.83) 30%, rgba(5,18,32,0.44) 60%, rgba(5,18,32,0.50) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 26%;
  background: linear-gradient(180deg, rgba(5,18,32,0), rgba(5,18,32,0.30));
  pointer-events: none;
}
.hero-copy { position: relative; z-index: 1; max-width: 760px; margin-left: clamp(0px, 6vw, 130px); }
.breadcrumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; color: rgba(255,255,255,0.76); font-size: 0.88rem; }
.breadcrumbs a { color: rgba(255,255,255,0.76); text-decoration: none; }
.breadcrumbs a:hover { color: white; }
.eyebrow { color: #4ec4e8; font-weight: 800; text-transform: uppercase; font-size: 0.82rem; letter-spacing: 0.08em; margin: 0 0 12px; }
h1, h2, h3, h4 {
  font-family: "Barlow Condensed", Inter, sans-serif;
  line-height: 1.04;
  letter-spacing: 0;
  margin: 0;
  color: var(--blue-dark);
}
h1 { font-size: clamp(3.1rem, 8vw, 5.8rem); max-width: 12ch; }
.hero h1 { color: white; max-width: 760px; font-size: clamp(3.65rem, 6.6vw, 6.4rem); text-wrap: balance; }
.hero-body { max-width: 720px; margin: 22px 0 0; font-size: clamp(1.08rem, 1.8vw, 1.28rem); color: rgba(255,255,255,0.90); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 11px 16px; border-radius: 6px; font-weight: 800; text-decoration: none; }
.button-primary { color: white; background: var(--blue); border: 1px solid var(--blue); }
.button-primary:hover { background: var(--blue-dark); }
.button-secondary { color: var(--blue-dark); background: white; border: 1px solid var(--line); }
.hero .button-primary { background: #2498d3; border-color: #2498d3; }
.hero .button-primary:hover { background: #167db1; border-color: #167db1; }
.hero .button-secondary { color: white; background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.72); }
.hero .button-secondary:hover { background: rgba(255,255,255,0.16); }
.safe-note { max-width: 66ch; margin-top: 18px; color: rgba(255,255,255,0.72); font-size: 0.94rem; }
.page-body { max-width: 1180px; margin: 0 auto; padding: clamp(42px, 7vw, 88px) clamp(18px, 4vw, 36px); }
.rich-text { max-width: 840px; }
.rich-text h2 { font-size: clamp(2.1rem, 4vw, 3.4rem); margin: 54px 0 16px; }
.rich-text h3 { font-size: clamp(1.6rem, 3vw, 2.25rem); margin: 38px 0 12px; color: var(--ink); }
.rich-text h4 { font-size: 1.35rem; margin: 28px 0 8px; color: var(--ink); }
.rich-text p, .rich-text li { color: #303a4d; }
.rich-text ul, .rich-text ol { padding-left: 1.35rem; }
.rich-text hr { border: 0; border-top: 1px solid var(--line); margin: 34px 0; }
.rich-text code { background: #eef3f8; padding: 0.08rem 0.28rem; border-radius: 4px; }
.inline-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 56px;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 8px;
  background: var(--blue-dark);
  color: white;
}
.inline-cta h2 { color: white; font-size: clamp(2rem, 4vw, 3.1rem); }
.inline-cta p { max-width: 66ch; margin: 10px 0 0; color: rgba(255,255,255,0.78); }
.inline-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.inline-cta .button-secondary { background: white; }
.related { margin-top: 70px; padding-top: 34px; border-top: 1px solid var(--line); }
.related h2 { font-size: 2.2rem; margin-bottom: 22px; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.card-grid-large { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.card {
  display: block;
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(23,32,51,0.10); border-color: #b8c7d9; }
.card span { display: block; margin-bottom: 10px; color: var(--teal); font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.card strong { display: block; margin-bottom: 10px; font-family: "Barlow Condensed", Inter, sans-serif; color: var(--blue-dark); font-size: 1.6rem; line-height: 1.05; letter-spacing: 0; }
.card p { margin: 0; color: var(--muted); font-size: 0.94rem; }
.hub-page-body { max-width: 1180px; margin: 0 auto; padding: clamp(46px, 7vw, 92px) clamp(18px, 4vw, 36px); }
.intro-block { max-width: 860px; font-size: clamp(1.05rem, 1.7vw, 1.2rem); }
.intro-block p { color: #303a4d; }
.hub-section { margin-top: clamp(54px, 8vw, 84px); }
.section-heading { max-width: 780px; margin-bottom: 24px; }
.section-heading h2 {
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  line-height: 1.04;
  color: var(--blue-dark);
  margin: 0;
}
.section-heading p:not(.section-kicker) { margin: 12px 0 0; color: var(--muted); }
.section-kicker { margin: 0 0 8px; color: var(--teal); font-size: 0.78rem; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.pilot-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 4vw, 44px);
  margin-top: clamp(34px, 6vw, 60px);
  padding: clamp(28px, 5vw, 48px);
  color: white;
  background:
    linear-gradient(135deg, rgba(23,74,124,0.98), rgba(13,49,88,1));
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.pilot-feature h2 {
  margin: 0;
  color: white;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.02;
}
.pilot-feature p:not(.section-kicker) { max-width: 760px; margin: 12px 0 0; color: rgba(255,255,255,0.82); font-size: 1.04rem; }
.pilot-feature .section-kicker { color: #60d0f0; }
.pilot-feature .button-primary { background: #2498d3; border-color: #2498d3; white-space: nowrap; }
.service-hub-grid .card { min-height: 215px; }
.supporting-grid .card { min-height: 175px; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.process-grid li {
  min-height: 170px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbfe;
}
.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 999px;
  color: white;
  background: var(--blue);
  font-weight: 850;
}
.process-grid p { margin: 0; color: #303a4d; }
.faq-section { margin-top: clamp(54px, 8vw, 84px); }
.faq-list { display: grid; gap: 12px; max-width: 900px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}
.faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 800;
}
.faq-answer { padding: 0 20px 18px; }
.faq-answer p { margin: 0; color: #303a4d; }
.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 28px;
  padding: 38px clamp(18px, 5vw, 64px);
  color: white;
  background: var(--blue-dark);
}
.site-footer p { margin: 8px 0 0; color: rgba(255,255,255,0.76); }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 14px 18px; }
.site-footer a { color: white; text-decoration: none; }
.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.footer-bottom p { margin: 0; }
.social-links { display: flex; align-items: center; gap: 10px; }
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1;
}
.social-icon:hover,
.social-icon:focus-visible { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.68); }
@media (max-width: 1180px) {
  .site-header { align-items: center; flex-direction: row; min-height: 82px; }
  .brand { min-width: 0; }
  .nav-toggle {
    display: flex !important;
    flex: 0 0 46px;
    margin-left: auto;
    position: fixed;
    top: 20px;
    right: clamp(18px, 5vw, 64px);
    z-index: 102;
    color: white;
    border-color: rgba(255,255,255,0.88);
    background: rgba(2,25,44,0.64);
    box-shadow: 0 10px 24px rgba(2,25,44,0.22);
  }
  .site-header .primary-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: clamp(18px, 5vw, 64px);
    right: clamp(18px, 5vw, 64px);
    display: none !important;
    grid-template-columns: 1fr;
    align-items: stretch;
    justify-content: stretch;
    gap: 8px;
    width: auto;
    max-height: calc(100vh - 110px);
    overflow: auto;
    padding: 12px;
    color: var(--ink);
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  .site-header.menu-open .primary-nav { display: grid !important; }
  .nav-group::after { display: none; }
  .nav-group, .nav-cta { width: 100%; }
  .nav-link, .nav-cta { width: 100%; justify-content: space-between; text-shadow: none; }
  .nav-link:hover,
  .nav-group:focus-within .nav-link {
    background: #eef4fa;
    color: var(--blue-dark);
  }
  .nav-cta,
  .site-header.is-scrolled .nav-cta {
    color: var(--blue-dark);
    background: white;
    border-color: var(--blue);
    text-shadow: none;
  }
  .submenu {
    position: static;
  display: none;
  min-width: 0;
  width: 100%;
  margin-top: 4px;
  box-shadow: none;
  transform: none;
  transition: none;
  pointer-events: none;
  }
  .nav-group:hover .submenu { display: none; }
  .nav-group.is-open .submenu,
  .nav-group:focus-within .submenu {
    display: grid;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .hero { min-height: clamp(700px, 94vh, 880px); padding-top: clamp(140px, 20vh, 190px); }
  .hero-copy { margin-left: 0; max-width: 720px; }
  .pilot-feature { grid-template-columns: 1fr; }
  .pilot-feature .button { justify-self: start; }
  .inline-cta { grid-template-columns: 1fr; }
  .inline-cta-actions { justify-content: flex-start; }
}
@media (max-width: 820px) {
  .site-header { gap: 10px; }
  .brand img { height: 52px; max-width: 39px; }
  .brand span { font-size: 1.55rem; }
  .nav-toggle { right: 18px; }
  .primary-nav { left: 16px; right: 16px; }
  .hero-copy { max-width: 100%; }
  .eyebrow { overflow-wrap: anywhere; }
  .hero { min-height: 700px; padding: 148px 20px 64px; background-position: center; }
  .hero h1 { font-size: clamp(3.1rem, 15vw, 4.8rem); }
  h1 { max-width: 100%; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer nav { justify-content: flex-start; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .pilot-feature .button { width: 100%; }
  .process-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .hero { min-height: 720px; padding-top: 142px; }
  .hero-actions .button { width: 100%; }
}
