:root {
  color-scheme: light;
  --bg: #f6f8f4;
  --surface: #ffffff;
  --surface-2: #eef2ec;
  --text: #111412;
  --muted: #5b625e;
  --soft: #818a84;
  --line: rgba(17, 20, 18, .12);
  --green: #24e676;
  --green-rgb: 36, 230, 118;
  --magenta: #e722a7;
  --magenta-rgb: 231, 34, 167;
  --ink: #050609;
  --shadow: rgba(22, 29, 24, .12);
  --hero-panel: rgba(8, 10, 12, .86);
  --vehicle-bg: #eef2ec;
  --route-soft: rgba(17, 20, 18, .22);
  --radius: 10px;
  --radius-lg: 18px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #050609;
  --surface: #0c0f12;
  --surface-2: #12171b;
  --text: #f7faf8;
  --muted: #a8b0ab;
  --soft: #7e8782;
  --line: rgba(255, 255, 255, .14);
  --shadow: rgba(0, 0, 0, .38);
  --vehicle-bg: #0b0f12;
  --route-soft: rgba(255, 255, 255, .22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  letter-spacing: 0;
}

body,
button,
input {
  font: inherit;
}

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
}

h1,
h2,
h3,
p,
dl {
  margin: 0;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 74px;
  padding: 0 clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: rgba(246, 248, 244, .86);
  backdrop-filter: blur(18px);
}

:root[data-theme="dark"] .site-header {
  background: rgba(5, 6, 9, .84);
}

.brand,
.nav-links,
.header-actions,
.language-switch,
.hero-actions,
.hero-proof,
.map-legend,
.live-badge,
.panel-title {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
  letter-spacing: .01em;
}

.brand img {
  display: block;
  width: 154px;
  height: auto;
}

.brand-symbol,
.sidebar-logo,
.logos b {
  display: grid;
  place-items: center;
  color: var(--ink);
  background: linear-gradient(135deg, var(--green), var(--magenta));
  font-weight: 950;
}

.brand-symbol {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.nav-links {
  justify-content: center;
  gap: clamp(16px, 3vw, 36px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a:hover {
  color: var(--text);
}

.header-actions {
  justify-content: end;
  gap: 10px;
}

.language-switch {
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
}

.language-switch button,
.theme-toggle,
.header-cta,
.btn,
.industry-tabs button,
.vehicle-marker {
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.language-switch button {
  min-width: 36px;
  min-height: 31px;
  color: var(--muted);
  background: transparent;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 850;
}

.language-switch button.active {
  color: var(--ink);
  background: var(--green);
}

.theme-toggle {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
}

.theme-toggle span {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.header-cta,
.btn.primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--green), #7dffab);
  box-shadow: 0 12px 28px rgba(var(--green-rgb), .2);
}

.btn.secondary {
  color: var(--text);
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 86%, transparent);
}

.btn:hover,
.header-cta:hover,
.theme-toggle:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  overflow: hidden;
  color: #f7faf8;
  background:
    linear-gradient(90deg, rgba(5, 6, 9, .98) 0%, rgba(5, 6, 9, .88) 38%, rgba(5, 6, 9, .34) 70%, rgba(5, 6, 9, .72) 100%),
    #050609;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 74px 74px;
  opacity: .18;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 36px, 1220px);
  min-height: calc(100vh - 74px);
  display: grid;
  align-content: center;
  gap: 26px;
  margin: 0 auto;
  padding: 82px 0 96px;
}

.eyebrow {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(48px, 7.4vw, 106px);
  line-height: .92;
  letter-spacing: 0;
}

.hero-content > p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(247, 250, 248, .78);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions .btn::after,
.header-cta::after {
  content: "→";
  font-size: 14px;
  line-height: 1;
  transform: translateY(-1px);
}

.hero-proof {
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-proof div {
  display: grid;
  gap: 6px;
  min-width: 180px;
}

.hero-proof dt {
  color: rgba(247, 250, 248, .52);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 850;
}

.hero-proof dd {
  margin: 0;
  font-size: 17px;
  font-weight: 850;
}

.hero-product {
  position: absolute;
  inset: 42px -8vw 32px auto;
  z-index: 1;
  width: min(980px, 74vw);
  opacity: .96;
}

.hero-vehicle-card {
  position: absolute;
  right: 10%;
  bottom: 1%;
  width: min(620px, 58%);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.03)),
    #0b0f12;
  border-radius: var(--radius-lg);
  box-shadow: 0 34px 96px rgba(0,0,0,.48);
}

.hero-vehicle-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.hero-vehicle-card::after,
.vehicle-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
  inset: 0;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: inherit;
}

.app-window,
.large-screen,
.ops-kpis article,
.ops-map,
.vehicle-detail,
.orders-panel,
.feature-card,
.industry-panel,
.testimonial-grid article,
.fleet-cards article {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px var(--shadow);
}

.hero-window {
  height: 100%;
  min-height: 620px;
  color: #f7faf8;
  background: var(--hero-panel);
  border-color: rgba(255,255,255,.16);
  transform: perspective(1200px) rotateY(-8deg) rotateX(2deg);
  transform-origin: right center;
  box-shadow: 0 38px 120px rgba(0,0,0,.48);
}

.window-top,
.product-toolbar,
.screen-header,
.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.window-top {
  gap: 8px;
  height: 48px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.window-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
}

