:root {
  --navy: #061b37;
  --navy-2: #0b2a4d;
  --ink: #071a33;
  --slate: #4b6178;
  --line: #cddbea;
  --mist: #edf5f9;
  --paper: #f8fbfd;
  --cobalt: #2c68ed;
  --cobalt-dark: #1749b6;
  --cyan: #49dfd4;
  --green: #2ebd8c;
  --coral: #f27783;
  --amber: #f4b848;
  --white: #fff;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body,
button,
input,
select,
textarea {
  font-family: "Plus Jakarta Sans", sans-serif;
}
h1,
h2,
h3,
strong {
  font-family: "Space Grotesk", sans-serif;
}
h1,
h2,
h3,
p {
  margin-top: 0;
  text-wrap: pretty;
}
h1,
h2,
h3 {
  margin-bottom: 0;
  line-height: 1.06;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
a {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
button,
input,
select,
textarea {
  font-size: 1rem;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.skip {
  position: fixed;
  top: -120px;
  left: 16px;
  z-index: 200;
  padding: 12px 18px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}
.skip:focus {
  top: 14px;
}
.topline {
  background: var(--navy);
  color: #d9e7f4;
  font-size: 0.8rem;
}
.topline .container {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topline a {
  color: #fff;
  font-weight: 800;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(151, 170, 194, 0.28);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
}
.nav {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  width: 190px;
  flex: 0 0 auto;
}
.brand img {
  width: 100%;
  height: auto;
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 28px;
}
.navlinks a {
  color: #13243c;
  font-weight: 800;
  text-decoration: none;
}
.navlinks a:not(.nav-cta):hover,
.navlinks a:not(.nav-cta):focus-visible {
  color: var(--cobalt-dark);
}
.nav-cta {
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--cobalt);
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(40, 101, 232, 0.24);
}
.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid #b9cce3;
  border-radius: 16px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
}
.mobile-menu {
  padding-block: 6px 18px;
}
.mobile-menu[hidden] {
  display: none;
}
.mobile-menu a {
  display: block;
  min-height: 50px;
  padding: 13px 0;
  border-bottom: 1px solid #e5edf5;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}
.nojs-menu {
  border-bottom: 1px solid var(--line);
}
.eyebrow,
.kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow::before,
.kicker::before {
  width: 24px;
  height: 2px;
  background: currentColor;
  content: "";
}
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
.button.primary {
  background: var(--cobalt);
  color: #fff;
}
.button.secondary {
  border-color: #7190b2;
  background: transparent;
  color: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}
.hero::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 18% 20%,
      rgba(73, 223, 212, 0.16),
      transparent 28%
    ),
    linear-gradient(120deg, rgba(7, 31, 59, 0.2), rgba(5, 22, 45, 0.75));
  content: "";
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 680px;
}
.hero-copy {
  display: flex;
  padding: 76px 60px 72px 0;
  justify-content: center;
  flex-direction: column;
}
.hero .eyebrow {
  color: var(--cyan);
}
.hero h1 {
  max-width: 650px;
  margin-top: 22px;
  font-size: clamp(3.15rem, 4vw, 3.55rem);
}
.hero-lede {
  max-width: 650px;
  margin: 26px 0 0;
  color: #d7e6f4;
  font-size: 1.06rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.hero-boundary {
  max-width: 640px;
  margin: 20px 0 0;
  color: #9eb9d5;
  font-size: 0.79rem;
  line-height: 1.6;
}
.hero-media {
  position: relative;
  min-width: 0;
}
.hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, var(--navy) 0, transparent 24%),
    linear-gradient(0deg, rgba(5, 22, 45, 0.66), transparent 45%);
  content: "";
  pointer-events: none;
}
.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}
.hero-media img {
  object-fit: cover;
  object-position: center;
}
.signal-slip {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(191, 219, 254, 0.45);
  background: rgba(6, 27, 55, 0.92);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}
.signal-slip span {
  color: #9ec0de;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.signal-slip i {
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--cobalt));
}
.signal-slip strong {
  color: #fff;
  font-size: 0.88rem;
  white-space: nowrap;
}

