@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/assets/fonts/plus-jakarta-sans.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}
:root {
  --bg: #0a0d12;
  --panel: #10151d;
  --panel-light: #151b25;
  --line: #29313e;
  --text: #f0f3f7;
  --muted: #a4adbc;
  --accent: #8ff3d7;
  --violet: #bcadff;
  --detail: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a:hover {
  color: var(--accent);
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(3rem, 6.8vw, 6rem);
  margin-bottom: 28px;
}
h2 {
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  margin-bottom: 24px;
}
h3 {
  font-size: 1.4rem;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
p {
  color: var(--muted);
  margin-bottom: 20px;
}
svg {
  display: block;
  max-width: 100%;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
.container {
  width: min(1240px, calc(100% - 96px));
  margin-inline: auto;
}
.eyebrow {
  font: 500 0.8125rem/1.5 var(--detail);
  letter-spacing: 0.09em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.text-accent {
  color: var(--accent);
}
.text-link {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 500;
}
.text-link span {
  color: var(--accent);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 19px;
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  white-space: normal;
}
.button:hover {
  background: #1c2530;
  color: var(--text);
}
.button-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #101a17;
}
.button-primary:hover {
  background: #b2ffe7;
  color: #101a17;
}
.unavailable {
  cursor: default;
}
.soon {
  font: 400 0.75rem/1.2 var(--sans);
  max-width: 52px;
  white-space: normal;
  opacity: 0.8;
  border-left: 1px solid currentColor;
  padding-left: 9px;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 16px;
  transform: translateY(-200%);
  z-index: 100;
  background: var(--accent);
  color: var(--bg);
  padding: 10px 20px;
}
.skip-link:focus {
  transform: none;
}
.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(10, 13, 18, 0.96);
  position: relative;
  z-index: 10;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 55px;
  min-height: 92px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.06em;
  white-space: nowrap;
}
.brand svg {
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.3;
}
.brand svg circle {
  fill: var(--accent);
}
.brand-period {
  color: var(--accent);
  margin-left: -8px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
  font-size: 0.875rem;
  color: #c1c8d3;
}
.main-nav a[aria-current] {
  color: var(--accent);
}
.nav-actions {
  margin-left: auto;
  display: flex;
  gap: 12px;
}
.nav-actions .button {
  font-size: 0.8125rem;
  padding: 10px 13px;
}
.nav-actions .button:not(.button-primary) {
  border-color: transparent;
}
.menu-toggle {
  display: none;
  background: none;
  color: var(--text);
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 4px;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-top: 86px;
  padding-bottom: 88px;
  align-items: center;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.hero .eyebrow {
  display: flex;
  gap: 12px;
  align-items: center;
  letter-spacing: 0.07em;
}
.small-cross {
  font-size: 1.25rem;
}
.hero h1 {
  font-size: clamp(3.5rem, 6.6vw, 6rem);
  line-height: 1.02;
  margin-bottom: 28px;
  letter-spacing: -0.06em;
}
.hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 495px;
}
.hero-actions {
  display: flex;
  gap: 26px;
  align-items: center;
  margin: 32px 0 20px;
  flex-wrap: wrap;
}
.hero-footnote {
  font-size: 0.8125rem;
  color: #98a2b3;
}
.route-visual {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(145deg, #101820, #0c1017);
  overflow: hidden;
  position: relative;
  transform: perspective(1400px) rotateY(-5deg);
  box-shadow: 0 20px 100px -50px #6effd82b;
}
.visual-top {
  display: flex;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  font: 0.75rem var(--detail);
  color: var(--muted);
  letter-spacing: 0.1em;
}
.route-svg {
  width: 100%;
  height: auto;
}
.orbit {
  fill: none;
  stroke: #33434b;
  stroke-width: 1;
  stroke-dasharray: 3 6;
}
.path-dim {
  fill: none;
  stroke: #405263;
  stroke-width: 1;
}
.path-main {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
}
.path-secondary {
  fill: none;
  stroke: var(--violet);
  stroke-width: 1.8;
}
.nodes {
  fill: #141f27;
  stroke: var(--accent);
  stroke-width: 2;
}
.node-ring {
  fill: none;
  stroke: var(--accent);
  opacity: 0.5;
}
.node-ring.faint {
  opacity: 0.15;
}
.svg-label {
  fill: #c0cfda;
  font: 12px var(--detail);
  letter-spacing: 1px;
}
.route-caption {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 22px;
  background: #101720;
  border-top: 1px solid var(--line);
}
.route-symbol {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--accent);
}
.route-caption strong {
  font-weight: 500;
  font-size: 0.9375rem;
  display: block;
}
.route-caption div > span {
  font-size: 0.8125rem;
  color: var(--muted);
}
.diagram-tag {
  margin-left: auto;
  font: 0.75rem var(--detail);
  color: var(--muted);
  letter-spacing: 0.07em;
}
.signal-strip {
  border-block: 1px solid var(--line);
  background: #0d1118;
}
.signal-strip .container {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-block: 24px;
}
.signal-strip span {
  font: 0.8125rem var(--detail);
  letter-spacing: 0.1em;
  color: #bec5d1;
}
.signal-strip .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #16ff00;
  display: inline-block;
  margin-right: 10px;
}
@keyframes live-pulse {
  0% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(76, 159, 254, 0.16);
  }
  50% {
    opacity: 0.55;
    box-shadow: 0 0 0 6px transparent;
  }
}
.signal-strip .live-dot.beat {
  animation: live-pulse 1.5s ease-in-out infinite
}
.section {
  padding-block: 100px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: flex-end;
  margin-bottom: 48px;
}
.section-heading h2 {
  margin-bottom: 0;
}
.section-heading > p {
  max-width: 395px;
  margin-bottom: 4px;
}
.product-shot {
  margin: 0;
  border: 1px solid #35404f;
  border-radius: 7px;
  background: #0e141d;
  overflow: hidden;
  box-shadow: 0 20px 70px -40px #000;
}
.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #171e28;
  border-bottom: 1px solid var(--line);
  padding: 15px 20px;
  font: 0.75rem var(--detail);
  color: var(--muted);
}
.window-controls {
  display: flex;
  gap: 6px;
}
.window-controls i {
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: #526070;
}
.window-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
.screenshot-placeholder {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
  background:
    radial-gradient(ellipse at center, #142e32a6, transparent 60%),
    linear-gradient(#ffffff03 1px, transparent 1px),
    linear-gradient(90deg, #ffffff03 1px, transparent 1px);
  background-size:
    auto,
    36px 36px,
    36px 36px;
}
.screenshot-placeholder svg {
  width: 210px;
  margin: 0 0 22px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  opacity: 0.6;
}
.screenshot-placeholder .eyebrow {
  font-size: 0.75rem;
  margin-bottom: 10px;
}
.screenshot-placeholder strong {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}
.screenshot-placeholder > span:last-child {
  font-size: 0.875rem;
  color: var(--muted);
}
figcaption {
  border-top: 1px solid var(--line);
  padding: 16px 22px;
  color: var(--muted);
  font-size: 0.875rem;
}
.screenshot-link {
  display: block;
  overflow: hidden;
  background: #0b0f12;
}
.screenshot-link:focus-visible {
  outline-offset: -3px;
}
.screenshot-link img {
  display: block;
  width: 100%;
  height: auto;
}
.product-shot {
  min-width: 0;
}
.product-shot figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 20px;
}
.product-shot figcaption > span {
  flex: 1 1 240px;
}
.screenshot-expand {
  color: var(--accent);
  font-size: 0.75rem;
  white-space: nowrap;
}
.route-shots {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  margin-top: 24px;
  align-items: start;
  gap: 24px;
}
/* End below the ping results, before the partially captured MTR table. */
.shot-on-demand .screenshot-link {
  aspect-ratio: 5 / 4;
}
.shot-on-demand img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 46px;
}
.feature-number {
  display: block;
  font: 0.8125rem var(--detail);
  color: var(--accent);
  margin-bottom: 22px;
}
.feature-grid p {
  font-size: 0.9375rem;
  margin-bottom: 0;
}
.evidence-section {
  border-block: 1px solid var(--line);
  background: #0e1219;
}
.evidence-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.evidence-grid p:not(.eyebrow) {
  max-width: 430px;
}
.evidence-grid .text-link {
  margin-top: 10px;
}
.compact-shot .screenshot-placeholder {
  min-height: 290px;
}
.compact-shot .window-label {
  display: none;
}
.compact-shot .screenshot-placeholder strong {
  font-size: 1.75rem;
}
.agent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.agent-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 36px;
  background:
    radial-gradient(ellipse at top right, #22373144, transparent 55%),
    var(--panel);
}
.agent-icon {
  color: var(--accent);
  font-size: 2.5rem;
  margin-bottom: 26px;
  line-height: 1;
}
.agent-card .eyebrow {
  display: block;
  margin-bottom: 12px;
}
.agent-card h3 {
  font-size: 1.75rem;
  max-width: 390px;
}
.agent-card p {
  max-width: 430px;
}
.agent-card .text-link {
  margin-top: 14px;
}
.agent-card.user-agent {
  background:
    radial-gradient(ellipse at top right, #32274555, transparent 55%),
    var(--panel);
}
.user-agent .eyebrow,
.user-agent .agent-icon {
  color: var(--violet);
}
.agent-note {
  font-size: 0.875rem;
}
.closing-section {
  padding-block: 65px 80px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 35px;
  align-items: center;
}
.closing-section h2 {
  margin: 0;
}
.closing-section > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.site-footer {
  border-top: 1px solid var(--line);
  background: #0d1117;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr 1fr 1fr;
  gap: 35px;
  padding-block: 58px;
}
.footer-grid h2 {
  font-size: 0.875rem;
  letter-spacing: 0;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-grid a:not(.brand) {
  display: block;
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}
.footer-grid a:hover {
  color: var(--accent);
}
.footer-grid p {
  font-size: 0.875rem;
  margin-bottom: 7px;
}
.footer-intro > .brand {
  margin-bottom: 16px;
}
.footer-intro .eyebrow {
  display: block;
  color: #8c97a8;
  font-size: 0.75rem;
  margin-top: 24px;
  margin-bottom: 0;
}
.footer-subheading {
  margin-top: 26px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-block: 24px;
  color: var(--muted);
  font-size: 0.75rem;
}
.page-intro {
  padding-top: 85px;
  padding-bottom: 48px;
}
.page-intro h1 {
  font-size: clamp(3rem, 5.8vw, 5rem);
}
.page-intro > p:last-child {
  max-width: 620px;
  font-size: 1.125rem;
  margin-bottom: 0;
}
.notice {
  display: flex;
  gap: 14px;
  align-items: baseline;
  padding: 18px 22px;
  background: #131b24;
  border: 1px solid #344456;
  border-radius: 5px;
  font-size: 0.9375rem;
  margin-bottom: 32px;
}
.notice strong {
  color: #e0e7f2;
  font-weight: 500;
}
.pricing-section {
  padding-bottom: 110px;
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.plan-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}
.plan-card .eyebrow {
  font-size: 0.75rem;
  display: block;
}
.plan-card h2 {
  font-size: 1.65rem;
  min-height: 3.5em;
  margin-bottom: 28px;
}
.plan-price {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 30px;
}
.plan-price span {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--muted);
}
.plan-card .button {
  width: 100%;
}
.comparison-heading {
  margin-top: 72px;
  margin-bottom: 25px;
}
.comparison-heading h2 {
  font-size: 2rem;
}
.table-scroll {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
}
table {
  border-collapse: collapse;
  width: 100%;
  text-align: left;
  min-width: 730px;
  font-size: 0.875rem;
}
caption {
  padding: 16px 22px;
  text-align: left;
  color: var(--muted);
  font-size: 0.8125rem;
  border-bottom: 1px solid var(--line);
}
th,
td {
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}
thead {
  background: var(--panel-light);
}
thead th {
  font-weight: 500;
}
tbody th {
  font-weight: 400;
  width: 31%;
  color: #dce2eb;
}
td {
  color: var(--muted);
}
tbody tr:last-child > * {
  border-bottom: 0;
}
.included {
  color: var(--accent);
}
.locations-section {
  padding-bottom: 80px;
}
.map-panel {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #0e151f;
  overflow: hidden;
}
.map-heading {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 22px 25px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.map-heading .eyebrow {
  margin: 0;
}
.map-heading > span:last-child {
  font-size: 0.8125rem;
  color: var(--muted);
}
.world-map {
  width: 100%;
  height: auto;
}
.land {
  fill: #202e3e;
  stroke: #405166;
  stroke-width: 0.65;
  stroke-linejoin: round;
}
.map-dot {
  fill: var(--accent);
  pointer-events: none;
}
.map-ring {
  fill: #8ff3d711;
  stroke: var(--accent);
  stroke-width: 1;
  pointer-events: none;
}
.map-hit {
  fill: transparent;
}
.world-map a:hover .map-ring,
.world-map a:focus .map-ring,
.world-map a.is-selected .map-ring {
  fill: #8ff3d73d;
  stroke-width: 2;
}
.world-map a.is-selected .map-dot {
  fill: #fff;
}
.map-caption {
  padding: 18px 25px;
  border-top: 1px solid var(--line);
  font-size: 0.8125rem;
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.map-caption span {
  color: #a4adbc;
}
.location-directory { margin-top: 24px; }
.location-search { margin-bottom: 18px; }
.location-search label { display: block; margin-bottom: 8px; }
.location-search input {
  width: min(100%, 460px);
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--panel);
  color: var(--text);
  font: inherit;
}
.location-search input::placeholder { color: var(--muted); }
.location-search p { margin: 10px 0 0; font-size: 0.875rem; }
.location-table-scroll { max-height: 36rem; scroll-padding-top: 4rem; }
.location-table { min-width: 660px; }
.location-table th, .location-table td { padding: 12px 20px; }
.location-table thead th { position: sticky; top: 0; background: var(--panel-light); z-index: 1; }
.location-table tbody th { width: auto; }
.location-table a { display: flex; align-items: center; gap: 16px; min-height: 44px; }
.location-table a span { color: var(--accent); margin-left: auto; }
.location-table tr { scroll-margin-top: 4rem; }
.location-table tr.is-selected, .location-table tr:target { background: #142323; }
.location-table tr:focus-visible { outline-offset: -2px; }
[hidden] { display: none !important; }
.location-byoy {
  margin-top: 60px;
  padding-top: 45px;
  border-top: 1px solid var(--line);
}
.location-byoy h2 {
  font-size: 2rem;
}
.document {
  padding-block: 85px 120px;
  min-height: 55vh;
}
.document h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
}
.prose {
  max-width: 760px;
}
.prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.prose h2 {
  font-size: 2rem;
  margin-top: 40px;
}
.prose h3 {
  margin-top: 30px;
}
.prose ul,
.prose ol {
  color: var(--muted);
}
@media (min-width: 1500px) {
  .hero {
    padding-block: 105px;
  }
  .hero h1 {
    font-size: 6.5rem;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 64px);
  }
  .header-inner {
    gap: 28px;
  }
  .main-nav {
    gap: 20px;
  }
  .nav-actions {
    gap: 3px;
  }
  .hero {
    gap: 28px;
  }
  .hero-actions {
    gap: 20px;
  }
  .route-caption {
    padding: 18px 15px;
    gap: 12px;
  }
  .diagram-tag {
    display: none;
  }
  .signal-strip span {
    font-size: 0.75rem;
  }
  .feature-grid {
    gap: 26px;
  }
  .evidence-grid {
    gap: 35px;
  }
  .plan-card {
    padding: 23px;
  }
}
@media (max-width: 900px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
    padding-block: 20px;
    min-height: 80px;
    gap: 16px;
  }
  .main-nav {
    flex-basis: 100%;
    flex-wrap: wrap;
    gap: 20px;
  }
  .has-js .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 16px;
  }
  .has-js .main-nav {
    display: none;
  }
  .has-js .main-nav.is-open {
    display: flex;
    padding-top: 18px;
  }
  .nav-actions {
    margin-left: 0;
  }
  .hero {
    padding-block: 60px;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .hero h1 {
    font-size: clamp(3.3rem, 7.5vw, 5rem);
  }
  .hero .eyebrow {
    font-size: 0.75rem;
  }
  .hero-description {
    font-size: 1rem;
  }
  .hero-footnote {
    font-size: 0.75rem;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .visual-top {
    font-size: 0.75rem;
    padding: 14px;
  }
  .route-caption div > span {
    font-size: 0.75rem;
  }
  .route-caption strong {
    font-size: 0.8125rem;
  }
  .route-symbol {
    display: none;
  }
  .signal-strip .container {
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 30px;
    row-gap: 18px;
  }
  .section {
    padding-block: 70px;
  }
  .section-heading {
    gap: 35px;
    align-items: flex-start;
  }
  .section-heading > p {
    max-width: 310px;
  }
  .evidence-grid {
    grid-template-columns: 1fr;
  }
  .evidence-grid p:not(.eyebrow) {
    max-width: 650px;
  }
  .agent-card {
    padding: 28px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
  }
  .plan-grid {
    gap: 12px;
  }
  .plan-card {
    padding: 20px;
  }
  .plan-card h2 {
    font-size: 1.3rem;
  }
  .plan-price {
    font-size: 1.15rem;
  }
  .plan-card .button {
    font-size: 0.8125rem;
    padding: 12px;
  }
  .map-caption {
    flex-direction: column;
  }
  .map-heading .eyebrow {
    font-size: 0.75rem;
  }
}
@media (max-width: 650px) {
  .route-shots {
    grid-template-columns: 1fr;
  }
  /* Keep the incident visible on narrow screens without flattening the chart. */
  .shot-overview .screenshot-link {
    aspect-ratio: 4 / 3;
  }
  .shot-overview img {
    height: 100%;
    object-fit: cover;
    object-position: right top;
  }
  .container {
    width: calc(100% - 40px);
  }
  .header-inner {
    min-height: 74px;
  }
  .brand {
    font-size: 1.5rem;
  }
  .main-nav {
    align-items: flex-start;
    gap: 20px;
  }
  .nav-actions {
    width: 100%;
    padding-top: 3px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 45px;
    padding-bottom: 44px;
    gap: 30px;
  }
  .hero h1 {
    font-size: clamp(3.4rem, 13vw, 5rem);
    margin-bottom: 24px;
  }
  .hero .eyebrow {
    font-size: 0.75rem;
    margin-bottom: 22px;
  }
  .hero-description {
    max-width: 450px;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 22px;
    margin-top: 26px;
  }
  .hero-footnote {
    margin-bottom: 0;
  }
  .route-visual {
    transform: none;
    max-width: 480px;
    width: 100%;
    margin: auto;
  }
  .route-svg {
    max-height: 340px;
  }
  .route-caption strong {
    font-size: 0.875rem;
  }
  .route-caption div > span {
    font-size: 0.8125rem;
  }
  .route-symbol {
    display: block;
    font-size: 2rem;
  }
  .diagram-tag {
    display: block;
    font-size: 0.75rem;
  }
  .signal-strip .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 12px;
    padding-block: 20px;
  }
  .signal-strip span {
    font-size: 0.75rem;
    letter-spacing: 0.02em;
  }
  .signal-strip span::before {
    margin-right: 7px;
  }
  .section {
    padding-block: 58px;
  }
  .section-heading {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
  }
  .section-heading > p {
    max-width: none;
  }
  .eyebrow {
    font-size: 0.75rem;
    margin-bottom: 18px;
  }
  h2 {
    font-size: 2.25rem;
  }
  .window-bar {
    padding: 12px;
    font-size: 0.75rem;
  }
  .window-label {
    display: none;
  }
  .screenshot-placeholder {
    min-height: 245px;
    padding: 25px 16px;
  }
  .screenshot-placeholder svg {
    width: 145px;
  }
  .screenshot-placeholder .eyebrow {
    font-size: 0.75rem;
  }
  .screenshot-placeholder > span:last-child {
    font-size: 0.8125rem;
  }
  figcaption {
    padding: 14px 16px;
    font-size: 0.8125rem;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 34px;
  }
  .feature-grid article {
    padding-bottom: 26px;
    border-bottom: 1px solid var(--line);
  }
  .feature-grid article:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .feature-number {
    margin-bottom: 14px;
  }
  .feature-grid h3 {
    margin-bottom: 12px;
  }
  .agent-grid {
    grid-template-columns: 1fr;
  }
  .agent-card {
    padding: 26px;
  }
  .agent-card h3 {
    font-size: 1.6rem;
  }
  .closing-section {
    padding-block: 45px 58px;
    align-items: flex-start;
    flex-direction: column;
  }
  .closing-section > div:last-child {
    flex-direction: row;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  .footer-grid {
    padding-block: 40px;
    gap: 35px 20px;
  }
  .footer-intro {
    grid-column: 1/-1;
  }
  .footer-grid h2 {
    margin-bottom: 16px;
  }
  .footer-grid > div:last-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    flex-wrap: wrap;
    font-size: 0.75rem;
    gap: 12px;
  }
  .footer-bottom > span:nth-child(2) {
    display: none;
  }
  .footer-bottom > a {
    margin-left: auto;
  }
  .page-intro {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  .page-intro h1 {
    font-size: clamp(2.65rem, 10vw, 3.6rem);
  }
  .page-intro > p:last-child {
    font-size: 1rem;
  }
  .notice {
    font-size: 0.875rem;
    padding: 16px;
    gap: 10px;
  }
  .plan-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .plan-card {
    padding: 26px;
  }
  .plan-card h2 {
    min-height: 0;
    font-size: 1.6rem;
    margin-bottom: 22px;
  }
  .plan-price {
    font-size: 1.5rem;
    margin-bottom: 22px;
  }
  .plan-card .button {
    width: auto;
    min-width: 155px;
    font-size: 0.875rem;
  }
  .comparison-heading {
    margin-top: 50px;
  }
  .comparison-heading h2 {
    font-size: 1.8rem;
  }
  .pricing-section {
    padding-bottom: 65px;
  }
  .map-heading {
    padding: 16px;
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
  .map-caption {
    padding: 16px;
    font-size: 0.8125rem;
  }
  .location-byoy h2 {
    font-size: 1.8rem;
  }
  .document {
    padding-block: 55px 80px;
  }
  .document h1 {
    font-size: 2.5rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}


.notice > span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 18px;
  height: 18px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font: 12px/1 var(--detail);
}