.window-top span:first-child {
  background: var(--magenta);
}

.window-top span:nth-child(2) {
  background: var(--green);
}

.window-top strong {
  margin-left: auto;
  color: rgba(255,255,255,.7);
  font-size: 12px;
}

.product-layout {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) 210px;
  gap: 18px;
  height: calc(100% - 48px);
  padding: 18px;
}

.product-sidebar {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 18px;
  padding: 14px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius);
}

.sidebar-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.product-sidebar i {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.07);
  border-radius: var(--radius);
}

.product-main {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  min-width: 0;
}

.product-toolbar {
  min-height: 76px;
  padding: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--radius);
}

.product-toolbar small,
.hero-metrics small,
.driver-phone small {
  display: block;
  color: rgba(247,250,248,.52);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 850;
}

.product-toolbar strong {
  display: block;
  margin-top: 6px;
}

.product-toolbar span {
  color: var(--green);
  font-size: 30px;
  font-weight: 950;
}

.hero-map {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background:
    linear-gradient(135deg, rgba(36,230,118,.1), transparent 45%),
    rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--radius);
}

.hero-map svg,
.city-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.street {
  fill: none;
  stroke: rgba(255,255,255,.18);
  stroke-width: 2;
}

:root[data-theme="light"] .city-map .street {
  stroke: rgba(17, 20, 18, .14);
}

.route {
  fill: none;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 15 16;
  animation: routeMove 12s linear infinite;
}

.route.green {
  stroke: rgba(var(--green-rgb), .78);
}

.route.pink {
  stroke: rgba(var(--magenta-rgb), .72);
}

.map-dot {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  translate: -50% -50%;
  padding: 7px 9px;
  background: rgba(5,6,9,.88);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.16);
  font-size: 11px;
  font-weight: 900;
}

.map-dot::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.green-dot::before {
  background: var(--green);
}

.pink-dot::before {
  background: var(--magenta);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-metrics div {
  min-height: 92px;
  padding: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--radius);
}

.hero-metrics strong {
  display: block;
  margin-top: 10px;
  font-size: 26px;
}

.driver-phone {
  align-self: end;
  min-height: 430px;
  padding: 24px 18px;
  background: #07090c;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
}

.phone-speaker {
  width: 64px;
  height: 6px;
  margin: 0 auto 28px;
  background: rgba(255,255,255,.18);
  border-radius: 99px;
}

.driver-phone strong {
  display: block;
  margin: 12px 0 20px;
  font-size: 28px;
}

.phone-route {
  height: 180px;
  margin: 0 0 20px;
  background:
    radial-gradient(circle at 30% 30%, var(--green) 0 6px, transparent 7px),
    radial-gradient(circle at 72% 78%, var(--magenta) 0 6px, transparent 7px),
    linear-gradient(135deg, transparent 44%, rgba(var(--green-rgb), .8) 45% 48%, transparent 49%);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
}

.driver-phone p {
  color: rgba(247,250,248,.72);
}

.driver-phone span {
  display: block;
  width: fit-content;
  margin-top: 12px;
  padding: 8px 10px;
  color: var(--ink);
  background: var(--green);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 900;
}

.section-shell,
.logo-strip {
  width: min(100% - 36px, 1220px);
  margin: 0 auto;
}

