:root {
  --brand-primary: #06365f;
  --brand-deep: #031f36;
  --brand-secondary: #0c8abf;
  --brand-green: #08775b;
  --brand-emerald: #08775b;
  --brand-gold: #d5a842;
  --brand-glacier: #7adbf2;
  --brand-sky: #0c8abf;
  --brand-light: #e8f7ff;
  --ink: #0d2235;
  --muted: #5a7386;
  --line: rgba(6, 54, 95, 0.14);
  --card: rgba(255, 255, 255, 0.78);
  --card-solid: #ffffff;
  --shadow: 0 30px 80px rgba(3, 31, 54, 0.18);
  --shadow-soft: 0 18px 42px rgba(3, 31, 54, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --wrap: min(1180px, calc(100vw - 40px));
  --display: "League Spartan", system-ui, sans-serif;
  --body: "Montserrat", system-ui, sans-serif;
  --mono: "Oxanium", ui-monospace, monospace;
  --ambient-one: rgba(122, 219, 242, 0.34);
  --ambient-two: rgba(12, 138, 191, 0.20);
  --ambient-three: rgba(8, 117, 91, 0.14);
  --ambient-four: rgba(213, 168, 66, 0.10);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  background: #f5fbff;
  color: var(--ink);
}
body {
  min-width: 320px;
  margin: 0;
  font-family: var(--body);
  background:
    radial-gradient(circle at 12% 7%, rgba(74, 185, 231, 0.28), transparent 30rem),
    radial-gradient(circle at 88% 12%, rgba(28, 150, 115, 0.18), transparent 32rem),
    linear-gradient(180deg, #f8fcff 0%, #eef8fb 48%, #f7fbfd 100%);
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
.theme-ambient {
  position: fixed;
  inset: -14vh -10vw;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 12%, var(--ambient-one), transparent 30rem),
    radial-gradient(circle at 88% 10%, var(--ambient-two), transparent 34rem),
    radial-gradient(circle at 78% 82%, var(--ambient-three), transparent 34rem),
    radial-gradient(circle at 24% 86%, var(--ambient-four), transparent 28rem);
  opacity: 0.76;
  filter: saturate(1.08);
  transition: background 0.8s ease;
}
body > :not(.theme-ambient):not(.cursor-glow) {
  position: relative;
  z-index: 1;
}
body[data-theme="emerald-gold"] {
  --ambient-one: rgba(8, 117, 91, 0.26);
  --ambient-two: rgba(213, 168, 66, 0.20);
  --ambient-three: rgba(122, 219, 242, 0.20);
  --ambient-four: rgba(5, 61, 50, 0.10);
}
body[data-theme="skyline"] {
  --ambient-one: rgba(12, 138, 191, 0.25);
  --ambient-two: rgba(122, 219, 242, 0.24);
  --ambient-three: rgba(8, 117, 91, 0.18);
  --ambient-four: rgba(213, 168, 66, 0.12);
}
body[data-theme="emerald"] {
  --ambient-one: rgba(8, 117, 91, 0.28);
  --ambient-two: rgba(5, 61, 50, 0.15);
  --ambient-three: rgba(213, 168, 66, 0.16);
  --ambient-four: rgba(12, 138, 191, 0.10);
}
body[data-theme="liveries"] {
  --ambient-one: rgba(12, 138, 191, 0.20);
  --ambient-two: rgba(8, 117, 91, 0.20);
  --ambient-three: rgba(213, 168, 66, 0.18);
  --ambient-four: rgba(198, 63, 88, 0.10);
}
body[data-theme="gold"] {
  --ambient-one: rgba(213, 168, 66, 0.24);
  --ambient-two: rgba(8, 117, 91, 0.22);
  --ambient-three: rgba(122, 219, 242, 0.18);
  --ambient-four: rgba(12, 138, 191, 0.10);
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.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;
}
.wrap {
  width: var(--wrap);
  margin-inline: auto;
}
.cursor-glow {
  position: fixed;
  z-index: 0;
  width: 35rem;
  height: 35rem;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(11, 133, 181, 0.22), rgba(11, 133, 181, 0) 68%);
  transform: translate(-50%, -50%);
  opacity: 0.72;
}

.site-header {
  position: fixed;
  inset: 18px 22px auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1240px;
  margin-inline: auto;
  min-height: 104px;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 12px 42px rgba(3, 31, 54, 0.08);
  backdrop-filter: blur(24px);
  overflow: visible;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 46px rgba(3, 31, 54, 0.13);
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
}
.brand__logo {
  display: block;
  width: clamp(172px, 15vw, 224px);
  height: auto;
  max-height: 82px;
  object-fit: contain;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.site-nav a {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  color: #22465f;
  font-size: 0.9rem;
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.site-nav a:hover {
  color: var(--brand-primary);
  background: rgba(8, 138, 191, 0.11);
  transform: translateY(-1px);
}
.site-nav .nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  box-shadow: 0 10px 24px rgba(6, 54, 95, 0.18);
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--brand-primary);
  cursor: pointer;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 9px;
  background: #fff;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--display);
  color: var(--brand-primary);
  letter-spacing: -0.055em;
}
h1 {
  max-width: 780px;
  margin-bottom: 1.15rem;
  font-size: clamp(4.25rem, 8.8vw, 8.4rem);
  line-height: 0.79;
}
h2 {
  margin-bottom: 0.78rem;
  font-size: clamp(2.7rem, 5.3vw, 5.4rem);
  line-height: 0.86;
}
h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  line-height: 0.94;
}
p {
  color: var(--muted);
  line-height: 1.7;
}
.center { text-align: center; }
.section {
  position: relative;
  padding: clamp(5rem, 9vw, 8rem) 0;
}
.section__head {
  max-width: 820px;
  margin-bottom: clamp(2rem, 4vw, 3.8rem);
}
.section__head.center {
  margin-inline: auto;
}
.section__head p {
  margin-inline: auto;
  max-width: 680px;
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 8.2rem 0 5.4rem;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero__scene,
.hero__wash,
.hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__scene { z-index: -4; }
.hero__wash {
  z-index: -3;
  background:
    radial-gradient(circle at 74% 30%, rgba(255, 255, 255, 0.9), transparent 22rem),
    radial-gradient(circle at 16% 72%, rgba(0, 146, 176, 0.12), transparent 30rem),
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(224,247,255,0.68) 46%, rgba(255,255,255,0.78));
}
.hero__grid {
  z-index: -2;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(8, 138, 191, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 138, 191, 0.18) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}
