/* GeoSightOps sticky Features + Airport + glass popups + dashboard */
:root {
  --gso-navy: #00132b;
  --gso-navy-2: #0a2748;
  --gso-teal: #61a5e5;
  --gso-blue: #124270;
  --gso-muted: #656a71;
  --gso-line: #d7e2ef;
  --gso-white: #ffffff;
  --gso-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
  --gso-glass: rgba(255, 255, 255, 0.14);
  --gso-glass-strong: rgba(255, 255, 255, 0.22);
  --gso-glass-border: rgba(255, 255, 255, 0.28);
  --gso-auto-ms: 7000;
}

.gso-sticky {
  font-family: Inter, Manrope, "IBM Plex Sans", system-ui, sans-serif;
  background: #fff;
  color: var(--gso-navy);
  padding: 72px 24px 64px;
}

/* Scrolly: tall rail + pinned panel (section stays on screen while you scroll) */
.gso-sticky--scrolly {
  padding: 0;
  overflow: visible;
}
.gso-sticky__rail {
  position: relative;
  width: 100%;
}
.gso-sticky__pin {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 28px 24px 24px;
  overflow: visible;
}
.gso-sticky--scrolly .gso-sticky__inner {
  width: 100%;
}
.gso-sticky--scrolly .gso-sticky__hdg {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 8px;
}
.gso-sticky--scrolly .gso-sticky__sub {
  margin: 0 auto 18px;
  max-width: 760px;
  font-size: 14.5px;
}
.gso-sticky--scrolly .gso-sticky__item {
  min-height: 0;
  padding: 6px 0;
  align-items: flex-start;
}
.gso-sticky--scrolly .gso-sticky__ttl {
  margin: 0;
  font-size: 17px;
}
.gso-sticky--scrolly .gso-sticky__item.is-active .gso-sticky__ttl {
  margin: 0 0 6px;
  font-size: 24px;
  color: #1b3e5f;
}
.gso-sticky--scrolly .gso-sticky__txt {
  font-size: 16px;
  line-height: 1.55;
  max-width: 42ch;
}
.gso-sticky--scrolly .gso-sticky__cta {
  margin-top: 12px;
  min-height: 44px;
  height: auto;
  padding: 12px 22px;
}
.gso-sticky--scrolly .gso-sticky__layout {
  align-items: center;
}
.gso-sticky--scrolly .gso-sticky__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: min(600px, 58vh);
}
/* Reference layout: only active story on the left (desktop) */
@media (min-width: 1025px) {
  .gso-sticky--scrolly .gso-sticky__item:not(.is-active) {
    display: none;
  }
  .gso-sticky--scrolly .gso-sticky__item.is-active {
    opacity: 1;
    padding: 0;
  }
}
.gso-sticky--scrolly .gso-sticky__media {
  position: relative;
  top: auto;
  height: min(600px, 58vh);
  min-height: 540px;
  will-change: auto;
}

.gso-sticky__inner { max-width: 1280px; margin: 0 auto; }

.gso-sticky__kicker-wrap {
  display: flex;
  justify-content: center;
  margin: 0 0 14px;
}

.gso-sticky__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 7px 14px;
  border-radius: 6px;
  background: rgba(72, 147, 217, 0.12);
  border: 1px solid rgba(72, 147, 217, 0.28);
  color: #124270;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
  box-sizing: border-box;
}

.gso-sticky__kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4893d9;
  flex-shrink: 0;
}

.gso-sticky__hdg {
  margin: 0 0 10px;
  text-align: center;
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--gso-navy);
}

.gso-sticky__sub {
  margin: 0 auto 22px;
  max-width: 680px;
  text-align: center;
  color: var(--gso-muted);
  font-size: 15px;
  line-height: 1.5;
}

.gso-sticky__layout {
  display: flex;
  gap: 28px;
  position: relative;
}

.gso-sticky__sub {
  margin: 0 auto 28px;
  max-width: 700px;
  text-align: center;
  color: var(--gso-muted);
  font-size: 15.5px;
  line-height: 1.5;
}

.gso-sticky__layout {
  display: flex;
  gap: 28px;
  position: relative;
  /* Cap how tall the whole sticky block feels on Home */
  align-items: flex-start;
}

.gso-sticky__info {
  width: 380px;
  flex-shrink: 0;
}

.gso-sticky__item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 0;
  padding: 10px 0 10px 4px;
  border-left: none;
  opacity: 0.32;
  transform: none;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.gso-sticky__item.is-active {
  opacity: 1;
  cursor: default;
}

