:root {
  --ink: #0f172a;
  --ink-soft: #1e293b;
  --blue: #2563eb;
  --blue-deep: #1d4ed8;
  --brand-blue: #60a5fa;
  --signal: #a8f85f;
  --canvas: #f8fafc;
  --paper: #ffffff;
  --line: #e2e8f0;
  --muted: #64748b;
  --green: #198754;
  --shadow: 0 24px 60px rgba(16, 20, 18, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--canvas);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family:
    "Manrope",
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
img {
  max-width: 100%;
}

.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;
}

.page-shell {
  min-width: 0;
  overflow: clip;
}
#features,
#ais140,
#solutions,
#contact {
  scroll-margin-top: 82px;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  padding: 18px 24px 0;
  color: #f7faf8;
  transition:
    padding 0.25s ease,
    color 0.25s ease;
}

.nav-shell {
  width: min(1280px, 100%);
  min-height: 64px;
  margin: 0 auto;
  padding: 0 12px 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  background: rgba(11, 18, 32, 0.74);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  transition:
    min-height 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  padding-top: 10px;
}
.site-header.is-scrolled .nav-shell {
  min-height: 58px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(11, 18, 32, 0.94);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: #0f172a;
}
.brand img {
  width: 38px;
  height: 38px;
  display: block;
}
.brand-word {
  font-family: "Space Grotesk", sans-serif;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}
/* Brand colors follow the compass logo; green remains reserved for live status. */
.brand-word b {
  color: var(--brand-blue);
  font-weight: 700;
}

.site-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  font-size: 13px;
  font-weight: 700;
}
.site-navigation > a:not(.button) {
  position: relative;
  color: rgba(247, 250, 248, 0.74);
  transition: color 0.18s ease;
}
.site-navigation > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--brand-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.site-navigation > a:not(.button):hover,
.site-navigation > a:not(.button)[aria-current="page"] {
  color: #fff;
}
.site-navigation > a:not(.button):hover::after,
.site-navigation > a:not(.button)[aria-current="page"]::after {
  transform: scaleX(1);
}
.nav-login {
  color: #fff !important;
}
.nav-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.16);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.2);
  font-size: 14px;
  font-weight: 800;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.button:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28);
}
.button:focus-visible,
.text-link:focus-visible,
.site-navigation a:focus-visible,
.menu-toggle:focus-visible,
.hero-scroll:focus-visible {
  outline: 3px solid rgba(72, 168, 255, 0.55);
  outline-offset: 4px;
}
.button-small {
  min-height: 40px;
  padding: 0 15px;
  border-radius: 6px;
  font-size: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.menu-toggle:hover {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
}
.menu-toggle-lines {
  position: relative;
  width: 20px;
  height: 16px;
  display: block;
  margin: 0 auto;
}
.menu-toggle-lines i {
  position: absolute;
  right: 0;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform-origin: center;
  transition:
    top 0.22s ease,
    transform 0.22s ease,
    opacity 0.16s ease;
}
.menu-toggle-lines i:nth-child(1) {
  top: 1px;
}
.menu-toggle-lines i:nth-child(2) {
  top: 7px;
}
.menu-toggle-lines i:nth-child(3) {
  top: 13px;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-lines i:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-lines i:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-lines i:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

.hero {
  --scene-x: 0px;
  --scene-y: 0px;
  position: relative;
  isolation: isolate;
  height: min(820px, calc(100svh - 28px));
  min-height: 700px;
  overflow: hidden;
  color: #f8fbf9;
  background: #0f172a;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(6, 11, 20, 0.22);
  pointer-events: none;
}
.hero-media {
  position: absolute;
  z-index: -3;
  inset: -18px;
  overflow: hidden;
}
.hero-media picture {
  display: contents;
}
.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: translate3d(var(--scene-x), var(--scene-y), 0) scale(1.035);
  transition: transform 0.35s ease-out;
}
.hero-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 25vw 0 0 -25vw rgba(255, 255, 255, 0.08),
    inset -25vw 0 0 -25vw rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.hero-shell {
  position: relative;
  width: min(1280px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.hero-copy {
  position: relative;
  z-index: 3;
  width: min(620px, 54%);
  padding-top: 78px;
}
.hero-kicker {
  margin: 0 0 25px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(247, 250, 248, 0.77);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.live-pulse {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 5px rgba(168, 248, 95, 0.12);
}
.live-pulse::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(168, 248, 95, 0.42);
  border-radius: 50%;
  animation: signal-ring 2.2s ease-out infinite;
}
@keyframes signal-ring {
  0% {
    opacity: 0;
    transform: scale(0.55);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
}
h1 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: 72px;
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 600;
}
h1 span {
  display: block;
  color: #60a5fa;
  font-size: 17px;
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
.hero-description {
  max-width: 560px;
  margin-bottom: 32px;
  color: rgba(241, 247, 243, 0.74);
  font-size: 18px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.button-primary {
  min-height: 52px;
  padding: 0 22px;
}
.button-quiet {
  min-height: 52px;
  padding: 0 20px;
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  background: rgba(15, 23, 42, 0.38);
  box-shadow: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.button-quiet:hover {
  border-color: rgba(255, 255, 255, 0.36);
  color: #fff;
  background: rgba(30, 41, 59, 0.76);
  box-shadow: none;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}
.text-link span {
  font-size: 20px;
  line-height: 1;
  transition: transform 0.18s ease;
}
.text-link:hover span {
  transform: translateX(4px);
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 42px;
  color: rgba(240, 246, 242, 0.67);
  font-size: 12px;
  font-weight: 700;
}
.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-proof span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--signal);
}

.hero-hud {
  position: absolute;
  z-index: 4;
  top: 29%;
  right: 2%;
  width: 292px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.78);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  animation: hud-float 5s ease-in-out infinite;
}
.hud-header {
  min-height: 48px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
}
.hud-header span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 800;
}
.hud-header i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 4px rgba(168, 248, 95, 0.12);
}
.hud-header b {
  color: var(--signal);
  font-size: 9px;
  font-weight: 800;
}
.hud-body {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.hud-body div {
  min-width: 0;
  padding: 16px 12px 17px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}
.hud-body div:last-child {
  border-right: 0;
}
.hud-body span,
.hud-body strong {
  display: block;
  white-space: nowrap;
}
.hud-body span {
  margin-bottom: 8px;
  color: rgba(240, 246, 242, 0.53);
  font-size: 8px;
  text-transform: uppercase;
}
.hud-body strong {
  overflow: hidden;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-overflow: ellipsis;
}
.hero-event {
  position: absolute;
  z-index: 4;
  right: 11%;
  bottom: 18%;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 7px;
  background: rgba(15, 23, 42, 0.78);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: event-float 5.8s ease-in-out infinite;
}
.event-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 5px;
  color: #fff;
  background: #2563eb;
  font-size: 13px;
  font-weight: 900;
}
.hero-event small,
.hero-event strong {
  display: block;
}
.hero-event small {
  margin-bottom: 2px;
  color: rgba(240, 246, 242, 0.52);
  font-size: 8px;
  text-transform: uppercase;
}
.hero-event strong {
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}
.hero-scroll {
  position: absolute;
  z-index: 5;
  bottom: 28px;
  left: max(24px, calc((100% - 1280px) / 2));
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(247, 250, 248, 0.62);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.hero-scroll span {
  position: relative;
  width: 20px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
}
.hero-scroll span::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 8px;
  width: 2px;
  height: 6px;
  border-radius: 2px;
  background: var(--signal);
  animation: scroll-cue 1.8s ease-in-out infinite;
}
@keyframes hud-float {
  50% {
    transform: translateY(-8px);
  }
}
@keyframes event-float {
  50% {
    transform: translateY(7px);
  }
}
@keyframes scroll-cue {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(9px);
  }
}