.route-section {
  padding: 72px 0;
  background: #f7fbfd;
}
.route-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.42fr;
  gap: 50px 68px;
  align-items: start;
}
.route-intro {
  position: sticky;
  top: 132px;
}
.kicker {
  color: #005f6d;
}
.route-intro h2,
.boundary-heading h2,
.form-copy h2,
.section-head h2 {
  margin-top: 17px;
  font-size: clamp(2.5rem, 3.35vw, 3.2rem);
}
.route-intro p,
.boundary-heading p,
.form-copy > p {
  margin: 22px 0 0;
  color: var(--slate);
}
.signal-router {
  position: relative;
  border-top: 1px solid var(--line);
}
.signal-router::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 42px;
  width: 2px;
  background: #b8cce1;
  content: "";
}
.route-line {
  position: relative;
  display: grid;
  width: 100%;
  grid-template-columns: 84px 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: 142px;
  padding: 22px 20px 22px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.route-line::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(44, 104, 237, 0.07), transparent);
  content: "";
  opacity: 0;
  transition: opacity 0.18s ease;
}
.route-line > * {
  position: relative;
  z-index: 1;
}
.route-line:hover::after,
.route-line.selected::after {
  opacity: 1;
}
.route-node {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 5px solid #f7fbfd;
  border-radius: 50%;
  background: var(--cobalt);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 0 0 1px #9db8d3;
}
.route-line.urgent .route-node {
  background: #bd3e52;
}
.route-line.general .route-node {
  background: #087c73;
}
.route-copy strong {
  display: block;
  font-size: 1.22rem;
}
.route-copy small {
  display: block;
  margin-top: 8px;
  color: var(--slate);
  font-size: 0.84rem;
  line-height: 1.55;
}
.route-action {
  color: var(--cobalt-dark);
  font-size: 0.77rem;
  font-weight: 800;
  white-space: nowrap;
}
.route-result {
  grid-column: 2;
  padding: 25px 28px;
  border-left: 5px solid var(--cyan);
  background: var(--navy);
  color: #fff;
  box-shadow: 0 22px 50px rgba(10, 42, 77, 0.14);
}
.route-result > span {
  color: var(--cyan);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.route-result > strong {
  display: block;
  margin-top: 8px;
  font-size: 1.3rem;
}
.route-result p {
  margin: 10px 0 0;
  color: #c5d6e7;
  font-size: 0.86rem;
}
.route-result a {
  display: inline-block;
  margin-top: 15px;
  color: var(--cyan);
  font-weight: 800;
  text-underline-offset: 4px;
}

.handoff-boundary {
  padding: 72px 0;
  background: #dcebf2;
}
.boundary-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
  align-items: start;
}
.boundary-ledger {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #9fb7c9;
  background: #fff;
}
.boundary-ledger article {
  padding: 28px;
}
.boundary-ledger article + article {
  border-left: 1px solid #9fb7c9;
}
.boundary-ledger article::before {
  display: block;
  width: 100%;
  height: 5px;
  margin: -28px 0 24px;
  content: "";
}
.boundary-ledger .send::before {
  background: var(--green);
}
.boundary-ledger .hold::before {
  background: var(--coral);
}
.boundary-ledger span {
  color: #244868;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.boundary-ledger ul {
  margin: 19px 0 0;
  padding-left: 20px;
}
.boundary-ledger li {
  margin-top: 10px;
  color: #29455f;
  font-size: 0.88rem;
}

.form-section {
  padding: 72px 0;
  background: var(--navy);
  color: #fff;
}
.form-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 82px;
  align-items: start;
}
.form-section .kicker {
  color: var(--cyan);
}
.form-copy > p {
  color: #c9d9e8;
}
.contact-record {
  margin: 34px 0 0;
  border-top: 1px solid #36516f;
}
.contact-record > div {
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 22px;
  padding: 16px 0;
  border-bottom: 1px solid #36516f;
}
.contact-record dt {
  color: #86a7c5;
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-record dd {
  margin: 0;
  color: #fff;
  font-weight: 700;
}
.contact-record a {
  color: var(--cyan);
  text-underline-offset: 4px;
}
.response-note {
  margin: 24px 0 0;
  padding: 17px 18px;
  border: 1px solid #44617e;
  color: #b8cce0;
  font-size: 0.78rem;
}
.form-card {
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}
.form-stamp {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--line);
  background: #eaf2f8;
}
.form-stamp span {
  color: #42627f;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.form-stamp strong {
  color: #0b4a81;
  font-size: 0.84rem;
}
.form-card form {
  padding: 28px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  min-width: 0;
}
.field.full {
  grid-column: 1 / -1;
}
.field label {
  display: block;
  margin-bottom: 7px;
  color: #10223a;
  font-size: 0.8rem;
  font-weight: 800;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #a9c0db;
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
}
.field textarea {
  min-height: 145px;
  resize: vertical;
  line-height: 1.55;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--cobalt);
  outline: 3px solid rgba(44, 104, 237, 0.15);
  outline-offset: 0;
}
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}
.form-submit {
  width: 100%;
  margin-top: 20px;
  border: 0;
  background: var(--cobalt);
  color: #fff;
}
.form-small {
  margin: 13px 0 0;
  color: #5a6f86;
  font-size: 0.71rem;
  line-height: 1.55;
}
.form-error {
  margin: 22px 28px 0;
  padding: 13px 15px;
  border: 1px solid #dc7180;
  background: #fff4f5;
  color: #9d293b;
  font-size: 0.82rem;
}
.form-error strong {
  display: block;
}
.hidden {
  display: none !important;
}