.logo-strip {
  display: grid;
  gap: 18px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.logo-strip p {
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.logos span {
  display: block;
  min-height: 76px;
  padding: 0;
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(22, 29, 24, .08);
}

.logos img {
  display: block;
  width: 100%;
  height: 76px;
  object-fit: contain;
}

.platform-section,
.product-section,
.testimonial-section {
  padding: 104px 0;
}

.section-heading {
  display: grid;
  gap: 18px;
  max-width: 760px;
}

.section-heading.narrow {
  max-width: 680px;
}

h2 {
  max-width: 13ch;
  font-size: clamp(38px, 5.3vw, 76px);
  line-height: .94;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.section-copy,
.product-copy > p,
.fleet-copy > p,
.demo-heading p:not(.eyebrow),
.cta-section p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.feature-card {
  min-height: 260px;
  padding: 24px;
}

.feature-card span {
  color: var(--magenta);
  font-weight: 950;
}

.feature-card h3 {
  margin-top: 58px;
  font-size: 23px;
}

.feature-card p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.industry-section,
.demo-section {
  padding: 104px 0;
  background: var(--surface-2);
  border-block: 1px solid var(--line);
}

.industry-grid {
  display: grid;
  grid-template-columns: minmax(300px, .75fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.industry-grid h2 {
  margin-bottom: 20px;
}

.industry-panel {
  padding: 16px;
}

.industry-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.industry-tabs button {
  min-height: 44px;
  padding: 0 10px;
  color: var(--muted);
  border: 1px solid var(--line);
  background: transparent;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 850;
}

.industry-tabs button.active {
  color: var(--ink);
  background: var(--green);
  border-color: var(--green);
}

.industry-result {
  display: grid;
  gap: 14px;
  padding: 36px 12px 10px;
}

.industry-result > span {
  color: var(--magenta);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
}

.industry-result h3 {
  max-width: 560px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: .98;
}

.industry-result p {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.65;
}

.industry-result dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 10px;
}

.industry-result dl div {
  min-height: 106px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  border-radius: var(--radius);
}

.industry-result dt,
.ops-kpis span,
.vehicle-detail > span,
.vehicle-detail dt,
.progress span,
.map-header span,
.orders-panel span {
  color: var(--soft);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-weight: 850;
}

.industry-result dd {
  margin: 10px 0 0;
  font-size: 34px;
  font-weight: 950;
}

.product-section {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.product-copy {
  display: grid;
  gap: 18px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  line-height: 1.6;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 14px;
  height: 14px;
  background: var(--green);
  border-radius: 50%;
}

.large-screen {
  min-height: 520px;
  padding: 18px;
}

.screen-header {
  min-height: 54px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.screen-header span,
.live-badge {
  color: var(--ink);
  background: var(--green);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 900;
}

.screen-header span {
  padding: 8px 10px;
}

.analytics-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  height: calc(520px - 88px);
  padding-top: 18px;
}

.analytics-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  padding: 24px;
  background:
    linear-gradient(rgba(var(--green-rgb), .08), transparent),
    var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.analytics-chart span {
  flex: 1;
  min-height: 38px;
  background: linear-gradient(180deg, var(--green), rgba(var(--green-rgb), .18));
  border-radius: 6px 6px 0 0;
}

.analytics-chart span:nth-child(4),
.analytics-chart span:nth-child(6) {
  background: linear-gradient(180deg, var(--magenta), rgba(var(--magenta-rgb), .18));
}

.analytics-list {
  display: grid;
  gap: 12px;
}

.analytics-list article {
  display: grid;
  grid-template-columns: 86px 1fr 48px;
  gap: 12px;
  align-items: center;
  padding: 16px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.analytics-list i {
  height: 8px;
  background: var(--green);
  border-radius: 99px;
}

.analytics-list i.hot {
  background: var(--magenta);
}

.fleet-section {
  padding: 104px 0;
}

.fleet-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .58fr);
  gap: 36px;
  align-items: center;
}

.vehicle-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px var(--shadow);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 90%, white), var(--surface)),
    var(--surface);
}

.vehicle-visual > img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.vehicle-visual > img,
.hero-vehicle-card img {
  background:
    radial-gradient(circle at 70% 20%, rgba(var(--green-rgb), .12), transparent 28%),
    radial-gradient(circle at 30% 80%, rgba(var(--magenta-rgb), .1), transparent 30%),
    var(--surface-2);
}

.fleet-photo-strip {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.fleet-photo-strip img {
  width: 180px;
  height: 104px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
}

.fleet-photo-strip div {
  display: grid;
  gap: 6px;
}

.fleet-photo-strip span {
  color: var(--magenta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.fleet-photo-strip strong {
  font-size: 19px;
  line-height: 1.25;
}

.fleet-copy {
  display: grid;
  gap: 18px;
}

.fleet-cards {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.fleet-cards article {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 70px;
  padding: 14px 16px;
}

.fleet-cards strong {
  color: var(--green);
}

.fleet-cards span {
  color: var(--muted);
}

.demo-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.demo-heading div:first-child {
  display: grid;
  gap: 18px;
  max-width: 760px;
}

.demo-heading h2 {
  max-width: 14ch;
}

.live-badge {
  gap: 9px;
  min-height: 42px;
  padding: 0 13px;
}

.live-badge span {
  width: 10px;
  height: 10px;
  background: var(--ink);
  border-radius: 50%;
}

.ops-grid {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) 280px;
  grid-template-rows: minmax(480px, auto) auto;
  gap: 14px;
}

.ops-kpis {
  display: grid;
  gap: 12px;
}

.ops-kpis article {
  min-height: 112px;
  padding: 18px;
}

.ops-kpis strong {
  display: block;
  margin-top: 12px;
  font-size: 30px;
}

.ops-map {
  overflow: hidden;
}

.map-header {
  min-height: 68px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.map-header strong {
  display: block;
  margin-top: 5px;
}

.map-legend {
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.map-legend i {
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
}

.city-map {
  position: relative;
  min-height: 512px;
  overflow: hidden;
  background: #101418;
}

.tile-layer {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  opacity: .92;
  filter: saturate(.82) contrast(1.06);
}

:root[data-theme="light"] .tile-layer {
  filter: saturate(.86) contrast(1.03);
}

.tile-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.city-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 44% 46%, rgba(var(--magenta-rgb), .22), transparent 18%),
    radial-gradient(circle at 72% 66%, rgba(var(--green-rgb), .18), transparent 16%),
    linear-gradient(180deg, rgba(5,6,9,.12), rgba(5,6,9,.46));
}

:root[data-theme="light"] .city-map::after {
  background:
    radial-gradient(circle at 44% 46%, rgba(var(--magenta-rgb), .16), transparent 18%),
    radial-gradient(circle at 72% 66%, rgba(var(--green-rgb), .14), transparent 16%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.22));
}

.city-map svg {
  z-index: 2;
  pointer-events: none;
}

.heat {
  opacity: .18;
}

.pink-heat {
  fill: var(--magenta);
}

.green-heat {
  fill: var(--green);
}

.vehicle-marker {
  position: absolute;
  z-index: 4;
  left: var(--x);
  top: var(--y);
  translate: -50% -50%;
  padding: 8px 10px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px var(--shadow);
  font-size: 12px;
  font-weight: 900;
}

.map-attribution {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 5;
  padding: 6px 8px;
  color: rgba(255,255,255,.72);
  background: rgba(5,6,9,.74);
  border-radius: 6px;
  font-size: 11px;
}

.vehicle-marker::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  background: var(--accent);
  border-radius: 50%;
}

.vehicle-marker.active,
.vehicle-marker:hover {
  transform: translateY(-2px);
}

.vehicle-detail {
  padding: 18px;
}

.vehicle-detail h3 {
  margin: 10px 0 18px;
  font-size: 34px;
}

.vehicle-detail dl {
  display: grid;
  gap: 10px;
}

.vehicle-detail dl div {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 10px;
  padding: 12px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.vehicle-detail dd {
  margin: 0;
  font-weight: 850;
}

.progress {
  margin-top: 18px;
}

.progress div {
  height: 10px;
  margin-top: 10px;
  background: var(--surface-2);
  border-radius: 99px;
  overflow: hidden;
}

.progress i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--magenta));
  transition: width .4s ease;
}