/* Entry motion is enabled by JavaScript so content remains visible without scripts. */
.js .hero-copy > *,
.js .hero-hud,
.js .hero-event {
  opacity: 0;
  transform: translateY(18px);
}
.js .hero.is-ready .hero-copy > *,
.js .hero.is-ready .hero-hud,
.js .hero.is-ready .hero-event {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.js .hero.is-ready .hero-copy > :nth-child(2) {
  transition-delay: 0.08s;
}
.js .hero.is-ready .hero-copy > :nth-child(3) {
  transition-delay: 0.16s;
}
.js .hero.is-ready .hero-copy > :nth-child(4) {
  transition-delay: 0.24s;
}
.js .hero.is-ready .hero-copy > :nth-child(5) {
  transition-delay: 0.32s;
}
.js .hero.is-ready .hero-hud {
  transition-delay: 0.28s;
}
.js .hero.is-ready .hero-event {
  transition-delay: 0.38s;
}

.capability-strip {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0;
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.4fr);
  align-items: center;
  gap: 44px;
  border-bottom: 1px solid var(--line);
}
.capability-strip p {
  max-width: 390px;
  margin: 0;
  color: #475569;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}
.capability-strip ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}
.capability-strip li {
  min-height: 44px;
  padding: 3px 16px;
  display: grid;
  gap: 5px;
  align-content: center;
  border-left: 1px solid var(--line);
  color: #0f172a;
  font-size: 12px;
  font-weight: 800;
}
.capability-strip li span {
  color: #2563eb;
  font-size: 9px;
  font-weight: 800;
}

.platform-section,
.solutions-section {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 124px 0;
}
.section-heading {
  max-width: 1080px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 70px;
}
.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -42px;
}
.section-heading > p:last-child {
  margin: 0 0 4px;
  color: #64748b;
  font-size: 15px;
  line-height: 1.75;
}
h2 {
  margin-bottom: 0;
  color: #0f172a;
  font-size: 50px;
  line-height: 1.06;
  letter-spacing: 0;
  font-weight: 700;
}
h3 {
  margin-bottom: 10px;
  font-size: 23px;
  letter-spacing: 0;
}

