:root {
  --ink: #101010;
  --muted: #6b6965;
  --paper: #fbfaf7;
  --warm: #f2ede3;
  --line: #d8d3ca;
  --pink: #0f49ff;
  --pink-dark: #0738cc;
  --white: #fff;
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
::selection { color: var(--white); background: var(--pink); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { overflow-wrap: anywhere; }

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform .2s;
}

.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--pink); outline-offset: 4px; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background-color .25s, border-color .25s, box-shadow .25s;
}

.site-header.is-scrolled {
  border-color: rgba(16, 16, 16, .08);
  background: rgba(251, 250, 247, .93);
  box-shadow: 0 12px 40px rgba(16, 16, 16, .04);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.brand { display: inline-block; flex: none; }
.brand img { width: 156px; height: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.5vw, 40px);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.main-nav > a:not(.nav-cta) { position: relative; padding-block: 12px; }

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 13px 20px;
  color: var(--white);
  background: var(--ink);
  transition: background .2s, transform .2s;
}

.nav-cta:hover { background: var(--pink); transform: translateY(-2px); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 790px;
  height: 100svh;
  overflow: hidden;
  background: var(--paper);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .42;
  background-image:
    linear-gradient(rgba(16, 16, 16, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 16, 16, .05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent 0, black 20%, black 75%, transparent 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  top: -180px;
  right: -220px;
  border-radius: 50%;
  background: var(--pink);
  opacity: .035;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(390px, .8fr);
  gap: 8vw;
  align-items: center;
  height: 100%;
  padding-top: 96px;
}

.eyebrow, .section-number {
  margin: 0 0 28px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow { display: flex; gap: 10px; align-items: center; }
.eyebrow > span:first-child { flex: none; width: 8px; height: 8px; background: var(--pink); animation: blink 2s infinite; }
.eyebrow-mobile-line { display: inline; }

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .25; }
}

h1 {
  max-width: 790px;
  margin-bottom: 28px;
  font-size: clamp(64px, 8vw, 118px);
  line-height: .88;
  letter-spacing: -.075em;
  text-wrap: balance;
}

h1 em, h2 em { color: var(--pink); font-style: normal; }

.hero-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: #3b3a37;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.35;
  letter-spacing: -.02em;
}

.signal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 38px;
  padding: 0;
  list-style: none;
}

.signal-list li {
  padding: 8px 11px 7px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .55);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
}

.hero-actions { display: flex; gap: 30px; align-items: center; }

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 15px 20px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .03em;
  transition: transform .25s var(--ease), color .25s, background .25s, border-color .25s;
}

.button span { font-size: 19px; line-height: 1; }
.button:hover { transform: translateY(-3px); }
.button-primary { min-width: 190px; color: var(--white); background: var(--pink); }
.button-primary:hover { background: var(--pink-dark); }

.text-link {
  padding-block: 10px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 750;
}

.hero-visual {
  position: relative;
  display: grid;
  width: min(38vw, 490px);
  aspect-ratio: 1;
  place-items: center;
}

.orbit {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(16, 16, 16, .18);
  border-radius: 50%;
}

.orbit::before, .orbit::after { content: ""; position: absolute; background: var(--paper); }
.orbit::before { top: 50%; right: -2px; left: -2px; height: 18px; transform: translateY(-50%); }
.orbit::after { top: -2px; bottom: -2px; left: 50%; width: 18px; transform: translateX(-50%); }
.orbit-two { inset: 14%; border-color: rgba(15, 73, 255, .4); animation: orbit-spin 24s linear infinite reverse; }
.orbit-one { animation: orbit-spin 34s linear infinite; }
@keyframes orbit-spin { to { transform: rotate(360deg); } }

.orbit-core {
  position: relative;
  z-index: 2;
  display: flex;
  width: 43%;
  aspect-ratio: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  box-shadow: 0 25px 70px rgba(16, 16, 16, .18);
}

.orbit-core strong { font-size: clamp(36px, 4vw, 58px); line-height: 1; letter-spacing: -.06em; }
.orbit-core small { margin-top: 8px; color: #aaa; font-size: 9px; font-weight: 800; letter-spacing: .2em; }
.pulse { position: absolute; top: 18%; right: 18%; width: 11px; height: 11px; background: var(--pink); border-radius: 50%; box-shadow: 0 0 0 7px rgba(15, 73, 255, .15); }

.satellite {
  position: absolute;
  z-index: 3;
  width: 14px;
  height: 14px;
  border: 3px solid var(--paper);
  background: var(--pink);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--pink);
}

