:root {
  --navy-950: #041225;
  --navy-900: #071a33;
  --navy-800: #0b2447;
  --navy-700: #12345f;
  --blue-600: #2864dc;
  --blue-500: #3578f6;
  --blue-100: #eaf2ff;
  --sky-50: #f5f8fc;
  --green-500: #0aa67e;
  --green-100: #e3f8f1;
  --amber-500: #e69b18;
  --amber-100: #fff4d9;
  --rose-100: #ffebee;
  --ink: #102033;
  --muted: #627084;
  --line: #dfe7f1;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(7, 26, 51, 0.08);
  --shadow-md: 0 24px 70px rgba(7, 26, 51, 0.13);
  --shadow-lg: 0 38px 100px rgba(7, 26, 51, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-height: 82px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

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

button {
  border: 0;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

svg {
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy-900);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  color: var(--navy-900);
  font-weight: 750;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #3578f6;
  outline-offset: 3px;
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  padding-top: env(safe-area-inset-top);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.site-header.is-open {
  border-bottom-color: rgba(7, 26, 51, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 35px rgba(7, 26, 51, 0.06);
}

.nav-shell {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 11px;
}

.brand img {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(7, 26, 51, 0.08);
  border-radius: 13px;
  box-shadow: 0 7px 20px rgba(7, 26, 51, 0.1);
  object-fit: cover;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand strong {
  color: var(--navy-900);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.desktop-nav a,
.text-link {
  position: relative;
  padding-block: 10px;
  color: #34465c;
  font-size: 0.9rem;
  font-weight: 650;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 5px;
  left: 50%;
  height: 2px;
  border-radius: 999px;
  background: var(--blue-500);
  content: "";
  transition: right 180ms ease, left 180ms ease;
}

.desktop-nav a:hover,
.text-link:hover {
  color: var(--navy-900);
}

.desktop-nav a:hover::after {
  right: 0;
  left: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 0.92rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover svg:last-child {
  transform: translateX(3px);
}

.button-primary {
  background: var(--navy-900);
  box-shadow: 0 12px 28px rgba(7, 26, 51, 0.2);
  color: var(--white);
}

.button-primary:hover {
  background: var(--navy-800);
  box-shadow: 0 16px 36px rgba(7, 26, 51, 0.25);
}

.button-small {
  min-height: 44px;
  padding-inline: 17px;
  border-radius: 12px;
  font-size: 0.86rem;
}

.button-large {
  min-height: 56px;
  padding-inline: 24px;
  border-radius: 15px;
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.75);
  color: var(--navy-900);
}

.button-ghost:hover {
  border-color: #becbda;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.button-white {
  background: var(--white);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.16);
  color: var(--navy-900);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.button-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.11);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--sky-50);
  color: var(--navy-900);
  cursor: pointer;
}

.menu-button svg {
  width: 23px;
  height: 23px;
}

.menu-button .close-icon {
  display: none;
}

.menu-button[aria-expanded="true"] .menu-icon {
  display: none;
}

.menu-button[aria-expanded="true"] .close-icon {
  display: block;
}

.mobile-nav {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav .container {
  display: grid;
  gap: 2px;
  padding-block: 12px 20px;
}

.mobile-nav a:not(.button) {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding-inline: 4px;
  border-bottom: 1px solid #edf1f6;
  color: var(--navy-900);
  font-weight: 680;
}

.mobile-nav .button {
  margin-top: 12px;
}

.hero {
  position: relative;
  min-height: 830px;
  overflow: hidden;
  padding: calc(var(--header-height) + env(safe-area-inset-top) + 92px) 0 104px;
  background:
    linear-gradient(180deg, rgba(245, 248, 252, 0.28) 0%, rgba(255, 255, 255, 0.94) 72%),
    radial-gradient(circle at 72% 26%, rgba(53, 120, 246, 0.11), transparent 32%),
    var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image: radial-gradient(rgba(7, 26, 51, 0.16) 0.7px, transparent 0.7px);
  background-size: 22px 22px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  top: 110px;
  right: -180px;
  width: 540px;
  height: 540px;
  background: rgba(215, 231, 255, 0.56);
}

.hero-glow-two {
  bottom: 20px;
  left: -280px;
  width: 520px;
  height: 520px;
  background: rgba(225, 247, 241, 0.44);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  align-items: center;
  gap: 58px;
}

.hero-copy {
  padding-bottom: 14px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--blue-600);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}


.eyebrow-light {
  color: #9fc1ff;
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 26px;
  font-size: clamp(3.35rem, 5.4vw, 5.45rem);
  letter-spacing: -0.067em;
}

.hero h1 em {
  background: linear-gradient(105deg, var(--blue-600), #54a1ff 76%);
  background-clip: text;
  color: transparent;
  font-style: normal;
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 0;
  padding: 0;
  color: #4d5e71;
  font-size: 0.83rem;
  font-weight: 680;
  list-style: none;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-trust svg {
  width: 16px;
  height: 16px;
  padding: 2px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-500);
  stroke-width: 2.5;
}

.hero-visual {
  position: relative;
  width: 680px;
  max-width: 100%;
  justify-self: end;
  transform: perspective(1400px) rotateY(-2deg) rotateX(1deg);
  transform-origin: center;
}

.dashboard-window {
  overflow: hidden;
  border: 1px solid rgba(7, 26, 51, 0.12);
  border-radius: 23px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.dashboard-topbar {
  display: grid;
  height: 58px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 17px;
  border-bottom: 1px solid #e8edf3;
}

.window-controls {
  display: flex;
  gap: 6px;
}

.window-controls span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d4dde8;
}

.window-controls span:first-child {
  background: #ff8a8f;
}

.window-controls span:nth-child(2) {
  background: #ffc95c;
}

.window-controls span:last-child {
  background: #55cfa8;
}

.dashboard-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-900);
  font-size: 0.78rem;
}

.live-dot {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 4px rgba(10, 166, 126, 0.12);
}

.dashboard-title .live-dot::after,
.map-popover .live-dot::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(10, 166, 126, 0.32);
  border-radius: 50%;
  content: "";
  animation: live-ring 2s ease-out infinite;
}

.demo-label {
  justify-self: end;
  padding: 4px 9px;
  border: 1px solid #dfe7f1;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.dashboard-body {
  display: grid;
  height: 440px;
  grid-template-columns: 218px minmax(0, 1fr);
}

.fleet-sidebar {
  position: relative;
  z-index: 2;
  padding: 17px 14px;
  border-right: 1px solid #e6ecf3;
  background: #fbfcfe;
}

.sidebar-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
  color: var(--navy-900);
  font-size: 0.71rem;
  font-weight: 780;
}

.sidebar-heading .demo-icon-control {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid #e3e9f1;
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
}

.sidebar-heading .demo-icon-control svg {
  width: 13px;
}

.fleet-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-bottom: 15px;
}

.fleet-stats article {
  padding: 9px 6px;
  border: 1px solid #e6ecf3;
  border-radius: 9px;
  background: var(--white);
  text-align: center;
}

.fleet-stats strong,
.fleet-stats span {
  display: block;
}

.fleet-stats strong {
  color: var(--navy-900);
  font-size: 0.88rem;
  line-height: 1.1;
}

.fleet-stats span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.48rem;
  font-weight: 650;
}

.vehicle-list {
  display: grid;
  gap: 6px;
}

.vehicle-row {
  display: grid;
  min-width: 0;
  grid-template-columns: 31px minmax(0, 1fr) 7px;
  align-items: center;
  gap: 8px;
  padding: 9px 7px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
}

.vehicle-row.active {
  border-color: #d8e6fb;
  background: #f0f6ff;
}