.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5.5rem);
}
.hero__copy { position: relative; z-index: 3; }
.hero__lead {
  max-width: 670px;
  margin-bottom: 0.9rem;
  color: #153f5d;
  font-size: clamp(1.04rem, 1.7vw, 1.28rem);
  font-weight: 700;
}
.hero__sublead {
  max-width: 650px;
  margin-bottom: 1.65rem;
  color: #456b81;
  font-size: 1rem;
  font-weight: 600;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.45rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.95rem 1.22rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-primary), #0d9bbf);
  box-shadow: 0 18px 38px rgba(6, 54, 95, 0.22);
}
.btn--ghost {
  color: var(--brand-primary);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(6,54,95,0.14);
}
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  max-width: 720px;
}
.stat-card {
  padding: 1rem;
  min-height: 112px;
  border: 1px solid rgba(255,255,255,0.82);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}
.stat-card strong {
  display: block;
  margin-bottom: 0.46rem;
  color: var(--brand-primary);
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 0.92;
  letter-spacing: -0.04em;
}
.stat-card span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.45;
}
.hero-visual {
  position: relative;
  z-index: 2;
}
.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}
.flight-panel {
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: clamp(0.55rem, 1vw, 0.8rem);
}
.flight-panel img {
  width: 100%;
  border-radius: calc(var(--radius-xl) - 0.65rem);
  box-shadow: inset 0 0 0 1px rgba(6,54,95,0.08);
}