.answers-section {
  padding: 72px 0;
  background: #fff;
}
.section-head {
  max-width: 800px;
  margin-bottom: 36px;
}
.answers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.answers article {
  min-height: 225px;
  padding: 29px;
  border: 1px solid var(--line);
  background: #f8fbfd;
}
.answers h3 {
  font-size: 1.25rem;
}
.answers p {
  margin: 15px 0 0;
  color: var(--slate);
  font-size: 0.91rem;
}
.footer-links {
  margin: 0;
  padding-left: 19px;
}
.footer-title {
  font-size: 1.2rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.cookie-choice {
  position: relative;
  z-index: 120;
  width: 100%;
  padding: 14px 0;
  border-bottom: 1px solid #5e7897;
  background: #071b36;
  color: #fff;
}
.cookie-choice[hidden] {
  display: none;
}
.consent-decided .cookie-choice {
  display: none;
}
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cookie-choice strong {
  display: block;
  font-size: 1rem;
}
.cookie-choice p {
  margin: 4px 0 0;
  color: #c5d4e3;
  font-size: 0.79rem;
}
.cookie-choice a {
  display: inline-block;
  margin-top: 5px;
  color: #9dd9f6;
  font-size: 0.72rem;
}
.cookie-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}
.cookie-actions button {
  min-height: 46px;
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #7892ae;
  border-radius: 9px;
  background: transparent;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
.cookie-actions button:first-child {
  border-color: var(--cobalt);
  background: var(--cobalt);
}
#route-desk,
#handoff-form {
  scroll-margin-top: 112px;
}

@media (max-width: 980px) {
  .navlinks {
    gap: 18px;
  }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-copy {
    padding-right: 38px;
  }
  .hero h1 {
    font-size: clamp(2.8rem, 5.6vw, 4rem);
  }
  .route-layout,
  .boundary-grid,
  .form-layout {
    gap: 48px;
  }
}

@media (max-width: 820px) {
  .topline span {
    display: none;
  }
  .topline .container {
    justify-content: flex-end;
  }
  .navlinks {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .hero-grid {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }
  .hero-copy {
    padding: 60px 0 42px;
  }
  .hero-media {
    min-height: 430px;
    margin-inline: -20px;
  }
  .hero-media::before {
    background: linear-gradient(0deg, rgba(5, 22, 45, 0.7), transparent 48%);
  }
  .hero-media img {
    object-position: center;
  }
  .route-layout,
  .boundary-grid,
  .form-layout {
    display: block;
  }
  .route-intro {
    position: static;
    margin-bottom: 28px;
  }
  .route-result {
    margin-top: 28px;
  }
  .boundary-ledger,
  .answers {
    grid-template-columns: 1fr;
  }
  .boundary-ledger article + article {
    border-top: 1px solid #9fb7c9;
    border-left: 0;
  }
  .form-card {
    margin-top: 44px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1180px);
  }
  .topline {
    font-size: 0.74rem;
  }
  .nav {
    min-height: 70px;
  }
  .brand {
    width: 164px;
  }
  .hero-copy {
    padding: 48px 0 36px;
  }
  .hero h1 {
    margin-top: 18px;
    font-size: 2.42rem;
    line-height: 1.04;
  }
  .hero-lede {
    margin-top: 22px;
    font-size: 0.98rem;
  }
  .hero-actions {
    display: grid;
  }
  .button {
    width: 100%;
  }
  .hero-media {
    min-height: 320px;
    margin-inline: -14px;
  }
  .signal-slip {
    right: 14px;
    bottom: 14px;
    left: 14px;
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .signal-slip i {
    display: none;
  }
  .signal-slip strong {
    white-space: normal;
  }
  .route-section,
  .handoff-boundary,
  .form-section,
  .answers-section {
    padding: 54px 0;
  }
  .route-intro h2,
  .boundary-heading h2,
  .form-copy h2,
  .section-head h2 {
    font-size: 2.25rem;
  }
  .signal-router::before {
    left: 31px;
  }
  .route-line {
    grid-template-columns: 62px 1fr;
    gap: 14px;
    min-height: 0;
    padding: 22px 0;
  }
  .route-node {
    width: 58px;
    height: 58px;
    border-width: 4px;
  }
  .route-action {
    grid-column: 2;
  }
  .route-result {
    padding: 22px;
  }
  .boundary-ledger article {
    padding: 24px;
  }
  .boundary-ledger article::before {
    margin: -24px 0 21px;
  }
  .contact-record > div {
    display: block;
  }
  .contact-record dd {
    margin-top: 5px;
  }
  .form-stamp {
    display: block;
  }
  .form-stamp strong {
    display: block;
    margin-top: 5px;
  }
  .form-card form {
    padding: 22px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  .answers {
    gap: 14px;
  }
  .answers article {
    min-height: 0;
    padding: 24px;
  }
  .cookie-choice {
    padding: 16px 0;
  }
  .cookie-inner {
    display: grid;
  }
  .cookie-actions {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media print {
  .topline,
  .site-header,
  .hero-actions,
  .route-result,
  .form-section,
  .cookie-choice,
  .hd-footer {
    display: none !important;
  }
  .hero {
    background: #fff;
    color: #000;
  }
  .hero-grid,
  .route-layout,
  .boundary-grid {
    display: block;
  }
  .hero-copy {
    padding: 20px 0;
  }
  .hero-media {
    min-height: 0;
  }
}