.platform-layout {
  margin-top: 70px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.72fr);
  align-items: start;
  gap: 76px;
}
.command-preview {
  position: sticky;
  top: 96px;
  overflow: hidden;
  border: 1px solid #25334a;
  border-radius: 8px;
  background: #0f172a;
  color: #f8fafc;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.18);
}
.preview-toolbar {
  min-height: 58px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.preview-toolbar > div,
.preview-live {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.preview-toolbar strong {
  font-size: 12px;
}
.preview-logo {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  color: #fff;
  background: #2563eb;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 700;
}
.preview-live {
  color: #cbd5e1;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}
.preview-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}
.preview-map {
  position: relative;
  aspect-ratio: 1.52 / 1;
  overflow: hidden;
  background: #111d32;
}
.route-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.route-map path {
  fill: none;
  vector-effect: non-scaling-stroke;
}
.road {
  stroke: #334155;
  stroke-width: 18;
  opacity: 0.66;
}
.road-two {
  stroke-width: 12;
  opacity: 0.44;
}
.live-route {
  stroke: #3b82f6;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 9 12;
  filter: drop-shadow(0 0 7px rgba(59, 130, 246, 0.68));
  animation: route-flow 1.8s linear infinite;
  animation-play-state: paused;
}
@keyframes route-flow {
  to {
    stroke-dashoffset: -42;
  }
}
.vehicle-point {
  position: absolute;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.42);
}
.vehicle-point::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(96, 165, 250, 0.5);
  border-radius: 50%;
  animation: map-ping 2.4s ease-out infinite;
  animation-play-state: paused;
}
.vehicle-point i {
  width: 6px;
  height: 9px;
  border-radius: 2px;
  background: #fff;
}
.point-one {
  left: 22%;
  bottom: 25%;
}
.point-two {
  right: 34%;
  bottom: 22%;
  animation-delay: -0.8s;
}
.point-three {
  top: 26%;
  right: 13%;
  animation-delay: -1.5s;
}
@keyframes map-ping {
  from {
    opacity: 0.8;
    transform: scale(0.65);
  }
  to {
    opacity: 0;
    transform: scale(1.55);
  }
}
.map-label {
  position: absolute;
  z-index: 2;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.86);
  font-size: 8px;
  font-weight: 800;
}
.map-label-one {
  top: 18%;
  left: 12%;
}
.map-label-two {
  top: 46%;
  right: 11%;
}
.preview-legend {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  background: rgba(15, 23, 42, 0.86);
  color: #cbd5e1;
  font-size: 8px;
  font-weight: 700;
}
.preview-legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.preview-legend i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.preview-legend .moving {
  background: #22c55e;
}
.preview-legend .parked {
  background: #3b82f6;
}
.preview-legend .attention {
  background: #ef4444;
}
.preview-status {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.preview-status div {
  min-width: 0;
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.preview-status div:last-child {
  border-right: 0;
}
.preview-status span,
.preview-status strong {
  display: block;
}
.preview-status span {
  margin-bottom: 7px;
  color: #64748b;
  font-size: 8px;
  text-transform: uppercase;
}
.preview-status strong {
  color: #f8fafc;
  font-size: 12px;
}

.feature-list {
  border-top: 1px solid var(--line);
}
.feature-list article {
  min-height: 190px;
  padding: 31px 0;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  border-bottom: 1px solid var(--line);
}
.feature-number {
  padding-top: 5px;
  color: #2563eb;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
}
.feature-list h3 {
  color: #0f172a;
}
.feature-list p {
  max-width: 430px;
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.75;
}

.ais-section {
  width: 100%;
  padding: 112px max(24px, calc((100% - 1280px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1fr);
  align-items: center;
  gap: 100px;
  background: #0f172a;
  color: #f8fafc;
}
.ais-section .eyebrow {
  color: #60a5fa;
}
.ais-section h2 {
  max-width: 650px;
  color: #fff;
}
.ais-intro > p:not(.eyebrow) {
  max-width: 590px;
  margin: 27px 0;
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.75;
}
.text-link-light {
  color: #fff;
  white-space: nowrap;
}
.ais-flow {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.ais-flow div {
  min-height: 82px;
  padding: 0 4px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}
.ais-flow div span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(96, 165, 250, 0.5);
  border-radius: 50%;
  color: #93c5fd;
  font-size: 9px;
  font-weight: 800;
}
.ais-flow div strong {
  color: #f8fafc;
  font-size: 14px;
}
.ais-flow div small {
  color: #64748b;
  font-size: 10px;
  font-weight: 700;
}
.ais-flow > i {
  display: block;
  width: 1px;
  height: 22px;
  margin: -11px 0 -11px 17px;
  background: #2563eb;
}
.ais-note {
  grid-column: 2;
  margin: -66px 0 0;
  color: #64748b;
  font-size: 10px;
  line-height: 1.6;
}

.solutions-heading {
  grid-template-columns: minmax(0, 1fr);
  max-width: 720px;
}
.solutions-heading .eyebrow {
  margin-bottom: -42px;
}
.solution-list {
  margin-top: 66px;
  border-top: 1px solid #cbd5e1;
}
.solution-list article {
  min-height: 154px;
  padding: 32px 0;
  display: grid;
  grid-template-columns: 64px minmax(180px, 0.7fr) minmax(280px, 1.15fr) auto;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid #cbd5e1;
  transition:
    color 0.2s ease,
    padding 0.25s ease;
}
.solution-list article:hover {
  padding-right: 12px;
  padding-left: 12px;
  background: #eef4ff;
}
.solution-list article > span {
  color: #2563eb;
  font-size: 10px;
  font-weight: 800;
}
.solution-list h3,
.solution-list p {
  margin: 0;
}
.solution-list h3 {
  color: #0f172a;
  font-size: 25px;
}
.solution-list p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
}
.solution-list a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #1d4ed8;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}
.solution-list a b {
  font-size: 15px;
  transition: transform 0.2s ease;
}
.solution-list a:hover b {
  transform: translate(3px, -3px);
}

.contact-section {
  padding: 96px max(24px, calc((100% - 1280px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 70px;
  background: #2563eb;
  color: #fff;
}
.contact-section .eyebrow {
  color: #bfdbfe;
}
.contact-section h2 {
  max-width: 760px;
  color: #fff;
}
.contact-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.contact-actions .button {
  color: #1e3a8a;
  background: #fff;
  box-shadow: 0 15px 34px rgba(15, 23, 42, 0.18);
}
.contact-actions .button:hover {
  background: #eff6ff;
}
.contact-actions .text-link {
  color: #fff;
}

.site-footer {
  border-top: 1px solid #243044;
  background: #0f172a;
  color: #f7faff;
}
.footer-inner {
  width: min(1280px, calc(100% - 48px));
  min-height: 230px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  align-items: center;
  gap: 48px;
}
.brand-footer {
  color: #fff;
}
.footer-brand p {
  max-width: 400px;
  margin: 18px 0 0;
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.65;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 700;
}
.footer-links a:hover,
.footer-contact:hover {
  color: #60a5fa;
}
.footer-meta {
  display: grid;
  justify-items: end;
  gap: 10px;
}
.footer-contact {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.footer-meta span {
  color: #64748b;
  font-size: 10px;
  text-transform: uppercase;
}

/* Scroll reveals animate once and never affect document flow. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
}
.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.command-preview.is-visible .live-route,
.command-preview.is-visible .vehicle-point::after {
  animation-play-state: running;
}

@media (max-width: 1100px) {
  h1 {
    font-size: 62px;
  }
  .hero-copy {
    width: min(590px, 58%);
  }
  .hero-hud {
    right: 0;
    width: 270px;
  }
  .hero-event {
    right: 5%;
  }
  .site-navigation {
    gap: 18px;
  }
  .platform-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.72fr);
    gap: 48px;
  }
  .ais-section {
    grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1fr);
    gap: 64px;
  }
  .solution-list article {
    grid-template-columns: 50px minmax(160px, 0.65fr) minmax(250px, 1fr) auto;
    gap: 20px;
  }
}

@media (max-width: 900px) {
  .capability-strip,
  .platform-section,
  .solutions-section,
  .footer-inner {
    width: min(100% - 32px, 680px);
  }
  .site-header {
    padding: 14px 16px 0;
  }
  .site-header.is-scrolled {
    padding-top: 8px;
  }
  .nav-shell {
    min-height: 58px;
    padding: 0 8px 0 10px;
  }
  .menu-toggle {
    position: relative;
    z-index: 62;
    display: inline-grid;
    place-items: center;
  }
  .site-navigation {
    position: fixed;
    z-index: 60;
    top: 84px;
    right: 16px;
    left: auto;
    width: min(360px, calc(100vw - 32px));
    max-height: calc(100dvh - 100px);
    display: grid;
    align-items: stretch;
    justify-content: stretch;
    padding: 10px 16px 16px;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 8px;
    background: rgba(8, 18, 36, 0.98);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
    transform: translateY(-10px) scale(0.985);
    transform-origin: top right;
    pointer-events: none;
    transition:
      opacity 0.2s ease,
      transform 0.2s ease,
      visibility 0.2s ease;
  }
  .site-navigation.is-open {
    visibility: visible;
    opacity: 1;
    justify-items: stretch;
    gap: 0;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  body.menu-open {
    overflow: hidden;
  }
  body.menu-open::before {
    content: "";
    position: fixed;
    z-index: 45;
    inset: 0;
    background: rgba(2, 8, 23, 0.58);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }
  .site-navigation a {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
  }
  .site-navigation > a:not(.button) {
    color: #dbe5f2;
    font-size: 14px;
  }
  .site-navigation > a:not(.button)[aria-current="page"] {
    color: #fff;
  }
  .site-navigation > a:not(.button)::after {
    display: none;
  }
  .site-navigation .nav-login {
    margin-top: 8px;
    border-bottom: 0;
    color: #93c5fd !important;
  }
  .site-navigation .button {
    width: 100%;
    margin-top: 8px;
    border-bottom: 0;
  }
  .nav-divider {
    display: none;
  }
  .hero {
    height: min(830px, calc(100svh - 24px));
    min-height: 760px;
  }
  .hero::before {
    background: rgba(6, 11, 20, 0.5);
  }
  .hero-media {
    inset: -12px;
  }
  .hero-media img {
    object-position: 68% center;
    transform: translate3d(0, 0, 0) scale(1.04);
  }
  .hero-shell {
    width: min(100% - 32px, 680px);
    align-items: flex-start;
    padding-top: 132px;
  }
  .hero-copy {
    width: min(570px, 100%);
    padding-top: 0;
  }
  h1 {
    font-size: 54px;
  }
  h2 {
    font-size: 42px;
  }
  .hero-description {
    max-width: 530px;
    color: rgba(247, 250, 248, 0.82);
  }
  .hero-hud {
    top: auto;
    right: 16px;
    bottom: 66px;
    left: 16px;
    width: auto;
    animation: none;
  }
  .hero-event {
    display: none;
  }
  .hero-scroll {
    display: none;
  }
  .capability-strip {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }
  .capability-strip ul {
    width: 100%;
  }
  .capability-strip li:first-child {
    border-left: 0;
  }
  .platform-section,
  .solutions-section {
    padding: 86px 0;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .section-heading .eyebrow,
  .solutions-heading .eyebrow {
    margin-bottom: -8px;
  }
  .section-heading > p:last-child {
    max-width: 580px;
  }
  .platform-layout {
    margin-top: 48px;
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .command-preview {
    position: relative;
    top: auto;
  }
  .feature-list article {
    min-height: 0;
  }
  .ais-section {
    padding: 86px 32px;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 48px;
  }
  .ais-intro > p:not(.eyebrow) {
    max-width: 650px;
  }
  .ais-flow {
    max-width: 650px;
    width: 100%;
  }
  .ais-note {
    grid-column: auto;
    margin: -26px 0 0;
    max-width: 650px;
  }
  .solution-list article {
    grid-template-columns: 42px minmax(150px, 0.65fr) minmax(230px, 1fr);
  }
  .solution-list article a {
    grid-column: 2;
  }
  .contact-section {
    padding: 78px 32px;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 34px;
  }
  .contact-actions {
    flex-wrap: wrap;
  }
  .footer-inner {
    min-height: 0;
    padding: 46px 0;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-meta {
    justify-items: start;
  }
}

@media (max-width: 480px) {
  .capability-strip,
  .platform-section,
  .solutions-section,
  .footer-inner {
    width: calc(100% - 28px);
  }
  .site-header {
    padding-right: 12px;
    padding-left: 12px;
  }
  .brand-mark,
  .brand img {
    width: 34px;
    height: 34px;
  }
  .brand-word {
    font-size: 20px;
  }
  .site-navigation {
    right: 12px;
    left: 12px;
  }
  .hero {
    height: min(820px, calc(100svh - 20px));
    min-height: 740px;
  }
  .hero-shell {
    width: calc(100% - 28px);
    padding-top: 116px;
  }
  .hero-kicker {
    margin-bottom: 20px;
    font-size: 10px;
  }
  h1 {
    font-size: 44px;
    line-height: 1.02;
  }
  h1 span {
    margin-bottom: 12px;
    font-size: 13px;
  }
  h2 {
    font-size: 34px;
  }
  .hero-description {
    margin-bottom: 26px;
    font-size: 15px;
    line-height: 1.58;
  }
  .hero-actions {
    gap: 10px;
  }
  .button-primary,
  .button-quiet {
    min-height: 48px;
    padding: 0 14px;
    font-size: 12px;
  }
  .hero-proof {
    margin-top: 28px;
    gap: 9px 15px;
    font-size: 10px;
  }
  .hero-hud {
    right: 14px;
    bottom: 52px;
    left: 14px;
  }
  .hud-header {
    min-height: 42px;
  }
  .hud-body div {
    padding: 12px 9px 14px;
  }
  .hud-body span {
    font-size: 7px;
  }
  .hud-body strong {
    font-size: 11px;
  }
  .capability-strip {
    padding: 28px 0;
  }
  .capability-strip ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .capability-strip li {
    padding: 9px 12px;
    border-bottom: 1px solid var(--line);
  }
  .capability-strip li:nth-child(odd) {
    border-left: 0;
  }
  .capability-strip li:nth-child(n + 3) {
    border-bottom: 0;
  }
  .platform-section,
  .solutions-section {
    padding: 72px 0;
  }
  .section-heading {
    gap: 20px;
  }
  .section-heading .eyebrow,
  .solutions-heading .eyebrow {
    margin-bottom: -6px;
  }
  .section-heading > p:last-child {
    font-size: 14px;
    line-height: 1.65;
  }
  .platform-layout {
    margin-top: 38px;
    gap: 34px;
  }
  .preview-toolbar {
    min-height: 50px;
    padding: 0 12px;
  }
  .preview-map {
    aspect-ratio: 1.16 / 1;
  }
  .map-label-two {
    display: none;
  }
  .preview-status div {
    padding: 12px 9px;
  }
  .preview-status span {
    font-size: 6px;
  }
  .preview-status strong {
    font-size: 10px;
  }
  .feature-list article {
    padding: 26px 0;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px;
  }
  .feature-list h3 {
    font-size: 20px;
  }
  .feature-list p {
    font-size: 13px;
    line-height: 1.65;
  }
  .ais-section {
    padding: 72px 18px;
    gap: 38px;
  }
  .ais-intro > p:not(.eyebrow) {
    margin: 22px 0;
    font-size: 14px;
    line-height: 1.65;
  }
  .ais-flow div {
    min-height: 76px;
    grid-template-columns: 38px minmax(0, 1fr);
  }
  .ais-flow div small {
    grid-column: 2;
    margin-top: -25px;
  }
  .ais-flow > i {
    margin-left: 15px;
  }
  .ais-note {
    margin-top: -20px;
  }
  .solution-list {
    margin-top: 42px;
  }
  .solution-list article {
    min-height: 0;
    padding: 28px 0;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px 8px;
  }
  .solution-list article:hover {
    padding-right: 0;
    padding-left: 0;
    background: transparent;
  }
  .solution-list h3 {
    font-size: 22px;
  }
  .solution-list p,
  .solution-list article a {
    grid-column: 2;
  }
  .solution-list p {
    font-size: 13px;
  }
  .contact-section {
    padding: 68px 18px;
    gap: 30px;
  }
  .contact-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-links {
    gap: 12px 18px;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 40px;
  }
  .hero {
    min-height: 800px;
  }
  .hero-actions .button {
    width: 100%;
  }
  .hero-proof {
    gap: 8px 12px;
  }
}

@media (max-width: 900px) and (max-height: 560px) and (orientation: landscape) {
  .hero {
    height: 590px;
    min-height: 590px;
  }
  .hero-shell {
    width: calc(100% - 32px);
    padding-top: 105px;
  }
  .hero-copy {
    width: 58%;
  }
  .hero-kicker {
    margin-bottom: 14px;
  }
  h1 {
    margin-bottom: 15px;
    font-size: 42px;
  }
  h1 span {
    margin-bottom: 9px;
    font-size: 12px;
  }
  .hero-description {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.5;
  }
  .button-primary,
  .button-quiet {
    min-height: 44px;
    padding: 0 13px;
    font-size: 11px;
  }
  .hero-proof {
    margin-top: 18px;
    gap: 8px 13px;
    font-size: 9px;
  }
  .hero-hud {
    top: 150px;
    right: 16px;
    bottom: auto;
    left: auto;
    width: 36%;
  }
}

@media (max-width: 699px) and (max-height: 560px) and (orientation: landscape) {
  .hero {
    height: 620px;
    min-height: 620px;
  }
  .hero-copy {
    width: min(540px, 100%);
  }
  .hero-hud {
    display: none;
  }
}

@media (max-height: 700px) and (min-width: 901px) {
  .hero {
    min-height: 660px;
  }
  .hero-copy {
    padding-top: 64px;
  }
  h1 {
    font-size: 60px;
  }
  .hero-proof {
    margin-top: 28px;
  }
}

@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;
  }
  .hero-media img {
    transform: scale(1.035) !important;
  }
}

/* =====================================================
   Home page editorial system
   ===================================================== */

.home-page {
  background: #f8fafc;
}
.home-page h2 {
  margin: 0;
  color: #0f172a;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(38px, 4.6vw, 64px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.04;
}
.home-page .eyebrow {
  margin: 0 0 22px;
  color: #2563eb;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.home-page .text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 800;
}
.home-page .text-link span {
  transition: transform 0.2s ease;
}
.home-page .text-link:hover span {
  transform: translateX(4px);
}

/* Platform context gives the hero a deliberate, information-rich follow-through. */
.home-intro {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 126px 0 116px;
}
.home-intro-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: clamp(70px, 10vw, 150px);
  align-items: end;
}
.home-intro-inner h2 {
  max-width: 760px;
}
.home-intro-copy p {
  margin: 0 0 30px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.82;
}
.context-rail {
  margin-top: 88px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #cbd5e1;
  border-bottom: 1px solid #cbd5e1;
}
.context-rail article {
  min-height: 225px;
  padding: 34px 36px 34px 0;
}
.context-rail article:not(:last-child) {
  margin-right: 36px;
  border-right: 1px solid #cbd5e1;
}
.context-rail span {
  display: block;
  margin-bottom: 58px;
  color: #2563eb;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}
.context-rail strong {
  display: block;
  margin-bottom: 13px;
  color: #0f172a;
  font-size: 18px;
  line-height: 1.4;
}
.context-rail p {
  margin: 0;
  color: #64748b;
  font-size: 12px;
  line-height: 1.7;
}

/* Interactive product explorer keeps controls and preview dimensions stable. */
.platform-explorer {
  padding: 118px max(24px, calc((100% - 1280px) / 2));
  background: #eef3f9;
}
.explorer-heading {
  max-width: 800px;
}
.explorer-heading > p:last-child {
  max-width: 640px;
  margin: 28px 0 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.75;
}
.explorer-layout {
  margin-top: 72px;
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(600px, 1.38fr);
  gap: 48px;
  align-items: stretch;
}
.explorer-tabs {
  border-top: 1px solid #cbd5e1;
}
.explorer-tabs button {
  width: 100%;
  min-height: 132px;
  padding: 24px 18px 24px 0;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-content: center;
  gap: 5px 12px;
  border: 0;
  border-bottom: 1px solid #cbd5e1;
  color: #64748b;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition:
    color 0.2s ease,
    padding 0.2s ease,
    background 0.2s ease;
}
.explorer-tabs button span {
  grid-row: 1 / 3;
  padding-top: 3px;
  color: #94a3b8;
  font-size: 9px;
  font-weight: 800;
}
.explorer-tabs button strong {
  color: #334155;
  font-size: 17px;
}
.explorer-tabs button small {
  font-size: 11px;
}
.explorer-tabs button:hover {
  padding-left: 10px;
  color: #475569;
}
.explorer-tabs button[aria-selected="true"] {
  padding-left: 14px;
  color: #1d4ed8;
  background: #fff;
}
.explorer-tabs button[aria-selected="true"] strong {
  color: #0f172a;
}
.explorer-tabs button:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.3);
  outline-offset: -3px;
}
.explorer-stage {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #26344d;
  border-radius: 7px;
  color: #f8fafc;
  background: #0f172a;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.2);
}
.explorer-topbar {
  min-height: 64px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.explorer-topbar > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.explorer-topbar strong {
  font-size: 12px;
}
.explorer-map {
  position: relative;
  height: 430px;
  overflow: hidden;
  background: #111c30;
}
.explorer-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
}
.map-road {
  position: absolute;
  height: 20px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 50%;
  background: rgba(51, 65, 85, 0.65);
  transform-origin: center;
}
.road-a {
  width: 120%;
  top: 48%;
  left: -10%;
  transform: rotate(-17deg);
}
.road-b {
  width: 90%;
  top: 46%;
  right: -28%;
  transform: rotate(61deg);
}
.road-c {
  width: 72%;
  bottom: 4%;
  left: -12%;
  transform: rotate(34deg);
}
.animated-route {
  position: absolute;
  width: 78%;
  height: 46%;
  top: 27%;
  left: 8%;
  border-top: 4px solid #3b82f6;
  border-right: 4px solid #3b82f6;
  border-radius: 46% 56% 38% 42%;
  transform: rotate(-10deg);
  filter: drop-shadow(0 0 7px rgba(59, 130, 246, 0.7));
}
.animated-route::after {
  content: "";
  position: absolute;
  top: 54%;
  right: -9px;
  width: 14px;
  height: 14px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #22c55e;
  animation: explorer-pulse 2.1s ease-out infinite;
}
@keyframes explorer-pulse {
  from {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.35);
  }
  to {
    box-shadow: 0 0 0 18px rgba(34, 197, 94, 0);
  }
}
.fleet-marker {
  position: absolute;
  z-index: 2;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}
.fleet-marker i {
  width: 5px;
  height: 9px;
  border-radius: 2px;
  background: #fff;
}
.marker-one {
  top: 31%;
  left: 29%;
}
.marker-two {
  right: 23%;
  bottom: 28%;
}
.marker-three {
  right: 38%;
  top: 47%;
}
.explorer-stage[data-platform-stage="alerts"] .fleet-marker {
  background: #dc2626;
}
.explorer-stage[data-platform-stage="alerts"] .marker-two {
  transform: scale(1.28);
  box-shadow: 0 0 0 12px rgba(220, 38, 38, 0.14);
}
.explorer-stage[data-platform-stage="history"] .animated-route {
  border-top-style: dashed;
  border-right-style: dashed;
  animation: history-route 1.4s linear infinite;
}
@keyframes history-route {
  to {
    filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.9));
  }
}
.map-readout {
  position: absolute;
  z-index: 3;
  min-width: 138px;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  background: rgba(15, 23, 42, 0.9);
}
.map-readout small,
.map-readout strong {
  display: block;
}
.map-readout small {
  margin-bottom: 7px;
  color: #64748b;
  font-size: 7px;
  font-weight: 800;
  text-transform: uppercase;
}
.map-readout strong {
  font-size: 12px;
}
.readout-one {
  top: 9%;
  right: 7%;
}
.readout-two {
  bottom: 8%;
  left: 6%;
}
.explorer-panels {
  min-height: 220px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.platform-panel {
  min-height: 220px;
  padding: 30px 34px;
  animation: panel-in 0.35s ease both;
}
@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.platform-panel > span {
  color: #60a5fa;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}
.platform-panel h3 {
  max-width: 620px;
  margin: 16px 0 10px;
  color: #fff;
  font-size: 25px;
  line-height: 1.25;
}
.platform-panel p {
  max-width: 690px;
  margin: 0;
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.7;
}

/* Tracking story uses the image as the primary visual, not a decorative card. */
.tracking-story {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(420px, 0.82fr);
  min-height: 760px;
  background: #fff;
}
.tracking-media {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}
.tracking-media picture,
.tracking-media img {
  width: 100%;
  height: 100%;
  display: block;
}
.tracking-media img {
  object-fit: cover;
  object-position: 64% center;
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.tracking-media.is-visible img {
  transform: scale(1.025);
}
.tracking-scan {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30%;
  width: 22%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(96, 165, 250, 0.18),
    transparent
  );
  transform: skewX(-14deg);
  animation: tracking-scan 6s ease-in-out infinite;
}
@keyframes tracking-scan {
  0%,
  18% {
    left: -30%;
  }
  68%,
  100% {
    left: 112%;
  }
}
.tracking-caption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 15px 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  color: #fff;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(12px);
}
.tracking-caption i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.14);
}
.tracking-caption small,
.tracking-caption strong {
  display: block;
}
.tracking-caption small {
  margin-bottom: 3px;
  color: #94a3b8;
  font-size: 7px;
  text-transform: uppercase;
}
.tracking-caption strong {
  font-size: 11px;
}
.tracking-copy {
  padding: 110px clamp(40px, 7vw, 110px);
  align-self: center;
}
.tracking-copy h2 {
  max-width: 650px;
  font-size: clamp(38px, 4.2vw, 58px);
}
.tracking-copy > p:not(.eyebrow) {
  margin: 28px 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.78;
}
.tracking-copy ul {
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
  border-top: 1px solid #dbe3ee;
}
.tracking-copy li {
  position: relative;
  padding: 17px 0 17px 24px;
  border-bottom: 1px solid #dbe3ee;
  color: #334155;
  font-size: 12px;
  line-height: 1.55;
}
.tracking-copy li::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2563eb;
}