.impact {
  background:
    radial-gradient(circle at 16% 22%, rgba(213, 168, 66, 0.16), transparent 30rem),
    radial-gradient(circle at 82% 18%, rgba(8, 138, 191, 0.14), transparent 28rem),
    radial-gradient(circle at 84% 80%, rgba(8, 117, 91, 0.13), transparent 27rem),
    linear-gradient(180deg, #f8fcff, #edf8fd);
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}
.impact-card {
  position: relative;
  min-height: clamp(205px, 23vw, 290px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.25rem, 3vw, 2.2rem);
  border: 1px solid rgba(255,255,255,0.84);
  border-radius: clamp(26px, 4vw, 40px);
  background:
    radial-gradient(circle at 82% 14%, rgba(12, 138, 191, 0.16), transparent 18rem),
    radial-gradient(circle at 18% 86%, rgba(213, 168, 66, 0.16), transparent 16rem),
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(232,247,253,0.78));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.impact-card::after {
  content: "";
  position: absolute;
  inset: auto -12% -30% 26%;
  height: 54%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(8, 117, 91, 0.16), rgba(213, 168, 66, 0.08) 44%, transparent 70%);
  pointer-events: none;
}
.impact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 58px rgba(6, 54, 95, 0.15);
}
.impact-card__value {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 0.65rem;
  color: var(--brand-primary);
  font-family: var(--mono);
  font-size: clamp(2.25rem, 6vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.88;
}
.impact-card strong {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 0.62rem;
  color: var(--brand-primary);
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.2vw, 3.1rem);
  letter-spacing: -0.05em;
  line-height: 0.9;
}
.impact-card.is-loading .impact-card__value {
  opacity: 0.55;
}
.impact-card.is-loaded .impact-card__value {
  animation: statPop 0.46s ease both;
}
.impact-card.is-error .impact-card__value {
  opacity: 0.45;
}
@keyframes statPop {
  0% { transform: translateY(8px) scale(0.98); opacity: 0.55; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

.motif-band {
  position: relative;
  padding: clamp(4.7rem, 8vw, 7rem) 0 clamp(4rem, 7vw, 6rem);
  background:
    radial-gradient(circle at 20% 12%, rgba(122, 219, 242, 0.20), transparent 28rem),
    radial-gradient(circle at 88% 28%, rgba(213, 168, 66, 0.12), transparent 28rem),
    linear-gradient(180deg, rgba(255,255,255,0.74), rgba(229,246,252,0.44));
  overflow: hidden;
}
.skyline-motif {
  width: min(2100px, 118vw);
  margin: 0 auto;
  transform-origin: center bottom;
}
.skyline-motif img {
  width: 100%;
  filter: drop-shadow(0 25px 32px rgba(3, 31, 54, 0.11));
}
.motif-band .route-map {
  margin-top: clamp(2.4rem, 5vw, 4.4rem);
}
.route-map {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.86);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 12% 8%, rgba(12, 138, 191, 0.13), transparent 24rem),
    linear-gradient(145deg, rgba(255,255,255,0.94), rgba(234,248,253,0.8));
  box-shadow: var(--shadow);
  padding: clamp(0.9rem, 1.9vw, 1.25rem);
}
.route-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.35), transparent 42%, rgba(8,117,91,0.06));
  pointer-events: none;
}
.route-map__toolbar {
  position: relative;
  z-index: 8;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
  padding: 0.38rem;
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(3, 31, 54, 0.10);
  backdrop-filter: blur(18px);
}
.route-hub,
.route-reset {
  border: 0;
  cursor: pointer;
  color: var(--brand-primary);
  background: transparent;
}
.route-hub {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  gap: 0.42rem;
  min-height: 42px;
  padding: 0.48rem 0.82rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.route-hub strong {
  font-family: var(--mono);
  font-size: 0.95rem;
  font-weight: 900;
}
.route-hub span {
  color: #51748a;
  font-size: 0.72rem;
  font-weight: 850;
}
.route-hub:hover,
.route-hub:focus-visible {
  transform: translateY(-1px);
  background: rgba(8, 138, 191, 0.11);
  outline: none;
}
.route-hub.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  box-shadow: 0 12px 24px rgba(6,54,95,0.16);
}
.route-hub.is-active span { color: rgba(255,255,255,0.82); }
.route-reset {
  min-height: 42px;
  padding: 0.48rem 0.78rem;
  border-radius: 999px;
  color: #4c6c81;
  font-size: 0.76rem;
  font-weight: 900;
  transition: background 0.2s ease, transform 0.2s ease;
}
.route-reset:hover,
.route-reset:focus-visible {
  transform: translateY(-1px);
  background: rgba(6,54,95,0.08);
  outline: none;
}
.route-map__stage {
  position: relative;
  overflow: hidden;
  height: clamp(420px, 48vw, 640px);
  border: 1px solid rgba(255,255,255,0.78);
  border-radius: calc(var(--radius-xl) - 0.55rem);
  background: #effaff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}
.route-map__stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.64), transparent 20rem),
    linear-gradient(180deg, transparent 62%, rgba(6,54,95,0.045));
  pointer-events: none;
}
.route-map__svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  touch-action: none;
  cursor: grab;
}
.route-map__svg.is-panning { cursor: grabbing; }
.route-map__water { pointer-events: all; }
.na-map-lines path {
  fill: none;
  stroke: rgba(21, 118, 158, 0.32);
  stroke-width: 0.92;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.na-map-lines path:nth-child(4n) { stroke: rgba(6, 54, 95, 0.18); }
.na-map-lines path:nth-child(7n) { stroke: rgba(8, 117, 91, 0.20); }
.route-map-route-shadow,
.route-map-route {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.route-map-route-shadow {
  stroke: rgba(255, 255, 255, 0.88);
  stroke-width: 5.6;
  opacity: 0.82;
}
.route-map-route {
  stroke-width: 2.15;
  cursor: pointer;
  opacity: 0.74;
  transition: stroke 0.18s ease, stroke-width 0.18s ease, opacity 0.18s ease;
}
.route-map-route.is-pdx { stroke: rgba(8, 117, 91, 0.76); }
.route-map-route.is-sea { stroke: rgba(12, 138, 191, 0.78); }
.route-map-route:hover {
  stroke: var(--brand-primary);
  stroke-width: 3.1;
  opacity: 1;
}
.route-airport {
  cursor: default;
  transition: opacity 0.18s ease, filter 0.18s ease;
}
.route-airport.is-hub { cursor: pointer; }
.route-airport:focus,
.route-airport:focus-visible {
  outline: none;
}
.route-airport:hover { filter: drop-shadow(0 8px 11px rgba(6,54,95,0.18)); }
.route-airport.is-muted { opacity: 0.22; }
.route-airport__ring {
  fill: rgba(255,255,255,0.22);
  stroke: rgba(8, 117, 91, 0.34);
  stroke-width: 1.15;
  vector-effect: non-scaling-stroke;
  transform-origin: center;
  animation: airportPulse 2.8s ease-in-out infinite;
}
.route-airport__dot {
  fill: #0c8abf;
  stroke: #fff;
  stroke-width: 1.25;
  vector-effect: non-scaling-stroke;
}
.route-airport.is-visible .route-airport__dot { fill: #0c8abf; }
.route-airport.is-hub .route-airport__dot { fill: var(--brand-primary); }
.route-airport__label {
  fill: var(--brand-primary);
  paint-order: stroke;
  stroke: rgba(255,255,255,0.82);
  stroke-width: 0.9px;
  font-family: var(--mono);
  font-size: 9.8px;
  font-weight: 900;
  pointer-events: none;
}
.route-airport:not(.is-hub) .route-airport__label {
  fill: #315c75;
  font-size: 7.4px;
  opacity: 0;
  transition: opacity 0.18s ease;
}
.route-map.is-focused .route-airport.is-visible:not(.is-hub) .route-airport__label,
.route-airport:hover .route-airport__label {
  opacity: 0.92;
}
@keyframes airportPulse {
  0%, 100% { opacity: 0.5; transform: scale(0.88); }
  50% { opacity: 0.95; transform: scale(1.08); }
}
.route-map__status {
  position: absolute;
  z-index: 7;
  left: clamp(1rem, 1.8vw, 1.35rem);
  bottom: clamp(1rem, 1.8vw, 1.35rem);
  max-width: min(420px, calc(100% - 2rem));
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.84);
  border-radius: 999px;
  color: #4f7087;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 14px 34px rgba(3, 31, 54, 0.10);
  backdrop-filter: blur(18px);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 850;
}
.route-map__tooltip {
  position: absolute;
  z-index: 12;
  left: 0;
  top: 0;
  max-width: 280px;
  padding: 0.7rem 0.78rem;
  border: 1px solid rgba(255,255,255,0.86);
  border-radius: 16px;
  color: var(--brand-primary);
  background: rgba(255,255,255,0.94);
  box-shadow: 0 18px 42px rgba(3,31,54,0.16);
  pointer-events: none;
  opacity: 0;
  transform: translate(8px, 8px) scale(0.96);
  transition: opacity 0.14s ease, transform 0.14s ease;
}
.route-map__tooltip.is-visible {
  opacity: 1;
  transform: translate(8px, 8px) scale(1);
}
.route-map__tooltip strong {
  display: block;
  color: var(--brand-primary);
  font-family: var(--mono);
  font-size: 0.84rem;
  font-weight: 900;
}
.route-map__tooltip span {
  display: block;
  margin-top: 0.16rem;
  color: #63839a;
  font-size: 0.74rem;
  font-weight: 750;
}
.hub-pills {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2.2rem;
}
.hub-pills article {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 30px rgba(6, 54, 95, 0.08);
}
.hub-pills span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--brand-secondary);
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 800;
}
.hub-pills strong {
  display: block;
  color: var(--brand-primary);
  font-weight: 900;
}