.orders-panel {
  grid-column: 1 / -1;
  padding: 18px;
}

.panel-title {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.order-table {
  display: grid;
  gap: 8px;
}

.order-row {
  display: grid;
  grid-template-columns: 112px 1fr 120px 120px 112px;
  gap: 12px;
  align-items: center;
  min-height: 54px;
  padding: 12px 14px;
  color: var(--muted);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 13px;
}

.order-row strong {
  color: var(--text);
}

.badge {
  width: fit-content;
  padding: 7px 9px;
  color: var(--ink);
  background: var(--green);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
}

.badge.warning {
  background: var(--magenta);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.testimonial-grid article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 270px;
  padding: 24px;
}

.testimonial-grid p {
  font-size: 20px;
  line-height: 1.45;
}

.testimonial-grid footer {
  display: grid;
  gap: 6px;
  margin-top: 28px;
}

.testimonial-grid span {
  color: var(--muted);
  font-size: 13px;
}

.cta-section {
  padding: 104px 0;
  color: #f7faf8;
  background:
    linear-gradient(90deg, rgba(5,6,9,.96), rgba(5,6,9,.72)),
    linear-gradient(135deg, rgba(var(--green-rgb), .22), rgba(var(--magenta-rgb), .18));
}

.cta-section .section-shell {
  display: grid;
  gap: 20px;
}

.cta-section h2 {
  max-width: 760px;
}

.cta-section p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(247, 250, 248, .76);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 54px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer span {
  color: var(--text);
  font-weight: 950;
}

@keyframes routeMove {
  to {
    stroke-dashoffset: -248;
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .hero-product {
    width: 92vw;
    inset: auto -28vw 20px auto;
    opacity: .58;
  }

  .hero-window {
    min-height: 520px;
    transform: none;
  }

  .product-layout {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .driver-phone {
    display: none;
  }

  .feature-grid,
  .logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logos span,
  .logos img {
    min-height: 82px;
    height: 82px;
  }

  .industry-grid,
  .product-section,
  .fleet-grid,
  .ops-grid {
    grid-template-columns: 1fr;
  }

  .orders-panel {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 66px;
    padding-inline: 12px;
    gap: 10px;
  }

  .header-cta {
    display: none;
  }

  .brand img {
    width: 108px;
  }

  .header-actions {
    gap: 6px;
  }

  .language-switch {
    gap: 2px;
    padding: 2px;
  }

  .language-switch button {
    min-width: 31px;
    min-height: 29px;
    font-size: 11px;
  }

  .theme-toggle {
    width: 34px;
    height: 34px;
  }

  .theme-toggle span {
    width: 15px;
    height: 15px;
  }

  .section-shell,
  .logo-strip,
  .hero-content {
    width: min(100% - 28px, 1220px);
  }

  .hero h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 40px;
  }

  .hero-product {
    inset: auto -28vw 12px auto;
    width: 104vw;
    opacity: .36;
    pointer-events: none;
  }

  .hero-vehicle-card {
    right: 12%;
    bottom: 0;
    width: 64%;
    border-radius: 12px;
  }

  .hero-window {
    min-height: 360px;
    opacity: .72;
  }

  .product-sidebar,
  .hero-metrics {
    display: none;
  }

  .product-layout {
    grid-template-columns: 1fr;
  }

  .hero-map {
    min-height: 330px;
  }

  .hero-proof,
  .hero-actions,
  .demo-heading,
  .site-footer,
  .map-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 48px;
    white-space: normal;
  }

  .platform-section,
  .product-section,
  .testimonial-section,
  .industry-section,
  .demo-section,
  .fleet-section,
  .cta-section {
    padding: 72px 0;
  }

  .feature-grid,
  .logos,
  .industry-tabs,
  .industry-result dl,
  .analytics-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .logos span,
  .logos img {
    height: 86px;
    min-height: 86px;
  }

  .large-screen {
    min-height: auto;
  }

  .analytics-grid {
    height: auto;
  }

  .analytics-chart {
    min-height: 250px;
  }

  .city-map {
    min-height: 430px;
  }

  .fleet-photo-strip {
    grid-template-columns: 1fr;
  }

  .fleet-photo-strip img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .order-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }
}

/* Product-detail pass */
.hero {
  isolation: isolate;
}

