:root {
  --navy: #04172d;
  --navy-soft: #092849;
  --ink: #0a3565;
  --muted: #5b7187;
  --mist: #e9f5f8;
  --paper: #f7fbfc;
  --white: #ffffff;
  --lime: #12afd3;
  --lime-bright: #42c8e5;
  --line: rgba(10, 53, 101, 0.14);
  --display: "Manrope", sans-serif;
  --body: "DM Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #dcecf1;
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-shell {
  width: min(100%, 1600px);
  margin: 0 auto;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 0 70px rgba(7, 18, 29, 0.12);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100%, 1600px);
  height: 92px;
  padding: 0 clamp(24px, 5vw, 80px);
  color: var(--white);
  transform: translateX(-50%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: max-content;
}

.brand-logo {
  display: block;
  width: clamp(178px, 15vw, 232px);
  height: auto;
}

.desktop-nav {
  display: flex;
  gap: clamp(24px, 3vw, 44px);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a,
.header-cta {
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--white);
}

.header-cta {
  justify-self: end;
  padding: 12px 17px;
  color: var(--lime);
  border: 1px solid rgba(18, 175, 211, 0.5);
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-cta:hover {
  color: var(--navy);
  background: var(--lime);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.94fr);
  grid-template-rows: 1fr auto;
  column-gap: clamp(24px, 4vw, 64px);
  row-gap: 44px;
  align-items: center;
  min-height: 830px;
  padding: 150px clamp(24px, 7vw, 110px) 60px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(7, 18, 29, 0.98) 12%, rgba(7, 18, 29, 0.94) 52%, rgba(10, 29, 43, 0.97)),
    var(--navy);
}

.hero-grid,
.banner-grid,
.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 75%, transparent);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.hero-glow-one {
  top: 70px;
  right: 8%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(69, 149, 157, 0.18), transparent 67%);
}

.hero-glow-two {
  bottom: -300px;
  left: 5%;
  width: 700px;
  height: 500px;
  background: radial-gradient(circle, rgba(18, 175, 211, 0.12), transparent 68%);
}

.hero-content {
  position: relative;
  z-index: 4;
  grid-column: 1;
  grid-row: 1;
  align-self: end;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
  color: #61707c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 29px;
  height: 2px;
  background: var(--lime);
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

h1,
h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.055em;
}

h1 {
  font-size: clamp(50px, 5.4vw, 92px);
  line-height: 1;
}

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

.hero-copy {
  max-width: 560px;
  margin: 34px 0 39px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
}