/* Balanced operations section */
.operations {
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(12, 138, 191, 0.12), transparent 30rem),
    radial-gradient(circle at 86% 58%, rgba(8, 117, 91, 0.16), transparent 28rem),
    radial-gradient(circle at 70% 8%, rgba(213, 168, 66, 0.15), transparent 26rem),
    linear-gradient(180deg, #f4fbff 0%, #eaf6fb 48%, #f7fbfd 100%);
}
.operations .section__head {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.ops-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(0.95rem, 1.7vw, 1.35rem);
  align-items: stretch;
}
.ops-card {
  position: relative;
  isolation: isolate;
  grid-column: span 2;
  min-height: 220px;
  padding: clamp(1.3rem, 2.5vw, 1.9rem);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: clamp(22px, 3vw, 32px);
  background:
    radial-gradient(circle at 88% 12%, rgba(12, 138, 191, 0.12), transparent 9rem),
    radial-gradient(circle at 18% 90%, rgba(213, 168, 66, 0.10), transparent 10rem),
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(229,247,255,0.78));
  box-shadow: 0 20px 46px rgba(3, 31, 54, 0.11);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ops-card:nth-child(1),
.ops-card:nth-child(2) {
  grid-column: span 3;
  min-height: 248px;
}
.ops-card::before {
  content: "";
  position: absolute;
  top: -3.2rem;
  right: -3rem;
  z-index: -1;
  width: clamp(8rem, 15vw, 14rem);
  height: clamp(8rem, 15vw, 14rem);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(213, 168, 66, 0.17), rgba(122, 219, 242, 0.11) 42%, transparent 72%);
}
.ops-card__icon {
  display: grid;
  place-items: center;
  width: clamp(3.1rem, 4.6vw, 4.35rem);
  height: clamp(3.1rem, 4.6vw, 4.35rem);
  margin-bottom: clamp(1rem, 1.8vw, 1.35rem);
  border-radius: 22px;
  color: var(--brand-primary);
  background:
    radial-gradient(circle at 24% 22%, rgba(255,255,255,0.82), transparent 45%),
    linear-gradient(145deg, rgba(122, 219, 242, 0.32), rgba(213, 168, 66, 0.20));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.74), 0 16px 30px rgba(3,31,54,0.11);
}
.ops-card__icon svg {
  width: 58%;
  height: 58%;
}
.ops-card__icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.78;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.ops-card:nth-child(2n) .ops-card__icon {
  color: #064c3a;
  background:
    radial-gradient(circle at 24% 22%, rgba(255,255,255,0.82), transparent 45%),
    linear-gradient(145deg, rgba(8, 117, 91, 0.26), rgba(213, 168, 66, 0.22));
}
.ops-card::after {
  content: "";
  position: absolute;
  inset: auto 1.25rem 1.1rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-secondary), var(--brand-emerald), var(--brand-gold), transparent);
  opacity: 0.55;
}
.ops-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(3, 31, 54, 0.15);
}
.ops-card h3 {
  max-width: 620px;
  margin-bottom: 0.8rem;
  color: var(--brand-primary);
  font-size: clamp(1.95rem, 3.1vw, 3.05rem);
}
.ops-card p {
  max-width: 620px;
  margin-bottom: 0;
  color: #536f82;
  font-size: clamp(0.95rem, 1.2vw, 1.06rem);
  font-weight: 650;
}
.ops-card:nth-child(2n) {
  background:
    radial-gradient(circle at 86% 16%, rgba(8, 117, 91, 0.15), transparent 9rem),
    radial-gradient(circle at 12% 92%, rgba(213, 168, 66, 0.12), transparent 10rem),
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(232,248,241,0.76));
}