.hero-context {
  position: absolute;
  z-index: 0;
  left: max(-90px, -6vw);
  bottom: 0;
  width: min(540px, 47vw);
  height: 43%;
  margin: 0;
  overflow: hidden;
  opacity: .24;
  pointer-events: none;
}

.hero-context::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0c0d0e 0%, rgba(12, 13, 14, .6) 58%, rgba(12, 13, 14, .08));
}

.hero-context img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  filter: grayscale(1) contrast(1.2) brightness(.7);
}

.hero-proof {
  width: min(100%, 505px);
}

.analytics-list article:nth-child(1) i {
  background: var(--green);
}

.analytics-list article:nth-child(2) i {
  background: #3f8cff;
}

.analytics-list article:nth-child(3) i {
  background: var(--magenta);
}

.logos {
  display: block;
  overflow: hidden;
  border-block: 1px solid var(--line);
}

.logos-track {
  display: flex;
  width: max-content;
  animation: clientRail 44s linear infinite;
}

.logos:hover .logos-track {
  animation-play-state: paused;
}

.logos span {
  display: grid;
  flex: 0 0 220px;
  width: 220px;
  height: 82px;
  min-height: 82px;
  padding: 10px 18px;
  overflow: hidden;
  border: 0;
  border-right: 1px solid var(--line);
  background: #fff;
}

.logos img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logos .client-nimbo img {
  transform: scale(1.1);
}

.logos .client-distrito img {
  transform: scale(1.14);
}

.vehicle-visual {
  min-height: 0;
  color: #fff;
  border-color: #2d3334;
  background: #0d1012;
}

.vehicle-visual::after {
  z-index: 1;
  border: 0;
  background: linear-gradient(180deg, rgba(4, 6, 7, .04) 26%, rgba(4, 6, 7, .76) 100%);
}

.vehicle-visual > img {
  position: relative;
  z-index: 0;
  aspect-ratio: 16 / 10;
  filter: saturate(.9) contrast(1.08);
}

.fleet-visual-meta {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 22px;
  display: grid;
  gap: 7px;
  max-width: 260px;
  padding-left: 14px;
  border-left: 2px solid var(--green);
}

.fleet-visual-meta span,
.fleet-photo-strip span {
  color: var(--green);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
}

.fleet-visual-meta strong {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
}

.fleet-photo-strip {
  position: relative;
  z-index: 3;
  grid-template-columns: 164px 1fr;
  gap: 16px;
  padding: 16px 20px;
  color: #f4f7f5;
  border-top-color: rgba(255, 255, 255, .18);
  background: #111518;
}

.fleet-photo-strip img {
  width: 164px;
  height: 92px;
  filter: saturate(.84) contrast(1.1);
}

.fleet-photo-strip strong {
  max-width: 290px;
  font-size: 17px;
  font-weight: 500;
}

.fleet-cards {
  gap: 0;
  border-top: 1px solid var(--line);
}

.fleet-cards article {
  grid-template-columns: 122px 1fr;
  min-height: 74px;
  padding: 15px 16px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-left: 3px solid var(--green);
  background: transparent;
}

.fleet-cards article:nth-child(2) {
  border-left-color: #3f8cff;
}

.fleet-cards article:nth-child(3) {
  border-left-color: var(--magenta);
}

.fleet-cards article:nth-child(2) strong {
  color: #287cf1;
}

.fleet-cards article:nth-child(3) strong {
  color: var(--magenta);
}

.testimonial-section {
  position: relative;
  isolation: isolate;
  padding: 94px 54px;
  color: #f5f7f6;
  overflow: hidden;
  background: #101315;
}

.testimonial-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    radial-gradient(circle at 82% 24%, rgba(var(--green-rgb), .18), transparent 19%),
    radial-gradient(circle at 13% 82%, rgba(var(--magenta-rgb), .16), transparent 18%);
  background-size: 84px 84px, 84px 84px, auto, auto;
}

.testimonial-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 92px;
  height: 5px;
  background: var(--green);
}

.testimonial-section .section-heading p:not(.eyebrow) {
  color: rgba(245, 247, 246, .72);
}

.testimonial-grid {
  border-color: rgba(255, 255, 255, .22);
}

.testimonial-grid article {
  background: rgba(12, 14, 15, .48);
  border-right-color: rgba(255, 255, 255, .22);
}

.testimonial-grid article:nth-child(2) {
  background: rgba(255, 255, 255, .06);
}

.testimonial-grid p {
  font-size: 21px;
  font-weight: 500;
}

.testimonial-grid span {
  color: rgba(245, 247, 246, .64);
}

.cta-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #07090a;
}

.cta-section::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, #07090a 0%, rgba(7, 9, 10, .84) 48%, rgba(7, 9, 10, .42) 100%),
    url("./assets/media/orbia-van-hero.webp") right center / min(760px, 60vw) auto no-repeat;
  filter: saturate(.78) contrast(1.08);
}

.cta-motion {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  opacity: .78;
  pointer-events: none;
}

.cta-motion::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 48%, #000 100%);
}

.cta-motion i {
  position: absolute;
  right: -16%;
  width: 68%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  animation: signalFlow 7.2s linear infinite;
}

.cta-motion i::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 26%;
  width: 7px;
  height: 7px;
  background: var(--magenta);
  border-radius: 50%;
}