.gso-sticky__item.is-active .gso-sticky__ttl {
  color: #1b3e5f;
  font-size: 24px;
}

.gso-sticky__item.is-active .gso-sticky__cta {
  display: inline-flex;
}

/* Inactive: only title shows — keeps Home short like Geotab */
.gso-sticky__item .gso-sticky__txt,
.gso-sticky__item .gso-sticky__cta {
  display: none;
}

.gso-sticky__item.is-active .gso-sticky__txt {
  display: block;
}

/* Hide the old teal progress rail */
.gso-sticky__progress {
  display: none;
}

.gso-sticky__ttl {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gso-navy);
  transition: color 0.3s ease;
  line-height: 1.25;
}

.gso-sticky__txt {
  margin: 0;
  color: #4a5568;
  font-size: 16px;
  line-height: 1.55;
  max-width: 42ch;
}

.gso-sticky__cta {
  margin-top: 14px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  height: auto;
  padding: 12px 22px;
  border: 1px solid #022047;
  border-radius: 6px;
  background: #022047;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  box-sizing: border-box;
  box-shadow: none;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.gso-sticky__cta:hover {
  background: #011830;
  border-color: #011830;
  color: #fff;
}

.gso-sticky__layout {
  position: relative;
}

.gso-sticky__media {
  flex: 1;
  position: sticky;
  top: 96px;
  align-self: flex-start;
  height: min(600px, 58vh);
  min-height: 540px;
  z-index: 2;
  will-change: transform;
  /* room for outside pagination (Geotab-style, not over video) */
  padding-right: 52px;
  box-sizing: border-box;
  overflow: visible;
}

.gso-sticky__stage {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #0c0f14;
  box-shadow: var(--gso-shadow);
}

.gso-sticky__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.gso-sticky__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.gso-sticky__slide video,
.gso-airport__visual-stage video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: 55% 45%;
}

/* Soft Ken-Burns zoom on dashboard / monitor demos (full videos, not cut clips) */
.gso-sticky__slide.is-active video.gso-vid-zoom,
.gso-airport__visual-stage.is-active video.gso-vid-zoom {
  animation: gsoVidZoom 16s ease-in-out infinite alternate;
}

@keyframes gsoVidZoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

@media (prefers-reduced-motion: reduce) {
  .gso-sticky__slide.is-active video.gso-vid-zoom,
  .gso-airport__visual-stage.is-active video.gso-vid-zoom {
    animation: none;
  }
}

.gso-sticky__veil {
  position: absolute;
  inset: 0;
  /* No color wash — videos stay clean */
  background: none;
  pointer-events: none;
}

/* ===== Geotab-style AI detect effects (boxes / banners / scan) ===== */
.gso-fx {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
}

.gso-sticky__slide.is-active .gso-fx,
.gso-airport__visual-stage.is-active .gso-fx {
  opacity: 1;
}

.gso-fx__banner {
  position: absolute;
  top: 54px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  padding: 8px 18px;
  border-radius: 4px;
  background: rgba(8, 10, 14, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: clamp(15px, 2.2vw, 22px);
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  animation: gsoFxIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.gso-fx__hud {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 4;
  padding: 6px 10px;
  border-radius: 4px;
  background: rgba(8, 10, 14, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.88);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  animation: gsoFxIn 0.5s ease both;
  animation-delay: 0.7s;
}

.gso-fx__scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(94, 184, 255, 0.05) 46%,
    rgba(94, 184, 255, 0.28) 50%,
    rgba(94, 184, 255, 0.05) 54%,
    transparent 100%
  );
  background-size: 100% 220%;
  animation: gsoFxScan 2.6s ease-in-out infinite;
  mix-blend-mode: screen;
  opacity: 0.75;
}

.gso-fx__scan--fast { animation-duration: 1.8s; }

@keyframes gsoFxScan {
  0% { background-position: 0 -30%; }
  100% { background-position: 0 130%; }
}

.gso-fx__zone {
  position: absolute;
  border: 2px dashed rgba(248, 113, 113, 0.55);
  border-radius: 4px;
  background: rgba(248, 113, 113, 0.06);
  box-shadow: inset 0 0 40px rgba(248, 113, 113, 0.08);
  animation: gsoFxZone 2.2s ease-in-out infinite;
}

@keyframes gsoFxZone {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

.gso-fx__box {
  --d: 0.2s;
  position: absolute;
  border: 2px dashed rgba(255, 255, 255, 0.85);
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
  animation: gsoFxIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--d);
}

