.nexaro-site {
  --site-max: 1320px;
  --site-gutter: clamp(20px, 4vw, 54px);
  --site-ink: #07142e;
  --site-ink-2: #13294f;
  --site-gold: #c7913a;
  --site-steel: #59616d;
  --site-line: rgba(7, 20, 46, 0.14);
  --site-line-strong: rgba(7, 20, 46, 0.28);
  --site-paper: #f7f8f6;
  --site-white: #ffffff;
  --site-green: #527f6d;
  --site-red: #a84e3d;
  background: var(--site-paper);
  color: var(--site-ink);
  font-family: var(--font-sans);
  min-height: 100vh;
}

.nexaro-site,
.nexaro-site * {
  letter-spacing: 0 !important;
}

.nexaro-site img {
  max-width: 100%;
}

.site-button {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 3px;
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    transform var(--d-fast) var(--ease-out),
    background-color var(--d-fast) var(--ease-out),
    border-color var(--d-fast) var(--ease-out),
    color var(--d-fast) var(--ease-out);
}

.site-button i {
  font-size: 1.05em;
}

.site-button:hover {
  transform: translateY(-1px);
}

.site-button:active {
  transform: translateY(0);
}

.site-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.site-button--primary {
  background: var(--site-ink);
  color: #fff;
  border-color: var(--site-ink);
}

.site-button--primary:hover {
  background: #0d2146;
  border-color: #0d2146;
}

[data-theme="dark"] .site-button--primary,
.hero .site-button--primary,
.desk-cta .site-button--primary {
  background: var(--site-gold);
  color: #08142d;
  border-color: var(--site-gold);
}

[data-theme="dark"] .site-button--primary:hover,
.hero .site-button--primary:hover,
.desk-cta .site-button--primary:hover {
  background: #d8aa5a;
  border-color: #d8aa5a;
}

.site-button--secondary {
  background: transparent;
  color: var(--site-ink);
  border-color: var(--site-line-strong);
}

.site-button--secondary:hover {
  border-color: var(--site-ink);
  background: rgba(7, 20, 46, 0.04);
}

[data-theme="dark"] .site-button--secondary,
.hero .site-button--secondary,
.desk-cta .site-button--secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .site-button--secondary:hover,
.hero .site-button--secondary:hover,
.desk-cta .site-button--secondary:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.site-button--ghost {
  background: transparent;
  color: var(--site-ink);
  border-color: transparent;
}

.site-button--sm {
  min-height: 36px;
  padding: 0 13px;
  font-size: 0.875rem;
}

.site-button--lg {
  min-height: 50px;
  padding: 0 20px;
  font-size: 1rem;
}

.site-button--full {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 248, 246, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--site-line);
}

.site-header__bar {
  height: 70px;
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 0 var(--site-gutter);
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-brand {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.site-brand img {
  width: 122px;
  height: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 10px;
}

.site-nav button,
.site-mobile-nav button {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(7, 20, 46, 0.68);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 12px 10px;
  position: relative;
}

.site-nav button::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 7px;
  height: 1px;
  background: var(--site-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--d-fast) var(--ease-out);
}

.site-nav button:hover,
.site-nav button[aria-current="true"],
.site-mobile-nav button:hover,
.site-mobile-nav button[aria-current="true"] {
  color: var(--site-ink);
}

.site-nav button[aria-current="true"]::after,
.site-nav button:hover::after {
  transform: scaleX(1);
}

.site-header__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-menu {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  border: 1px solid var(--site-line);
  background: transparent;
  color: var(--site-ink);
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
}

.site-mobile-nav {
  display: none;
  padding: 0 var(--site-gutter) 18px;
  border-top: 1px solid var(--site-line);
}

.site-mobile-nav button {
  width: 100%;
  text-align: left;
  padding: 14px 0;
  border-bottom: 1px solid var(--site-line);
}

.hero {
  min-height: 78svh;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--site-ink);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(90deg, rgba(7, 20, 46, 0.95) 0%, rgba(7, 20, 46, 0.82) 39%, rgba(7, 20, 46, 0.28) 70%, rgba(7, 20, 46, 0.46) 100%),
    linear-gradient(0deg, rgba(7, 20, 46, 0.7), rgba(7, 20, 46, 0.06) 48%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.075) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.72) 48%, transparent 86%);
}