.satellite-one { top: 7%; left: 50%; }
.satellite-two { right: 11%; bottom: 19%; }
.satellite-three { bottom: 16%; left: 10%; }

.status-card {
  position: absolute;
  z-index: 4;
  right: -18px;
  bottom: 7%;
  display: flex;
  min-width: 152px;
  gap: 12px;
  align-items: center;
  padding: 15px 17px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 45px rgba(16, 16, 16, .1);
}

.status-dot { width: 10px; height: 10px; background: #12c778; border-radius: 50%; box-shadow: 0 0 0 5px rgba(18, 199, 120, .13); }
.status-card div { display: grid; }
.status-card small { color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .16em; }
.status-card strong { font-size: 14px; letter-spacing: .06em; }

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 48px;
  height: 56px;
  place-items: center;
  transform: translateX(-50%);
}

.scroll-mouse {
  position: relative;
  display: block;
  width: 26px;
  height: 42px;
  border: 1.5px solid var(--ink);
  border-radius: 16px;
  transition: border-color .2s, transform .2s var(--ease);
}

.scroll-mouse i {
  position: absolute;
  top: 8px;
  left: 50%;
  display: block;
  width: 3px;
  height: 8px;
  background: var(--pink);
  border-radius: 3px;
  animation: mouse-wheel 1.8s var(--ease) infinite;
}

.scroll-cue:hover .scroll-mouse {
  border-color: var(--pink);
  transform: translateY(2px);
}

.scroll-swipe { display: none; }

@keyframes mouse-wheel {
  0% { opacity: 0; transform: translate(-50%, -2px); }
  22% { opacity: 1; }
  68% { opacity: 0; transform: translate(-50%, 12px); }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}

.section { padding-block: clamp(96px, 12vw, 172px); }

.section-heading {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 9vw;
  align-items: end;
  margin-bottom: clamp(50px, 7vw, 88px);
}

.section-heading > * { min-width: 0; }

.section-number { margin-bottom: 22px; color: var(--muted); }

h2 {
  margin-bottom: 0;
  font-size: clamp(48px, 6vw, 82px);
  line-height: .98;
  letter-spacing: -.065em;
}

.section-heading > p, .pricing-copy > p:not(.section-number) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
}

.network { background: var(--warm); }

.map-card {
  margin: 0;
  border: 1px solid #d7d0c2;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(74, 58, 34, .08);
}