.gso-fx__box::before,
.gso-fx__box::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
}

.gso-fx__box::before {
  top: -2px;
  left: -2px;
  border-right: 0;
  border-bottom: 0;
}

.gso-fx__box::after {
  right: -2px;
  bottom: -2px;
  border-left: 0;
  border-top: 0;
}

.gso-fx__box--alert {
  color: #f87171;
  border-color: rgba(248, 113, 113, 0.95);
}

.gso-fx__box--warn {
  color: #fbbf24;
  border-color: rgba(251, 191, 36, 0.95);
}

.gso-fx__box--ok {
  color: #4ade80;
  border-color: rgba(74, 222, 128, 0.95);
}

.gso-fx__box--track {
  color: #5eb8ff;
  border-color: rgba(94, 184, 255, 0.95);
}

.gso-fx__box--pulse {
  animation:
    gsoFxIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both,
    gsoFxPulse 1.6s ease-in-out infinite;
  animation-delay: var(--d), calc(var(--d) + 0.55s);
}

@keyframes gsoFxPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(248, 113, 113, 0.35); }
  50% { box-shadow: 0 0 0 10px rgba(248, 113, 113, 0); }
}

@keyframes gsoFxIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.gso-fx__tag {
  position: absolute;
  left: 0;
  top: -22px;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(8, 10, 14, 0.78);
  border: 1px solid currentColor;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.gso-fx__conf {
  position: absolute;
  right: 0;
  bottom: -20px;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(8, 10, 14, 0.7);
  color: rgba(255, 255, 255, 0.9);
  font-size: 10px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.gso-fx__reticle {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 90px;
  height: 90px;
  margin: -45px 0 0 -45px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(94, 184, 255, 0.25);
  animation: gsoFxReticle 3s linear infinite;
}

.gso-fx__reticle::before,
.gso-fx__reticle::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.55);
}

.gso-fx__reticle::before {
  left: 50%;
  top: 8%;
  width: 1px;
  height: 84%;
  transform: translateX(-50%);
}

.gso-fx__reticle::after {
  top: 50%;
  left: 8%;
  height: 1px;
  width: 84%;
  transform: translateY(-50%);
}

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

@media (max-width: 720px) {
  .gso-fx__banner { font-size: 14px; padding: 6px 12px; top: 48px; }
  .gso-fx__box { border-width: 1.5px; }
  .gso-fx__tag { font-size: 9px; top: -18px; }
}