.cta-motion i:nth-child(1) { top: 18%; animation-delay: -1.8s; }
.cta-motion i:nth-child(2) { top: 34%; animation-delay: -4.2s; }
.cta-motion i:nth-child(3) { top: 51%; animation-delay: -.8s; }
.cta-motion i:nth-child(4) { top: 68%; animation-delay: -5.5s; }
.cta-motion i:nth-child(5) { top: 84%; animation-delay: -2.8s; }

@keyframes clientRail {
  to { transform: translateX(-50%); }
}

@keyframes signalFlow {
  from { transform: translateX(32%) scaleX(.72); opacity: 0; }
  18% { opacity: .82; }
  82% { opacity: .82; }
  to { transform: translateX(-118%) scaleX(1); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .logos-track,
  .cta-motion i {
    animation-play-state: paused;
  }
}

@media (max-width: 760px) {
  .hero-context {
    display: none;
  }

  .logos span {
    flex-basis: 168px;
    width: 168px;
    height: 72px;
    min-height: 72px;
    padding: 9px 13px;
  }

  .logos span:nth-child(2n),
  .logos span:nth-child(-n + 4) {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .testimonial-section {
    width: min(100% - 32px, 1248px);
    padding: 72px 24px;
  }

  .fleet-visual-meta {
    top: 16px;
    left: 16px;
  }

  .fleet-photo-strip {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .fleet-photo-strip img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 8;
  }

  .cta-section::before {
    background:
      linear-gradient(90deg, #07090a 0%, rgba(7, 9, 10, .8) 100%),
      url("./assets/media/orbia-van-hero.webp") center / cover no-repeat;
  }
}

@media (max-width: 430px) {
  .brand img {
    width: 96px;
  }

  .hero-product {
    display: none;
  }

  .hero-content {
    min-height: calc(100vh - 66px);
  }
}

/* Corporate visual refresh: information-led, calm, and deliberately precise. */
:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #f4f5f5;
  --text: #111214;
  --muted: #5a6268;
  --soft: #747c83;
  --line: #d9dddf;
  --green: #00e85a;
  --green-rgb: 0, 232, 90;
  --magenta: #d51d9e;
  --magenta-rgb: 213, 29, 158;
  --ink: #0c0d0e;
  --shadow: transparent;
  --radius: 2px;
  --radius-lg: 2px;
  font-family: "IBM Plex Sans", Arial, sans-serif;
}

:root[data-theme="dark"] {
  --bg: #0c0d0e;
  --surface: #121416;
  --surface-2: #191c1e;
  --text: #f5f7f6;
  --muted: #b5bcbd;
  --soft: #889194;
  --line: #313638;
  --ink: #0c0d0e;
}

body,
button,
input {
  font-family: "IBM Plex Sans", Arial, sans-serif;
}

.site-header {
  min-height: 76px;
  padding-inline: clamp(20px, 4vw, 64px);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: none;
}

:root[data-theme="dark"] .site-header {
  background: rgba(12, 13, 14, .94);
}

.brand img {
  width: 136px;
}

.nav-links {
  gap: clamp(18px, 2.3vw, 30px);
  font-size: 13px;
  font-weight: 600;
}

.language-switch,
.theme-toggle {
  border-radius: 2px;
  box-shadow: none;
}

.language-switch button,
.theme-toggle,
.header-cta,
.btn,
.industry-tabs button,
.vehicle-marker {
  border-radius: 2px;
}

.language-switch button.active,
.header-cta,
.btn.primary {
  background: var(--green);
  box-shadow: none;
}

.header-cta,
.btn {
  min-height: 46px;
  padding-inline: 20px;
  font-size: 14px;
  font-weight: 600;
}

.hero-actions .btn::after,
.header-cta::after {
  content: none;
}

.btn:hover,
.header-cta:hover,
.theme-toggle:hover {
  transform: none;
}

.hero {
  min-height: 700px;
  background: #0c0d0e;
}

.hero::before {
  inset: 0 0 0 50%;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, .1) 1px, transparent 1px);
  background-size: 25% 100%;
  opacity: .32;
}

.hero-content {
  min-height: 700px;
  gap: 24px;
  padding-block: 92px;
}

.eyebrow {
  color: var(--green);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
}

.hero h1 {
  max-width: 8.8ch;
  font-size: clamp(52px, 5.5vw, 82px);
  line-height: .99;
  font-weight: 600;
}

.hero-content > p:not(.eyebrow) {
  max-width: 505px;
  font-size: 18px;
  line-height: 1.55;
}

.hero-proof {
  gap: 0;
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .24);
}

.hero-proof div {
  gap: 7px;
  min-width: 206px;
  padding: 16px 28px 0 0;
}

.hero-proof div + div {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, .24);
}

.hero-proof dt,
.product-toolbar small,
.hero-metrics small,
.driver-phone small {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
  letter-spacing: .06em;
}

.hero-product {
  inset: 100px max(-30px, 3vw) 72px auto;
  width: min(720px, 55vw);
  opacity: 1;
}

.hero-vehicle-card {
  display: none;
}

.app-window,
.large-screen,
.ops-kpis article,
.ops-map,
.vehicle-detail,
.orders-panel,
.feature-card,
.industry-panel,
.testimonial-grid article,
.fleet-cards article,
.vehicle-visual {
  border-radius: 0;
  box-shadow: none;
}

.hero-window {
  min-height: 520px;
  background: #15181a;
  border-color: rgba(255, 255, 255, .2);
  transform: none;
  box-shadow: none;
}