.fleet {
  overflow: clip;
  background:
    radial-gradient(circle at 12% 10%, rgba(122, 219, 242, 0.18), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(0, 149, 168, 0.13), transparent 26rem),
    radial-gradient(circle at 18% 84%, rgba(213, 168, 66, 0.15), transparent 28rem),
    radial-gradient(circle at 84% 82%, rgba(8, 117, 91, 0.14), transparent 30rem),
    linear-gradient(180deg, #f8fcff, #eff8f5 52%, #f9fcff);
}
.livery-stories {
  display: grid;
  gap: clamp(2.2rem, 5vw, 4.6rem);
  width: var(--wrap);
  margin-inline: auto;
}
.livery-story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: clamp(1.8rem, 4vw, 4rem);
  min-height: min(740px, 86vh);
  padding: clamp(1.35rem, 3vw, 2.2rem);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: clamp(26px, 4vw, 46px);
  background:
    radial-gradient(circle at 18% 28%, color-mix(in srgb, var(--accent-soft) 90%, white), transparent 22rem),
    radial-gradient(circle at 78% 86%, rgba(213, 168, 66, 0.13), transparent 18rem),
    linear-gradient(145deg, rgba(255,255,255,0.9), rgba(240, 249, 252, 0.76));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.livery-story::before {
  content: "";
  position: absolute;
  inset: auto -10% -18% 28%;
  height: 45%;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 22%, transparent), transparent 72%);
  pointer-events: none;
}
.livery-story:nth-child(even) {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
}
.livery-story:nth-child(even) .livery-story__visual { order: 2; }
.livery-story:nth-child(even) .livery-story__copy { order: 1; }
.livery-story__visual,
.livery-story__copy {
  position: relative;
  z-index: 2;
}
.livery-story__visual img {
  width: min(920px, 100%);
  margin-inline: auto;
  filter: drop-shadow(0 34px 34px rgba(3,31,54,0.22));
  transform-origin: center;
}
.livery-story__copy {
  max-width: 440px;
  padding: clamp(1rem, 2vw, 1.6rem);
}
.livery-story__copy h3 {
  color: var(--accent);
  font-size: clamp(2.4rem, 5vw, 5.5rem);
}
.livery-story__copy p {
  color: #244a5e;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  font-weight: 650;
}
.livery-story__copy span {
  display: inline-flex;
  margin-top: 0.35rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid color-mix(in srgb, var(--accent) 24%, white);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(255,255,255,0.72);
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 900;
}

.join {
  padding-top: clamp(3.5rem, 7vw, 6rem);
  background:
    linear-gradient(180deg, rgba(255,255,255,0), rgba(209, 239, 249, 0.54)),
    radial-gradient(circle at 20% 94%, rgba(213, 168, 66, 0.18), transparent 28rem),
    radial-gradient(circle at 82% 100%, rgba(8, 117, 91, 0.18), transparent 32rem),
    radial-gradient(circle at 50% 100%, rgba(6, 54, 95, 0.13), transparent 32rem);
}
.join-card {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255,255,255,0.92), rgba(229,247,255,0.84));
  border: 1px solid rgba(255,255,255,0.85);
  box-shadow: var(--shadow);
}
.join-card__copy p {
  max-width: 460px;
  margin-bottom: 0;
  font-weight: 650;
}
.join-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}
.form-row { display: grid; gap: 0.45rem; }
.form-row--wide { grid-column: 1 / -1; }
.form-row label {
  color: var(--brand-primary);
  font-size: 0.86rem;
  font-weight: 900;
}
.form-row input {
  min-height: 52px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(6, 54, 95, 0.16);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255,255,255,0.78);
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.form-row input:focus {
  border-color: rgba(8, 138, 191, 0.6);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(8, 138, 191, 0.12);
}
.join-form .btn { width: 100%; }

.site-footer {
  padding: 2rem 0 2.4rem;
  color: #55728a;
}
.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
}
.site-footer p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 650;
}