/* Event console section. */
.alert-section {
  padding: 126px 24px;
  color: #f8fafc;
  background: #0f172a;
}
.alert-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(460px, 1.16fr);
  gap: clamp(70px, 10vw, 150px);
  align-items: center;
}
.alert-copy .eyebrow {
  color: #60a5fa;
}
.alert-copy h2 {
  color: #fff;
}
.alert-copy > p:not(.eyebrow) {
  margin: 28px 0;
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.78;
}
.event-console {
  overflow: hidden;
  border: 1px solid #334155;
  border-radius: 7px;
  background: #111c30;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.3);
}
.console-header,
.console-footer {
  min-height: 62px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.console-header {
  border-bottom: 1px solid #273449;
}
.console-header > span,
.console-footer span {
  color: #64748b;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}
.console-header strong {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
  font-size: 9px;
  text-transform: uppercase;
}
.console-header i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: console-pulse 1.8s ease-in-out infinite;
}
@keyframes console-pulse {
  50% {
    opacity: 0.35;
  }
}
.event-row {
  min-height: 98px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid #273449;
}
.event-row > b {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid #475569;
  border-radius: 5px;
  color: #93c5fd;
  font-size: 13px;
}
.event-row span strong,
.event-row span small {
  display: block;
}
.event-row span strong {
  margin-bottom: 7px;
  color: #e2e8f0;
  font-size: 13px;
}
.event-row span small {
  color: #64748b;
  font-size: 9px;
}
.event-row time {
  color: #64748b;
  font-size: 9px;
}
.event-row-active {
  background: #17233a;
}
.event-row-active > b {
  border-color: rgba(239, 68, 68, 0.5);
  color: #fecaca;
  background: rgba(239, 68, 68, 0.12);
}
.console-footer strong {
  color: #60a5fa;
  font-size: 10px;
}

/* Journey timeline communicates sequence without a chart library. */
.history-section {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 126px 0;
}
.history-heading {
  max-width: 800px;
}
.history-heading > p:last-child {
  max-width: 650px;
  margin: 28px 0 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.75;
}
.journey-board {
  position: relative;
  min-height: 340px;
  margin-top: 78px;
  border-top: 1px solid #cbd5e1;
  border-bottom: 1px solid #cbd5e1;
}
.journey-route {
  position: absolute;
  top: 104px;
  right: 8%;
  left: 8%;
  height: 4px;
}
.journey-line {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background: #dbe3ee;
}
.journey-line::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  border-radius: inherit;
  background: #2563eb;
  transition: width 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) 0.25s;
}
.journey-board.is-visible .journey-line::after {
  width: 100%;
}
.journey-node {
  position: absolute;
  z-index: 2;
  top: -8px;
  width: 20px;
  height: 20px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 0 1px #2563eb;
}
.node-start {
  left: 0;
}
.node-stop {
  left: 50%;
  transform: translateX(-50%);
}
.node-end {
  right: 0;
  background: #22c55e;
  box-shadow: 0 0 0 1px #22c55e;
}
.journey-item {
  position: absolute;
  top: 145px;
  width: 27%;
}
.journey-start {
  left: 2%;
}
.journey-stop {
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.journey-end {
  right: 2%;
  text-align: right;
}
.journey-item span,
.journey-item strong,
.journey-item small {
  display: block;
}
.journey-item span {
  margin-bottom: 20px;
  color: #2563eb;
  font-size: 10px;
  font-weight: 800;
}
.journey-item strong {
  margin-bottom: 9px;
  color: #0f172a;
  font-size: 16px;
}
.journey-item small {
  color: #64748b;
  font-size: 10px;
}
.history-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid #cbd5e1;
}
.history-links a {
  min-height: 138px;
  padding: 28px 28px 28px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.history-links a:not(:last-child) {
  margin-right: 28px;
  border-right: 1px solid #cbd5e1;
}
.history-links span {
  color: #2563eb;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}
.history-links strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #0f172a;
  font-size: 13px;
}
.history-links b {
  color: #2563eb;
  transition: transform 0.2s ease;
}
.history-links a:hover b {
  transform: translateX(4px);
}

/* AIS-140 uses a real integration scene as an unframed full-width background. */
.ais-home {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #f8fafc;
  background: #0f172a;
}
.ais-home::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 15, 31, 0.98),
    rgba(7, 15, 31, 0.9) 48%,
    rgba(7, 15, 31, 0.28)
  );
}
.ais-home-media,
.ais-home-media picture,
.ais-home-media img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ais-home-media img {
  object-fit: cover;
  object-position: center;
}
.ais-home-inner {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 0.75fr);
  justify-content: space-between;
  gap: 100px;
  align-items: center;
}
.ais-home-copy .eyebrow {
  color: #60a5fa;
}
.ais-home-copy h2 {
  max-width: 700px;
  color: #fff;
}
.ais-home-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px 0 34px;
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.76;
}
.ais-home-flow {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.ais-home-flow > div {
  min-height: 104px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-content: center;
  gap: 5px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.ais-home-flow span {
  grid-row: 1 / 3;
  padding-top: 4px;
  color: #60a5fa;
  font-size: 9px;
  font-weight: 800;
}
.ais-home-flow strong {
  color: #f8fafc;
  font-size: 14px;
}
.ais-home-flow small {
  color: #64748b;
  font-size: 10px;
}
.ais-home-flow > p {
  margin: 24px 0 0;
  color: #64748b;
  font-size: 10px;
  line-height: 1.7;
}

/* Solution panels reveal the actual operating context. */
.home-solutions {
  padding: 126px max(24px, calc((100% - 1280px) / 2));
  background: #fff;
}
.home-solutions-heading {
  max-width: 820px;
}
.solution-panels {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.solution-panel {
  position: relative;
  isolation: isolate;
  min-height: 610px;
  overflow: hidden;
  border-radius: 6px;
  color: #fff;
  background: #0f172a;
}
.solution-panel picture,
.solution-panel img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.solution-panel img {
  object-fit: cover;
  transition:
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.4s ease;
}
.solution-panel-shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(7, 15, 31, 0.98) 0%,
    rgba(7, 15, 31, 0.52) 55%,
    rgba(7, 15, 31, 0.1) 100%
  );
}
.solution-panel-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 260px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.solution-panel-copy small {
  color: #93c5fd;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}
.solution-panel-copy strong {
  margin: auto 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 32px;
  letter-spacing: 0;
}
.solution-panel-copy em {
  min-height: 44px;
  color: #cbd5e1;
  font-size: 12px;
  font-style: normal;
  line-height: 1.65;
}
.solution-panel-copy b {
  margin-top: 23px;
  color: #fff;
  font-size: 10px;
}
.solution-panel:hover img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

/* Device marquee uses repeated labels only for a continuous, non-data animation. */
.device-home {
  padding: 116px 0;
  overflow: hidden;
  color: #f8fafc;
  background: #0f172a;
}
.device-home-heading,
.device-home-action {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}
.device-home-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.7fr);
  gap: 90px;
  align-items: end;
}
.device-home-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -58px;
  color: #60a5fa;
}
.device-home-heading h2 {
  color: #fff;
}
.device-home-heading > p:last-child {
  margin: 0;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.75;
}
.device-marquee {
  margin: 82px 0 52px;
  overflow: hidden;
  border-top: 1px solid #334155;
  border-bottom: 1px solid #334155;
}
.device-track {
  width: max-content;
  min-height: 118px;
  display: flex;
  align-items: center;
  gap: 42px;
  animation: device-flow 28s linear infinite;
}
.device-track span {
  color: #e2e8f0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  font-weight: 600;
  white-space: nowrap;
}
.device-track i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2563eb;
}
@keyframes device-flow {
  to {
    transform: translateX(-48%);
  }
}
.device-home-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 50px;
}
.device-home-action p {
  max-width: 760px;
  margin: 0;
  color: #64748b;
  font-size: 12px;
  line-height: 1.7;
}
.device-home-action .text-link {
  color: #fff;
  white-space: nowrap;
}