.button-primary {
  color: var(--navy);
  background: var(--lime);
  box-shadow: 0 10px 35px rgba(18, 175, 211, 0.18);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.button-primary:hover {
  background: var(--lime-bright);
  transform: translateY(-2px);
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.hero-actions p {
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
}

.hero-actions p a {
  color: var(--white);
  border-bottom: 1px solid var(--lime);
}

.hero-visual {
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 100%;
  aspect-ratio: 1000 / 940.7;
}

.coverage {
  position: absolute;
  inset: 0;
}

.coverage-glow {
  position: absolute;
  inset: -8%;
  background: radial-gradient(
    circle at 52% 48%,
    rgba(18, 175, 211, 0.16),
    transparent 62%
  );
  filter: blur(18px);
}

.coverage-map {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.coverage-map .land {
  fill: rgba(66, 140, 158, 0.16);
  stroke: rgba(140, 200, 214, 0.4);
  stroke-width: 1.4;
  stroke-linejoin: round;
}

.coverage-map .route {
  fill: none;
  stroke: var(--lime);
  stroke-dasharray: 7 13;
  stroke-width: 1.7;
  opacity: 0.34;
  animation: dash 26s linear infinite;
}

.coverage-map .route.bright {
  stroke-width: 2.1;
  opacity: 0.62;
}

.coverage-map .node {
  fill: var(--lime);
  opacity: 0.62;
}

.map-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.coverage-label {
  position: absolute;
  z-index: 4;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: 7px;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(8, 24, 36, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(8px);
  font: 600 10px/1 var(--display);
  white-space: nowrap;
}

.coverage-label span {
  grid-row: 1 / 3;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
}

.coverage-label small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 7px;
  font-weight: 500;
}

/* Anchored to projected hub coordinates from the coverage map. */
.label-yyz {
  top: 52.75%;
  left: 64.36%;
  transform: translate(-104%, -128%);
}

.label-jfk {
  top: 56.17%;
  left: 70.74%;
  transform: translate(14%, -18%);
}

.label-mex {
  top: 90.96%;
  left: 45.14%;
  transform: translate(-108%, -22%);
}

.label-sju {
  top: 85.9%;
  left: 87.91%;
  transform: translate(-24%, 62%);
}

.live-card {
  position: absolute;
  z-index: 6;
  right: 11%;
  bottom: 9%;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 175px;
  padding: 14px 16px;
  background: rgba(11, 27, 40, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(15px);
}

.live-card div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.live-card small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-card strong {
  font: 600 12px/1 var(--display);
}

.live-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
}

.live-dot::after {
  position: absolute;
  inset: -5px;
  content: "";
  border: 1px solid var(--lime);
  border-radius: 50%;
  animation: ping 2s ease-out infinite;
}

@keyframes ping {
  from {
    opacity: 0.8;
    transform: scale(0.4);
  }
  to {
    opacity: 0;
    transform: scale(1.5);
  }
}

.hero-stats {
  position: relative;
  z-index: 4;
  grid-column: 1;
  grid-row: 2;
  display: flex;
  gap: 16px;
  align-self: start;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-stats div {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 7px;
}

.hero-stats strong {
  font: 600 17px/1 var(--display);
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.section {
  padding: 110px clamp(24px, 7vw, 110px);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 72px;
  color: #8b949a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-label::after {
  flex: 1;
  height: 1px;
  content: "";
  background: var(--line);
}

.section-label span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 9px;
}

.section-label p {
  margin: 0;
}

.section-label.light {
  color: rgba(255, 255, 255, 0.35);
}

.section-label.light::after {
  background: rgba(255, 255, 255, 0.12);
}

.section-label.light span {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

.intro {
  background: var(--paper);
}

.intro-content {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  column-gap: 11%;
  align-items: end;
}

.intro-content .eyebrow {
  grid-column: 1 / -1;
}

h2 {
  font-size: clamp(43px, 5vw, 76px);
  line-height: 1.06;
}

.intro h2 em,
.standards h2 em {
  color: #899297;
}

.section-copy {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.solution-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 90px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.solution-card {
  position: relative;
  min-height: 330px;
  padding: 32px 36px 36px;
  border-right: 1px solid var(--line);
  transition:
    background 250ms ease,
    transform 250ms ease;
}

.solution-card:first-child {
  border-left: 1px solid var(--line);
}

.solution-card:hover,
.solution-card.featured {
  background: var(--white);
}

.solution-card:hover {
  transform: translateY(-6px);
}

.card-number {
  color: #9ca5aa;
  font: 600 9px/1 var(--display);
  letter-spacing: 0.1em;
}

.card-icon {
  display: grid;
  width: 47px;
  height: 47px;
  margin: 42px 0 30px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
}

.card-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.solution-card h3,
.standard-row h3 {
  margin: 0;
  font: 600 21px/1.2 var(--display);
  letter-spacing: -0.035em;
}

.solution-card p {
  max-width: 290px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.card-line {
  position: absolute;
  right: 36px;
  bottom: 0;
  left: 36px;
  height: 3px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 250ms ease;
}

.solution-card:hover .card-line,
.solution-card.featured .card-line {
  transform: scaleX(1);
}

.fleet {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.fleet-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 10%;
  align-items: end;
}

.part135 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3.4vw, 52px);
  margin-top: 74px;
  padding-top: 46px;
  border-top: 1px solid var(--line);
}

.part135-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--navy);
  background: var(--lime);
  border-radius: 50%;
}

.part135-icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.part135-point h3 {
  margin: 22px 0 0;
  font: 600 18px/1.3 var(--display);
  letter-spacing: -0.03em;
}

.part135-point p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.explorer {
  margin-top: 84px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 10%, rgba(18, 175, 211, 0.14), transparent 46%),
    var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.explorer-tabs {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.explorer-tab {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 22px clamp(16px, 2.2vw, 30px);
  color: rgba(255, 255, 255, 0.5);
  text-align: left;
  background: none;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: color 200ms ease, background 200ms ease;
}

.explorer-tab:last-of-type {
  border-right: 0;
}

.explorer-tab:hover {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.03);
}

.explorer-tab.is-active {
  color: var(--white);
  background: rgba(18, 175, 211, 0.08);
}

.explorer-tab:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: -3px;
}

.tab-type {
  font: 600 clamp(15px, 1.5vw, 19px) / 1 var(--display);
  letter-spacing: -0.03em;
}

.tab-class {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.62;
}

.tab-marker {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: calc(100% / 3);
  height: 2px;
  background: var(--lime);
  box-shadow: 0 0 14px rgba(18, 175, 211, 0.8);
  transition: transform 380ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.explorer-stage {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
}

.stage-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1400 / 933;
  background: #02101f;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stage-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(18, 175, 211, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 175, 211, 0.09) 1px, transparent 1px);
  background-size: 54px 54px;
}

.stage-scan {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  height: 26%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(18, 175, 211, 0.13) 60%,
    rgba(120, 230, 255, 0.4)
  );
  animation: sweep 6.5s cubic-bezier(0.6, 0, 0.4, 1) infinite;
}

@keyframes sweep {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  12%,
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(400%);
  }
}