.vehicle-icon {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 9px;
  background: var(--white);
  box-shadow: 0 3px 10px rgba(7, 26, 51, 0.08);
}

.vehicle-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.vehicle-row > span:nth-child(2) {
  min-width: 0;
}

.vehicle-row strong,
.vehicle-row small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vehicle-row strong {
  color: var(--navy-900);
  font-size: 0.61rem;
  line-height: 1.3;
}

.vehicle-row small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.48rem;
}

.status {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.status-moving {
  background: var(--green-500);
  box-shadow: 0 0 0 3px rgba(10, 166, 126, 0.12);
}

.status-parked {
  background: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(53, 120, 246, 0.12);
}

.status-idling {
  background: var(--amber-500);
  box-shadow: 0 0 0 3px rgba(230, 155, 24, 0.13);
}

.map-canvas {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 73% 24%, rgba(208, 229, 217, 0.8) 0 12%, transparent 12.5%),
    radial-gradient(circle at 34% 75%, rgba(210, 231, 216, 0.72) 0 15%, transparent 15.5%),
    #eef2ed;
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-image:
    linear-gradient(34deg, transparent 46%, #d7ded9 47% 48%, transparent 49%),
    linear-gradient(124deg, transparent 46%, #dce3de 47% 48%, transparent 49%);
  background-size: 88px 76px;
}

.road {
  position: absolute;
  border: solid #fff;
  filter: drop-shadow(0 0 1px rgba(7, 26, 51, 0.18));
}

.road::after {
  position: absolute;
  border: 1px dashed rgba(130, 143, 151, 0.55);
  content: "";
}

.road-one {
  top: -10%;
  left: 45%;
  width: 24px;
  height: 125%;
  border-width: 0 7px;
  transform: rotate(21deg);
}

.road-one::after {
  top: 0;
  bottom: 0;
  left: 4px;
}

.road-two {
  top: 44%;
  left: -10%;
  width: 125%;
  height: 18px;
  border-width: 5px 0;
  transform: rotate(-12deg);
}

.road-two::after {
  top: 3px;
  right: 0;
  left: 0;
}

.road-three {
  top: 76%;
  left: -10%;
  width: 125%;
  height: 14px;
  border-width: 4px 0;
  transform: rotate(8deg);
}

.road-three::after {
  top: 2px;
  right: 0;
  left: 0;
}

.road-four {
  top: -20%;
  left: 15%;
  width: 14px;
  height: 135%;
  border-width: 0 4px;
  transform: rotate(-24deg);
}

.road-four::after {
  top: 0;
  bottom: 0;
  left: 2px;
}

.map-label {
  position: absolute;
  z-index: 1;
  color: rgba(73, 90, 85, 0.68);
  font-size: 0.53rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.label-north {
  top: 28%;
  left: 43%;
}

.label-central {
  right: 9%;
  bottom: 23%;
}

.label-south {
  top: 12%;
  left: 9%;
}

.map-marker {
  position: absolute;
  z-index: 4;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--blue-500);
  box-shadow: 0 7px 20px rgba(7, 26, 51, 0.24);
}

.map-marker img {
  position: relative;
  z-index: 2;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.marker-one {
  top: 37%;
  left: 46%;
}

.marker-two {
  right: 15%;
  bottom: 27%;
  background: var(--green-500);
  transform: scale(0.8) rotate(54deg);
}

.marker-three {
  top: 17%;
  left: 18%;
  background: var(--amber-500);
  transform: scale(0.78) rotate(-32deg);
}

.marker-pulse {
  position: absolute;
  inset: -13px;
  z-index: 0;
  border: 2px solid rgba(53, 120, 246, 0.34);
  border-radius: 50%;
  animation: marker-pulse 2.2s ease-out infinite;
}

.map-popover {
  position: absolute;
  z-index: 5;
  top: 47%;
  left: 34%;
  width: 180px;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(7, 26, 51, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 30px rgba(7, 26, 51, 0.16);
  backdrop-filter: blur(12px);
}

.map-popover::before {
  position: absolute;
  top: -6px;
  left: 44%;
  width: 11px;
  height: 11px;
  border-top: 1px solid rgba(7, 26, 51, 0.08);
  border-left: 1px solid rgba(7, 26, 51, 0.08);
  background: var(--white);
  content: "";
  transform: rotate(45deg);
}

.map-popover header {
  display: flex;
  align-items: center;
  gap: 7px;
}

.map-popover header strong {
  color: var(--navy-900);
  font-size: 0.65rem;
}

.map-popover p {
  margin: 5px 0 9px 15px;
  color: var(--muted);
  font-size: 0.5rem;
}

.map-popover > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.map-popover > div span {
  padding: 6px 8px;
  border-radius: 7px;
  background: var(--sky-50);
}

.map-popover small,
.map-popover > div strong {
  display: block;
}

.map-popover small {
  color: var(--muted);
  font-size: 0.43rem;
}

.map-popover > div strong {
  color: var(--navy-900);
  font-size: 0.56rem;
}

.map-controls {
  position: absolute;
  z-index: 4;
  right: 12px;
  bottom: 13px;
  display: grid;
  overflow: hidden;
  border: 1px solid #dae2e8;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(7, 26, 51, 0.1);
}

.map-controls span {
  display: grid;
  width: 28px;
  height: 27px;
  place-items: center;
  background: var(--white);
  color: var(--navy-900);
  font-size: 0.9rem;
}

.map-controls span + span {
  border-top: 1px solid #e6ebf0;
}

.floating-card {
  position: absolute;
  z-index: 8;
  display: flex;
  align-items: center;
  border: 1px solid rgba(7, 26, 51, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 45px rgba(7, 26, 51, 0.16);
  backdrop-filter: blur(14px);
}

.floating-alert {
  right: -36px;
  bottom: -27px;
  gap: 10px;
  width: 268px;
  padding: 13px;
  border-radius: 15px;
  animation: float-soft 5s ease-in-out infinite;
}

.floating-icon {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  background: var(--blue-100);
  color: var(--blue-600);
}

.floating-icon svg {
  width: 18px;
}

.floating-alert > span:nth-child(2) {
  min-width: 0;
}

.floating-card small,
.floating-card strong {
  display: block;
}

.floating-card small {
  color: var(--muted);
  font-size: 0.55rem;
  font-weight: 620;
}

.floating-card strong {
  overflow: hidden;
  color: var(--navy-900);
  font-size: 0.7rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.floating-card .time-label {
  margin-left: auto;
  color: var(--green-500);
  font-size: 0.52rem;
  font-weight: 750;
}

.floating-trip {
  bottom: -58px;
  left: -30px;
  gap: 11px;
  width: 176px;
  padding: 11px 14px;
  border-radius: 15px;
  animation: float-soft 5s 1.2s ease-in-out infinite;
}

.trip-ring {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: baseline;
  justify-content: center;
  padding-top: 12px;
  border: 4px solid #d8f2ea;
  border-top-color: var(--green-500);
  border-right-color: var(--green-500);
  border-radius: 50%;
  transform: rotate(20deg);
}

.trip-ring > * {
  transform: rotate(-20deg);
}

.trip-ring strong {
  font-size: 0.78rem;
}

.trip-ring small {
  font-size: 0.42rem;
}

.outcome-strip {
  position: relative;
  z-index: 3;
  border-top: 1px solid #e7edf4;
  border-bottom: 1px solid #e7edf4;
  background: var(--white);
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.outcome-grid article {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 13px;
  padding: 26px 20px;
}

.outcome-grid article + article {
  border-left: 1px solid #e7edf4;
}

.outcome-grid article > span {
  display: grid;
  flex: 0 0 auto;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 11px;
  background: var(--sky-50);
  color: var(--blue-600);
}

.outcome-grid article > span svg {
  width: 18px;
}

.outcome-grid strong,
.outcome-grid small {
  display: block;
}

.outcome-grid strong {
  color: var(--navy-900);
  font-size: 0.77rem;
  line-height: 1.3;
}

.outcome-grid small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.35;
}

.section {
  padding: 118px 0;
}

.section-heading {
  margin-bottom: 54px;
}

.section-heading h2,
.mobile-copy h2,
.guardrail-copy h2,
.faq-intro h2,
.final-cta h2 {
  margin-bottom: 19px;
  font-size: clamp(2.35rem, 4.4vw, 4.15rem);
}

.section-heading > p:last-child,
.mobile-copy > p:not(.eyebrow),
.faq-intro > p:not(.eyebrow),
.final-cta p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.section-heading-centered {
  max-width: 790px;
  margin-inline: auto;
  text-align: center;
}

.section-heading-centered .eyebrow {
  justify-content: center;
}

.platform-section {
  overflow: hidden;
  background: var(--sky-50);
}

.showcase {
  overflow: hidden;
  border: 1px solid #dce5ef;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.showcase-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: #fbfcfe;
}

.showcase-tabs button {
  position: relative;
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 15px 24px;
  background: transparent;
  color: #69788c;
  cursor: pointer;
  text-align: left;
  transition: background 180ms ease, color 180ms ease;
}

.showcase-tabs button + button {
  border-left: 1px solid var(--line);
}

.showcase-tabs button::after {
  position: absolute;
  right: 24%;
  bottom: -1px;
  left: 24%;
  height: 3px;
  border-radius: 99px 99px 0 0;
  background: var(--blue-500);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 180ms ease, transform 180ms ease;
}

.showcase-tabs button[aria-selected="true"] {
  background: var(--white);
  color: var(--blue-600);
}

.showcase-tabs button[aria-selected="true"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.showcase-tabs button > svg {
  width: 25px;
  height: 25px;
}

.showcase-tabs button span,
.showcase-tabs strong,
.showcase-tabs small {
  display: block;
}

.showcase-tabs strong {
  color: var(--navy-900);
  font-size: 0.9rem;
}

.showcase-tabs small {
  margin-top: 2px;
  font-size: 0.67rem;
}

.showcase-panel {
  display: grid;
  min-height: 545px;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
  padding: 64px 68px;
}

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

.showcase-panel.is-active {
  animation: panel-in 300ms ease both;
}

.showcase-copy {
  position: relative;
}

.panel-number {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-600);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.showcase-copy h3 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.2vw, 3.15rem);
}

.showcase-copy > p {
  margin-bottom: 25px;
  color: var(--muted);
  line-height: 1.75;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: #35475c;
  font-size: 0.86rem;
  font-weight: 620;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.check-list svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  margin-top: 2px;
  padding: 3px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-500);
  stroke-width: 2.5;
}

.live-panel-visual {
  position: relative;
  min-height: 400px;
}

.mini-map {
  position: absolute;
  inset: 0 0 54px 30px;
  overflow: hidden;
  border: 1px solid #dbe4e2;
  border-radius: 23px;
  background:
    radial-gradient(circle at 70% 20%, rgba(201, 226, 211, 0.8) 0 14%, transparent 14.5%),
    radial-gradient(circle at 25% 76%, rgba(207, 230, 215, 0.8) 0 13%, transparent 13.5%),
    #edf2ef;
}

.mini-map::after {
  position: absolute;
  inset: 0;
  opacity: 0.36;
  background-image: linear-gradient(42deg, transparent 48%, #bdc9c2 49% 50%, transparent 51%);
  background-size: 62px 62px;
  content: "";
}

.mini-road {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 0 1px #d8dfdc;
}

.mini-road.r1 {
  top: -20%;
  left: 48%;
  width: 22px;
  height: 140%;
  transform: rotate(24deg);
}

.mini-road.r2 {
  top: 48%;
  left: -10%;
  width: 125%;
  height: 17px;
  transform: rotate(-9deg);
}

.mini-road.r3 {
  top: -10%;
  left: 15%;
  width: 12px;
  height: 125%;
  transform: rotate(-28deg);
}

.mini-marker {
  position: absolute;
  z-index: 5;
  top: 41%;
  left: 49%;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--blue-500);
  box-shadow: 0 8px 24px rgba(7, 26, 51, 0.24);
}

.mini-marker > span {
  position: absolute;
  inset: -17px;
  border: 2px solid rgba(53, 120, 246, 0.3);
  border-radius: 50%;
  animation: marker-pulse 2.2s ease-out infinite;
}

.mini-marker img {
  position: relative;
  width: 28px;
}

.telemetry-card {
  position: absolute;
  z-index: 6;
  right: -20px;
  bottom: 0;
  width: 310px;
  padding: 18px;
  border: 1px solid #e1e7ee;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 20px 48px rgba(7, 26, 51, 0.16);
  backdrop-filter: blur(12px);
}

.telemetry-card header,
.telemetry-card header > div {
  display: flex;
  align-items: center;
}

.telemetry-card header {
  justify-content: space-between;
}

.telemetry-card header > div {
  gap: 8px;
}

.telemetry-card header strong {
  color: var(--navy-900);
  font-size: 0.8rem;
}

.telemetry-card header small {
  color: var(--green-500);
  font-size: 0.58rem;
  font-weight: 700;
}

.telemetry-card > p {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 9px 0 13px;
  color: var(--muted);
  font-size: 0.67rem;
}

.telemetry-card > p svg {
  width: 13px;
}

.telemetry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.telemetry-grid span {
  padding: 8px 5px;
  border-radius: 9px;
  background: var(--sky-50);
  text-align: center;
}

.telemetry-grid small,
.telemetry-grid strong {
  display: block;
}

.telemetry-grid small {
  color: var(--muted);
  font-size: 0.5rem;
}

.telemetry-grid strong {
  margin-top: 2px;
  color: var(--navy-900);
  font-size: 0.69rem;
}

.telemetry-grid strong.positive {
  color: var(--green-500);
}

.telemetry-grid i {
  font-size: 0.45rem;
  font-style: normal;
  font-weight: 650;
}

.alert-stack {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 28px;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  background: var(--sky-50);
}

.alert-stack::before {
  position: absolute;
  inset: -20px 28px auto;
  height: 80px;
  border-radius: 999px;
  background: rgba(53, 120, 246, 0.09);
  content: "";
  filter: blur(30px);
}

.alert-stack article {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid #e1e8f0;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(7, 26, 51, 0.06);
}

.alert-stack article:nth-child(2) {
  transform: translateX(16px);
}

.alert-stack article:nth-child(3) {
  transform: translateX(-7px);
}

.alert-stack article.alert-muted {
  opacity: 0.76;
}

.alert-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: #eef2f7;
  color: #68778a;
}

.alert-icon svg {
  width: 20px;
}

.alert-blue {
  background: var(--blue-100);
  color: var(--blue-600);
}

.alert-green {
  background: var(--green-100);
  color: var(--green-500);
}

.alert-amber {
  background: var(--amber-100);
  color: var(--amber-500);
}

.alert-stack strong,
.alert-stack small {
  display: block;
}

.alert-stack strong {
  color: var(--navy-900);
  font-size: 0.76rem;
}

.alert-stack small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.6rem;
}

.alert-stack .time-label {
  color: var(--muted);
  font-size: 0.57rem;
  font-weight: 680;
}

.trip-visual {
  padding: 26px;
  border: 1px solid #dfe6ef;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(7, 26, 51, 0.12);
}

.trip-visual > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 21px;
}

.trip-visual header small,
.trip-visual header strong {
  display: block;
}

.trip-visual header small {
  color: var(--muted);
  font-size: 0.62rem;
}

.trip-visual header strong {
  color: var(--navy-900);
  font-size: 0.9rem;
}

.date-pill {
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--blue-100);
  color: var(--blue-600);
  font-size: 0.62rem;
  font-weight: 750;
}

