:root {
  --navy: #102a43;
  --night: #071a2b;
  --signal: #f26a2e;
  --exit: #2e8b75;
  --paper: #f4f7f9;
  --white: #ffffff;
  --ink: #142230;
  --muted: #526476;
  --line: #cfdae3;
  --soft-blue: #e8f0f5;
  --heading: "Archivo", sans-serif;
  --body: "Archivo", sans-serif;
  --utility: "IBM Plex Mono", monospace;
  --shadow: 0 18px 44px rgba(7, 26, 43, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.65 var(--body);
}
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--night);
  font-family: var(--heading);
  line-height: 1.08;
}
h1 {
  max-width: 14ch;
  margin-bottom: 1.35rem;
  font-size: clamp(2.65rem, 5vw, 5rem);
  font-weight: 700;
  letter-spacing: -.045em;
}
h2 {
  font-size: clamp(2rem, 3.4vw, 3.3rem);
  letter-spacing: -.035em;
}
h3 { font-size: 1.25rem; }
.shell {
  width: min(1180px, calc(100% - 44px));
  margin-inline: auto;
}

.network-strip {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  padding: .45rem 1rem;
  background: var(--night);
  color: #dce8ef;
  font: 500 .72rem var(--utility);
  letter-spacing: .06em;
}
.network-strip strong { color: #8fd9c5; font-weight: 600; }
.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .97);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  min-height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-right: auto;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--exit);
  color: var(--white);
  font: 600 1.3rem var(--utility);
}
.brand-copy {
  color: var(--night);
  font-family: var(--heading);
  line-height: 1;
}
.brand-copy b { display: block; font-size: 1.05rem; }
.brand-copy small {
  color: var(--muted);
  font: 500 .64rem var(--utility);
  letter-spacing: .08em;
}
.main-nav { display: flex; align-items: center; gap: 1.25rem; }
.main-nav a {
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
}
.main-nav a:hover, .main-nav a:focus-visible { color: var(--signal); }
.header-cta, .primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
  border-radius: 8px;
  background: var(--signal);
  color: var(--white);
  padding: .85rem 1.1rem;
  font-weight: 700;
  text-decoration: none;
}
.primary-action { padding: 1rem 1.25rem; }
.header-cta:hover, .primary-action:hover { background: #d95721; }
.nav-toggle { display: none; }

.conversion-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(46, 139, 117, .06) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(rgba(46, 139, 117, .06) 1px, transparent 1px) 0 0 / 48px 48px,
    var(--white);
}
.conversion-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(410px, .92fr);
  align-items: start;
  gap: 4.5rem;
  padding: 3rem 0 4rem;
}
.conversion-copy {
  position: sticky;
  top: 1.5rem;
  padding-top: .35rem;
}
.reg-tag, .eyebrow, .city-label {
  display: inline-block;
  margin-bottom: 1.15rem;
  color: var(--exit);
  font: 600 .74rem var(--utility);
  letter-spacing: .05em;
}
.hero-lead, .large-copy {
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.08rem;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: 1.35rem;
  color: var(--muted);
  font: 500 .72rem var(--utility);
}
.breadcrumbs a { font-weight: 600; }
.route-line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52%;
  height: 9px;
  background: linear-gradient(90deg, var(--exit) 0 70%, var(--signal) 70%);
}
.route-line::after {
  content: "→";
  position: absolute;
  right: -14px;
  top: -17px;
  color: var(--signal);
  font: 600 2rem var(--utility);
}
.route-line span {
  position: absolute;
  top: -5px;
  width: 18px;
  height: 18px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--exit);
}
.route-line span:nth-child(1) { left: 18%; }
.route-line span:nth-child(2) { left: 44%; }
.route-line span:nth-child(3) { left: 68%; background: var(--signal); }
.route-summary {
  display: grid;
  gap: .15rem;
  max-width: 480px;
  margin: 1.6rem 0;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--exit);
  background: var(--soft-blue);
}
.route-summary span {
  color: var(--muted);
  font: 500 .7rem var(--utility);
}
.route-summary b { color: var(--navy); }
.compliance-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 1.7rem 0;
  border-block: 1px solid var(--line);
}
.compliance-line span {
  padding: .9rem .65rem;
  color: var(--muted);
  font-size: .72rem;
}
.compliance-line b {
  display: block;
  color: var(--navy);
  font: 600 1.1rem var(--utility);
}
.local-stat {
  display: inline-flex;
  align-items: baseline;
  gap: .7rem;
  margin-top: .8rem;
  color: var(--muted);
}
.local-stat b { color: var(--navy); font: 600 1.6rem var(--utility); }
.local-stat span { font-size: .75rem; }