.bracket {
  position: absolute;
  z-index: 4;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(18, 175, 211, 0.75);
}

.bracket.tl {
  top: 16px;
  left: 16px;
  border-right: 0;
  border-bottom: 0;
}

.bracket.tr {
  top: 16px;
  right: 16px;
  border-bottom: 0;
  border-left: 0;
}

.bracket.bl {
  bottom: 16px;
  left: 16px;
  border-top: 0;
  border-right: 0;
}

.bracket.br {
  right: 16px;
  bottom: 16px;
  border-top: 0;
  border-left: 0;
}

.stage-art {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 520ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transform: scale(1.05);
}

.stage-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stage-art.is-active {
  opacity: 1;
  transform: none;
}

.stage-dims {
  position: absolute;
  z-index: 5;
  right: 20px;
  bottom: 20px;
  left: 20px;
}

.stage-dims > div {
  display: none;
  gap: 10px;
  justify-content: flex-end;
}

.stage-dims > div.is-active {
  display: flex;
}

.stage-dims span {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 12px;
  background: rgba(3, 17, 32, 0.78);
  border: 1px solid rgba(18, 175, 211, 0.35);
  backdrop-filter: blur(6px);
}

.stage-dims small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stage-dims strong {
  font: 600 12px/1 var(--display);
}

.stage-data {
  padding: clamp(26px, 3vw, 44px);
}

.stage-panel[hidden] {
  display: none;
}