.trip-route {
  position: relative;
  display: grid;
  gap: 19px;
  margin-bottom: 22px;
  padding: 10px 8px;
}

.route-line {
  position: absolute;
  top: 20px;
  bottom: 22px;
  left: 17px;
  border-left: 2px dashed #cbd7e4;
}

.trip-route article {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 13px;
}

.route-point {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--blue-500);
  box-shadow: 0 0 0 2px var(--blue-500);
}

.route-point.event {
  background: var(--amber-500);
  box-shadow: 0 0 0 2px var(--amber-500);
}

.route-point.finish {
  background: var(--green-500);
  box-shadow: 0 0 0 2px var(--green-500);
}

.trip-route article div {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: baseline;
  gap: 3px 8px;
}

.trip-route small {
  grid-row: 1 / 3;
  color: var(--muted);
  font-size: 0.59rem;
}

.trip-route strong {
  color: var(--navy-900);
  font-size: 0.73rem;
}

.trip-route article span {
  color: var(--muted);
  font-size: 0.58rem;
}

.trip-controls {
  display: grid;
  grid-template-columns: 34px 1fr 26px;
  align-items: center;
  gap: 11px;
  padding: 12px;
  border-radius: 12px;
  background: var(--sky-50);
}

.trip-controls .trip-play {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
}