.request-panel {
  position: relative;
  align-self: start;
  border: 1px solid var(--line);
  border-top: 5px solid var(--signal);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}
.panel-index {
  color: var(--exit);
  font: 600 .68rem var(--utility);
}
.request-panel h2 {
  margin: .4rem 0 .55rem;
  font-size: 1.8rem;
  letter-spacing: -.025em;
}
.request-panel > p { color: var(--muted); font-size: .88rem; }
.tally-frame { display: block; width: 100%; border: 0; }
.tally-missing {
  margin: 1rem 0;
  padding: 1rem;
  border: 1px dashed var(--line);
  background: var(--paper);
}
.tally-missing strong, .tally-missing span { display: block; }
.panel-points {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem 1rem;
  margin: 1rem 0 0;
  padding: 0;
  color: var(--muted);
  font-size: .72rem;
  list-style: none;
}
.panel-points li::before { content: "✓"; color: var(--exit); margin-right: .35rem; }

.section { padding: 5.5rem 0; }
.soft-section { border-block: 1px solid var(--line); background: var(--soft-blue); }
.navy-section, .dark-section { background: var(--night); color: var(--white); }
.navy-section h2, .dark-section h2, .dark-section h3 { color: var(--white); }
.section-heading { max-width: 760px; margin-bottom: 2.5rem; }
.section-heading p { color: var(--muted); }
.training-grid, .three-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.training-card {
  border: 1px solid #274157;
  border-radius: 10px;
  background: #0d2538;
  padding: 1.5rem;
}
.training-card h3 { color: var(--white); }
.training-card p, .three-columns p { color: #b8c8d4; }
.card-code, .three-columns > article > span {
  color: #8fd9c5;
  font: 600 .75rem var(--utility);
}
.training-card dl { margin: 1.3rem 0 0; border-top: 1px solid #274157; }
.training-card dl div {
  display: flex;
  justify-content: space-between;
  padding: .5rem 0;
  border-bottom: 1px solid #274157;
}
.training-card dt { color: #91a6b5; }
.training-card dd { margin: 0; }
.split-section, .hub-layout, .faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.legal-stack { display: grid; gap: .8rem; }
.legal-stack article, .intent-body section {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  padding: 1.35rem;
}
.legal-stack strong { color: var(--exit); }
.text-link { font-weight: 700; text-decoration-color: var(--signal); }
.region-grid, .hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .65rem;
}
.region-grid a, .hub-grid a {
  display: flex;
  align-items: center;
  gap: .8rem;
  min-height: 64px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: .85rem 1rem;
  font-weight: 600;
  text-decoration: none;
}
.region-grid a:hover, .hub-grid a:hover, .city-cloud a:hover {
  border-color: var(--exit);
  background: #edf8f4;
}
.region-grid span, .hub-grid b { color: var(--exit); font: 600 .72rem var(--utility); }
.city-cloud { display: flex; flex-wrap: wrap; gap: .5rem; }
.city-cloud a {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: .45rem .75rem;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
}
.faq-list details {
  margin-bottom: .65rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.faq-list summary { cursor: pointer; padding: 1rem; font-weight: 700; }
.faq-list p { padding: 0 1rem 1rem; color: var(--muted); }
.content-stack > h2 { max-width: 18ch; }
.format-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.format-list article {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  padding: 1.2rem;
}
.format-list article > b { color: var(--signal); font: 600 .8rem var(--utility); }
.format-list p { color: var(--muted); }
.intent-body { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.price-table {
  grid-column: 1/-1;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}
.price-table div {
  display: flex;
  justify-content: space-between;
  padding: .9rem 1rem;
  border-bottom: 1px solid var(--line);
}
.price-table div:last-child { border: 0; }
.price-table b { color: var(--signal); }
.empty-note { padding: 1rem; border: 1px dashed var(--line); background: var(--white); }

.zones-region {
  margin-bottom: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  overflow: hidden;
}
.zones-region-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.35rem;
  border-bottom: 1px solid var(--line);
  background: var(--soft-blue);
}
.zones-region-heading > span { color: var(--exit); font: 600 .8rem var(--utility); }
.zones-region-heading h2 { margin: 0; font-size: 1.65rem; }
.zones-region-heading a, .zones-department a { text-decoration: none; }
.zones-departments { display: grid; grid-template-columns: repeat(2, 1fr); }
.zones-department { padding: 1.2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.zones-department h3 { font-size: 1rem; }

.status-page {
  display: grid;
  align-items: center;
  min-height: 65vh;
  background: var(--white);
  padding: 5rem 0;
}
.status-code { color: var(--exit); font: 600 .75rem var(--utility); }
.site-footer { background: var(--night); color: var(--white); padding: 3.5rem 0 1.3rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
.footer-grid p, .footer-grid a { color: #9eb0be; }
.footer-grid strong, .footer-grid a { display: block; }
.footer-grid a { margin-top: .45rem; }
.footer-kicker { font-weight: 700; }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid #284155;
  color: #8298a8;
  font: 500 .68rem var(--utility);
}

.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity .25s ease;
}
.exit-popup[hidden] { display: none; }
.exit-popup.is-open { opacity: 1; }
.exit-popup-overlay { position: absolute; inset: 0; background: rgba(7, 26, 43, .8); backdrop-filter: blur(3px); }
.exit-popup-card {
  position: relative;
  width: min(520px, 100%);
  border: 1px solid var(--line);
  border-top: 7px solid var(--signal);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 2rem;
}
.exit-popup-close {
  position: absolute;
  top: .6rem;
  right: .7rem;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  font-size: 1.7rem;
  cursor: pointer;
}
.exit-popup-eyebrow { color: var(--exit); font: 600 .72rem var(--utility); }
.exit-popup-card h2 { margin-top: .7rem; }
.exit-popup-card p { color: var(--muted); }
.exit-popup-cta { width: 100%; }
.exit-popup-dismiss {
  display: block;
  margin: 1rem auto 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  text-decoration: underline;
  cursor: pointer;
}

:focus-visible { outline: 3px solid var(--signal); outline-offset: 3px; }

@media (max-width: 1050px) {
  .main-nav { gap: .75rem; }
  .main-nav a { font-size: .76rem; }
  .conversion-hero-grid { gap: 2.5rem; }
}
@media (max-width: 900px) {
  .network-strip span { display: none; }
  .main-nav, .header-cta { display: none; }
  .nav-toggle {
    display: block;
    min-width: 44px;
    min-height: 44px;
    border: 1px solid var(--navy);
    border-radius: 8px;
    background: var(--white);
    font-weight: 700;
  }
  .main-nav[data-open=true] {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 22px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }
  .conversion-hero-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    padding: 2rem 0 3rem;
  }
  .conversion-copy { position: static; }
  .route-line { width: 78%; }
  .training-grid, .three-columns, .format-list { grid-template-columns: 1fr; }
  .split-section, .hub-layout, .faq-layout { grid-template-columns: 1fr; gap: 2rem; }
  .region-grid, .hub-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1/-1; }
}
@media (max-width: 560px) {
  .shell { width: min(100% - 28px, 1180px); }
  h1 { font-size: 2.65rem; }
  h2 { font-size: 2rem; }
  .brand-copy { display: none; }
  .conversion-hero-grid { padding-top: 1.4rem; }
  .hero-lead { font-size: .98rem; }
  .compliance-line { margin: 1rem 0; }
  .compliance-line span { padding: .65rem .35rem; }
  .primary-action { padding: .85rem 1rem; }
  .request-panel { padding: 1.1rem; }
  .request-panel h2 { font-size: 1.5rem; }
  .section { padding: 4rem 0; }
  .region-grid, .hub-grid, .intent-body, .zones-departments, .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
  .exit-popup-card { padding: 1.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .exit-popup { transition: none; }
}