.gso-sticky__chip {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 4px;
  background: rgba(8, 10, 14, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

/* ===== Story popups — high finish glass cards ===== */
.gso-pop {
  --d: 0.15s;
  position: absolute;
  z-index: 5;
  width: min(248px, 54%);
  padding: 12px 13px 13px;
  border-radius: 6px;
  color: #fff;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 42%, rgba(255, 255, 255, 0.02) 100%),
    rgba(10, 12, 16, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.38),
    0 1px 0 rgba(255, 255, 255, 0.12) inset;
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  pointer-events: none;
}

.gso-sticky__slide.is-active .gso-pop,
.gso-airport__visual-stage.is-active .gso-pop {
  animation: gsoPopIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--d);
}

.gso-pop--tr { top: 14px; right: 14px; }
.gso-pop--tl { top: 14px; left: 14px; }
.gso-pop--bl { left: 14px; bottom: 14px; }
.gso-pop--br { right: 14px; bottom: 14px; }

.gso-pop--alert {
  border-color: rgba(248, 113, 113, 0.45);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(248, 113, 113, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.gso-pop--warn {
  border-color: rgba(251, 191, 36, 0.4);
}

.gso-pop--track {
  border-color: rgba(94, 184, 255, 0.4);
}

.gso-pop--ok {
  border-color: rgba(52, 211, 153, 0.35);
}

@keyframes gsoPopIn {
  from { opacity: 0; transform: translateY(18px) scale(0.95); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

.gso-pop__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
  min-height: 16px;
}

.gso-pop__live,
.gso-pop__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(180, 240, 250, 0.95);
}

.gso-pop__eyebrow { color: rgba(255, 255, 255, 0.55); }

.gso-pop__live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55);
  animation: gsoLive 1.6s infinite;
}

.gso-pop__live.is-alert { color: #fecaca; }
.gso-pop__live.is-alert::before {
  background: #f87171;
  box-shadow: 0 0 0 0 rgba(248, 113, 113, 0.55);
  animation: gsoLiveAlert 1.2s infinite;
}

.gso-pop__live.is-warn { color: #fde68a; }
.gso-pop__live.is-warn::before {
  background: #fbbf24;
  animation: none;
}

@keyframes gsoLive {
  70% { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

@keyframes gsoLiveAlert {
  70% { box-shadow: 0 0 0 8px rgba(248, 113, 113, 0); }
  100% { box-shadow: 0 0 0 0 rgba(248, 113, 113, 0); }
}

.gso-pop__title {
  display: block;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.25;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.gso-pop__meta {
  display: block;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.4;
}

.gso-pop__rows {
  display: grid;
  gap: 5px;
  margin-top: 9px;
  padding-top: 9px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.gso-pop__row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 11px;
}

.gso-pop__row span { color: rgba(255, 255, 255, 0.55); }
.gso-pop__row strong { color: #fff; font-weight: 700; }

.gso-pop__pill {
  display: inline-flex;
  align-items: center;
  margin-top: 9px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.gso-pop--alert .gso-pop__pill {
  background: rgba(248, 113, 113, 0.16);
  border-color: rgba(248, 113, 113, 0.35);
  color: #fecaca;
}

.gso-pop--ok .gso-pop__pill {
  background: rgba(52, 211, 153, 0.14);
  border-color: rgba(52, 211, 153, 0.3);
  color: #bbf7d0;
}

.gso-pop--track .gso-pop__pill {
  background: rgba(94, 184, 255, 0.14);
  border-color: rgba(94, 184, 255, 0.32);
  color: #bfdbfe;
}

/* ===== Maintenance / Ops Dashboard overlay ===== */
.gso-dash {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  top: auto;
  max-height: 48%;
  z-index: 4;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 8px;
  padding: 12px;
  border-radius: 4px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(8, 10, 14, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.4s ease;
}

.gso-sticky__slide.is-active .gso-dash {
  opacity: 1;
  transform: none;
}

.gso-dash__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.gso-dash__title {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
}

.gso-dash__sub {
  margin: 2px 0 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
}

.gso-dash__badge {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  background: rgba(52, 211, 153, 0.18);
  border: 1px solid rgba(52, 211, 153, 0.4);
  color: #a7f3d0;
}

.gso-dash__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 10px;
  min-height: 0;
}

.gso-dash__panel {
  border-radius: 4px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.gso-dash__panel h4 {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(126, 224, 239, 0.95);
}

.gso-dash__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.gso-dash__kpi {
  padding: 8px;
  border-radius: 4px;
  background: rgba(1, 31, 82, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gso-dash__kpi strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
}

.gso-dash__kpi span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.65);
}

.gso-dash__row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
}

.gso-dash__row:last-child { border-bottom: 0; }

.gso-dash__status {
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
}

.gso-dash__status.is-open { background: rgba(251, 146, 60, 0.25); color: #fdba74; }
.gso-dash__status.is-ok { background: rgba(52, 211, 153, 0.2); color: #a7f3d0; }
.gso-dash__status.is-crit { background: rgba(248, 113, 113, 0.22); color: #fecaca; }

.gso-dash__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.gso-dash__chip {
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  background: rgba(18, 146, 165, 0.2);
  border: 1px solid rgba(126, 224, 239, 0.3);
  color: #dff8fc;
}

/* ===== Smart Monitor — custom built map HUD (no stock video) ===== */
.gso-smart {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #071428;
}

.gso-smart__map {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 35% 25%, rgba(255, 255, 255, 0.04), transparent 45%),
    linear-gradient(160deg, #0c1524 0%, #0a1220 50%, #0d1828 100%);
}

.gso-smart__grid {
  position: absolute;
  inset: -10%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: perspective(600px) rotateX(48deg) scale(1.35);
  transform-origin: center 20%;
  animation: gsoSmartDrift 22s linear infinite;
  opacity: 0.55;
}

@keyframes gsoSmartDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 42px 42px, 42px 42px; }
}

.gso-smart__terrain {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 55% 48%, rgba(18, 146, 165, 0.12), transparent 35%),
    linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.35));
  pointer-events: none;
}

.gso-smart__scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(94, 184, 255, 0.08) 48%,
    rgba(94, 184, 255, 0.22) 50%,
    rgba(94, 184, 255, 0.08) 52%,
    transparent 100%
  );
  background-size: 100% 220%;
  animation: gsoScanSweep 2.8s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.85;
}

@keyframes gsoScanSweep {
  0% { background-position: 0 -40%; }
  100% { background-position: 0 140%; }
}

.gso-smart__bldg {
  position: absolute;
  border-radius: 4px;
  background: linear-gradient(145deg, rgba(40, 70, 110, 0.85), rgba(20, 40, 70, 0.9));
  border: 1px solid rgba(126, 224, 239, 0.18);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.gso-smart__bldg--a { left: 12%; top: 28%; width: 18%; height: 14%; }
.gso-smart__bldg--b { left: 38%; top: 22%; width: 22%; height: 18%; }
.gso-smart__bldg--c { left: 66%; top: 30%; width: 16%; height: 12%; }
.gso-smart__bldg--d { left: 28%; top: 58%; width: 20%; height: 10%; }

.gso-smart__routes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.gso-smart__route {
  stroke: #3dd6ef;
  stroke-width: 3;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(61, 214, 239, 0.85));
  stroke-dasharray: 8 6;
  animation: gsoRouteFlow 1.4s linear infinite;
}

@keyframes gsoRouteFlow {
  to { stroke-dashoffset: -28; }
}

.gso-smart__pulse {
  fill: none;
  stroke: rgba(61, 214, 239, 0.55);
  stroke-width: 2;
  stroke-dasharray: 6 8;
  animation: gsoFencePulse 2.4s ease-in-out infinite;
}

@keyframes gsoFencePulse {
  0%, 100% { opacity: 0.45; transform-origin: center; }
  50% { opacity: 1; }
}

.gso-smart__fence {
  position: absolute;
  left: 42%;
  top: 34%;
  width: 140px;
  height: 140px;
  margin-left: -70px;
  border: 2px dashed rgba(61, 214, 239, 0.65);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(61, 214, 239, 0.25);
  animation: gsoFencePulse 2.4s ease-in-out infinite;
}

.gso-smart__pin {
  position: absolute;
  transform: translate(-50%, -100%);
  z-index: 3;
  text-align: center;
}

.gso-smart__avatar {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  background: #0f2744;
  border: 2px solid #3dd6ef;
  box-shadow: 0 0 0 4px rgba(61, 214, 239, 0.2), 0 6px 14px rgba(0, 0, 0, 0.4);
}

.gso-smart__avatar.is-blue { border-color: #4ea1ff; box-shadow: 0 0 0 4px rgba(78, 161, 255, 0.25), 0 6px 14px rgba(0,0,0,0.4); }
.gso-smart__avatar.is-teal { border-color: #3dd6ef; animation: gsoPinGlow 1.8s ease-in-out infinite; }
.gso-smart__avatar.is-pulse {
  animation: gsoPinGlow 1.2s ease-in-out infinite;
  border-color: #f87171;
  box-shadow: 0 0 0 5px rgba(248, 113, 113, 0.28), 0 6px 14px rgba(0, 0, 0, 0.4);
}
.gso-smart__avatar.is-green { border-color: #34d399; box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.25), 0 6px 14px rgba(0,0,0,0.4); }

@keyframes gsoPinGlow {
  0%, 100% { box-shadow: 0 0 0 4px rgba(61, 214, 239, 0.2), 0 6px 14px rgba(0,0,0,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(61, 214, 239, 0.35), 0 6px 14px rgba(0,0,0,0.4); }
}

.gso-smart__pin i {
  display: block;
  width: 0;
  height: 0;
  margin: 2px auto 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #3dd6ef;
}

.gso-smart__label {
  position: absolute;
  z-index: 2;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(8, 20, 40, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.gso-smart__label--playback {
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #d7f7fc;
}

.gso-smart__alert {
  position: absolute;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  background: #e11d48;
  box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.28), 0 8px 16px rgba(0, 0, 0, 0.35);
}

.gso-smart__alert.is-med { font-size: 18px; line-height: 1; }

.gso-smart__hud-time {
  position: absolute;
  left: 22%;
  top: 40%;
  font-size: 12px;
  font-weight: 700;
  color: rgba(126, 224, 239, 0.85);
  text-shadow: 0 0 10px rgba(61, 214, 239, 0.5);
  letter-spacing: 0.08em;
}

/* Outside the media frame — like Geotab carousel controls */
.gso-sticky__pagination {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 6;
  width: 40px;
}

.gso-sticky__arrow,
.gso-sticky__dot {
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.gso-sticky__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ffffff;
  color: #4893d9;
  border: 1.5px solid #4893d9;
  box-shadow: 0 2px 8px rgba(0, 19, 43, 0.08);
}
.gso-sticky__arrow:hover {
  background: #4893d9;
  color: #ffffff;
  box-shadow: 0 0 0 4px rgba(72, 147, 217, 0.25);
}
.gso-sticky__arrow.is-disabled {
  opacity: 0.35;
  pointer-events: none;
  color: #cccccc;
  border-color: #cccccc;
  background: #ffffff;
}
.gso-sticky__arrow.is-next svg { transform: rotate(180deg); }
.gso-sticky__arrow svg {
  width: 20px;
  height: 20px;
}

.gso-sticky__dots {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.gso-sticky__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cccccc;
  box-shadow: none;
  transform: none;
}
.gso-sticky__dot:hover {
  background: #a0aec0;
}

.gso-sticky__dot.is-active {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4893d9;
  box-shadow: 0 0 0 4px rgba(72, 147, 217, 0.25);
  transform: none;
}

/* Airport module */
.gso-airport {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  padding: 72px 24px 88px;
  background:
    radial-gradient(ellipse at top left, rgba(18, 146, 165, 0.1), transparent 50%),
    linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
}

.gso-airport__inner { max-width: 1200px; margin: 0 auto; }

.gso-airport__head {
  text-align: center;
  margin-bottom: 40px;
}

.gso-airport__head h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gso-navy);
}

.gso-airport__head p {
  margin: 0 auto;
  max-width: 640px;
  color: var(--gso-muted);
  font-size: 16px;
  line-height: 1.55;
}

.gso-airport__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.gso-airport__visual {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--gso-shadow);
  background: #0b1a33;
}

.gso-airport__visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 420px;
}

.gso-airport__cards {
  display: grid;
  gap: 12px;
}

.gso-airport__card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid var(--gso-line);
  box-shadow: 0 1px 2px rgba(1, 31, 82, 0.04);
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  width: 100%;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.gso-airport__card:hover {
  border-color: rgba(18, 146, 165, 0.45);
  transform: translateY(-1px);
}

.gso-airport__card.is-active {
  border-color: var(--gso-teal);
  background: rgba(18, 146, 165, 0.06);
  box-shadow: 0 0 0 1px rgba(18, 146, 165, 0.25), 0 8px 20px rgba(1, 31, 82, 0.08);
}

.gso-airport__card.is-active .gso-airport__icon {
  background: var(--gso-teal);
  color: #fff;
}

.gso-airport__visual-stage {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.gso-airport__visual-stage.is-active {
  opacity: 1;
  pointer-events: auto;
}

.gso-airport__visual-stage video,
.gso-airport__visual-stage .gso-smart {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 420px;
}

.gso-airport__visual .gso-smart {
  position: absolute;
  inset: 0;
  min-height: 420px;
}

.gso-airport__icon {
  width: 42px;
  height: 42px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  background: rgba(18, 146, 165, 0.12);
  color: var(--gso-teal);
}

.gso-airport__card h3 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 800;
  color: var(--gso-navy);
}

.gso-airport__card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--gso-muted);
}

.gso-airport__cta-row {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .gso-sticky { padding: 64px 20px; }
  .gso-sticky--scrolly { padding: 48px 20px; }
  .gso-sticky--scrolly .gso-sticky__rail { height: auto !important; }
  .gso-sticky--scrolly .gso-sticky__pin {
    position: relative !important;
    height: auto !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    padding: 0;
  }
  .gso-sticky__layout { flex-direction: column; }
  .gso-sticky__info { width: 100%; }
  .gso-sticky__item {
    min-height: 0;
    opacity: 1;
    transform: none;
    margin-bottom: 20px;
    padding: 8px 0;
  }
  .gso-sticky__item .gso-sticky__txt,
  .gso-sticky__item .gso-sticky__cta {
    display: block;
  }
  .gso-sticky__item .gso-sticky__cta {
    display: inline-flex;
  }
  .gso-sticky__progress { display: none; }
  .gso-sticky__media,
  .gso-sticky--scrolly .gso-sticky__media {
    position: static;
    height: 360px;
    order: -1;
    margin-bottom: 24px;
  }
  .gso-sticky__pagination {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    margin-top: 12px;
  }
  .gso-sticky__dots { flex-direction: row; }
  .gso-sticky__arrow.is-next svg { transform: rotate(-90deg); }
  .gso-sticky__arrow svg { transform: rotate(90deg); }
  .gso-airport__grid { grid-template-columns: 1fr; }
  .gso-dash__grid { grid-template-columns: 1fr; }
}