.trip-controls .trip-play svg {
  width: 16px;
}

.trip-controls > span:not(.trip-play) {
  position: relative;
  height: 4px;
  border-radius: 99px;
  background: #d9e2ec;
}

.trip-controls > span:not(.trip-play)::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 56%;
  border-radius: 99px;
  background: var(--blue-500);
  content: "";
}

.trip-controls > span:not(.trip-play) i {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 56%;
  width: 10px;
  height: 10px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--blue-500);
  box-shadow: 0 2px 6px rgba(7, 26, 51, 0.2);
  transform: translate(-50%, -50%);
}

.trip-controls > strong {
  color: var(--navy-900);
  font-size: 0.65rem;
}

.trip-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 11px;
}

.trip-summary span {
  padding: 9px 6px;
  border: 1px solid #e8edf3;
  border-radius: 9px;
  text-align: center;
}

.trip-summary small,
.trip-summary strong {
  display: block;
}

.trip-summary small {
  color: var(--muted);
  font-size: 0.5rem;
}

.trip-summary strong {
  color: var(--navy-900);
  font-size: 0.64rem;
}

.features-section {
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
}

.section-heading-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 80px;
}

.section-heading-split h2 {
  margin-bottom: 0;
  color: var(--white);
}

.section-heading-split > p:last-child {
  margin-bottom: 5px;
  color: #aebdd0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.feature-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.feature-card:hover {
  border-color: rgba(118, 167, 255, 0.33);
  background: rgba(255, 255, 255, 0.078);
  transform: translateY(-4px);
}

.feature-card > * {
  position: relative;
  z-index: 2;
}

.feature-card-large {
  grid-column: span 7;
}

.feature-card-tall {
  grid-column: span 5;
}

.feature-card:not(.feature-card-large):not(.feature-card-tall) {
  grid-column: span 4;
}

.feature-icon {
  display: grid;
  width: 47px;
  height: 47px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid rgba(119, 169, 255, 0.24);
  border-radius: 13px;
  background: rgba(53, 120, 246, 0.14);
  color: #7babff;
}

.feature-icon svg {
  width: 22px;
}

.card-kicker {
  margin-bottom: 8px;
  color: #7babff;
  font-size: 0.7rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-card h3 {
  margin-bottom: 13px;
  color: var(--white);
  font-size: 1.5rem;
  letter-spacing: -0.035em;
}

.feature-card > p:not(.card-kicker),
.feature-card-route > div:first-of-type > p:last-child {
  max-width: 520px;
  margin-bottom: 0;
  color: #aebdd0;
  font-size: 0.88rem;
  line-height: 1.7;
}

.feature-route-art {
  position: absolute;
  z-index: 1;
  right: -12px;
  bottom: -30px;
  width: 46%;
  height: 230px;
  opacity: 0.92;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50% 0 0;
  background:
    radial-gradient(circle at 65% 38%, rgba(10, 166, 126, 0.16) 0 17%, transparent 18%),
    rgba(255, 255, 255, 0.025);
  transform: rotate(-7deg);
}

.feature-route-art::before,
.feature-route-art::after,
.feature-route-art span {
  position: absolute;
  border: 2px dashed rgba(103, 153, 240, 0.38);
  border-radius: 50%;
  content: "";
}

.feature-route-art::before {
  inset: 28px 24px 18px 38px;
}

.feature-route-art::after {
  inset: 63px -20px -28px 80px;
}

.feature-route-art span {
  inset: -34px 76px 86px -38px;
}

.feature-route-art i {
  position: absolute;
  z-index: 2;
  width: 13px;
  height: 13px;
  border: 3px solid var(--navy-950);
  border-radius: 50%;
  background: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(53, 120, 246, 0.28);
}

.feature-route-art i:nth-of-type(1) {
  top: 43px;
  left: 91px;
}

.feature-route-art i:nth-of-type(2) {
  top: 112px;
  right: 44px;
  background: var(--green-500);
}

.feature-route-art i:nth-of-type(3) {
  bottom: 32px;
  left: 61px;
  background: var(--amber-500);
}

.score-card {
  margin-top: auto;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.045);
}

.score-card > div {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.score-card > div strong {
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
}

.score-card > div small {
  color: #8fa0b5;
  font-size: 0.6rem;
}

.score-card > span {
  display: block;
  height: 5px;
  margin: 12px 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.score-card > span i {
  display: block;
  width: var(--score);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue-500), var(--green-500));
}

.score-card > p {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  color: #80d8bd;
  font-size: 0.66rem;
  font-weight: 700;
}

.score-card p svg {
  width: 14px;
}

.fence-art {
  position: relative;
  height: 90px;
  margin-top: auto;
  overflow: hidden;
  border-radius: 13px;
  background:
    linear-gradient(38deg, transparent 48%, rgba(255, 255, 255, 0.07) 49% 51%, transparent 52%),
    rgba(255, 255, 255, 0.03);
  background-size: 45px 45px;
}

.fence-art span {
  position: absolute;
  top: 13px;
  left: 33%;
  width: 90px;
  height: 65px;
  border: 2px solid rgba(53, 120, 246, 0.85);
  border-radius: 50%;
  background: rgba(53, 120, 246, 0.12);
  transform: rotate(-12deg);
}

.fence-art i {
  position: absolute;
  top: 35px;
  left: calc(33% + 37px);
  width: 14px;
  height: 14px;
  border: 3px solid var(--navy-900);
  border-radius: 50%;
  background: var(--blue-500);
}

.fence-art b {
  position: absolute;
  right: 13px;
  bottom: 11px;
  padding: 3px 7px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-500);
  font-size: 0.46rem;
}

.fence-art b::after {
  content: "Entry alert on";
}

.report-art {
  display: grid;
  height: 86px;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 7px;
  margin-top: auto;
  padding: 15px 15px 0;
  border-radius: 13px 13px 0 0;
  background: rgba(255, 255, 255, 0.035);
}