.product-layout {
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px;
}

.driver-phone {
  display: none;
}

.product-sidebar,
.product-toolbar,
.hero-map,
.hero-metrics div {
  border-radius: 0;
}

.sidebar-logo {
  border-radius: 0;
  background: var(--green);
}

.product-sidebar i {
  border-radius: 0;
}

.product-toolbar span {
  color: var(--green);
  font-size: 26px;
}

.hero-map {
  min-height: 280px;
  background: #101315;
}

.route {
  stroke-width: 4;
  stroke-dasharray: 9 12;
}

.map-dot,
.hero-metrics div {
  border-radius: 0;
}

.hero-metrics div {
  min-height: 78px;
  padding: 12px;
}

.hero-metrics strong {
  margin-top: 7px;
  font-size: 21px;
}

.section-shell,
.logo-strip {
  width: min(100% - 48px, 1248px);
}

.logo-strip {
  gap: 16px;
  padding: 30px 0;
}

.logo-strip p {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: .04em;
  text-align: left;
}

.logos {
  gap: 0;
  border-block: 1px solid var(--line);
}

.logos span {
  min-height: 64px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.logos span:last-child {
  border-right: 0;
}

.logos img {
  height: 64px;
}

.platform-section,
.product-section,
.testimonial-section,
.fleet-section {
  padding: 112px 0;
}

h2 {
  max-width: 15ch;
  font-size: clamp(40px, 4.2vw, 64px);
  line-height: 1.04;
  font-weight: 600;
}

.section-heading p:not(.eyebrow),
.section-copy,
.product-copy > p,
.fleet-copy > p,
.demo-heading p:not(.eyebrow),
.cta-section p:not(.eyebrow) {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.6;
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 52px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-card {
  min-height: 225px;
  padding: 24px 28px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.feature-card span {
  color: var(--magenta);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
}

.feature-card h3 {
  margin-top: 48px;
  font-size: 25px;
  font-weight: 600;
}

.industry-section,
.demo-section {
  padding: 112px 0;
  background: var(--surface-2);
}

.industry-panel {
  padding: 0;
  border: 0;
  background: transparent;
}

.industry-tabs {
  gap: 0;
  border: 1px solid var(--line);
}

.industry-tabs button {
  min-height: 50px;
  border: 0;
  border-right: 1px solid var(--line);
  font-size: 13px;
}

.industry-tabs button:last-child {
  border-right: 0;
}

.industry-tabs button.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.industry-result {
  padding: 46px 0 0;
}

.industry-result > span {
  color: var(--magenta);
  font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
}

.industry-result h3 {
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.04;
  font-weight: 600;
}

.industry-result dl div {
  border-radius: 0;
  background: transparent;
}

.large-screen {
  padding: 18px;
  background: var(--surface);
}

.analytics-chart,
.analytics-list article,
.fleet-cards article,
.vehicle-detail dl div,
.order-row {
  border-radius: 0;
}

.analytics-chart {
  background: var(--surface-2);
}

.analytics-chart span,
.progress i {
  background: var(--green);
}

.analytics-chart span:nth-child(4),
.analytics-chart span:nth-child(6) {
  background: var(--magenta);
}

.check-list li::before,
.map-legend i,
.vehicle-marker::before {
  border-radius: 0;
}

.vehicle-visual {
  background: var(--surface);
}

.vehicle-visual::after,
.hero-vehicle-card::after {
  border-radius: 0;
}

.fleet-photo-strip {
  border-radius: 0;
}

.fleet-photo-strip img {
  border-radius: 0;
}

.fleet-cards strong {
  color: var(--magenta);
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
}

.live-badge,
.screen-header span,
.badge {
  border-radius: 0;
  background: var(--green);
}

.ops-grid {
  gap: 0;
  border: 1px solid var(--line);
}

.ops-kpis,
.ops-map,
.vehicle-detail,
.orders-panel {
  gap: 0;
  border: 0;
  border-right: 1px solid var(--line);
  box-shadow: none;
}

.ops-kpis article {
  min-height: 120px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.ops-kpis article:last-child {
  border-bottom: 0;
}

.ops-map {
  border-right: 1px solid var(--line);
}

.orders-panel {
  border-top: 1px solid var(--line);
  border-right: 0;
}

.city-map,
.map-attribution {
  border-radius: 0;
}

.vehicle-marker {
  box-shadow: none;
}

.testimonial-grid {
  gap: 0;
  margin-top: 48px;
  border: 1px solid var(--line);
}

.testimonial-grid article {
  min-height: 260px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
}

.testimonial-grid article:last-child {
  border-right: 0;
}

.cta-section {
  padding: 116px 0;
  background: #0c0d0e;
}

.cta-section .section-shell {
  max-width: 1248px;
}

.site-footer {
  padding-inline: clamp(20px, 4vw, 64px);
  font-size: 13px;
}

@media (max-width: 1120px) {
  .hero {
    min-height: 660px;
  }

  .hero-content {
    min-height: 660px;
  }

  .hero-product {
    right: -12vw;
    width: min(700px, 61vw);
    opacity: .82;
  }

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

  .ops-grid {
    gap: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    padding-inline: 16px;
  }

  .brand img {
    width: 112px;
  }

  .section-shell,
  .logo-strip,
  .hero-content {
    width: min(100% - 32px, 1248px);
  }

  .hero {
    min-height: auto;
  }

  .hero::before,
  .hero-product {
    display: none;
  }

  .hero-content {
    min-height: auto;
    padding: 84px 0 72px;
  }

  .hero h1 {
    max-width: 10.5ch;
    font-size: clamp(46px, 13vw, 62px);
  }

  .hero-content > p:not(.eyebrow) {
    font-size: 17px;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-proof div,
  .hero-proof div + div {
    min-width: 0;
    padding: 16px 0 0;
    border-left: 0;
  }

  .hero-proof div + div {
    border-top: 1px solid rgba(255, 255, 255, .24);
  }

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

  .logos span:nth-child(2n) {
    border-right: 0;
  }

  .logos span:nth-child(-n + 4) {
    border-bottom: 1px solid var(--line);
  }

  .feature-grid,
  .industry-tabs,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .industry-tabs button,
  .industry-tabs button:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .industry-tabs button:last-child {
    border-bottom: 0;
  }

  .feature-card,
  .testimonial-grid article,
  .testimonial-grid article:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .testimonial-grid article:last-child {
    border-bottom: 0;
  }

  .platform-section,
  .product-section,
  .testimonial-section,
  .industry-section,
  .demo-section,
  .fleet-section,
  .cta-section {
    padding: 80px 0;
  }

  h2 {
    font-size: 42px;
  }

  .ops-grid {
    border: 1px solid var(--line);
  }

  .ops-map,
  .vehicle-detail,
  .orders-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .orders-panel {
    border-bottom: 0;
  }
}

/* Final visual adjustments */
.hero-context {
  display: none;
}

.hero-motion {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-motion::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 12.5% 100%;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .2) 44%, transparent 75%);
}

.hero-motion i {
  position: absolute;
  left: -18%;
  width: 62%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: .48;
  animation: heroSignal 9s linear infinite;
}

.hero-motion i::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 22%;
  width: 7px;
  height: 7px;
  background: var(--magenta);
  border-radius: 50%;
}

.hero-motion i:nth-child(1) { top: 16%; animation-delay: -1.2s; }
.hero-motion i:nth-child(2) { top: 29%; animation-delay: -5.8s; }
.hero-motion i:nth-child(3) { top: 43%; animation-delay: -2.5s; }
.hero-motion i:nth-child(4) { top: 57%; animation-delay: -7s; }
.hero-motion i:nth-child(5) { top: 71%; animation-delay: -3.7s; }
.hero-motion i:nth-child(6) { top: 85%; animation-delay: -6.1s; }

.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 470px);
}