.hero__inner {
  min-height: 78svh;
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 90px var(--site-gutter) 58px;
  display: grid;
  grid-template-columns: minmax(0, 780px);
  gap: 0;
  align-items: end;
}

.section-kicker,
.hero__kicker,
.fuel-scroll__kicker,
.quote-kicker {
  font-family: var(--font-mono);
  font-size: 0.73rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--site-gold);
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #d9b56e;
}

.hero__kicker::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  margin: 22px 0 0;
  max-width: 10.5ch;
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--t-h1);
  font-weight: 800;
  line-height: 0.96;
}

.hero__mobile-break {
  display: none;
}

.hero__lede {
  margin: 26px 0 0;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
  line-height: 1.55;
}

.hero__actions {
  margin-top: 34px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__readout {
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(7, 20, 46, 0.26);
  backdrop-filter: blur(8px);
}

.hero__readout-head,
.hero__readout-row,
.fuel-scroll__readout-row {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

.hero__readout-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #d9b56e;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero__readout-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: baseline;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.86rem;
}

.hero__readout-row strong {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1rem;
}

.hero__status {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #7fc0a0;
  box-shadow: 0 0 0 4px rgba(127, 192, 160, 0.2);
}

.service-guarantees {
  background: #fff;
  border-bottom: 1px solid var(--site-line);
}

.service-guarantees__inner {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 24px var(--site-gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.service-guarantee {
  min-height: 124px;
  min-width: 0;
  padding: 8px 24px;
  border-left: 1px solid var(--site-line);
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-content: center;
  column-gap: 10px;
}

.service-guarantee:first-child {
  border-left: 0;
  padding-left: 0;
}

.service-guarantee > i {
  grid-row: 1 / span 2;
  color: var(--site-gold);
  font-size: 1.2rem;
  line-height: 1.2;
}

.service-guarantee__title {
  min-width: 0;
  color: var(--site-ink);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.2;
}

.service-guarantee__copy {
  min-width: 0;
  margin: 7px 0 0;
  color: var(--site-steel);
  font-size: 0.84rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.section-shell {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 112px var(--site-gutter);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.62fr);
  gap: 52px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading {
  margin-top: 14px;
  color: var(--site-ink);
  font-size: var(--t-h2);
  line-height: 1.02;
  max-width: 11.5ch;
}

.section-copy {
  color: #4e5662;
  font-size: 1.08rem;
  line-height: 1.62;
  margin: 0;
}

.fuel-scroll {
  position: relative;
  height: 500dvh;
  background: var(--site-ink);
  color: #fff;
}

.fuel-scroll__sticky {
  position: sticky;
  top: 0;
  height: 100dvh;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.fuel-scroll__sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
}

.fuel-scroll__progress {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 5;
}

.fuel-scroll__progress span {
  display: block;
  height: 100%;
  background: var(--site-gold);
  transform-origin: left;
}

.fuel-scroll__layout {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 76px var(--site-gutter) 92px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 330px) minmax(260px, 0.7fr);
  gap: 56px;
  align-items: center;
}

.fuel-scroll__title {
  margin: 18px 0 0;
  color: #fff;
  font-size: var(--t-mega);
  line-height: 0.92;
  max-width: 7ch;
}

.fuel-scroll__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.fuel-scroll__pill {
  border: 1px solid currentColor;
  border-radius: 3px;
  padding: 4px 9px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
}

.fuel-scroll__spec {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-mono);
  font-size: 0.74rem;
}

.fuel-scroll__note {
  max-width: 40ch;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.6;
}

.fuel-scroll__instrument {
  height: 62dvh;
  min-height: 430px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.fuel-scroll__readout-label {
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.fuel-scroll__percent {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.fuel-scroll__percent strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 6.25rem;
  line-height: 0.84;
}

.fuel-scroll__percent span {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
}

.fuel-scroll__readout {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fuel-scroll__readout-row {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
}

.fuel-scroll__swatch {
  width: 12px;
  height: 12px;
  border-radius: 2px;
}

.fuel-scroll__cert {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.fuel-scroll__chapters {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 0;
  width: min(var(--site-max), 100%);
  transform: translateX(-50%);
  padding: 0 var(--site-gutter) 26px;
  display: flex;
  gap: 20px;
}

.fuel-scroll__chapter {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 13px 0 0;
  color: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  flex: 1;
  min-width: 0;
  text-align: left;
}

.fuel-scroll__chapter-track {
  height: 2px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.fuel-scroll__chapter-fill {
  display: block;
  height: 100%;
  background: var(--fuel-chapter-color, var(--site-gold));
  transform-origin: left;
}

.fuel-scroll__chapter-num,
.fuel-scroll__chapter-name {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.fuel-scroll__chapter-num {
  margin-top: 10px;
  color: inherit;
}

.fuel-scroll__chapter-name {
  margin-top: 4px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fuel-scroll__chapter.is-active,
.fuel-scroll__chapter.is-active .fuel-scroll__chapter-name {
  color: #fff;
}

@keyframes ops-copy-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ops-scroll {
  height: 340dvh;
  min-height: 2200px;
  position: relative;
  background: #fff;
  border-top: 1px solid var(--site-line);
  border-bottom: 1px solid var(--site-line);
  --ops-marker-x: 88px;
  --ops-marker-y: 126px;
  --ops-dash: 0.92;
  --ops-step-1: 0;
  --ops-step-2: 0;
  --ops-step-3: 0;
  --ops-step-4: 0;
}

.ops-sticky {
  position: sticky;
  top: 0;
  min-height: 100dvh;
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 72px var(--site-gutter);
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(520px, 1fr);
  gap: 64px;
  align-items: center;
  isolation: isolate;
}

.ops-sticky::before {
  content: "";
  position: absolute;
  inset: 0 var(--site-gutter);
  z-index: -1;
  background-image:
    linear-gradient(to right, rgba(7, 20, 46, 0.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(7, 20, 46, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.72) 58%, transparent 100%);
  pointer-events: none;
}

.ops-copy {
  position: relative;
}

.ops-copy__step {
  animation: ops-copy-in 520ms var(--ease-out) both;
}

.ops-copy__step > span {
  display: inline-block;
  margin-top: 18px;
  color: var(--site-gold);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
}

.ops-copy__step h2 {
  margin-top: 16px;
  max-width: 10.5ch;
  color: var(--site-ink);
  font-size: var(--t-h2);
  line-height: 1.02;
}

.ops-copy__step p {
  margin: 22px 0 0;
  max-width: 42ch;
  color: #4e5662;
  font-size: 1.1rem;
  line-height: 1.6;
}

.ops-stepper {
  margin-top: 42px;
  border-top: 1px solid var(--site-line-strong);
}

.ops-stepper button {
  appearance: none;
  width: 100%;
  min-height: 58px;
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--site-line);
  background: transparent;
  color: #6b7280;
  cursor: pointer;
  text-align: left;
  overflow: hidden;
}

.ops-stepper button span {
  color: var(--site-gold);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
}

.ops-stepper button strong {
  color: inherit;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 700;
}

.ops-stepper button i {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--site-gold);
  transform-origin: left;
  transform: scaleX(var(--ops-step-fill, 0));
  will-change: transform;
}

.ops-stepper button.is-active {
  color: var(--site-ink);
}

.ops-visual {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.ops-schematic {
  position: relative;
  min-height: 470px;
  background: #f8f9f7;
  border: 1px solid var(--site-line-strong);
  overflow: hidden;
  contain: layout paint;
}

.ops-schematic::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(199, 145, 58, 0.08), transparent 38%),
    linear-gradient(315deg, rgba(7, 20, 46, 0.05), transparent 44%);
}

.ops-schematic svg {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 470px;
}

.ops-grid-lines line {
  stroke: rgba(7, 20, 46, 0.08);
  stroke-width: 1;
}

.ops-path {
  fill: none;
  stroke: rgba(7, 20, 46, 0.18);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ops-path.is-active {
  stroke: var(--site-gold);
  stroke-width: 4;
  stroke-dasharray: 1;
  stroke-dashoffset: var(--ops-dash);
}

.ops-node-svg rect {
  fill: #fff;
  stroke: rgba(7, 20, 46, 0.24);
  stroke-width: 1;
  transition:
    fill var(--d-base) var(--ease-out),
    stroke var(--d-base) var(--ease-out);
}

.ops-node-svg text {
  fill: #5f6875;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  transition: fill var(--d-base) var(--ease-out);
}

.ops-node-svg.is-active rect {
  fill: var(--site-ink);
  stroke: var(--site-ink);
}

.ops-node-svg.is-active text {
  fill: #fff;
}

.ops-marker,
.ops-marker-halo {
  transform: translate(var(--ops-marker-x), var(--ops-marker-y));
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform;
}

.ops-marker-halo {
  fill: rgba(199, 145, 58, 0.16);
}

.ops-marker {
  fill: var(--site-gold);
  stroke: #fff;
  stroke-width: 3;
}

.ops-ticket {
  position: relative;
  display: grid;
  grid-template-columns: minmax(136px, 0.38fr) minmax(0, 1fr);
  gap: 14px 18px;
  align-items: start;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(7, 20, 46, 0.16);
  padding: 16px;
}

.ops-ticket__head span {
  display: block;
  color: #6a7280;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
}

.ops-ticket__head strong {
  display: block;
  margin-top: 7px;
  color: var(--site-ink);
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
}

.ops-ticket p {
  margin: 0;
  color: var(--site-ink);
  font-family: var(--font-mono);
  font-size: 0.86rem;
  font-weight: 700;
}

.ops-ticket__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.ops-ticket__facts em {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 8px;
  border: 1px solid rgba(7, 20, 46, 0.14);
  border-radius: 3px;
  background: #f8f9f7;
  color: #4e5662;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
}

.network-section {
  background: #fff;
  border-top: 1px solid var(--site-line);
  border-bottom: 1px solid var(--site-line);
}

.network-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 58px;
  align-items: start;
}

.network-copy h2 {
  max-width: 10.6ch;
}

.network-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 38px;
  background: var(--site-line);
  border: 1px solid var(--site-line);
}

.network-metric {
  background: #fff;
  min-height: 108px;
  padding: 18px;
}

.network-metric span {
  color: #59616d;
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.network-metric strong {
  display: block;
  margin-top: 18px;
  color: var(--site-ink);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.network-map {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--site-line-strong);
  background:
    linear-gradient(145deg, rgba(82, 127, 109, 0.1), transparent 44%),
    linear-gradient(315deg, rgba(199, 145, 58, 0.12), transparent 46%),
    #f8f9f7;
}

.network-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(7, 20, 46, 0.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(7, 20, 46, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  pointer-events: none;
}

.network-map__top {
  position: relative;
  z-index: 1;
  min-height: 86px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid var(--site-line);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(10px);
}

.network-map__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--site-ink);
}

.network-map__sub {
  margin-top: 3px;
  color: #59616d;
  font-size: 0.94rem;
}

.network-map__badge {
  border: 1px solid rgba(82, 127, 109, 0.34);
  border-radius: 3px;
  padding: 6px 9px;
  color: var(--site-green);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  white-space: nowrap;
}

.network-map__canvas {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: min(68dvh, 620px);
  min-height: 520px;
}

.network-map__country-shadow {
  fill: rgba(7, 20, 46, 0.09);
  transform: translate(7px, 9px);
}

.network-map__country {
  fill: rgba(255, 255, 255, 0.74);
  stroke: rgba(7, 20, 46, 0.28);
  stroke-width: 1.4;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.network-map__link {
  fill: none;
  stroke: rgba(199, 145, 58, 0.62);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 8 12;
  stroke-dashoffset: 0;
  vector-effect: non-scaling-stroke;
  animation: network-line-flow 4.2s linear infinite;
  animation-delay: var(--line-delay);
}

.network-map__packet {
  fill: var(--site-gold);
  opacity: 0.82;
  filter: drop-shadow(0 0 7px rgba(199, 145, 58, 0.45));
}

.network-map__node {
  transform-box: fill-box;
  transform-origin: center;
}

.network-map__node-halo {
  fill: rgba(82, 127, 109, 0.16);
  transform-box: fill-box;
  transform-origin: center;
  animation: network-node-pulse 3.6s var(--ease-out) infinite;
  animation-delay: var(--node-delay);
}

.network-map__node-core {
  fill: var(--site-ink);
  stroke: #fff;
  stroke-width: 3;
}

.network-map__node.is-primary .network-map__node-halo {
  fill: rgba(199, 145, 58, 0.2);
}

.network-map__node.is-primary .network-map__node-core {
  fill: var(--site-gold);
}

.network-map__node-label {
  fill: #253044;
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 5;
  paint-order: stroke;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.network-map__caption {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--site-line);
  background: rgba(255, 255, 255, 0.82);
}

.network-map__caption span {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  color: #4e5662;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  border-left: 1px solid var(--site-line);
}

.network-map__caption span:first-child {
  border-left: 0;
}

@keyframes network-line-flow {
  to {
    stroke-dashoffset: -40;
  }
}

@keyframes network-node-pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.8);
  }

  50% {
    opacity: 0.75;
    transform: scale(1.2);
  }
}

.desk-cta {
  background: var(--site-ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.desk-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
}

.desk-cta__inner {
  position: relative;
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 92px var(--site-gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 46px;
  align-items: center;
}

.desk-cta h2 {
  color: #fff;
  font-size: var(--t-h2);
  line-height: 1.02;
  max-width: 12ch;
}

.desk-cta p {
  margin: 18px 0 0;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
  line-height: 1.6;
}

.desk-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer {
  background: #061127;
  color: rgba(255, 255, 255, 0.74);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__inner {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 46px var(--site-gutter) 28px;
}

.site-footer__legal {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.site-footer__company {
  display: grid;
  gap: 18px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 32px;
  height: auto;
}

.footer-brand span {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.24rem;
  font-weight: 800;
}

.site-footer__contact {
  display: grid;
  gap: 7px;
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-style: normal;
  font-size: 0.94rem;
  line-height: 1.45;
}

.site-footer__contact strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.site-footer__contact a {
  width: fit-content;
  color: rgba(217, 181, 110, 0.92);
  text-decoration: none;
  transition: color var(--d-base) var(--ease-out);
}

.site-footer__contact a:hover,
.site-footer__contact a:focus-visible {
  color: #fff;
  outline: 0;
}

.site-footer__legal-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer__legal-actions button,
.site-footer__legal-actions a {
  appearance: none;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.74);
  font: 700 0.76rem/1 var(--font-body);
  letter-spacing: 0;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color var(--d-base) var(--ease-out),
    background-color var(--d-base) var(--ease-out),
    color var(--d-base) var(--ease-out);
}

.site-footer__legal-actions button:hover,
.site-footer__legal-actions button:focus-visible,
.site-footer__legal-actions a:hover,
.site-footer__legal-actions a:focus-visible {
  border-color: rgba(217, 181, 110, 0.72);
  background: rgba(217, 181, 110, 0.12);
  color: #fff;
  outline: 0;
}

.site-footer__bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.legal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  padding: 22px;
  background: rgba(6, 17, 39, 0.72);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: nx-rise var(--d-base) var(--ease-out);
}

.legal-dialog {
  width: min(760px, 100%);
  max-height: min(82vh, 820px);
  overflow: auto;
  background: #fbfcfb;
  border: 1px solid rgba(7, 20, 46, 0.2);
  border-radius: 4px;
  box-shadow: 0 28px 80px rgba(6, 17, 39, 0.34);
}

.legal-dialog__head {
  padding: 24px 24px 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  border-bottom: 1px solid var(--site-line);
}

.legal-dialog__head span {
  display: block;
  margin-bottom: 8px;
  color: var(--site-green);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.legal-dialog__head h3 {
  margin: 0;
  color: var(--site-ink);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.02;
}

.legal-close {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1px solid var(--site-line);
  border-radius: 3px;
  background: #fff;
  color: var(--site-ink);
  cursor: pointer;
}

.legal-dialog__body {
  padding: 22px 24px 26px;
}

.legal-dialog__body > p {
  margin: 0 0 20px;
  max-width: 68ch;
  color: #47515f;
  font-size: 0.98rem;
  line-height: 1.65;
}

.legal-list {
  margin: 0;
  display: grid;
  gap: 1px;
  background: var(--site-line);
  border: 1px solid var(--site-line);
}

.legal-row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  min-height: 64px;
  background: #fff;
}

.legal-row dt,
.legal-row dd {
  margin: 0;
  padding: 15px 16px;
}

.legal-row dt {
  color: #59616d;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  border-right: 1px solid var(--site-line);
}

.legal-row dd {
  color: var(--site-ink);
  font-size: 0.94rem;
  line-height: 1.55;
}

.legal-row dd span {
  display: block;
}

.quote-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  padding: 22px;
  background: rgba(6, 17, 39, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: nx-rise var(--d-base) var(--ease-out);
}

.quote-dialog {
  width: min(560px, 100%);
  max-height: calc(100vh - 44px);
  max-height: calc(100dvh - 44px);
  background: #fff;
  border: 1px solid rgba(7, 20, 46, 0.18);
  border-radius: 4px;
  box-shadow: 0 28px 80px rgba(6, 17, 39, 0.34);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.quote-dialog__head {
  flex: 0 0 auto;
  padding: 22px 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.quote-close {
  width: 38px;
  height: 38px;
  border: 1px solid var(--site-line);
  border-radius: 3px;
  background: #fff;
  color: var(--site-ink);
  cursor: pointer;
}

.quote-dialog__body {
  padding: 22px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.quote-form {
  margin: 0;
}

.quote-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.quote-intro {
  margin: -4px 0 18px;
  color: #59616d;
  font-size: 0.96rem;
  line-height: 1.55;
}

.quote-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.quote-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
}

.quote-progress span {
  flex: 1;
  height: 3px;
  background: #e5e9ee;
}

.quote-progress span.is-active {
  background: var(--site-gold);
}

.quote-step h3 {
  margin: 0 0 16px;
  color: var(--site-ink);
  font-size: 1.55rem;
}

.quote-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.quote-chip {
  appearance: none;
  border: 1px solid var(--site-line);
  background: #fff;
  border-radius: 3px;
  padding: 9px 11px;
  color: #253044;
  font-family: var(--font-sans);
  font-weight: 700;
  cursor: pointer;
}

.quote-chip.is-selected {
  color: var(--site-ink);
  border-color: var(--site-gold);
  background: rgba(199, 145, 58, 0.11);
}

.quote-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 0;
}

.quote-field--full {
  grid-column: 1 / -1;
}

.quote-field label {
  color: #59616d;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.quote-field input,
.quote-field select,
.quote-field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--site-line);
  border-radius: 3px;
  padding: 0 12px;
  color: var(--site-ink);
  font-family: var(--font-sans);
  font-size: 1rem;
}

.quote-field textarea {
  min-height: 108px;
  padding-top: 11px;
  padding-bottom: 11px;
  resize: vertical;
  line-height: 1.45;
}

.quote-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.quote-disclaimer {
  margin: 12px 0 0;
  color: #6b7280;
  font-size: 0.82rem;
  line-height: 1.45;
}

.quote-success {
  text-align: center;
  padding: 8px 0 4px;
}

.quote-success__mark {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(82, 127, 109, 0.12);
  color: var(--site-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity var(--d-slow) var(--ease-out),
    transform var(--d-slow) var(--ease-out);
}

.reveal.is-seen {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .site-nav {
    display: none;
  }

  .site-menu {
    display: inline-flex;
  }

  .site-header.is-open .site-mobile-nav {
    display: block;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 72px;
  }

  .hero__readout {
    max-width: 520px;
  }

  .service-guarantees__inner,
  .network-grid,
  .section-intro,
  .desk-cta__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__legal {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-row {
    grid-template-columns: 1fr;
  }

  .legal-row dt {
    border-right: 0;
    border-bottom: 1px solid var(--site-line);
    padding-bottom: 9px;
  }

  .service-guarantee {
    border-left: 0;
    border-top: 1px solid var(--site-line);
    padding: 18px 0;
  }

  .service-guarantee:first-child {
    border-top: 0;
  }

  .fuel-scroll {
    height: auto;
  }

  .fuel-scroll__sticky {
    position: relative;
    height: auto;
  }

  .fuel-scroll__layout {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.78fr);
    gap: 34px;
    padding-top: 76px;
    padding-bottom: 188px;
  }

  .fuel-scroll__layout > div:first-child {
    grid-column: 1;
    grid-row: 1;
  }

  .fuel-scroll__instrument {
    grid-column: 2;
    grid-row: 1 / span 2;
    height: min(52dvh, 430px);
    min-height: 340px;
  }

  .fuel-scroll__layout > div:last-child {
    grid-column: 1;
    grid-row: 2;
  }

  .fuel-scroll__title {
    font-size: clamp(4.4rem, 10vw, var(--t-mega));
  }

  .fuel-scroll__percent strong {
    font-size: clamp(4.4rem, 9vw, 5.8rem);
  }

  .fuel-scroll__chapters {
    flex-wrap: wrap;
  }

  .fuel-scroll__chapter {
    flex-basis: calc(50% - 10px);
  }

  .ops-sticky {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .ops-sticky::before {
    mask-image: none;
  }

  .ops-copy__step h2 {
    max-width: 12ch;
  }

  .ops-stepper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 30px;
  }

  .ops-stepper button {
    min-height: 74px;
    grid-template-columns: 1fr;
    gap: 4px;
    align-content: start;
    padding: 12px 10px;
    border-left: 1px solid var(--site-line);
  }

  .ops-stepper button:first-child {
    border-left: 0;
  }

  .ops-schematic {
    min-height: 410px;
  }

  .ops-schematic svg {
    min-height: 410px;
  }

  .ops-ticket {
    grid-template-columns: minmax(120px, 0.36fr) minmax(0, 1fr);
  }
}

@media (min-width: 681px) and (max-width: 1020px) {
  .fuel-scroll__chapters {
    flex-wrap: nowrap;
    gap: 16px;
  }

  .fuel-scroll__chapter {
    flex: 1 1 0;
    flex-basis: auto;
  }
}

@media (max-width: 680px) {
  .nexaro-site {
    --site-gutter: 20px;
    overflow-x: clip;
  }

  .site-header__bar {
    height: 62px;
  }

  .site-brand img {
    width: 108px;
  }

  .site-header__actions .site-button {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background-position: 62% center;
  }

  .hero__inner {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 46px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8.4vw, 2.28rem);
    line-height: 1.04;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .hero__mobile-break {
    display: block;
  }

  .hero__lede,
  .section-copy,
  .ops-copy__step p,
  .desk-cta p {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
  }

  .hero__lede {
    max-width: 31ch;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .hero__actions,
  .quote-actions,
  .desk-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .quote-form__grid {
    grid-template-columns: 1fr;
  }

  .hero__readout-row {
    grid-template-columns: 1fr auto;
  }

  .hero__readout-row span:last-child {
    grid-column: 1 / -1;
  }

  .section-shell {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .section-heading,
  .desk-cta h2 {
    max-width: 12ch;
    font-size: clamp(2rem, 9vw, 2.45rem);
  }

  .ops-scroll {
    height: 360dvh;
    min-height: 2180px;
  }

  .ops-sticky {
    height: 100dvh;
    min-height: 0;
    gap: 10px;
    overflow: hidden;
    padding: 54px var(--site-gutter) 12px;
    align-content: center;
  }

  .ops-copy__step > span {
    margin-top: 8px;
    font-size: 0.68rem;
  }

  .ops-copy__step h2 {
    max-width: 15ch;
    margin-top: 8px;
    font-size: clamp(1.38rem, 6.7vw, 1.82rem);
    line-height: 1.04;
  }

  .ops-copy__step p {
    display: -webkit-box;
    margin-top: 9px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .ops-stepper {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 10px;
  }

  .ops-stepper button {
    min-height: 32px;
    grid-template-columns: 1fr;
    gap: 0;
    justify-items: center;
    align-content: center;
    padding: 8px 6px;
    border-left: 1px solid var(--site-line);
  }

  .ops-stepper button:first-child {
    border-left: 0;
  }

  .ops-stepper button strong {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .ops-schematic {
    min-height: 0;
    height: clamp(168px, 24dvh, 215px);
  }

  .ops-schematic svg {
    min-height: 0;
    height: 100%;
  }

  .ops-ticket {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 8px;
  }

  .ops-ticket__head span,
  .ops-ticket__facts em {
    font-size: 0.6rem;
  }

  .ops-ticket__head strong {
    margin-top: 4px;
    font-size: 1rem;
  }

  .ops-ticket p {
    font-size: 0.62rem;
    line-height: 1.22;
  }

  .ops-ticket__facts {
    gap: 5px;
    margin-top: 7px;
  }

  .ops-ticket__facts em {
    min-height: 20px;
    padding: 0 6px;
  }

  .fuel-scroll {
    height: 560dvh;
    min-height: 3200px;
  }

  .fuel-scroll__sticky {
    position: sticky;
    top: 0;
    height: 100dvh;
    min-height: 0;
  }

  .fuel-scroll__percent strong {
    font-size: clamp(2.2rem, 11vw, 2.85rem);
  }

  .fuel-scroll__title {
    margin-top: 8px;
    max-width: 9ch;
    font-size: clamp(2.18rem, 11.5vw, 3rem);
    line-height: 0.94;
  }

  .fuel-scroll__layout {
    grid-template-columns: 1fr;
    gap: 8px;
    height: 100%;
    padding-top: 52px;
    padding-bottom: 72px;
    align-content: center;
  }

  .fuel-scroll__layout > div:first-child,
  .fuel-scroll__instrument,
  .fuel-scroll__layout > div:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .fuel-scroll__note {
    display: -webkit-box;
    max-width: 34ch;
    margin-top: 9px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .fuel-scroll__instrument {
    height: clamp(110px, 16dvh, 145px);
    min-height: 0;
  }

  .fuel-scroll__readout {
    margin-top: 8px;
    gap: 5px;
  }

  .fuel-scroll__readout-label,
  .fuel-scroll__pill,
  .fuel-scroll__spec,
  .fuel-scroll__cert,
  .fuel-scroll__readout-row {
    font-size: 0.68rem;
  }

  .fuel-scroll__meta {
    margin-top: 9px;
  }

  .fuel-scroll__percent span {
    font-size: 1.16rem;
  }

  .fuel-scroll__cert {
    display: none;
  }

  .fuel-scroll__chapters {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
    padding-bottom: 10px;
  }

  .fuel-scroll__chapter {
    flex-basis: auto;
    padding-top: 10px;
  }

  .fuel-scroll__chapter-num {
    margin-top: 7px;
  }

  .fuel-scroll__chapter-name {
    font-size: 0.64rem;
    line-height: 1.1;
    white-space: normal;
  }

  .ops-schematic svg {
    min-height: 0;
  }

  .ops-path {
    stroke-width: 3;
  }

  .ops-path.is-active {
    stroke-width: 4;
  }

  .ops-node-svg text {
    font-size: 12px;
  }

  .network-map__top {
    align-items: flex-start;
    padding: 16px;
  }

  .network-map__canvas {
    height: 430px;
    min-height: 430px;
  }

  .network-map__node-label {
    font-size: 11px;
    stroke-width: 4;
  }

  .network-map__caption {
    grid-template-columns: 1fr;
  }

  .network-map__caption span {
    min-height: 42px;
    border-left: 0;
    border-top: 1px solid var(--site-line);
  }
}

@media (max-width: 420px) {
  .site-brand img {
    width: 104px;
  }

  .hero__lede,
  .section-copy,
  .desk-cta p {
    font-size: 0.96rem;
  }

  .network-map__badge {
    font-size: 0.68rem;
    padding: 6px 8px;
  }

  .site-footer__legal-actions {
    width: 100%;
  }

  .site-footer__legal-actions button,
  .site-footer__legal-actions a {
    flex: 1;
  }

  .ops-node-svg text {
    font-size: 11.5px;
  }
}