.report-art span {
  display: block;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, rgba(53, 120, 246, 0.86), rgba(53, 120, 246, 0.3));
}

.report-art span:first-child {
  height: 38%;
}

.report-art span:nth-child(2) {
  height: 78%;
}

.report-art span:nth-child(3) {
  height: 58%;
}

.report-art i {
  display: none;
}

.engine-state {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.65rem;
}

.engine-state > span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #c0cddd;
}

.engine-state i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 4px rgba(10, 166, 126, 0.12);
}

.engine-state .engine-label {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
  color: #d8e3ef;
  font-size: 0.56rem;
}

.share-pill {
  display: grid;
  grid-template-columns: 33px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.04);
}

.share-pill > svg:first-child {
  width: 33px;
  height: 33px;
  padding: 8px;
  border-radius: 9px;
  background: rgba(53, 120, 246, 0.17);
  color: #7babff;
}

.share-pill > svg:last-child {
  width: 19px;
  height: 19px;
  padding: 3px;
  border-radius: 50%;
  background: rgba(10, 166, 126, 0.16);
  color: #80d8bd;
}

.share-pill strong,
.share-pill small {
  display: block;
}

.share-pill strong {
  color: #e4edf8;
  font-size: 0.65rem;
}

.share-pill small {
  margin-top: 2px;
  color: #8799b0;
  font-size: 0.52rem;
}

.avatar-stack {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.avatar-stack span,
.avatar-stack i {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-left: -8px;
  border: 3px solid var(--navy-950);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.6rem;
  font-style: normal;
  font-weight: 750;
}

.avatar-stack span:first-child {
  margin-left: 0;
  background: var(--blue-600);
}

.avatar-stack span:nth-child(2) {
  background: var(--green-500);
}

.avatar-stack span:nth-child(3) {
  background: #865bd5;
}

.avatar-stack i {
  background: #1e3859;
  color: #b9c8d9;
}

.feature-grid .feature-card.feature-card-whatsapp {
  display: grid;
  min-height: 400px;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: 64px;
  padding: 48px;
  border-color: rgba(44, 203, 145, 0.28);
  background:
    radial-gradient(circle at 88% 15%, rgba(44, 203, 145, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(17, 54, 83, 0.98), rgba(7, 26, 51, 0.96));
}

.feature-grid .feature-card.feature-card-whatsapp:hover {
  border-color: rgba(77, 224, 170, 0.5);
  background:
    radial-gradient(circle at 88% 15%, rgba(44, 203, 145, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(19, 61, 92, 0.98), rgba(8, 30, 57, 0.96));
}

.feature-card-whatsapp::before {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
  bottom: -200px;
  left: -100px;
  box-shadow: 0 0 0 55px rgba(255, 255, 255, 0.018), 0 0 0 110px rgba(255, 255, 255, 0.012);
}

.whatsapp-copy {
  max-width: 580px;
}

.whatsapp-copy .feature-icon {
  border-color: rgba(77, 224, 170, 0.3);
  background: rgba(10, 166, 126, 0.16);
  color: #70e0b7;
}

.whatsapp-copy .card-kicker {
  color: #70e0b7;
}

.feature-card-whatsapp .whatsapp-copy h3 {
  margin-bottom: 17px;
  font-size: clamp(2.2rem, 4vw, 3.75rem);
}

.whatsapp-copy > p:last-child {
  max-width: 560px;
  margin-bottom: 0;
  color: #bdcad9;
  font-size: 1rem;
  line-height: 1.75;
}

.whatsapp-preview {
  width: min(100%, 570px);
  justify-self: end;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 22px;
  background: rgba(249, 252, 255, 0.98);
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.28);
  color: var(--navy-900);
  transform: rotate(1.25deg);
}

.whatsapp-preview-head {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 2px 2px 15px;
  border-bottom: 1px solid #dfe8ef;
}

.whatsapp-preview-head > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  background: var(--green-100);
  color: var(--green-500);
}

.whatsapp-preview-head svg {
  width: 21px;
  height: 21px;
}

.whatsapp-preview-head small,
.whatsapp-preview-head strong {
  display: block;
}

.whatsapp-preview-head small {
  color: #75869a;
  font-size: 0.61rem;
}

.whatsapp-preview-head strong {
  margin-top: 2px;
  font-size: 0.82rem;
}

.whatsapp-preview-head > i {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--green-100);
  color: #087b5e;
  font-size: 0.57rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.whatsapp-preview-body {
  display: grid;
  gap: 9px;
  padding-block: 16px 13px;
}

.whatsapp-preview-body article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  padding: 12px;
  border: 1px solid #e0e8f0;
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(7, 26, 51, 0.05);
}

.whatsapp-preview-body article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: var(--blue-100);
  color: var(--blue-600);
}

.whatsapp-preview-body article:nth-child(2) > span {
  background: var(--amber-100);
  color: var(--amber-500);
}

.whatsapp-preview-body svg {
  width: 19px;
  height: 19px;
}

.whatsapp-preview-body small,
.whatsapp-preview-body strong {
  display: block;
}

.whatsapp-preview-body small {
  color: #718297;
  font-size: 0.58rem;
}

.whatsapp-preview-body strong {
  margin-top: 3px;
  font-size: 0.72rem;
}

.whatsapp-preview-body article > i {
  color: #8190a3;
  font-size: 0.57rem;
  font-style: normal;
}

.whatsapp-preview > p {
  margin: 0;
  color: #65768a;
  font-size: 0.66rem;
  font-weight: 650;
  text-align: center;
}
.availability-note {
  display: flex;
  max-width: 790px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 32px auto 0;
  color: #8fa0b5;
  font-size: 0.76rem;
  text-align: center;
}

.availability-note svg {
  flex: 0 0 auto;
  width: 18px;
  color: #7babff;
}

.mobile-section {
  overflow: hidden;
  background: var(--white);
}

.mobile-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 80px;
}

.mobile-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 32px;
}

.mobile-benefits {
  display: grid;
  gap: 18px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.mobile-benefits li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-benefits li > span {
  display: grid;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 13px;
  background: var(--blue-100);
  color: var(--blue-600);
}

.mobile-benefits svg {
  width: 21px;
}

.mobile-benefits strong,
.mobile-benefits small {
  display: block;
}

.mobile-benefits strong {
  color: var(--navy-900);
  font-size: 0.9rem;
}

.mobile-benefits small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.76rem;
}

.text-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-600);
  font-size: 0.9rem;
  font-weight: 780;
}

.text-arrow svg {
  width: 18px;
  transition: transform 180ms ease;
}

.text-arrow:hover svg {
  transform: translateX(4px);
}

.phone-stage {
  position: relative;
  min-height: 650px;
}

.phone-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 570px;
  height: 570px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(53, 120, 246, 0.12) 0 32%, rgba(53, 120, 246, 0.055) 33% 49%, transparent 50%),
    var(--sky-50);
  transform: translate(-50%, -50%);
}

.phone-device {
  position: absolute;
  overflow: hidden;
  width: 278px;
  height: 570px;
  padding: 9px;
  border: 1px solid #274263;
  border-radius: 40px;
  background: var(--navy-950);
  box-shadow: 0 35px 80px rgba(7, 26, 51, 0.24);
}

.phone-device::before {
  position: absolute;
  z-index: 5;
  top: 16px;
  left: 50%;
  width: 74px;
  height: 20px;
  border-radius: 999px;
  background: var(--navy-950);
  content: "";
  transform: translateX(-50%);
}

.phone-front {
  z-index: 3;
  top: 28px;
  left: 31%;
  transform: rotate(1.5deg);
}