.hero-proof div {
  min-width: 0;
  padding-right: 16px;
}

.hero-proof div + div {
  padding-left: 16px;
}

.logo-strip p {
  max-width: 27ch;
  color: var(--text);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(20px, 2.1vw, 30px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.14;
}

.analytics-chart span:nth-child(3),
.analytics-chart span:nth-child(5) {
  background: #3f8cff;
}

.testimonial-section {
  padding: 112px 0;
  color: var(--text);
  overflow: visible;
  background: transparent;
}

.testimonial-section::before,
.testimonial-section::after {
  display: none;
}

.testimonial-grid {
  margin-top: 44px;
  border-color: var(--line);
}

.testimonial-grid article,
.testimonial-grid article:nth-child(2) {
  min-height: 248px;
  background: transparent;
  border-right-color: var(--line);
}

.testimonial-grid article::before {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  margin-bottom: 28px;
  background: var(--green);
}

.testimonial-grid article:nth-child(2)::before {
  background: #3f8cff;
}

.testimonial-grid article:nth-child(3)::before {
  background: var(--magenta);
}

.testimonial-grid p {
  font-size: 19px;
  font-weight: 500;
}

.testimonial-grid span {
  color: var(--muted);
}

.cta-section {
  min-height: 560px;
  display: grid;
  align-items: center;
  padding: 112px 0;
  background: #07090a;
}

.cta-section::before {
  z-index: -2;
  background: #07090a;
  filter: none;
}

.cta-motion {
  z-index: -1;
  perspective: 900px;
  opacity: 1;
}

.cta-motion::before {
  inset: -42% -18% 0;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, .1) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .09) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 34%, #000 100%);
  transform: rotateX(64deg) translateY(24%) scale(1.5);
  transform-origin: center bottom;
  animation: gridDepth 12s linear infinite;
}

.cta-motion i {
  right: -14%;
  width: 74%;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.cta-motion i::after {
  left: 32%;
}

@keyframes heroSignal {
  from { transform: translateX(-12%) scaleX(.72); opacity: 0; }
  18% { opacity: .52; }
  82% { opacity: .52; }
  to { transform: translateX(175%) scaleX(1); opacity: 0; }
}

@keyframes gridDepth {
  from { background-position: 0 0, 0 0; }
  to { background-position: 0 0, 0 68px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-motion i,
  .cta-motion::before {
    animation-play-state: paused;
  }
}

@media (max-width: 760px) {
  .hero-motion {
    opacity: .62;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-proof div,
  .hero-proof div + div {
    padding-inline: 0;
  }

  .testimonial-section {
    width: min(100% - 32px, 1248px);
    padding: 80px 0;
  }

  .cta-section {
    min-height: 500px;
    padding: 80px 0;
  }
}