/* Trust principles use one unframed grid, not nested cards. */
.trust-section {
  padding: 126px max(24px, calc((100% - 1280px) / 2));
  background: #eef3f9;
}
.trust-heading {
  max-width: 880px;
}
.trust-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #cbd5e1;
  border-left: 1px solid #cbd5e1;
}
.trust-grid article {
  min-height: 250px;
  padding: 32px;
  border-right: 1px solid #cbd5e1;
  border-bottom: 1px solid #cbd5e1;
}
.trust-grid span {
  color: #2563eb;
  font-size: 9px;
  font-weight: 800;
}
.trust-grid h3 {
  margin: 70px 0 13px;
  color: #0f172a;
  font-size: 22px;
}
.trust-grid p {
  max-width: 480px;
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.7;
}

/* FAQ relies on native details for keyboard and screen-reader behaviour. */
.faq-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 126px 0;
  display: grid;
  grid-template-columns: minmax(290px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(70px, 10vw, 150px);
  align-items: start;
}
.faq-heading {
  position: sticky;
  top: 110px;
}
.faq-heading > p:last-child {
  margin: 26px 0 0;
  color: #64748b;
  font-size: 14px;
}
.faq-list {
  border-top: 1px solid #cbd5e1;
}
.faq-list details {
  border-bottom: 1px solid #cbd5e1;
}
.faq-list summary {
  position: relative;
  min-height: 104px;
  padding: 30px 54px 30px 0;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  color: #0f172a;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  color: #2563eb;
  font-size: 9px;
  font-weight: 800;
}
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid #cbd5e1;
  border-radius: 50%;
  color: #2563eb;
  font-size: 16px;
}
.faq-list details[open] summary::after {
  content: "−";
  color: #fff;
  background: #2563eb;
  border-color: #2563eb;
}
.faq-list details > div {
  padding: 0 54px 30px 50px;
}
.faq-list details p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.78;
}