.phone-back {
  z-index: 2;
  top: 78px;
  left: 4%;
  opacity: 0.84;
  transform: rotate(-7deg) scale(0.92);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 31px;
  background: var(--sky-50);
}

.phone-screen > header {
  position: relative;
  z-index: 6;
  display: flex;
  height: 37px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  color: var(--navy-900);
  font-size: 0.53rem;
  font-weight: 750;
}

.phone-screen > header i {
  width: 28px;
  height: 7px;
  opacity: 0.5;
  background: linear-gradient(90deg, currentColor 0 28%, transparent 29% 36%, currentColor 37% 62%, transparent 63% 70%, currentColor 71% 100%);
  clip-path: polygon(0 100%, 0 60%, 20% 60%, 20% 40%, 40% 40%, 40% 20%, 60% 20%, 60% 0, 68% 0, 68% 100%, 100% 100%, 100% 22%, 72% 22%, 72% 100%);
}

.app-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 17px 12px;
}

.app-head small,
.app-head strong {
  display: block;
}

.app-head small {
  color: var(--muted);
  font-size: 0.56rem;
}

.app-head strong {
  color: var(--navy-900);
  font-size: 1.16rem;
  letter-spacing: -0.04em;
}

.app-head .app-notification-icon {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 5px 14px rgba(7, 26, 51, 0.08);
  color: var(--navy-900);
}

.app-head .app-notification-icon svg {
  width: 16px;
}

.app-head .app-notification-icon i {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 6px;
  height: 6px;
  border: 1px solid var(--white);
  border-radius: 50%;
  background: #ef5b61;
}

.mobile-snapshot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 0 13px 17px;
}

.mobile-snapshot span {
  padding: 11px 7px;
  border: 1px solid #e4ebf2;
  border-radius: 10px;
  background: var(--white);
}

.mobile-snapshot small,
.mobile-snapshot strong {
  display: block;
}

.mobile-snapshot small {
  color: var(--muted);
  font-size: 0.49rem;
}

.mobile-snapshot strong {
  color: var(--navy-900);
  font-size: 1.05rem;
}

.mobile-list {
  padding-inline: 13px;
}

.mobile-list > p {
  margin-bottom: 8px;
  color: var(--navy-900);
  font-size: 0.66rem;
  font-weight: 780;
}

.mobile-list article {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 7px;
  align-items: center;
  gap: 9px;
  margin-bottom: 7px;
  padding: 11px 9px;
  border: 1px solid #e7edf4;
  border-radius: 11px;
  background: var(--white);
}

.mobile-list article > span {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 9px;
  background: var(--blue-100);
}

.mobile-list .mobile-vehicle-icon {
  width: 22px;
  height: 22px;
  color: var(--blue-600);
  stroke-width: 1.8;
}

.mobile-list strong,
.mobile-list small {
  display: block;
}

.mobile-list strong {
  color: var(--navy-900);
  font-size: 0.6rem;
}

.mobile-list small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.48rem;
}

.phone-screen nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  height: 55px;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  border-top: 1px solid #e3e9f1;
  background: rgba(255, 255, 255, 0.95);
}

.phone-screen nav span {
  color: #9aa7b7;
}

.phone-screen nav span.active {
  color: var(--blue-600);
}

.phone-screen nav svg {
  width: 19px;
}

.phone-map {
  position: absolute;
  inset: 37px 0 0;
  background:
    radial-gradient(circle at 22% 72%, rgba(199, 224, 208, 0.78) 0 14%, transparent 14.5%),
    #edf2ef;
}

.phone-road {
  position: absolute;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 0 0 1px #d6ded9;
}

.phone-road.pr1 {
  top: -10%;
  left: 48%;
  width: 22px;
  height: 125%;
  transform: rotate(21deg);
}

.phone-road.pr2 {
  top: 44%;
  left: -10%;
  width: 125%;
  height: 18px;
  transform: rotate(-13deg);
}

.phone-road.pr3 {
  top: -10%;
  left: 12%;
  width: 13px;
  height: 120%;
  transform: rotate(-28deg);
}

.phone-marker {
  position: absolute;
  top: 36%;
  left: 49%;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--blue-500);
  box-shadow: 0 8px 20px rgba(7, 26, 51, 0.25);
}

.phone-marker svg {
  width: 25px;
  height: 25px;
  color: var(--white);
  stroke-width: 1.9;
}

.phone-sheet {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  height: 170px;
  padding: 13px 18px;
  border-radius: 20px 20px 0 0;
  background: var(--white);
  box-shadow: 0 -12px 30px rgba(7, 26, 51, 0.13);
}

.phone-sheet > span {
  display: block;
  width: 36px;
  height: 4px;
  margin: 0 auto 18px;
  border-radius: 99px;
  background: #d8e0ea;
}

.phone-sheet small,
.phone-sheet strong {
  display: block;
}

.phone-sheet small {
  color: var(--muted);
  font-size: 0.63rem;
}

.phone-sheet strong {
  margin-top: 5px;
  color: var(--navy-900);
  font-size: 0.86rem;
}

.mobile-notification {
  position: absolute;
  z-index: 6;
  right: -24px;
  bottom: 75px;
  display: grid;
  width: 270px;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  padding: 13px;
  border: 1px solid #e0e7ef;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 50px rgba(7, 26, 51, 0.18);
  backdrop-filter: blur(16px);
  animation: float-soft 5s 0.6s ease-in-out infinite;
}

.mobile-notification > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 11px;
  background: var(--green-100);
  color: var(--green-500);
}

.mobile-notification svg {
  width: 20px;
}

.mobile-notification small,
.mobile-notification strong {
  display: block;
}

.mobile-notification small {
  color: var(--muted);
  font-size: 0.52rem;
}

.mobile-notification strong {
  margin-top: 2px;
  color: var(--navy-900);
  font-size: 0.66rem;
  line-height: 1.35;
}

.steps-section {
  border-top: 1px solid #edf1f6;
  background: var(--sky-50);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  counter-reset: steps;
  list-style: none;
}

.steps-grid li {
  position: relative;
  min-height: 300px;
  padding: 30px;
  border: 1px solid #dfe7f0;
  border-radius: 21px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(7, 26, 51, 0.045);
}

.steps-grid li:not(:last-child)::after {
  position: absolute;
  z-index: 3;
  top: 79px;
  right: -27px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid #dce5ef;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 6px 18px rgba(7, 26, 51, 0.08);
  color: var(--blue-600);
  content: "→";
  font-weight: 750;
}

.step-number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: #cbd6e3;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.step-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 55px;
  place-items: center;
  border-radius: 16px;
  background: var(--blue-100);
  color: var(--blue-600);
}

.step-icon svg {
  width: 27px;
}

.steps-grid h3 {
  margin-bottom: 11px;
  font-size: 1.35rem;
}

.steps-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.guardrail-section {
  padding: 70px 0 118px;
  background: var(--sky-50);
}

.guardrail-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  align-items: center;
  gap: 90px;
  overflow: hidden;
  padding: 74px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 8%, rgba(53, 120, 246, 0.25), transparent 32%),
    linear-gradient(135deg, var(--navy-900), var(--navy-950));
  box-shadow: var(--shadow-md);
}

.guardrail-card::before {
  position: absolute;
  top: -130px;
  right: -100px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.025), 0 0 0 140px rgba(255, 255, 255, 0.018);
}

.guardrail-copy,
.permission-card {
  position: relative;
  z-index: 2;
}

.guardrail-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
  color: #9fc1ff;
}

.guardrail-icon svg {
  width: 26px;
}

.guardrail-copy h2 {
  max-width: 650px;
  color: var(--white);
}