.stage-class {
  margin: 0;
  color: var(--lime);
  font: 700 10px/1 var(--display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.stage-data h3 {
  margin: 15px 0 0;
  font: 600 clamp(27px, 2.7vw, 38px) / 1.05 var(--display);
  letter-spacing: -0.05em;
}

.stage-copy {
  max-width: 440px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.75;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 30px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.stat-row div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-row strong {
  color: var(--lime);
  font: 600 clamp(17px, 1.8vw, 23px) / 1 var(--display);
  letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums;
}

.stat-row span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.spec-mini {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  margin: 24px 0 0;
}

.spec-mini dt {
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.spec-mini dd {
  margin: 7px 0 0;
  font: 500 13px/1.4 var(--body);
}

.compare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.compare-metric {
  padding: 26px clamp(20px, 2.4vw, 34px) 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.compare-metric:last-child {
  border-right: 0;
}

.compare-title {
  margin: 0 0 18px;
  font: 700 10px/1 var(--display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.compare-title span {
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
}

.bar {
  display: grid;
  grid-template-columns: 38px 1fr 46px;
  align-items: center;
  gap: 11px;
  margin-bottom: 11px;
  opacity: 0.45;
  transition: opacity 300ms ease;
}

.bar.is-active {
  opacity: 1;
}

.bar-name {
  color: rgba(255, 255, 255, 0.55);
  font: 700 9px/1 var(--display);
  letter-spacing: 0.08em;
}

.bar-track {
  position: relative;
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
}

.bar-track i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: linear-gradient(90deg, rgba(18, 175, 211, 0.45), var(--lime));
  transition: width 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.explorer.is-charted .bar-track i {
  width: var(--pct);
}

.bar.is-active .bar-track i {
  box-shadow: 0 0 12px rgba(18, 175, 211, 0.7);
}

.bar-value {
  font: 600 11px/1 var(--display);
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.fleet-note {
  max-width: 720px;
  margin: 40px 0 0;
  color: #8b969d;
  font-size: 11px;
  line-height: 1.8;
}

.aog {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(150deg, rgba(4, 23, 45, 0.97), rgba(9, 40, 73, 0.97)),
    var(--navy);
}

.aog-glow {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 175, 211, 0.16), transparent 66%);
}

.aog > *:not(.aog-glow) {
  position: relative;
  z-index: 2;
}

.aog-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 9%;
  align-items: end;
}

.aog h2 {
  font-size: clamp(43px, 4.6vw, 72px);
}

.aog .section-copy {
  color: rgba(255, 255, 255, 0.56);
}

.aog-figure {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  margin-top: 74px;
  padding: 38px clamp(26px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 3px solid var(--lime);
}

.aog-figure-main {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.aog-figure-main span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.aog-figure-main strong {
  color: var(--lime);
  font: 600 clamp(62px, 8vw, 104px) / 0.9 var(--display);
  letter-spacing: -0.06em;
}

.aog-figure-main small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.aog-figure-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 44px);
  padding-left: clamp(20px, 3vw, 44px);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.aog-figure-split div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.aog-figure-split strong {
  font: 600 clamp(26px, 3vw, 38px) / 1 var(--display);
  letter-spacing: -0.045em;
}

.aog-figure-split .accent strong {
  color: var(--lime);
}

.aog-figure-split span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aog-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3.5vw, 54px);
  margin-top: 62px;
  padding-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.aog-point-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--navy);
  background: var(--lime);
  border-radius: 50%;
  font: 700 10px/1 var(--display);
}

.aog-point h3 {
  margin: 22px 0 0;
  font: 600 19px/1.25 var(--display);
  letter-spacing: -0.035em;
}

.aog-point p {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.75;
}

.network {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 750px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.network-map {
  position: relative;
  align-self: stretch;
  min-height: 530px;
}

.network-map::after {
  position: absolute;
  inset: 5% -5% 5% 0;
  content: "";
  background: radial-gradient(circle, rgba(54, 123, 133, 0.15), transparent 62%);
}

.network-map .coverage-map {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 96%;
  height: auto;
  transform: translate(-50%, -50%);
}

@keyframes dash {
  to {
    stroke-dashoffset: -500;
  }
}

.network-content {
  position: relative;
  z-index: 3;
  align-self: center;
}

.network-content .section-label {
  margin-bottom: 75px;
}

.network h2 {
  font-size: clamp(45px, 4.5vw, 70px);
}

.network .section-copy {
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.52);
}

.network-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 58px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.network-points div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.network-points strong {
  font: 600 13px/1 var(--display);
}

.network-points span {
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.standards {
  background: #f1f4f3;
}

.standards-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.5fr;
  gap: 12%;
  align-items: end;
}

.standards-heading .section-copy {
  padding-bottom: 5px;
}

.standards-list {
  margin-top: 90px;
  border-top: 1px solid var(--line);
}

.standard-row {
  display: grid;
  grid-template-columns: 70px 0.7fr 1fr;
  gap: 5%;
  align-items: center;
  min-height: 120px;
  border-bottom: 1px solid var(--line);
  transition:
    padding 200ms ease,
    background 200ms ease;
}

.standard-row:hover {
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.7);
}

.standard-row > span {
  color: #98a1a5;
  font: 600 10px/1 var(--display);
}

.standard-row p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.broker-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 545px;
  padding: 90px clamp(24px, 8vw, 130px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(48, 105, 112, 0.18), transparent 33%),
    var(--navy);
}

.broker-banner::before {
  position: absolute;
  top: 0;
  right: 9%;
  width: 1px;
  height: 100%;
  content: "";
  background: linear-gradient(transparent, rgba(18, 175, 211, 0.36), transparent);
  transform: rotate(29deg);
}

.banner-content {
  position: relative;
  z-index: 2;
}

.broker-banner h2 {
  font-size: clamp(64px, 8vw, 118px);
  line-height: 0.84;
  letter-spacing: -0.07em;
}

.broker-banner h2 em {
  color: var(--lime);
}

.broker-banner .eyebrow {
  color: rgba(255, 255, 255, 0.5);
}

.banner-content > p:last-child {
  max-width: 570px;
  margin: 40px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  line-height: 1.75;
}

.banner-seal {
  position: relative;
  z-index: 3;
  width: clamp(150px, 16vw, 215px);
  margin-right: 3vw;
}

.banner-seal svg {
  width: 100%;
  animation: rotate 24s linear infinite;
}

.banner-seal text {
  fill: rgba(255, 255, 255, 0.65);
  font: 600 10px/1 var(--display);
  letter-spacing: 0.18em;
}

.banner-seal .seal-plane {
  fill: var(--lime);
  transform-origin: center;
  animation: rotate-reverse 24s linear infinite;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate-reverse {
  to {
    transform: rotate(-360deg);
  }
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 120px;
  padding: 0 clamp(24px, 7vw, 110px);
  color: rgba(255, 255, 255, 0.32);
  background: #040d15;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-brand {
  width: min(210px, 100%);
}

.footer-brand .brand-logo {
  width: 100%;
}

footer p:last-child {
  justify-self: end;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
    min-height: 780px;
    padding-top: 132px;
  }

  .intro-content,
  .standards-heading,
  .aog-heading,
  .fleet-heading {
    grid-template-columns: 1fr 0.55fr;
  }

  .part135 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .explorer-stage {
    grid-template-columns: 1fr;
  }

  .stage-visual {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .aog-figure {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .aog-figure-split {
    padding-left: 0;
    border-left: 0;
  }

  .aog-points {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .network-map .coverage-map {
    width: 118%;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    height: 76px;
    padding: 0 22px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 40px;
    padding: 10px 5px;
    color: var(--white);
    background: none;
    border: 0;
  }

  .menu-toggle span {
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: transform 200ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-nav {
    position: absolute;
    z-index: 15;
    top: 76px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 8px 22px 18px;
    color: var(--white);
    background: rgba(7, 18, 29, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 200ms ease,
      transform 200ms ease;
  }

  .mobile-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .mobile-nav a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    row-gap: 32px;
    min-height: 0;
    padding: 124px 22px 56px;
  }

  .hero-content {
    grid-column: 1;
    grid-row: 1;
  }

  h1 {
    font-size: clamp(50px, 15vw, 68px);
  }

  .hero-copy {
    max-width: 92%;
    font-size: 15px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .hero-actions p {
    margin: 0;
  }

  .hero-visual {
    grid-column: 1;
    grid-row: 3;
    width: calc(100% + 26px);
    margin: 0 -13px;
    opacity: 0.9;
  }

  .coverage-label,
  .live-card {
    display: none;
  }

  .hero-stats {
    grid-column: 1;
    grid-row: 2;
    gap: 12px;
  }

  .hero-stats span {
    font-size: 8px;
    line-height: 1.4;
  }

  .section {
    padding: 78px 22px;
  }

  .section-label {
    margin-bottom: 52px;
  }

  .intro-content,
  .standards-heading,
  .aog-heading,
  .fleet-heading {
    display: block;
  }

  .part135 {
    margin-top: 52px;
    padding-top: 38px;
  }

  .explorer {
    margin-top: 58px;
  }

  .explorer-tabs {
    grid-template-columns: 1fr;
  }

  .explorer-tab {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 15px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .tab-marker {
    width: 3px;
    height: calc(100% / 3);
    top: 0;
    bottom: auto;
    left: 0;
  }

  .stat-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 14px;
  }

  .spec-mini {
    gap: 16px 18px;
  }

  .stage-dims {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .compare {
    grid-template-columns: 1fr;
  }

  .compare-metric {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .compare-metric:last-child {
    border-bottom: 0;
  }

  .aog-figure {
    margin-top: 54px;
    padding: 30px 22px;
  }

  .aog-figure-split {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .aog-points {
    margin-top: 48px;
    padding-top: 38px;
  }

  h2 {
    font-size: clamp(41px, 12vw, 58px);
  }

  .section-copy {
    margin-top: 28px;
  }

  .solution-cards {
    grid-template-columns: 1fr;
    margin-top: 62px;
  }

  .brand-logo {
    width: 168px;
  }

  .solution-card,
  .solution-card:first-child {
    min-height: 290px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .network {
    display: flex;
    flex-direction: column-reverse;
    padding-top: 20px;
  }

  .network-map {
    min-height: 300px;
    margin: 26px -10px -60px;
  }

  .network-map .coverage-map {
    width: 100%;
  }

  .network-content .section-label {
    margin-bottom: 54px;
  }

  .network-points {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 14px;
  }

  .network-points span {
    line-height: 1.4;
  }

  .standards-list {
    margin-top: 60px;
  }

  .standard-row {
    grid-template-columns: 35px 1fr;
    gap: 8px;
    padding: 25px 0;
  }

  .standard-row p {
    grid-column: 2;
    margin-top: 8px;
  }

  .standard-row:hover {
    padding: 25px 10px;
  }

  .broker-banner {
    display: block;
    min-height: 650px;
    padding: 80px 22px;
  }

  .broker-banner h2 {
    font-size: clamp(60px, 20vw, 90px);
  }

  .banner-seal {
    width: 150px;
    margin: 58px auto 0;
  }

  footer {
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: center;
    min-height: 180px;
    text-align: center;
  }

  footer p {
    margin: 0;
  }

  footer p:last-child {
    justify-self: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.notfound {
  position: relative;
  display: grid;
  min-height: 100vh;
  padding: 40px clamp(24px, 7vw, 110px);
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 18%, rgba(18, 175, 211, 0.16), transparent 42%),
    var(--navy);
}

.notfound-grid {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
}

.notfound-inner {
  position: relative;
  z-index: 2;
  width: min(620px, 100%);
}

.notfound-logo {
  margin-bottom: 54px;
}

.notfound h1 {
  margin: 0;
  font-size: clamp(52px, 8vw, 86px);
  line-height: 1;
}

.notfound-copy {
  max-width: 470px;
  margin: 26px 0 38px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.75;
}

.notfound-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.notfound-actions p {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
}

.notfound-actions strong {
  color: var(--white);
  border-bottom: 1px solid var(--lime);
}

.fleet-credit a {
  color: #6d7a82;
  border-bottom: 1px solid rgba(18, 175, 211, 0.45);
}

.fleet-credit a:hover {
  color: var(--ink);
}