/* v9 route map quality pass: stable onboarding-style map, no active-flight overlay */
.route-map {
  border-color: rgba(255,255,255,0.9);
  background:
    radial-gradient(circle at 18% 14%, rgba(28, 153, 201, 0.18), transparent 23rem),
    radial-gradient(circle at 78% 72%, rgba(9, 119, 91, 0.15), transparent 26rem),
    radial-gradient(circle at 70% 10%, rgba(213, 168, 66, 0.12), transparent 23rem),
    linear-gradient(145deg, rgba(255,255,255,0.94), rgba(229,248,255,0.82));
}
.route-map::before {
  content: "";
  position: absolute;
  inset: 0.7rem;
  border-radius: calc(var(--radius-xl) - 0.18rem);
  border: 1px solid rgba(255,255,255,0.55);
  pointer-events: none;
  z-index: 1;
}
.route-map__stage {
  min-height: clamp(410px, 46vw, 575px);
  background:
    linear-gradient(180deg, rgba(240,251,255,0.92), rgba(229,248,255,0.82)),
    #effaff;
}
.route-map__stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,0.55), transparent 22rem),
    linear-gradient(90deg, rgba(255,255,255,0.16), transparent 18%, transparent 82%, rgba(255,255,255,0.14));
  z-index: 2;
}
.route-map__svg {
  min-height: clamp(410px, 46vw, 575px);
  position: relative;
  z-index: 3;
}
.route-map__water { fill: #edf9ff; pointer-events: all; }
.route-map-grid line {
  stroke: rgba(6, 54, 95, 0.047);
  stroke-width: 0.72;
  vector-effect: non-scaling-stroke;
}
.na-map-lines path {
  fill: none;
  stroke: rgba(6, 54, 95, 0.18);
  stroke-width: 0.85;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.na-map-lines path:nth-child(5n) { stroke: rgba(18, 126, 163, 0.26); }
.na-map-lines path:nth-child(9n) { stroke: rgba(8, 117, 91, 0.22); }
.route-map-route-shadow {
  stroke: rgba(255, 255, 255, 0.82);
  stroke-width: 6.4;
  opacity: 0.92;
}
.route-map-route {
  stroke: rgba(6, 54, 95, 0.42);
  stroke-width: 2.1;
  opacity: 0.86;
  cursor: pointer;
  transition: opacity 0.18s ease, stroke 0.18s ease, stroke-width 0.18s ease, filter 0.18s ease;
}
.route-map-route--pdx { stroke: rgba(8, 117, 91, 0.66); }
.route-map-route--sea { stroke: rgba(12, 138, 191, 0.66); }
.route-map-route:hover,
.route-map-route:focus-visible,
.route-map-route.is-selected {
  opacity: 1;
  stroke-width: 3.35;
  outline: none;
  filter: drop-shadow(0 7px 8px rgba(6,54,95,0.18));
}
.route-map-route-focus {
  fill: none;
  stroke-width: 5.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.25;
  vector-effect: non-scaling-stroke;
  pointer-events: none;
}
.route-map__readout {
  position: absolute;
  z-index: 8;
  left: clamp(1.1rem, 2vw, 1.6rem);
  bottom: clamp(1.1rem, 2vw, 1.6rem);
  max-width: min(410px, calc(100% - 2.2rem));
  padding: 0.92rem 1rem;
  border: 1px solid rgba(255,255,255,0.88);
  border-radius: 20px;
  color: var(--brand-primary);
  background: rgba(255,255,255,0.82);
  box-shadow: 0 18px 42px rgba(3,31,54,0.12);
  backdrop-filter: blur(18px);
}
.route-map__readout strong {
  display: block;
  font-family: var(--display);
  font-size: 1.22rem;
  line-height: 0.95;
  letter-spacing: -0.035em;
}
.route-map__readout span {
  display: block;
  margin-top: 0.24rem;
  color: #56788e;
  font-size: 0.78rem;
  font-weight: 750;
}
.route-map__status {
  max-width: 380px;
  padding: 0.72rem 0.82rem;
  border-radius: 999px;
  color: #4e7188;
  background: rgba(255,255,255,0.76);
  font-size: 0.76rem;
}
.route-airport { opacity: 0.95; }
.route-airport.is-dimmed { opacity: 0.22; }
.route-airport.is-visible { opacity: 1; }
.route-airport.is-selected-hub .route-airport__dot { stroke-width: 2.6; }
.route-airport__pulse {
  fill: rgba(12, 138, 191, 0.16);
  stroke: rgba(255,255,255,0.72);
  stroke-width: 1.15;
  vector-effect: non-scaling-stroke;
  animation: airportPulse 2.6s ease-in-out infinite;
}
.route-airport__dot {
  fill: #0c8abf;
  stroke: #fff;
  stroke-width: 1.35;
  vector-effect: non-scaling-stroke;
}
.route-airport.is-hub .route-airport__dot { fill: var(--brand-primary); }
.route-airport__label {
  fill: var(--brand-primary);
  paint-order: stroke;
  stroke: rgba(255,255,255,0.92);
  stroke-width: 3.2px;
  font-family: var(--mono);
  font-size: 8.9px;
  font-weight: 900;
  pointer-events: none;
}
.route-airport:not(.is-hub) .route-airport__label {
  fill: #466d83;
  font-size: 7.1px;
  opacity: 0.72;
}
.route-airport.is-dimmed .route-airport__label { opacity: 0.08; }
.route-airport.is-hub { cursor: pointer; }
.route-airport:focus,
.route-airport:focus-visible {
  outline: none;
}
.route-map__tooltip {
  z-index: 14;
  background: rgba(255,255,255,0.95);
}


[data-reveal], [data-hero-reveal], [data-hero-panel], [data-livery-story] {
  will-change: transform, opacity;
}

@media (max-width: 1080px) {
  .operations__intro { position: relative; top: auto; max-width: 760px; }
  .route-map__toolbar { flex-wrap: wrap; max-width: calc(100% - 2.4rem); }
  .hero__layout { grid-template-columns: 1fr; }
  .hero-visual { max-width: 820px; width: 100%; }
  .ops-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ops-card,
  .ops-card:nth-child(1),
  .ops-card:nth-child(2) { grid-column: span 1; min-height: 0; }
  .hub-pills { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .impact-grid { grid-template-columns: 1fr; }
  .livery-story,
  .livery-story:nth-child(even) {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .livery-story:nth-child(even) .livery-story__visual,
  .livery-story:nth-child(even) .livery-story__copy { order: initial; }
  .livery-story__copy { max-width: 680px; }
  .join-card { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  :root { --wrap: min(100vw - 28px, 1180px); }
  .site-header {
    inset: 12px 14px auto;
    min-height: 82px;
    padding: 0.68rem 0.74rem;
  }
  .brand__logo {
    width: clamp(144px, 44vw, 178px);
    max-height: 64px;
  }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 104px 14px auto;
    display: grid;
    gap: 0.35rem;
    padding: 0.75rem;
    border-radius: 26px;
    background: rgba(255,255,255,0.92);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .site-nav a { text-align: center; }
  .hero { padding-top: 7rem; }
  h1 { font-size: clamp(3.8rem, 17vw, 5.8rem); }
  h2 { font-size: clamp(2.4rem, 12vw, 4rem); }
  .stat-strip { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr; }
  .hub-pills { grid-template-columns: 1fr; }
  .ops-grid { grid-template-columns: 1fr; }
  .ops-card,
  .ops-card:nth-child(1),
  .ops-card:nth-child(2) { grid-column: 1 / -1; }
  .route-map__toolbar {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: none;
    justify-content: center;
    margin-bottom: 0.75rem;
    border-radius: 24px;
  }
  .route-hub { grid-template-columns: 1fr; gap: 0.05rem; text-align: center; }
  .route-hub span { font-size: 0.64rem; }
  .route-map__stage { height: 350px; }
  .route-map__status { left: 0.8rem; right: 0.8rem; bottom: 0.8rem; max-width: none; }
  .livery-story { padding: 1rem; border-radius: 30px; }
  .livery-story__copy { padding: 0.7rem; }
  .join-form { grid-template-columns: 1fr; }
  .site-footer .wrap { flex-direction: column; }
}

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

@media (max-width: 760px) {
  .route-map__readout {
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.8rem;
    max-width: none;
  }
  .route-map__status { display: none; }
}


/* v10 route map QA pass: solid anchored routes, no dashed / broken-looking lines */
.route-map__stage {
  background:
    linear-gradient(180deg, rgba(244, 252, 255, 0.96), rgba(229, 248, 255, 0.88)),
    #eefaff;
}
.route-map__stage::after {
  background:
    radial-gradient(circle at 48% 18%, rgba(255,255,255,0.45), transparent 20rem),
    linear-gradient(90deg, rgba(255,255,255,0.08), transparent 20%, transparent 80%, rgba(255,255,255,0.08));
}
.route-map__routes,
[data-route-layer] {
  pointer-events: auto;
}
[data-route-focus-layer] {
  pointer-events: none;
}
.route-map-route-shadow {
  display: none !important;
}
.route-map-route,
.route-map-route-underlay,
.route-map-route-focus {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: none !important;
  stroke-dashoffset: 0 !important;
}
.route-map-route-underlay {
  stroke-width: 7.2;
  opacity: 0.16;
  pointer-events: none;
}
.route-map-route {
  stroke-width: 2.85;
  opacity: 0.94;
  cursor: pointer;
  pointer-events: visibleStroke;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,0.55));
  transition: opacity 0.16s ease, stroke-width 0.16s ease, filter 0.16s ease;
}
.route-map-route--pdx {
  stroke: #08775b;
}
.route-map-route--sea {
  stroke: #0c8abf;
}
.route-map-route:hover,
.route-map-route:focus-visible,
.route-map-route.is-selected {
  opacity: 1;
  stroke-width: 4.15;
  outline: none;
  filter: drop-shadow(0 7px 8px rgba(6,54,95,0.2));
}
.route-map-route-focus {
  stroke-width: 6.2;
  opacity: 0.24;
  pointer-events: none;
}
.route-airport__dot {
  stroke-width: 1.65;
}
.route-airport.is-hub .route-airport__dot {
  stroke-width: 2.05;
}
.route-airport__label {
  stroke-width: 3.8px;
}
.route-map__readout {
  background: rgba(255,255,255,0.88);
}
/* final route-map proportions */
.route-map-route {
  stroke-width: 2.2;
  opacity: 0.92;
}
.route-map-route:hover,
.route-map-route:focus-visible,
.route-map-route.is-selected {
  stroke-width: 3.55;
}
.route-map-route-focus {
  stroke-width: 5.2;
}
.route-airport__label {
  stroke-width: 2.35px;
}
.route-airport:not(.is-hub) .route-airport__label {
  font-size: 7px;
  opacity: 0.82;
  stroke-width: 2.1px;
}
.route-airport.is-dimmed .route-airport__label {
  opacity: 0.16;
}

/* v14 network map tabs + live traffic map */
.network-map-tabs {
  position: relative;
  z-index: 9;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  padding: 0.42rem;
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 14px 34px rgba(3,31,54,0.11);
  backdrop-filter: blur(18px);
}
.network-map-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.46rem;
  min-height: 44px;
  padding: 0.56rem 0.96rem;
  border: 0;
  border-radius: 999px;
  color: var(--brand-primary);
  background: transparent;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.network-map-tab strong {
  font-family: var(--mono);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}
.network-map-tab span {
  color: #55758d;
  font-size: 0.7rem;
  font-weight: 850;
}
.network-map-tab:hover,
.network-map-tab:focus-visible {
  transform: translateY(-1px);
  background: rgba(8,138,191,0.11);
  outline: none;
}
.network-map-tab.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  box-shadow: 0 12px 26px rgba(6,54,95,0.18);
}
.network-map-tab.is-active span { color: rgba(255,255,255,0.82); }
.network-map-panel {
  position: relative;
  z-index: 4;
}
.network-map-panel[hidden] { display: none !important; }
.network-map-panel .route-map__toolbar {
  margin-bottom: 0.85rem;
}

.live-map {
  position: relative;
}
.live-map__head {
  position: relative;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
  padding-inline: 0.35rem;
}
.live-map__title {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--brand-primary);
  font-family: var(--mono);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.live-map__pulse {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand-emerald);
  box-shadow: 0 0 0 0 rgba(8,117,91,0.45);
  animation: livePulse 2.4s cubic-bezier(0.16,1,0.3,1) infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(8,117,91,0.44); }
  70% { box-shadow: 0 0 0 12px rgba(8,117,91,0); }
  100% { box-shadow: 0 0 0 0 rgba(8,117,91,0); }
}
.live-map__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.live-map__count {
  color: #55768d;
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 800;
}
.live-map__refresh {
  border: 1px solid rgba(12,138,191,0.22);
  border-radius: 999px;
  padding: 0.48rem 0.78rem;
  color: var(--brand-secondary);
  background: rgba(12,138,191,0.10);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.18s ease, transform 0.18s ease;
}
.live-map__refresh:hover,
.live-map__refresh:focus-visible {
  transform: translateY(-1px);
  background: rgba(12,138,191,0.17);
  outline: none;
}
.live-map__stage {
  min-height: clamp(410px, 46vw, 575px);
}
.live-map__svg {
  cursor: default;
  touch-action: manipulation;
}
.live-map__water {
  pointer-events: all;
}
.live-map-grid line {
  stroke: rgba(6,54,95,0.05);
  stroke-width: 0.72;
  vector-effect: non-scaling-stroke;
}
.live-map__outlines path {
  stroke: rgba(6,54,95,0.18);
  stroke-width: 0.86;
}
.live-map__outlines path:nth-child(5n) { stroke: rgba(18,126,163,0.25); }
.live-map__outlines path:nth-child(9n) { stroke: rgba(8,117,91,0.20); }
.live-flight-detail {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s cubic-bezier(0.16,1,0.3,1);
}
.live-flight-detail.show { opacity: 1; }
.live-route-glow,
.live-route,
.live-trail {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.live-route-glow {
  stroke: var(--brand-glacier);
  stroke-width: 9;
  opacity: 0.28;
}
.live-route {
  stroke: var(--brand-primary);
  stroke-width: 3;
  stroke-dasharray: 9 11;
  opacity: 0.9;
}
.live-trail {
  stroke: var(--brand-emerald);
  stroke-width: 3.15;
  opacity: 0.92;
}
.live-apt circle:first-child { fill: rgba(6,54,95,0.96); }
.live-apt circle:last-child {
  fill: rgba(122,219,242,0.18);
  stroke: rgba(6,54,95,0.26);
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
}
.live-apt text {
  fill: var(--brand-primary);
  paint-order: stroke;
  stroke: rgba(255,255,255,0.92);
  stroke-width: 3px;
  font-family: var(--mono);
  font-weight: 900;
}
.live-plane {
  cursor: pointer;
  outline: none;
}
.live-plane__glyph {
  fill: var(--brand-primary);
  filter: drop-shadow(0 7px 8px rgba(6,54,95,0.28));
  transition: fill 0.18s ease, filter 0.18s ease;
}
.live-plane:hover .live-plane__glyph,
.live-plane:focus-visible .live-plane__glyph,
.live-plane.active .live-plane__glyph {
  fill: var(--brand-secondary);
  filter: drop-shadow(0 10px 12px rgba(6,54,95,0.28));
}
.live-tag rect {
  fill: rgba(255,255,255,0.95);
  stroke: rgba(6,54,95,0.16);
  vector-effect: non-scaling-stroke;
}
.live-tag text {
  fill: var(--brand-primary);
  font-family: var(--mono);
  font-weight: 900;
  letter-spacing: 0.01em;
}
.live-telem {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}
.live-telem.show { opacity: 1; }
.live-telem__bg {
  fill: rgba(255,255,255,0.97);
  stroke: rgba(6,54,95,0.16);
  vector-effect: non-scaling-stroke;
}
.live-telem__hd {
  fill: var(--brand-primary);
  font-family: var(--mono);
  font-weight: 900;
}
.live-telem__key {
  fill: #5a7386;
  font-family: var(--mono);
  font-weight: 800;
  letter-spacing: 0.04em;
}
.live-telem__value {
  fill: var(--ink);
  font-family: var(--mono);
  font-weight: 900;
}
.live-telem__rule {
  stroke: rgba(6,54,95,0.13);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}
.live-map__empty {
  position: absolute;
  inset: 0;
  z-index: 7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.34s ease;
}
.live-map__empty.show {
  opacity: 1;
  pointer-events: auto;
}
.live-map__empty-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.42rem;
  min-width: min(380px, calc(100vw - 5rem));
  padding: clamp(1.1rem,2.6vw,2rem) clamp(1.7rem,4.6vw,3.2rem);
  border: 1px solid rgba(255,255,255,0.82);
  border-radius: 28px;
  color: var(--brand-primary);
  text-align: center;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 24px 62px rgba(3,31,54,0.15);
  backdrop-filter: blur(10px);
  transform: translateY(10px);
  transition: transform 0.34s ease;
}
.live-map__empty.show .live-map__empty-card { transform: translateY(0); }
.live-map__empty-card span {
  color: #657f91;
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.live-map__empty-card strong {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}
.live-map__empty-card img {
  width: clamp(140px, 18vw, 210px);
  height: auto;
}

@media (max-width: 760px) {
  .network-map-tabs {
    width: 100%;
    border-radius: 26px;
  }
  .network-map-tab {
    flex: 1;
    grid-template-columns: 1fr;
    gap: 0.06rem;
    text-align: center;
  }
  .live-map__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.65rem;
  }
  .live-map__meta {
    width: 100%;
    justify-content: space-between;
  }
}