.guardrail-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 30px;
  color: #aebdd0;
  line-height: 1.75;
}

.permission-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.permission-card > header {
  display: grid;
  grid-template-columns: 43px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e8edf3;
}

.permission-avatar {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  font-size: 0.67rem;
  font-weight: 750;
}

.permission-card header strong,
.permission-card header small {
  display: block;
}

.permission-card header strong {
  color: var(--navy-900);
  font-size: 0.78rem;
}

.permission-card header small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.6rem;
}

.permission-card header > i {
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-500);
  font-size: 0.52rem;
  font-style: normal;
  font-weight: 750;
}

.permission-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 8px;
  color: var(--navy-900);
  font-size: 0.66rem;
  font-weight: 750;
}

.permission-title small {
  color: var(--muted);
  font-weight: 600;
}

.permission-card ul {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.permission-card li {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #edf1f5;
  color: #3b4d62;
  font-size: 0.65rem;
  font-weight: 650;
}

.permission-card li > span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.permission-card li svg {
  width: 14px;
  color: var(--blue-600);
}

.permission-card li > i {
  position: relative;
  width: 29px;
  height: 17px;
  border-radius: 999px;
  background: #d7dee7;
}

.permission-card li > i::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--white);
  content: "";
  box-shadow: 0 1px 3px rgba(7, 26, 51, 0.2);
}

.permission-card li > i.toggle-on {
  background: var(--blue-500);
}

.permission-card li > i.toggle-on::after {
  left: 15px;
}

.permission-card > p {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.56rem;
  line-height: 1.45;
}

.permission-card > p svg {
  flex: 0 0 auto;
  width: 13px;
  margin-top: 1px;
}

.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: 100px;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro h2 {
  max-width: 420px;
}

.faq-intro > p:not(.eyebrow) {
  max-width: 430px;
  margin-bottom: 27px;
}