/* Closing CTA and full discovery footer. */
.home-cta {
  padding: 100px max(24px, calc((100% - 1280px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 80px;
  color: #fff;
  background: #2563eb;
}
.home-cta .eyebrow {
  color: #bfdbfe;
}
.home-cta h2 {
  max-width: 830px;
  color: #fff;
}
.home-cta-copy > p:last-child {
  max-width: 650px;
  margin: 27px 0 0;
  color: #dbeafe;
  font-size: 14px;
  line-height: 1.7;
}
.home-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.home-cta-actions .button {
  color: #1e3a8a;
  background: #fff;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.2);
}
.home-cta-actions .text-link {
  color: #fff;
  white-space: nowrap;
}
.home-footer {
  color: #f8fafc;
  background: #0b1220;
}
.footer-main {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 82px 0 72px;
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(4, minmax(130px, 0.65fr));
  gap: 58px;
}
.footer-identity p {
  max-width: 390px;
  margin: 24px 0;
  color: #94a3b8;
  font-size: 12px;
  line-height: 1.75;
}
.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.footer-email span {
  color: #60a5fa;
}
.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}
.footer-social-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #263449;
  border-radius: 50%;
  color: #cbd5e1;
  background: #111c2e;
}
.footer-social-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-social-icon .social-icon-fill {
  fill: currentColor;
  stroke: none;
}
.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.footer-column h2 {
  margin: 4px 0 16px;
  color: #64748b;
  font-family: "Manrope", sans-serif;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}
.footer-column a {
  color: #cbd5e1;
  font-size: 11px;
  font-weight: 600;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}
.footer-column a:hover {
  color: #60a5fa;
  transform: translateX(3px);
}
.footer-bottom {
  min-height: 70px;
  padding: 0 max(24px, calc((100% - 1280px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid #1e293b;
  color: #64748b;
  font-size: 9px;
}
.footer-bottom a {
  color: #cbd5e1;
  font-weight: 700;
}

/* Stagger complex repeated elements without delaying page usability. */
.js .context-rail.is-visible article:nth-child(2),
.js .trust-grid article:nth-child(2),
.js .solution-panels .solution-panel:nth-child(2) {
  transition-delay: 0.08s;
}
.js .context-rail.is-visible article:nth-child(3),
.js .trust-grid article:nth-child(3),
.js .solution-panels .solution-panel:nth-child(3) {
  transition-delay: 0.16s;
}
.js .trust-grid article:nth-child(4) {
  transition-delay: 0.24s;
}

@media (max-width: 1100px) {
  .explorer-layout {
    grid-template-columns: minmax(230px, 0.55fr) minmax(520px, 1.45fr);
    gap: 32px;
  }
  .tracking-story {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.92fr);
  }
  .tracking-copy {
    padding-right: 48px;
    padding-left: 48px;
  }
  .solution-panel {
    min-height: 540px;
  }
  .solution-panel-copy {
    padding: 26px;
  }
  .footer-main {
    grid-template-columns: 1.2fr repeat(4, 0.65fr);
    gap: 34px;
  }
}

@media (max-width: 900px) {
  .home-intro,
  .history-section,
  .faq-section {
    width: min(680px, calc(100% - 32px));
  }
  .home-intro {
    padding: 88px 0;
  }
  .home-intro-inner,
  .device-home-heading {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .context-rail {
    margin-top: 58px;
    grid-template-columns: 1fr;
  }
  .context-rail article {
    min-height: 0;
    padding: 28px 0;
  }
  .context-rail article:not(:last-child) {
    margin-right: 0;
    border-right: 0;
    border-bottom: 1px solid #cbd5e1;
  }
  .context-rail span {
    margin-bottom: 24px;
  }
  .platform-explorer {
    padding: 88px 20px;
  }
  .explorer-layout {
    margin-top: 52px;
    grid-template-columns: 1fr;
  }
  .explorer-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .explorer-tabs button {
    min-height: 112px;
    padding: 18px 12px;
    border-right: 1px solid #cbd5e1;
  }
  .explorer-tabs button[aria-selected="true"],
  .explorer-tabs button:hover {
    padding-left: 12px;
  }
  .explorer-tabs button span {
    grid-row: auto;
  }
  .explorer-tabs button small {
    grid-column: 1 / -1;
  }
  .tracking-story {
    grid-template-columns: 1fr;
  }
  .tracking-media {
    min-height: 540px;
  }
  .tracking-copy {
    padding: 80px 32px;
  }
  .alert-section {
    padding: 88px 20px;
  }
  .alert-shell {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .journey-board {
    min-height: 600px;
  }
  .journey-route {
    top: 72px;
    bottom: 72px;
    left: 34px;
    right: auto;
    width: 4px;
    height: auto;
  }
  .journey-line {
    width: 4px;
    height: 100%;
  }
  .journey-line::after {
    width: 4px;
    height: 0;
    transition-property: height;
  }
  .journey-board.is-visible .journey-line::after {
    width: 4px;
    height: 100%;
  }
  .journey-node {
    left: -8px !important;
    right: auto;
    transform: none;
  }
  .node-start {
    top: 0;
  }
  .node-stop {
    top: 50%;
    transform: translateY(-50%);
  }
  .node-end {
    top: auto;
    bottom: 0;
  }
  .journey-item {
    left: 84px;
    right: 20px;
    width: auto;
    transform: none;
    text-align: left;
  }
  .journey-start {
    top: 55px;
  }
  .journey-stop {
    top: 270px;
  }
  .journey-end {
    top: 485px;
  }
  .history-links {
    grid-template-columns: 1fr;
  }
  .history-links a {
    min-height: 110px;
    padding: 24px 0;
  }
  .history-links a:not(:last-child) {
    margin-right: 0;
    border-right: 0;
    border-bottom: 1px solid #cbd5e1;
  }
  .ais-home {
    min-height: 880px;
  }
  .ais-home::before {
    background: rgba(7, 15, 31, 0.84);
  }
  .ais-home-inner {
    width: min(680px, calc(100% - 32px));
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .solution-panels {
    grid-template-columns: 1fr;
  }
  .solution-panel {
    min-height: 480px;
  }
  .device-home {
    padding: 88px 0;
  }
  .device-home-heading,
  .device-home-action {
    width: min(680px, calc(100% - 32px));
  }
  .device-home-heading .eyebrow {
    grid-column: auto;
    margin-bottom: -12px;
  }
  .device-home-action {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .trust-section {
    padding: 88px 20px;
  }
  .faq-section {
    padding: 88px 0;
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .faq-heading {
    position: static;
  }
  .home-cta {
    padding: 78px 32px;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 42px;
  }
  .footer-main {
    width: min(680px, calc(100% - 32px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-identity {
    grid-column: 1 / -1;
    padding-bottom: 20px;
  }
  .footer-bottom {
    padding: 22px 32px;
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .home-page h2 {
    font-size: 35px;
  }
  .home-intro,
  .history-section,
  .faq-section {
    width: calc(100% - 28px);
  }
  .home-intro {
    padding: 72px 0;
  }
  .home-intro-copy p {
    font-size: 14px;
    line-height: 1.72;
  }
  .platform-explorer {
    padding: 72px 14px;
  }
  .explorer-heading > p:last-child {
    font-size: 13px;
  }
  .explorer-tabs {
    overflow-x: auto;
    grid-template-columns: repeat(3, minmax(150px, 1fr));
  }
  .explorer-tabs button {
    min-height: 102px;
  }
  .explorer-map {
    height: 330px;
  }
  .map-readout {
    min-width: 116px;
    padding: 11px;
  }
  .readout-two {
    display: none;
  }
  .platform-panel {
    min-height: 255px;
    padding: 25px 22px;
  }
  .platform-panel h3 {
    font-size: 21px;
  }
  .tracking-media {
    min-height: 400px;
  }
  .tracking-caption {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }
  .tracking-copy {
    padding: 68px 18px;
  }
  .tracking-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .alert-section {
    padding: 72px 14px;
  }
  .event-row {
    min-height: 92px;
    padding: 16px 14px;
    grid-template-columns: 34px minmax(0, 1fr);
  }
  .event-row time {
    display: none;
  }
  .history-section {
    padding: 72px 0;
  }
  .history-heading > p:last-child {
    font-size: 13px;
  }
  .journey-board {
    margin-top: 48px;
  }
  .journey-item {
    left: 68px;
    right: 10px;
  }
  .ais-home {
    min-height: 900px;
    padding: 72px 0;
  }
  .ais-home-inner {
    width: calc(100% - 28px);
  }
  .ais-home-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .home-solutions {
    padding: 72px 14px;
  }
  .solution-panels {
    margin-top: 48px;
  }
  .solution-panel {
    min-height: 440px;
  }
  .solution-panel-copy {
    min-height: 230px;
    padding: 24px;
  }
  .solution-panel-copy strong {
    font-size: 28px;
  }
  .device-home {
    padding: 72px 0;
  }
  .device-home-heading,
  .device-home-action {
    width: calc(100% - 28px);
  }
  .device-marquee {
    margin: 58px 0 40px;
  }
  .device-track {
    min-height: 96px;
    gap: 30px;
  }
  .device-track span {
    font-size: 22px;
  }
  .trust-section {
    padding: 72px 14px;
  }
  .trust-grid {
    margin-top: 48px;
    grid-template-columns: 1fr;
  }
  .trust-grid article {
    min-height: 210px;
    padding: 25px;
  }
  .trust-grid h3 {
    margin-top: 48px;
    font-size: 20px;
  }
  .faq-section {
    padding: 72px 0;
  }
  .faq-list summary {
    min-height: 96px;
    padding-right: 44px;
    grid-template-columns: 28px minmax(0, 1fr);
    font-size: 14px;
  }
  .faq-list details > div {
    padding-right: 18px;
    padding-left: 40px;
  }
  .home-cta {
    padding: 68px 18px;
  }
  .home-cta-actions,
  .home-cta-actions .button {
    width: 100%;
  }
  .footer-main {
    width: calc(100% - 28px);
    padding: 52px 0 46px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 34px;
  }
  .footer-identity {
    grid-column: 1 / -1;
    padding-bottom: 4px;
  }
  .footer-column {
    min-width: 0;
    padding-top: 22px;
    border-top: 1px solid #1e293b;
  }
  .footer-column a {
    max-width: 100%;
    overflow-wrap: anywhere;
    line-height: 1.45;
  }
  .home-page .footer-column h2 {
    margin-bottom: 8px;
    font-size: 10px;
  }
  .footer-bottom {
    padding: 22px 14px;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 340px) {
  .footer-main {
    grid-template-columns: 1fr;
  }
  .footer-identity {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tracking-scan,
  .device-track,
  .animated-route::after,
  .console-header i {
    animation: none !important;
  }
  .tracking-media.is-visible img {
    transform: none;
  }
}
