:root {
  --ink: #111820;
  --asphalt: #252e37;
  --steel: #56616c;
  --mist: #eef2f5;
  --white: #ffffff;
  --blue: #1769ff;
  --orange: #b73b0f;
  --line: #cfd6dc;
  --display:
    "Arial Narrow", "Aptos Display", "Helvetica Neue", Arial, sans-serif;
  --body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--mist);
  color: var(--ink);
  font: 16px/1.62 var(--body);
}
a {
  color: inherit;
}
.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 30;
  background: white;
  padding: 10px 14px;
}
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 72px;
  padding: 12px clamp(18px, 5vw, 76px);
  background: var(--ink);
  color: white;
  border-bottom: 1px solid #36414b;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font: 800 1rem var(--display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.brand-mark {
  width: 28px;
  height: 28px;
  border: 3px solid #ff5a1f;
  border-radius: 50%;
  position: relative;
}
.brand-mark::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 3px;
  background: #ff5a1f;
  right: -7px;
  top: 10px;
  transform: rotate(-26deg);
}
.nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.nav a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
}
.nav a:hover {
  color: #a9c7ff;
}
.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 700 0.68rem var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c7d1da;
}
.status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #57d68d;
}
.hero {
  min-height: 700px;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  background: var(--ink);
  color: white;
  overflow: hidden;
}
.hero-copy {
  padding: clamp(75px, 9vw, 135px) clamp(24px, 7vw, 110px);
  align-self: center;
  min-width: 0;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font: 800 0.69rem var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero h1,
.display {
  margin: 0;
  font: 800 clamp(3.8rem, 7.5vw, 8rem)/0.86 var(--display);
  letter-spacing: -0.065em;
  text-transform: uppercase;
}
.hero h1 span {
  color: #8cb3ff;
}
.hero .eyebrow,
.page-hero .eyebrow,
.step b {
  color: #ff7a4a;
}
.hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 30px 0;
  font-size: 1.12rem;
  color: #d4dce4;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 2px solid var(--blue);
  background: var(--blue);
  color: white;
  text-decoration: none;
  font-weight: 800;
}
.btn.secondary {
  background: transparent;
  border-color: #71808d;
}
.route-map {
  position: relative;
  min-height: 620px;
  background: var(--blue);
  overflow: hidden;
}
.route-map::before {
  content: "";
  position: absolute;
  inset: -12%;
  background: repeating-linear-gradient(
    117deg,
    transparent 0 72px,
    rgba(255, 255, 255, 0.08) 73px 75px
  );
}
.route-line {
  position: absolute;
  inset: 13% 12%;
  border: 5px solid white;
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 49% 44% 38% 60%;
  transform: rotate(13deg);
}
.route-line::before {
  content: "";
  position: absolute;
  width: 54%;
  height: 72%;
  left: -8%;
  bottom: -38%;
  border: 5px solid white;
  border-right-color: transparent;
  border-top-color: transparent;
  border-radius: 50%;
}
.place {
  position: absolute;
  display: grid;
  grid-template-columns: 14px auto;
  gap: 10px;
  align-items: center;
  color: white;
  font: 800 0.7rem var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.place::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 4px solid var(--orange);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.22);
}
.p1 {
  left: 16%;
  top: 19%;
}
.p2 {
  right: 11%;
  top: 31%;
}
.p3 {
  left: 20%;
  top: 49%;
}
.p4 {
  right: 14%;
  top: 67%;
}
.p5 {
  left: 30%;
  bottom: 10%;
}
.route-note {
  position: absolute;
  right: 6%;
  bottom: 5%;
  max-width: 240px;
  padding: 16px;
  background: var(--white);
  color: var(--ink);
  border-left: 5px solid var(--orange);
  font-size: 0.78rem;
}
.disclaimer {
  padding: 12px clamp(18px, 5vw, 76px);
  background: #fff6ed;
  border-block: 1px solid #ffc9ae;
  color: #673119;
  font-size: 0.8rem;
}
.section {
  padding: clamp(70px, 9vw, 125px) clamp(20px, 7vw, 108px);
}
.section-head {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 44px;
}
.display {
  font-size: clamp(3rem, 6vw, 6.5rem);
}
.section-head p {
  max-width: 570px;
  margin: 0;
  color: var(--steel);
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.brand-card {
  min-height: 310px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.brand-card:hover {
  transform: translateY(-4px);
  background: #f8fbff;
}
.brand-card .code {
  font: 800 0.68rem var(--mono);
  letter-spacing: 0.13em;
  color: var(--blue);
}
.brand-card h2 {
  margin: 45px 0 12px;
  font: 800 2.1rem/1 var(--display);
  text-transform: uppercase;
  letter-spacing: -0.035em;
}
.brand-card p {
  color: var(--steel);
}
.brand-card strong {
  margin-top: auto;
  color: var(--blue);
}
.decision {
  background: var(--asphalt);
  color: white;
}
.decision .section-head p {
  color: #d9e1e7;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #4b5660;
  border: 1px solid #4b5660;
}
.step {
  background: var(--asphalt);
  padding: 30px;
  min-height: 250px;
}
.step b {
  display: block;
  color: #ff8b61;
  font: 800 0.7rem var(--mono);
  letter-spacing: 0.12em;
}
.step h3 {
  margin: 55px 0 12px;
  font: 800 1.35rem/1.05 var(--display);
  text-transform: uppercase;
}
.step p {
  color: #cbd4db;
  font-size: 0.9rem;
}
.local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}
.local-card {
  padding: 28px;
  background: white;
  border-top: 5px solid var(--orange);
}
.local-card h2 {
  font: 800 1.65rem var(--display);
  text-transform: uppercase;
}
.local-card a {
  color: var(--blue);
  font-weight: 800;
}
.source-band {
  background: #dce7ff;
}
.source-band .inner {
  max-width: 900px;
}
.source-band h2 {
  font: 800 clamp(2.4rem, 5vw, 5rem)/0.95 var(--display);
  text-transform: uppercase;
}
.source-band p {
  max-width: 760px;
}
.page-hero {
  padding: clamp(72px, 9vw, 125px) clamp(20px, 7vw, 108px) 64px;
  background: var(--ink);
  color: white;
}
.page-hero .wrap {
  max-width: 1050px;
}
.page-hero h1 {
  margin: 0;
  font: 800 clamp(3.2rem, 6.6vw, 7rem)/0.9 var(--display);
  text-transform: uppercase;
  letter-spacing: -0.055em;
}
.page-hero .lead {
  max-width: 760px;
  margin: 25px 0 0;
  color: #d6dfe7;
  font-size: 1.15rem;
}
.breadcrumb {
  margin-bottom: 26px;
  color: #a9b6c1;
  font: 700 0.7rem var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.breadcrumb a {
  color: white;
}
.article {
  max-width: 1160px;
  margin: auto;
  padding: clamp(55px, 7vw, 95px) clamp(20px, 5vw, 54px);
  display: grid;
  grid-template-columns: minmax(0, 760px) 270px;
  gap: 70px;
}
.article-main h2 {
  margin: 50px 0 14px;
  font: 800 2.25rem/1.05 var(--display);
  text-transform: uppercase;
  letter-spacing: -0.025em;
}
.article-main h2:first-child {
  margin-top: 0;
}
.article-main h3 {
  margin: 30px 0 8px;
  font-size: 1.05rem;
}
.article-main p {
  margin: 0 0 18px;
}
.article-main ul,
.article-main ol {
  padding-left: 22px;
}
.article-main li + li {
  margin-top: 8px;
}
.factbox {
  margin: 28px 0;
  padding: 24px;
  background: white;
  border-left: 6px solid var(--blue);
}
.factbox strong {
  display: block;
  margin-bottom: 7px;
}
.notice {
  padding: 20px;
  border: 1px solid #f4a67f;
  background: #fff6ed;
}
.table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: white;
}
.table th,
.table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.table th {
  font: 800 0.73rem var(--mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.aside {
  align-self: start;
  position: sticky;
  top: 20px;
}
.aside-box {
  padding: 22px;
  background: var(--asphalt);
  color: white;
}
.aside-box h2 {
  margin: 0 0 14px;
  font: 800 1.25rem var(--display);
  text-transform: uppercase;
}
.aside-box a {
  display: block;
  padding: 9px 0;
  border-top: 1px solid #4e5a65;
  text-decoration: none;
  font-size: 0.9rem;
}
.aside-box a:hover {
  color: #a9c7ff;
}
.updated {
  margin-top: 16px;
  color: var(--steel);
  font: 0.72rem var(--mono);
}
.legal {
  max-width: 850px;
  margin: auto;
  padding: 70px 22px 100px;
}
.legal h1 {
  font: 800 clamp(3rem, 7vw, 6rem)/0.9 var(--display);
  text-transform: uppercase;
}
.legal h2 {
  margin-top: 38px;
  font: 800 1.5rem var(--display);
  text-transform: uppercase;
}
footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
  padding: 38px clamp(20px, 5vw, 76px);
  background: var(--ink);
  color: white;
}
footer p {
  margin: 8px 0 0;
  max-width: 570px;
  color: #9faab4;
  font-size: 0.77rem;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
footer nav a {
  font-size: 0.8rem;
  text-decoration: none;
}
a:focus-visible {
  outline: 4px solid var(--orange);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .route-map {
    min-height: 500px;
  }
  .section-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .brand-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .article {
    grid-template-columns: 1fr;
  }
  .aside {
    position: static;
  }
}

@media (max-width: 580px) {
  .topbar {
    min-height: 64px;
    padding-inline: 14px;
  }
  .status {
    font-size: 0.58rem;
  }
  .hero {
    min-height: 0;
  }
  .hero-copy {
    padding: 66px 20px;
  }
  .hero h1 {
    font-size: 3.55rem;
  }
  .route-map {
    min-height: 420px;
  }
  .route-note {
    left: 20px;
    right: 20px;
    max-width: none;
  }
  .brand-grid,
  .steps,
  .local-grid {
    grid-template-columns: 1fr;
  }
  .brand-card {
    min-height: 260px;
  }
  .display {
    font-size: 3.25rem;
  }
  .page-hero h1 {
    font-size: 3.3rem;
  }
  .article-main h2 {
    font-size: 1.85rem;
  }
  .article {
    padding-inline: 18px;
  }
  .table {
    font-size: 0.84rem;
  }
  footer {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .brand-card {
    transition: none;
  }
}