.support-card {
  display: grid;
  max-width: 400px;
  grid-template-columns: 45px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--sky-50);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.support-card:hover {
  border-color: #bed0ea;
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.support-card > span {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 12px;
  background: var(--blue-100);
  color: var(--blue-600);
}

.support-card > span svg {
  width: 21px;
}

.support-card small,
.support-card strong {
  display: block;
}

.support-card small {
  color: var(--muted);
  font-size: 0.62rem;
}

.support-card strong {
  overflow: hidden;
  color: var(--navy-900);
  font-size: 0.76rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.support-card > svg {
  width: 18px;
  color: var(--blue-600);
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 4px;
  color: var(--navy-900);
  font-size: 1rem;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 1px solid #dbe4ee;
  border-radius: 50%;
  background: var(--sky-50);
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  border-radius: 99px;
  background: var(--navy-900);
  content: "";
  transition: transform 180ms ease;
  transform: translate(-50%, -50%);
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details p {
  max-width: 720px;
  margin: -6px 45px 25px 4px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: var(--navy-900);
}

.final-cta::before {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: radial-gradient(rgba(255, 255, 255, 0.8) 0.6px, transparent 0.6px);
  background-size: 22px 22px;
  content: "";
}

.cta-glow {
  position: absolute;
  top: -250px;
  right: -80px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: rgba(53, 120, 246, 0.22);
  filter: blur(20px);
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 15px;
  color: var(--white);
}

.final-cta p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
  color: #aebdd0;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 11px;
  padding-bottom: 8px;
}

.site-footer {
  padding: 66px 0 25px;
  background: var(--navy-950);
  color: #aebdd0;
}

.site-footer .brand strong {
  color: var(--white);
}

.site-footer .brand small {
  color: #7f91a8;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  padding-bottom: 54px;
}

.footer-brand > p {
  max-width: 380px;
  margin: 19px 0 0;
  color: #8192a8;
  font-size: 0.82rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 155px);
  gap: 55px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 0.76rem;
}

.footer-links a {
  color: #8294aa;
  font-size: 0.76rem;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: #6f8299;
  font-size: 0.66rem;
}

html.reveal-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

html.reveal-enabled [data-reveal][data-reveal-delay="1"] {
  transition-delay: 90ms;
}

html.reveal-enabled [data-reveal][data-reveal-delay="2"] {
  transition-delay: 180ms;
}

html.reveal-enabled [data-reveal][data-reveal-delay="3"] {
  transition-delay: 270ms;
}

html.reveal-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes live-ring {
  from {
    opacity: 0.8;
    transform: scale(0.6);
  }

  to {
    opacity: 0;
    transform: scale(1.6);
  }
}

@keyframes marker-pulse {
  0% {
    opacity: 0.8;
    transform: scale(0.55);
  }

  75%,
  100% {
    opacity: 0;
    transform: scale(1.15);
  }
}

@keyframes float-soft {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 20px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 70px);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(500px, 1.14fr);
    gap: 30px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 5.4vw, 4.6rem);
  }

  .hero-visual {
    width: 620px;
  }

  .dashboard-body {
    height: 410px;
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .map-popover {
    left: 31%;
  }

  .showcase-panel {
    gap: 45px;
    padding: 54px 44px;
  }

  .guardrail-card {
    gap: 55px;
    padding: 58px;
  }

  .faq-grid {
    gap: 65px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 74px;
  }

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

  .menu-button {
    display: flex;
  }

  .hero {
    padding: calc(var(--header-height) + 65px) 0 120px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 66px;
  }

  .hero-copy {
    max-width: 740px;
    text-align: center;
    justify-self: center;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .hero h1,
  .hero-lead {
    margin-inline: auto;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 9vw, 5.5rem);
  }

  .hero-visual {
    width: 690px;
    justify-self: center;
    transform: none;
  }

  .dashboard-body {
    height: 430px;
    grid-template-columns: 218px minmax(0, 1fr);
  }

  .outcome-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .outcome-grid article:nth-child(3) {
    border-left: 0;
  }

  .outcome-grid article:nth-child(n + 3) {
    border-top: 1px solid #e7edf4;
  }

  .showcase-panel {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .showcase-copy {
    max-width: 720px;
  }

  .live-panel-visual,
  .alert-stack,
  .trip-visual {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .feature-card-large,
  .feature-card-tall,
  .feature-card:not(.feature-card-large):not(.feature-card-tall) {
    grid-column: span 6;
  }

  .feature-card {
    min-height: 350px;
  }

  .mobile-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .mobile-copy {
    max-width: 720px;
  }

  .phone-stage {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .guardrail-card {
    grid-template-columns: 1fr;
  }

  .permission-card {
    width: min(100%, 500px);
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .faq-intro {
    position: static;
  }

  .faq-intro h2,
  .faq-intro > p:not(.eyebrow) {
    max-width: 650px;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 35px;
  }

  .final-actions {
    justify-content: flex-start;
    padding-bottom: 0;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .brand img {
    width: 41px;
    height: 41px;
  }

  .brand small {
    font-size: 0.61rem;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 48px) 0 95px;
  }

  .hero::before {
    opacity: 0.18;
  }

  .hero h1 {
    font-size: clamp(3rem, 13vw, 4.55rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    gap: 10px 14px;
    font-size: 0.74rem;
  }

  .hero-visual {
    width: 100%;
  }

  .dashboard-window {
    border-radius: 17px;
  }

  .dashboard-topbar {
    height: 49px;
    padding-inline: 12px;
  }

  .demo-label,
  .window-controls span:nth-child(n + 2) {
    display: none;
  }

  .dashboard-body {
    height: 360px;
    grid-template-columns: 1fr;
  }

  .fleet-sidebar {
    display: none;
  }

  .map-canvas {
    min-width: 0;
  }

  .map-popover {
    top: 45%;
    left: 27%;
  }

  .floating-alert {
    right: -4px;
    bottom: -34px;
    width: 245px;
  }

  .floating-trip {
    bottom: -72px;
    left: -3px;
    transform: scale(0.94);
    transform-origin: left top;
  }

  .outcome-grid {
    grid-template-columns: 1fr;
    padding-block: 5px;
  }

  .outcome-grid article {
    padding: 17px 5px;
  }

  .outcome-grid article + article,
  .outcome-grid article:nth-child(3) {
    border-top: 1px solid #e7edf4;
    border-left: 0;
  }

  .section {
    padding: 88px 0;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2,
  .mobile-copy h2,
  .guardrail-copy h2,
  .faq-intro h2,
  .final-cta h2 {
    font-size: clamp(2.25rem, 10.5vw, 3.2rem);
  }

  .section-heading > p:last-child,
  .mobile-copy > p:not(.eyebrow),
  .faq-intro > p:not(.eyebrow),
  .final-cta p:not(.eyebrow) {
    font-size: 0.96rem;
  }

  .showcase {
    border-radius: 21px;
  }

  .showcase-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .showcase-tabs button {
    min-height: 70px;
    flex-direction: column;
    gap: 5px;
    padding: 10px 5px;
    text-align: center;
  }

  .showcase-tabs button > svg {
    width: 20px;
    height: 20px;
  }

  .showcase-tabs strong {
    font-size: 0.67rem;
  }

  .showcase-tabs small {
    display: none;
  }

  .showcase-panel {
    gap: 38px;
    padding: 38px 20px;
  }

  .showcase-copy h3 {
    font-size: 2rem;
  }

  .showcase-copy > p {
    font-size: 0.92rem;
  }

  .check-list {
    font-size: 0.78rem;
  }

  .live-panel-visual {
    min-height: 340px;
  }

  .mini-map {
    inset: 0 0 48px;
  }

  .telemetry-card {
    right: -6px;
    width: min(92%, 310px);
  }

  .telemetry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .alert-stack {
    padding: 15px;
  }

  .alert-stack article {
    grid-template-columns: 38px minmax(0, 1fr) auto;
    gap: 9px;
    padding: 11px;
  }

  .alert-stack article:nth-child(2),
  .alert-stack article:nth-child(3) {
    transform: none;
  }

  .alert-icon {
    width: 37px;
    height: 37px;
  }

  .trip-visual {
    padding: 17px;
  }

  .trip-route article div {
    grid-template-columns: 45px 1fr;
  }

  .section-heading-split {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .feature-card-large,
  .feature-card-tall,
  .feature-card:not(.feature-card-large):not(.feature-card-tall) {
    grid-column: 1;
  }

  .feature-card {
    min-height: 330px;
    padding: 25px;
  }

  .feature-card-route {
    min-height: 400px;
  }

  .feature-route-art {
    width: 64%;
    opacity: 0.7;
  }

  .mobile-copy > p:not(.eyebrow) {
    margin-bottom: 27px;
  }

  .phone-stage {
    min-height: 570px;
  }

  .phone-halo {
    width: 450px;
    height: 450px;
  }

  .phone-device {
    width: 244px;
    height: 500px;
    border-radius: 35px;
  }

  .phone-screen {
    border-radius: 27px;
  }

  .phone-front {
    top: 18px;
    left: calc(50% - 96px);
  }

  .phone-back {
    top: 60px;
    left: -20px;
  }

  .mobile-notification {
    right: -5px;
    bottom: 35px;
    width: 245px;
  }

  .mobile-list article:nth-of-type(3) {
    display: none;
  }

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

  .steps-grid li {
    min-height: auto;
  }

  .steps-grid li:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -28px;
    content: "↓";
    transform: translateX(50%);
  }

  .step-icon {
    margin-bottom: 40px;
  }

  .guardrail-section {
    padding: 40px 0 88px;
  }

  .guardrail-card {
    gap: 44px;
    padding: 40px 22px;
    border-radius: 23px;
  }

  .permission-card {
    padding: 18px;
  }

  .faq-list summary {
    min-height: 72px;
    font-size: 0.88rem;
    line-height: 1.4;
  }

  .faq-list details p {
    margin-right: 35px;
    font-size: 0.84rem;
  }

  .final-cta {
    padding: 78px 0;
  }

  .final-actions {
    display: grid;
    width: 100%;
  }

  .final-actions .button {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(calc(100% - 26px), var(--container));
  }

  .brand span {
    display: none;
  }

  .mobile-nav .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .hero h1 {
    font-size: clamp(2.68rem, 13.2vw, 3.5rem);
  }

  .eyebrow {
    font-size: 0.68rem;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: start;
    width: fit-content;
    margin-inline: auto;
  }

  .hero-trust li:last-child {
    grid-column: 1 / -1;
  }

  .dashboard-body {
    height: 320px;
  }

  .map-popover {
    top: 42%;
    left: 21%;
    transform: scale(0.92);
  }

  .floating-alert {
    width: 224px;
  }

  .floating-trip {
    display: none;
  }

  .hero-visual {
    margin-bottom: -10px;
  }

  .section-heading h2,
  .mobile-copy h2,
  .guardrail-copy h2,
  .faq-intro h2,
  .final-cta h2 {
    font-size: 2.2rem;
  }

  .showcase-tabs strong {
    font-size: 0.6rem;
  }

  .showcase-panel {
    padding-inline: 16px;
  }

  .live-panel-visual {
    min-height: 315px;
  }

  .mini-map {
    bottom: 72px;
  }

  .telemetry-card {
    width: 96%;
    padding: 14px;
  }

  .telemetry-card header small {
    display: none;
  }

  .alert-stack article {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .alert-stack .time-label {
    display: none;
  }

  .trip-route article div {
    grid-template-columns: 1fr;
  }

  .trip-route small {
    grid-row: auto;
  }

  .trip-summary {
    gap: 4px;
  }

  .trip-summary strong {
    font-size: 0.57rem;
  }

  .feature-card {
    min-height: 350px;
  }

  .phone-stage {
    min-height: 520px;
  }

  .phone-device {
    width: 224px;
    height: 462px;
  }

  .phone-front {
    left: calc(50% - 89px);
  }

  .phone-back {
    left: -42px;
  }

  .mobile-notification {
    right: -9px;
    bottom: 22px;
    width: 226px;
  }

  .support-card {
    grid-template-columns: 40px minmax(0, 1fr) 18px;
    gap: 9px;
    padding: 12px;
  }

  .support-card > span {
    width: 40px;
    height: 40px;
  }

  .support-card strong {
    font-size: 0.68rem;
  }

  .footer-links {
    gap: 22px;
  }
}

@media (max-width: 960px) {
  .feature-grid .feature-card.feature-card-whatsapp {
    min-height: auto;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 42px;
  }

  .whatsapp-preview {
    width: min(100%, 680px);
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .feature-grid .feature-card.feature-card-whatsapp {
    grid-column: 1;
    gap: 30px;
    padding: 28px;
  }

  .feature-card-whatsapp .whatsapp-copy h3 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .whatsapp-copy > p:last-child {
    font-size: 0.93rem;
  }

  .whatsapp-preview {
    padding: 14px;
    transform: none;
  }
}

@media (max-width: 430px) {
  .feature-grid .feature-card.feature-card-whatsapp {
    padding: 24px 18px;
  }

  .whatsapp-preview-body article {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .whatsapp-preview-body article > i {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html.reveal-enabled [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

main[tabindex="-1"]:focus {
  outline: none;
  box-shadow: none;
}

.showcase-tabs button:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 3px #3578f6;
}