.map-topline, .map-card figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.map-topline { border-bottom: 1px solid #e8e3db; }
.map-topline span:first-child { display: flex; gap: 9px; align-items: center; }
.map-topline i { width: 8px; height: 8px; background: var(--pink); }
.map-frame { overflow: hidden; padding: clamp(8px, 2.5vw, 34px); }
.map-frame img { width: 100%; height: auto; }
.map-card figcaption { justify-content: flex-start; gap: 16px; border-top: 1px solid #e8e3db; }
.map-card figcaption span { padding-right: 16px; border-right: 1px solid var(--line); }
.map-card figcaption span:last-child { border: 0; }

.pricing { overflow: hidden; background: var(--pink); }

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr minmax(400px, .72fr);
  gap: 10vw;
  align-items: center;
}

.pricing-copy .section-number, .pricing-copy > p:not(.section-number) { color: rgba(255, 255, 255, .72); }
.pricing-copy h2 { margin-bottom: 35px; color: var(--white); }
.pricing-copy h2 em { color: var(--ink); }
.pricing-copy > p:not(.section-number) { max-width: 460px; }

.price-card {
  position: relative;
  padding: clamp(28px, 4vw, 48px);
  background: var(--white);
  box-shadow: 24px 24px 0 rgba(16, 16, 16, .96);
}

.price-card::before { content: "+"; position: absolute; top: -25px; right: -20px; color: var(--white); font-size: 52px; font-weight: 200; }

.price-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 56px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.availability { display: flex; gap: 8px; align-items: center; color: var(--muted); }
.availability i { width: 8px; height: 8px; background: #12c778; border-radius: 50%; }

.price-term {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(54px, 6vw, 76px);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -.06em;
}

.price-term span { color: var(--muted); font-size: 17px; font-weight: 600; letter-spacing: 0; text-transform: uppercase; }

.price {
  display: flex;
  align-items: baseline;
  margin: 26px 0 2px;
  color: var(--pink);
  font-size: clamp(72px, 8vw, 104px);
  font-weight: 850;
  line-height: .9;
  letter-spacing: -.08em;
  white-space: nowrap;
}

.price .currency {
  margin-left: .08em;
  color: inherit;
  font-size: 1em;
  line-height: 1;
  letter-spacing: -.04em;
}
.price-card > p { margin-bottom: 32px; color: var(--muted); font-size: 13px; }
.button-dark { width: 100%; color: var(--white); background: var(--ink); }
.button-dark:hover { background: var(--pink); }
.setup { background: var(--paper); }
.setup-heading { margin-bottom: 42px; }

.connection-intro {
  max-width: 820px;
  margin: 0 0 55px auto;
  padding-left: 28px;
  border-left: 3px solid var(--pink);
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.connection-intro p { margin: 0; }
.connection-intro strong { color: var(--ink); }

.connection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.connection-card { padding: clamp(24px, 3vw, 36px); border: 1px solid var(--line); background: var(--white); }
.connection-card.recommended { border-top: 4px solid var(--pink); }

.connection-title {
  display: flex;
  min-height: 68px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 35px;
}

.version { display: block; margin-bottom: 5px; color: var(--pink); font-size: 11px; font-weight: 850; letter-spacing: .13em; }
.connection-title h3 { margin: 0; font-size: clamp(25px, 2.5vw, 34px); letter-spacing: -.04em; }

.recommended-label {
  padding: 7px 9px;
  color: var(--white);
  background: var(--pink);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.connection-card dl { margin: 0; }

.connection-card dl > div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  padding: 17px 0;
  border-top: 1px solid #e7e3dc;
}

.connection-card dt { color: var(--muted); font-size: 12px; font-weight: 700; }

.connection-card dd {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
}

code { color: var(--ink); font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; font-size: .92em; font-weight: 700; overflow-wrap: anywhere; }

.copy-button {
  flex: none;
  padding: 7px 9px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: color .2s, border-color .2s, background .2s;
}

.copy-button:hover { border-color: var(--pink); color: var(--white); background: var(--pink); }
.mountpoints { border: 1px solid var(--line); background: var(--white); }

.table-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}

.table-title h3 { margin: 0; font-size: 25px; letter-spacing: -.035em; }
.table-title span { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.table-scroll { overflow-x: auto; }
table { width: 100%; min-width: 760px; border-collapse: collapse; }
th, td { padding: 23px 28px; border-bottom: 1px solid #e7e3dc; text-align: left; }
thead th { color: var(--muted); background: #f6f3ee; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
tbody th { color: var(--pink); }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }

.contact { position: relative; overflow: hidden; color: var(--white); background: var(--ink); }

.contact-orbit {
  position: absolute;
  width: 760px;
  height: 760px;
  right: -260px;
  bottom: -430px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
  box-shadow: 0 0 0 110px rgba(255, 255, 255, .025), 0 0 0 220px rgba(255, 255, 255, .018);
}

.contact-orbit::after { content: ""; position: absolute; top: 23%; left: 3%; width: 15px; height: 15px; background: var(--pink); border-radius: 50%; box-shadow: 0 0 0 9px rgba(15, 73, 255, .16); }

.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 10vw;
  align-items: start;
}

.contact .section-number { color: #8f8f8f; }
.contact h2 { margin-bottom: 50px; }

.contact-email {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--pink);
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 750;
  transition: color .2s;
}

.contact-email:hover { color: var(--pink); }

.contact-card {
  display: grid;
  gap: 34px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid #333;
  background: rgba(255, 255, 255, .035);
  font-style: normal;
  backdrop-filter: blur(10px);
}

.contact-card > div { display: grid; gap: 3px; }
.contact-card > div > span { margin-bottom: 8px; color: #8d8d8d; font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.contact-card strong { font-size: 25px; letter-spacing: -.03em; }
.contact-card small, .contact-card > div a { color: #bdbdbd; font-size: 15px; }
.contact-card > div a:hover { color: var(--pink); }
.button-light { color: var(--ink); background: var(--white); }
.button-light:hover { color: var(--white); background: var(--pink); }

.site-footer { padding-block: 28px; border-top: 1px solid #e5e1da; background: var(--paper); }

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 25px;
}

.footer-brand img { width: 140px; }
.footer-inner p { margin: 0; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .04em; }
.footer-inner p:last-child { text-align: right; }

.toast {
  position: fixed;
  z-index: 300;
  right: 24px;
  bottom: 24px;
  padding: 13px 18px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .18);
  font-size: 12px;
  font-weight: 750;
  transform: translateY(140%);
  opacity: 0;
  transition: transform .3s var(--ease), opacity .3s;
}

.toast.is-visible { transform: translateY(0); opacity: 1; }
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal[data-delay="1"] { transition-delay: .12s; }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* 404 */
.error-page { min-height: 100svh; overflow: hidden; }

.error-main {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: clamp(22px, 4vw, 56px);
  overflow: hidden;
  align-items: center;
}

.error-brand { position: absolute; z-index: 2; top: clamp(22px, 4vw, 46px); left: clamp(22px, 4vw, 56px); }
.error-brand img { width: 156px; height: auto; }

.error-grid {
  position: absolute;
  inset: 0;
  opacity: .5;
  background-image: linear-gradient(rgba(16, 16, 16, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(16, 16, 16, .055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 85%);
}

.error-content { position: relative; z-index: 1; width: min(100%, 1240px); margin-inline: auto; }
.error-content .eyebrow { margin-bottom: 15px; }

.error-code {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 0;
  margin: 0;
  color: var(--warm);
  font-size: clamp(190px, 31vw, 530px);
  font-weight: 900;
  line-height: .7;
  letter-spacing: -.1em;
  transform: translateY(-50%);
}

.error-content h1 { max-width: 850px; margin-bottom: 28px; font-size: clamp(56px, 8vw, 112px); }
.error-content > p:not(.eyebrow, .error-code) { max-width: 540px; margin-bottom: 32px; color: var(--muted); font-size: clamp(17px, 1.5vw, 20px); }

.error-orbit {
  position: absolute;
  right: -180px;
  bottom: -280px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(16, 16, 16, .16);
  border-radius: 50%;
}

.error-orbit::before { content: ""; position: absolute; inset: 15%; border: 1px solid rgba(15, 73, 255, .45); border-radius: 50%; }
.error-orbit span { position: absolute; top: 7%; left: 20%; width: 16px; height: 16px; background: var(--pink); border-radius: 50%; box-shadow: 0 0 0 9px rgba(15, 73, 255, .14); }

@media (max-width: 980px) {
  .hero { min-height: 780px; height: auto; }
  .hero-layout { grid-template-columns: 1fr .65fr; min-height: 780px; gap: 30px; padding-block: 140px 90px; }
  .hero-visual { width: min(36vw, 390px); }
  .section-heading { grid-template-columns: 1fr .55fr; gap: 45px; }
  .pricing-layout { gap: 60px; }
  .connection-card dl > div { grid-template-columns: 1fr; gap: 7px; }
  .contact-layout { gap: 60px; }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 72px; }
  .nav-wrap { height: 72px; }
  .brand img { width: 138px; }

  .menu-open .site-header {
    height: 100vh;
    height: 100dvh;
    border-color: transparent;
    background: var(--paper);
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .nav-wrap > .brand {
    position: relative;
    z-index: 2;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    place-content: center;
    gap: 7px;
  }

  .menu-toggle .menu-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    transform-origin: center;
    transition: transform .25s var(--ease), background-color .2s;
  }

  .menu-toggle[aria-expanded="true"] {
    background: rgba(15, 73, 255, .08);
  }

  .menu-toggle:focus-visible {
    outline: 2px solid var(--pink);
    outline-offset: 2px;
  }

  .menu-toggle[aria-expanded="true"] .menu-line-top {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-line-bottom {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    padding: 104px var(--gutter) 35px;
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 4px;
    visibility: hidden;
    background: var(--paper);
    opacity: 0;
    transform: translateY(-18px);
    transition: opacity .25s, transform .25s, visibility .25s;
    overscroll-behavior: contain;
  }

  .main-nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .main-nav > a:not(.nav-cta) { padding-block: 8px; font-size: clamp(34px, 10vw, 48px); letter-spacing: -.05em; }
  .main-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 25px; padding: 17px 20px; text-align: center; }

  .hero { min-height: 850px; }
  .hero-grid { background-size: 48px 48px; }

  .hero-layout {
    display: flex;
    min-height: 850px;
    padding-block: 126px 84px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .eyebrow {
    align-items: flex-start;
    margin-bottom: 22px;
  }

  .eyebrow > span:first-child { margin-top: 4px; }
  .eyebrow-mobile-line { display: block; }
  h1 { margin-bottom: 22px; font-size: clamp(56px, 18vw, 78px); }
  .hero-lead { font-size: 19px; }
  .signal-list { margin-bottom: 30px; }
  .hero-actions { width: 100%; align-items: stretch; flex-direction: column; gap: 12px; }
  .button-primary { width: 100%; }
  .text-link { align-self: flex-start; }

  .hero-copy {
    position: relative;
    z-index: 1;
  }

  .hero-visual {
    position: absolute;
    z-index: -1;
    top: 55px;
    right: -145px;
    width: 330px;
  }

  .hero-visual .orbit-core { width: 34%; }
  .js .hero-visual.reveal.is-visible { opacity: 1; }
  .hero-visual .status-card { display: none; }

  #network-title {
    font-size: clamp(38px, 11vw, 52px);
    hyphens: manual;
    overflow-wrap: normal;
  }

  .scroll-cue {
    bottom: 16px;
    width: 44px;
    height: 52px;
  }

  .scroll-mouse { display: none; }

  .scroll-swipe {
    position: relative;
    display: block;
    width: 28px;
    height: 42px;
  }

  .scroll-swipe::before {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 1px;
    height: 28px;
    background: linear-gradient(to top, var(--ink), transparent);
    transform: translateX(-50%);
    opacity: .45;
  }

  .scroll-swipe i {
    position: absolute;
    bottom: 4px;
    left: 50%;
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--pink);
    border-left: 2px solid var(--pink);
    animation: swipe-up 1.8s var(--ease) infinite;
  }

  @keyframes swipe-up {
    0% { opacity: 0; transform: translate(-50%, 8px) rotate(45deg); }
    25% { opacity: 1; }
    72% { opacity: 0; transform: translate(-50%, -18px) rotate(45deg); }
    100% { opacity: 0; transform: translate(-50%, -18px) rotate(45deg); }
  }

  .section-heading, .pricing-layout, .contact-layout { grid-template-columns: 1fr; }
  .section-heading { gap: 28px; }
  .section-heading > p { max-width: 540px; }
  .map-topline { padding: 13px 14px; }
  .map-frame { margin-inline: -1px; overflow-x: auto; }
  .map-frame picture, .map-frame img { min-width: 680px; }
  .map-card figcaption { flex-wrap: wrap; padding: 13px 14px; gap: 8px; line-height: 1.8; }
  .pricing-layout { gap: 52px; }
  .price-card { box-shadow: 13px 13px 0 var(--ink); }
  .price-card::before { display: none; }
  .connection-intro { margin-bottom: 40px; }
  .connection-grid { grid-template-columns: 1fr; }
  .connection-card dl > div { grid-template-columns: 92px minmax(0, 1fr); gap: 12px; }
  .contact-layout { gap: 56px; }
  .footer-inner { grid-template-columns: 1fr; gap: 14px; }
  .footer-inner p:last-child { text-align: left; }

  .error-content { padding-top: 65px; }
  .error-code { top: 32%; right: -30px; font-size: 48vw; }
  .error-orbit { right: -300px; bottom: -360px; }
}

@media (max-width: 420px) {
  .hero, .hero-layout { min-height: 800px; }
  h1 { font-size: 54px; }
  h2 { font-size: 44px; }
  .signal-list { gap: 5px; }
  .signal-list li { padding-inline: 8px; font-size: 9px; }
  .price-card-top { align-items: flex-start; flex-direction: column; gap: 10px; }
  .connection-card dl > div { grid-template-columns: 1fr; }
  .connection-title { min-height: auto; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}
