:root {
  --ink: #111413;
  --ink-2: #1a1d1c;
  --paper: #f4f2eb;
  --paper-2: #e8e6dd;
  --white: #ffffff;
  --acid: #dfff45;
  --acid-2: #c8ef22;
  --blue: #4fbce9;
  --muted: #747873;
  --line: rgba(17, 20, 19, .15);
  --line-dark: rgba(255, 255, 255, .16);
  --radius: 24px;
  --shadow: 0 30px 80px rgba(10, 13, 12, .16);
  --shell: min(1240px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p, h1, h2, h3 { margin-top: 0; }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 132px 0; }
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--acid);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: none; }

:focus-visible { outline: 3px solid var(--acid); outline-offset: 4px; }

.site-header {
  position: fixed;
  z-index: 80;
  inset: 0 0 auto;
  color: var(--white);
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(17, 20, 19, .9);
  border-color: rgba(255, 255, 255, .12);
  backdrop-filter: blur(18px);
}
.site-header__inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
}
.brand { display: inline-flex; align-items: center; gap: 12px; width: max-content; }
.brand__mark {
  width: 42px;
  height: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  padding: 9px;
  border: 1px solid currentColor;
  border-radius: 14px;
}
.brand__mark i { display: block; background: currentColor; border-radius: 5px; }
.brand__mark i:nth-child(1) { height: 9px; align-self: end; }
.brand__mark i:nth-child(2) { height: 17px; align-self: end; }
.brand__mark i:nth-child(3) { height: 24px; align-self: end; }
.brand strong { display: block; font-size: 16px; letter-spacing: .22em; line-height: 1; }
.brand small { display: block; margin-top: 5px; font-size: 8px; letter-spacing: .36em; opacity: .7; }
.site-nav { display: flex; gap: 34px; font-size: 13px; font-weight: 650; }
.site-nav a { position: relative; padding: 10px 0; opacity: .82; }
.site-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 3px;
  height: 1px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.site-nav a:hover { opacity: 1; }
.site-nav a:hover::after { transform: scaleX(1); }
.header-cta {
  justify-self: end;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: color .2s, background .2s, border-color .2s;
}
.header-cta span { margin-left: 12px; }
.header-cta:hover { color: var(--ink); background: var(--acid); border-color: var(--acid); }

.hero {
  min-height: 940px;
  height: 100svh;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #18211f;
}
.hero__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,11,10,.95) 0%, rgba(8,11,10,.76) 38%, rgba(8,11,10,.12) 72%, rgba(8,11,10,.26) 100%),
    linear-gradient(0deg, rgba(8,11,10,.64) 0%, transparent 46%);
}
.hero__grid {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 720px) 1fr;
  align-items: center;
  padding-top: 80px;
}
.hero__copy { padding-bottom: 62px; }
.eyebrow, .kicker {
  margin-bottom: 26px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow { color: var(--acid); display: flex; align-items: center; gap: 12px; }
.eyebrow span { width: 34px; height: 3px; background: currentColor; }
.kicker--acid { color: var(--acid); }
.hero h1, .section-head h2, .platform h2, .terrain h2, .fleet-story h2, .request h2, .faq h2 {
  font-size: clamp(54px, 6.6vw, 102px);
  line-height: .88;
  letter-spacing: -.065em;
  font-weight: 760;
}
.hero h1 { margin: 0 0 34px; max-width: 800px; }
h1 em, h2 em {
  color: var(--acid-2);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.075em;
}
.hero__lead { max-width: 620px; margin-bottom: 34px; color: rgba(255,255,255,.82); font-size: 20px; line-height: 1.48; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 780;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--acid { color: var(--ink); background: var(--acid); }
.button--acid:hover { background: var(--white); }
.button--ghost { color: var(--white); border: 1px solid rgba(255,255,255,.42); background: rgba(255,255,255,.05); }
.button--ghost:hover { color: var(--ink); background: var(--white); }
.button--dark { color: var(--white); background: var(--ink); }
.button--dark:hover { color: var(--ink); background: var(--acid); }
.hero__badge {
  justify-self: end;
  align-self: center;
  margin-top: 200px;
  width: 148px;
  height: 148px;
  display: grid;
  place-content: center;
  gap: 2px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  backdrop-filter: blur(12px);
  background: rgba(17,20,19,.18);
  transform: rotate(8deg);
}
.hero__badge b { color: var(--acid); font-size: 28px; line-height: 1; }
.hero__badge small { font-size: 9px; letter-spacing: .14em; line-height: 1.3; }
.pulse { position: absolute; width: 9px; height: 9px; margin: -16px 0 0 66px; background: var(--acid); border-radius: 50%; box-shadow: 0 0 0 8px rgba(223,255,69,.12); }
.hero__facts {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.2);
}
.hero__facts li { min-height: 116px; display: flex; align-items: center; gap: 26px; border-right: 1px solid rgba(255,255,255,.2); }
.hero__facts li:last-child { border-right: 0; }
.hero__facts strong { color: var(--acid); font-size: 12px; letter-spacing: .12em; }
.hero__facts span { font-size: 13px; line-height: 1.35; letter-spacing: .04em; text-transform: uppercase; }

.ticker { overflow: hidden; color: var(--ink); background: var(--acid); border-block: 1px solid rgba(17,20,19,.2); }
.ticker div {
  width: max-content;
  padding: 16px 0;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .12em;
  animation: ticker 24s linear infinite;
}
.ticker i { margin: 0 18px; font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section-head { max-width: 970px; margin-bottom: 68px; }
.section-head h2, .platform h2, .terrain h2, .fleet-story h2, .request h2, .faq h2 {
  margin-bottom: 30px;
  font-size: clamp(44px, 5.4vw, 78px);
  line-height: .95;
}
.section-head > p:last-child { max-width: 640px; color: var(--muted); font-size: 18px; }
.section-head--split {
  max-width: none;
  display: grid;
  grid-template-columns: .55fr 1.75fr .8fr;
  gap: 40px;
  align-items: end;
}
.section-head--split .kicker { align-self: start; margin-top: 12px; }
.section-head--split h2 { margin-bottom: 0; }
.section-head--split > p:last-child { margin: 0 0 4px; font-size: 16px; }
.section-head--light { color: var(--white); }
.section-head--light > p:last-child { color: rgba(255,255,255,.62); }

.transformation { background: var(--paper); }
.before-after {
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  align-items: stretch;
}
.comparison { min-height: 430px; padding: 50px; border-radius: var(--radius); position: relative; overflow: hidden; }
.comparison::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .4;
  background-image: radial-gradient(currentColor 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: linear-gradient(to bottom right, #000, transparent 62%);
}
.comparison--before { color: rgba(255,255,255,.7); background: #4f5350; }
.comparison--after { color: var(--ink); background: var(--acid); }
.comparison__label { position: relative; margin-bottom: 58px; font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.comparison h3 { position: relative; margin-bottom: 34px; color: var(--white); font-size: 34px; letter-spacing: -.04em; }
.comparison--after h3 { color: var(--ink); }
.comparison ul { position: relative; display: grid; gap: 16px; font-size: 16px; }
.comparison li { padding-bottom: 14px; border-bottom: 1px solid currentColor; }
.comparison__stamp { position: absolute; right: 30px; bottom: 28px; padding: 9px 12px; border: 1px solid currentColor; border-radius: 999px; font-size: 9px; font-weight: 850; letter-spacing: .13em; transform: rotate(-5deg); }
.transformation__arrow { display: grid; place-items: center; font-size: 36px; }

.platform { color: var(--white); background: var(--ink); overflow: hidden; }
.platform__layout { display: grid; grid-template-columns: .72fr 1.45fr; gap: 68px; align-items: center; }
.platform__copy > p:not(.kicker) { max-width: 500px; color: rgba(255,255,255,.62); font-size: 17px; }
.check-list { margin: 38px 0; border-top: 1px solid var(--line-dark); }
.check-list li { display: flex; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--line-dark); font-size: 14px; }
.check-list span { color: var(--acid); font-size: 10px; font-weight: 800; }
.text-link { display: inline-flex; gap: 24px; align-items: center; padding-bottom: 5px; border-bottom: 1px solid var(--acid); font-weight: 700; }
.text-link span { color: var(--acid); }

.console {
  width: min(820px, 65vw);
  aspect-ratio: 1.45;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  overflow: hidden;
  background: #202522;
  box-shadow: 0 60px 140px rgba(0,0,0,.55);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}
.console__top { height: 54px; display: grid; grid-template-columns: 1fr 2fr 1fr; align-items: center; padding: 0 18px; color: rgba(255,255,255,.56); background: #272d29; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 9px; letter-spacing: .1em; }
.console__dots { display: flex; gap: 5px; }
.console__dots i { width: 7px; height: 7px; background: #555d58; border-radius: 50%; }
.console__top > b { justify-self: end; display: flex; align-items: center; gap: 8px; color: var(--acid); font-size: 8px; }
.console__top > b i { width: 7px; height: 7px; background: var(--acid); border-radius: 50%; box-shadow: 0 0 10px var(--acid); }
.console__body { height: calc(100% - 54px); display: grid; grid-template-columns: 165px 1fr; }
.console__side { padding: 20px 12px; background: #191d1b; border-right: 1px solid rgba(255,255,255,.08); }
.console__side > strong { display: flex; justify-content: space-between; margin: 0 8px 16px; color: rgba(255,255,255,.45); font-size: 8px; letter-spacing: .14em; }
.robot-row { width: 100%; display: grid; grid-template-columns: 24px 1fr auto; gap: 8px; align-items: center; padding: 11px 9px; border: 1px solid transparent; border-radius: 10px; color: rgba(255,255,255,.72); background: transparent; text-align: left; cursor: default; }
.robot-row.is-active { color: var(--white); background: rgba(223,255,69,.09); border-color: rgba(223,255,69,.36); }
.robot-row > i { width: 22px; height: 22px; display: block; border: 5px solid #e7e9e5; border-bottom-width: 7px; border-radius: 5px; box-shadow: inset 0 -3px #404541; }
.robot-row span { font-size: 9px; font-weight: 800; }
.robot-row small { display: block; margin-top: 2px; color: rgba(255,255,255,.4); font-size: 7px; font-weight: 500; }
.robot-row b { color: var(--acid); font-size: 7px; }
.console__mini { margin-top: 24px; padding: 16px 10px; border-top: 1px solid rgba(255,255,255,.1); }
.console__mini span, .console__mini small { display: block; color: rgba(255,255,255,.38); font-size: 7px; letter-spacing: .12em; }
.console__mini b { display: block; margin: 4px 0; color: var(--white); font-size: 30px; line-height: 1; }
.console__map { position: relative; overflow: hidden; background: #d9ddd3; }
.map-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(30,35,32,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(30,35,32,.09) 1px, transparent 1px); background-size: 28px 28px; }
.map-grid::before, .map-grid::after { content: ""; position: absolute; background: #c1c7bc; border: 2px solid rgba(17,20,19,.22); transform: rotate(-9deg); }
.map-grid::before { width: 46%; height: 24%; left: 9%; top: 10%; border-radius: 30px 5px 30px 8px; }
.map-grid::after { width: 34%; height: 28%; right: 5%; bottom: 8%; border-radius: 6px 38px 6px 24px; }
.zone { position: absolute; z-index: 2; padding: 7px 9px; border-radius: 5px; font-size: 6px; font-weight: 900; letter-spacing: .1em; }
.zone--a { top: 18%; left: 15%; color: #465114; background: rgba(223,255,69,.45); border: 1px solid rgba(90,110,10,.4); }
.zone--b { right: 10%; bottom: 15%; color: #823b3b; background: rgba(255,130,130,.35); border: 1px solid rgba(160,60,60,.35); }
.route { position: absolute; z-index: 3; inset: 0; width: 100%; height: 100%; }
.route path { fill: none; stroke: #91ad08; stroke-width: 5; stroke-linecap: round; stroke-dasharray: 10 9; filter: drop-shadow(0 2px 2px rgba(255,255,255,.8)); }
.route circle { fill: var(--acid); stroke: #536300; stroke-width: 3; }
.bot-marker { position: absolute; z-index: 4; left: 50%; top: 45%; display: grid; grid-template-columns: auto auto; gap: 0 8px; align-items: center; padding: 7px 10px; color: var(--white); background: var(--ink); border-radius: 8px; box-shadow: 0 6px 18px rgba(0,0,0,.24); }
.bot-marker span { grid-row: 1 / 3; width: 18px; height: 18px; background: var(--white); border: 5px solid #333; border-radius: 5px; }
.bot-marker b { font-size: 7px; }
.bot-marker small { color: var(--acid); font-size: 6px; }
.map-tools { position: absolute; z-index: 4; top: 12px; right: 12px; display: grid; gap: 4px; }
.map-tools button { width: 26px; height: 26px; border: 1px solid rgba(17,20,19,.15); border-radius: 5px; background: rgba(255,255,255,.8); font-size: 12px; }
.camera-card { position: absolute; z-index: 5; left: 15px; bottom: 15px; width: 160px; aspect-ratio: 1.65; overflow: hidden; border: 2px solid var(--white); border-radius: 9px; box-shadow: 0 12px 30px rgba(0,0,0,.25); }
.camera-card img { width: 100%; height: 100%; object-fit: cover; }
.camera-card > span { position: absolute; inset: 7px auto auto 7px; padding: 4px 6px; color: var(--white); background: rgba(17,20,19,.7); border-radius: 4px; font-size: 6px; letter-spacing: .1em; }
.camera-card i { display: inline-block; width: 5px; height: 5px; margin-right: 3px; background: #ff5d5d; border-radius: 50%; }

.capabilities { background: var(--paper-2); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.feature-card { min-height: 310px; position: relative; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.22); transition: transform .25s, background .25s, box-shadow .25s; }
.feature-card:hover { z-index: 2; transform: translateY(-6px); background: var(--white); box-shadow: var(--shadow); }
.feature-card > span { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .13em; }
.feature-card__icon { width: 74px; height: 74px; margin: 42px 0 30px; padding: 12px; overflow: visible; border: 1px solid rgba(17,20,19,.5); border-radius: 20px; color: var(--ink); fill: none; stroke: currentColor; stroke-width: 2.15; stroke-linecap: round; stroke-linejoin: round; transition: transform .28s ease, border-radius .28s ease, background .28s ease; }
.feature-card__icon .icon-accent { stroke: #75a900; }
.feature-card__icon .fill { fill: #75a900; stroke: none; }
.feature-card__icon text { fill: currentColor; stroke: none; font-family: Manrope, Arial, sans-serif; font-size: 15px; font-weight: 800; }
.feature-card:hover .feature-card__icon { transform: translateY(-4px) rotate(-2deg); border-radius: 50%; background: rgba(181,255,45,.16); }
.feature-card h3 { margin-bottom: 12px; font-size: 22px; line-height: 1.1; letter-spacing: -.03em; }
.feature-card p { margin: 0; color: var(--muted); font-size: 14px; }
.feature-card--acid { background: var(--acid); }
.feature-card--acid .feature-card__icon { background: rgba(255,255,255,.45); }
.feature-card--acid .feature-card__icon .icon-accent { stroke: var(--ink); }
.feature-card--acid .feature-card__icon .fill { fill: var(--ink); }
.feature-card--dark { color: var(--white); background: var(--ink); }
.feature-card--dark .feature-card__icon { border-color: var(--acid); color: var(--acid); }
.feature-card--dark .feature-card__icon .icon-accent { stroke: var(--white); }
.feature-card--dark .feature-card__icon .fill { fill: var(--white); }
.feature-card--dark p, .feature-card--dark > span { color: rgba(255,255,255,.56); }

.terrain { background: var(--paper); }
.terrain__grid { display: grid; grid-template-columns: 1.24fr .76fr; gap: 72px; align-items: center; }
.terrain__visual { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.terrain__visual img { width: 100%; aspect-ratio: 1.18; object-fit: cover; }
.terrain__visual::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 -160px 110px -100px rgba(0,0,0,.8); pointer-events: none; }
.terrain__visual figcaption { position: absolute; z-index: 2; inset: auto 28px 24px; display: flex; justify-content: space-between; align-items: end; color: var(--white); }
.product-proof { position: absolute; z-index: 3; top: 22px; right: 22px; display: flex; align-items: center; gap: 8px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.32); border-radius: 999px; color: var(--white); background: rgba(15,18,17,.66); backdrop-filter: blur(14px); font-size: 8px; font-weight: 800; letter-spacing: .14em; }
.product-proof i { width: 6px; height: 6px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 4px rgba(181,255,45,.16); }
.terrain__visual figcaption span { font-size: 9px; letter-spacing: .14em; }
.terrain__visual figcaption b { font-size: 13px; }
.terrain__copy > p:not(.kicker):not(.note) { color: var(--muted); font-size: 18px; }
.metric-row { display: grid; grid-template-columns: 1fr 1fr; margin: 44px 0 30px; padding-block: 24px; border-block: 1px solid var(--line); }
.metric-row div + div { padding-left: 24px; border-left: 1px solid var(--line); }
.metric-row strong { display: block; font-size: 40px; letter-spacing: -.05em; }
.metric-row span { display: block; color: var(--muted); font-size: 11px; text-transform: uppercase; }
.note { color: var(--muted); font-size: 11px; line-height: 1.5; }

.scenarios { color: var(--white); background: var(--ink); }
.scenario-stage { display: grid; grid-template-columns: 1.3fr .7fr; min-height: 610px; margin-bottom: 74px; border: 1px solid var(--line-dark); border-radius: var(--radius); overflow: hidden; }
.scenario-stage__image { position: relative; min-height: 540px; }
.scenario-stage__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 68%, rgba(17,20,19,.65)); }
.scenario-stage__image img { width: 100%; height: 100%; object-fit: cover; }
.image-label { position: absolute; z-index: 2; left: 24px; top: 24px; padding: 8px 10px; color: var(--ink); background: var(--acid); border-radius: 999px; font-size: 9px; font-weight: 850; letter-spacing: .12em; }
.scenario-stage__copy { align-self: stretch; padding: 54px 44px; background: #191d1b; }
.scenario-stage__copy > p { color: var(--acid); font-size: 10px; font-weight: 800; letter-spacing: .15em; }
.scenario-stage__copy h3 { margin: 30px 0 60px; font-size: 48px; line-height: .98; letter-spacing: -.055em; }
.scenario-stage__copy ol { border-top: 1px solid var(--line-dark); }
.scenario-stage__copy li { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line-dark); font-size: 13px; }
.scenario-stage__copy li span { color: var(--acid); font-size: 9px; font-weight: 800; }
.scenario-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.scenario-card { min-height: 300px; padding: 30px; background: var(--ink); }
.scenario-card > span { color: var(--acid); font-size: 10px; font-weight: 800; }
.scenario-card h3 { margin: 58px 0 14px; font-size: 24px; letter-spacing: -.035em; }
.scenario-card p { color: rgba(255,255,255,.58); font-size: 14px; }
.scenario-card small { display: block; margin-top: 36px; color: rgba(255,255,255,.35); font-size: 8px; letter-spacing: .13em; }
.scenario-card--cta { color: var(--ink); background: var(--acid); }
.scenario-card--cta > span, .scenario-card--cta p { color: var(--ink); }
.scenario-card--cta a { display: inline-block; margin-top: 22px; padding-bottom: 4px; border-bottom: 1px solid var(--ink); font-weight: 800; }

.fleet-story { min-height: 830px; position: relative; display: flex; align-items: end; color: var(--white); overflow: hidden; }
.fleet-story__media { position: absolute; inset: 0; }
.fleet-story__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,13,12,.9), rgba(10,13,12,.18) 70%), linear-gradient(0deg, rgba(10,13,12,.76), transparent 60%); }
.fleet-story__media img { width: 100%; height: 100%; object-fit: cover; }
.fleet-story__content { position: relative; padding-bottom: 100px; }
.fleet-story__content h2 { max-width: 790px; }
.fleet-story__content > p:not(.kicker) { max-width: 520px; color: rgba(255,255,255,.72); font-size: 17px; }
.fleet-story__content .button { margin-top: 20px; }

.use-cases { background: var(--paper); }
.use-case-list { border-top: 1px solid var(--line); }
.use-case { display: grid; grid-template-columns: 70px 1.15fr 1fr auto; gap: 40px; align-items: center; min-height: 152px; padding: 24px 0; border-bottom: 1px solid var(--line); transition: padding .25s, background .25s; }
.use-case:hover { padding-inline: 18px; background: var(--white); }
.use-case > span { color: var(--muted); font-size: 11px; font-weight: 800; }
.use-case h3 { margin: 0; font-size: 26px; letter-spacing: -.035em; }
.use-case p { margin: 0; color: var(--muted); font-size: 14px; }
.use-case b { color: #5c6532; font-size: 8px; letter-spacing: .13em; text-align: right; }

.process { background: var(--paper-2); }
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.process-list li { min-height: 360px; display: flex; flex-direction: column; justify-content: space-between; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-list > li > span { color: var(--acid-2); font-size: 56px; line-height: 1; font-weight: 300; letter-spacing: -.06em; text-shadow: 1px 1px 0 var(--ink); }
.process-list small { color: var(--muted); font-size: 8px; font-weight: 850; letter-spacing: .14em; }
.process-list h3 { margin: 10px 0; font-size: 22px; letter-spacing: -.03em; }
.process-list p { margin: 0; color: var(--muted); font-size: 13px; }

.request { color: var(--white); background: #242825; }
.request__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.request__intro > p:not(.kicker) { max-width: 500px; color: rgba(255,255,255,.58); font-size: 17px; }
.request__contact { margin-top: 56px; display: grid; gap: 8px; }
.request__contact a { width: max-content; font-size: 20px; border-bottom: 1px solid rgba(255,255,255,.3); }
.lead-form { padding: 42px; color: var(--ink); background: var(--paper); border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0,0,0,.3); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 18px; }
.field { display: grid; gap: 8px; }
.field--wide { grid-column: 1 / -1; }
.field > span { font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(17,20,19,.32);
  border-radius: 0;
  outline: 0;
}
.field textarea { min-height: 92px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); box-shadow: 0 1px var(--ink); }
.field [aria-invalid="true"] { border-color: #b02f2f; }
.field small, .consent-error { min-height: 14px; color: #a42424; font-size: 10px; }
.honeypot { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin-top: 22px; color: var(--muted); font-size: 11px; }
.consent input { margin-top: 3px; accent-color: var(--ink); }
.consent a { color: var(--ink); text-decoration: underline; }
.consent-error { display: block; }
.form-footer { margin-top: 24px; display: flex; gap: 18px; align-items: center; }
.form-status { margin: 0; color: var(--muted); font-size: 11px; }
.form-status[data-state="success"] { color: #357526; }
.form-status[data-state="error"] { color: #a42424; }

.faq { background: var(--paper); }
.faq__grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 80px; }
.faq__list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { min-height: 86px; display: flex; justify-content: space-between; align-items: center; gap: 20px; cursor: pointer; font-size: 18px; font-weight: 700; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; transition: transform .2s; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { max-width: 690px; padding: 0 50px 28px 0; color: var(--muted); }

.site-footer { padding: 74px 0 28px; color: var(--white); background: var(--ink); }
.site-footer__top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; align-items: start; padding-bottom: 54px; }
.brand--footer { color: var(--white); }
.site-footer__top > p { color: rgba(255,255,255,.52); font-size: 14px; }
.site-footer__top > div { justify-self: end; display: grid; gap: 5px; font-size: 15px; }
.site-footer__bottom { display: grid; grid-template-columns: auto 1fr auto; gap: 40px; padding-top: 28px; border-top: 1px solid var(--line-dark); color: rgba(255,255,255,.42); font-size: 9px; }
.site-footer__bottom p { max-width: 720px; margin: 0 auto; text-align: center; }

.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.js .reveal--delay { transition-delay: .13s; }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  .site-nav { display: none; }
  .site-header__inner { grid-template-columns: 1fr auto; }
  .platform__layout { grid-template-columns: 1fr; }
  .platform__copy { max-width: 680px; }
  .console { width: 100%; transform: none; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .request__grid { gap: 50px; }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 32px, 760px); }
  .section { padding: 92px 0; }
  .hero { min-height: 860px; }
  .hero__image { object-position: 64% center; }
  .hero__veil { background: linear-gradient(90deg, rgba(8,11,10,.94), rgba(8,11,10,.42)), linear-gradient(0deg, rgba(8,11,10,.7), transparent 60%); }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { max-width: 650px; }
  .hero__badge { display: none; }
  .section-head--split { grid-template-columns: 1fr; gap: 14px; }
  .section-head--split .kicker { margin-top: 0; }
  .section-head--split > p:last-child { max-width: 600px; }
  .before-after { grid-template-columns: 1fr; gap: 12px; }
  .transformation__arrow { height: 46px; transform: rotate(90deg); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .terrain__grid { grid-template-columns: 1fr; }
  .terrain__visual { order: 2; }
  .scenario-stage { grid-template-columns: 1fr; }
  .scenario-stage__image::after { background: linear-gradient(0deg, rgba(17,20,19,.8), transparent 50%); }
  .scenario-grid { grid-template-columns: repeat(2, 1fr); }
  .use-case { grid-template-columns: 50px 1fr; gap: 14px 24px; }
  .use-case p, .use-case b { grid-column: 2; text-align: left; }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .request__grid { grid-template-columns: 1fr; }
  .faq__grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 28px); --radius: 18px; }
  .site-header__inner { min-height: 68px; }
  .brand__mark { width: 36px; height: 36px; border-radius: 11px; padding: 8px; }
  .brand strong { font-size: 13px; }
  .header-cta { padding: 10px 13px; font-size: 11px; }
  .header-cta span { display: none; }
  .hero { height: auto; min-height: 800px; }
  .hero__grid { min-height: 800px; padding: 126px 0 170px; align-items: start; }
  .hero__copy { padding: 0; }
  .hero h1 { font-size: clamp(48px, 15vw, 72px); line-height: .92; }
  .hero__lead { max-width: 94%; font-size: 16px; }
  .hero__actions { display: grid; }
  .hero__actions .button { width: 100%; }
  .hero__facts li { min-height: 96px; gap: 8px; align-items: flex-start; flex-direction: column; justify-content: center; }
  .hero__facts li + li { padding-left: 12px; }
  .hero__facts span { font-size: 9px; }
  .section-head h2, .platform h2, .terrain h2, .fleet-story h2, .request h2, .faq h2 { font-size: 44px; }
  .comparison { min-height: 390px; padding: 34px 26px; }
  .comparison h3 { font-size: 29px; }
  .console { aspect-ratio: .87; }
  .console__top { grid-template-columns: 1fr 1.5fr; }
  .console__top > b { display: none; }
  .console__body { grid-template-columns: 94px 1fr; }
  .robot-row { grid-template-columns: 18px 1fr; padding-inline: 4px; }
  .robot-row > b { display: none; }
  .robot-row > i { width: 18px; height: 18px; }
  .camera-card { width: 118px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 250px; }
  .feature-card__icon { margin: 34px 0 26px; }
  .terrain__grid { gap: 40px; }
  .terrain__visual figcaption { align-items: start; flex-direction: column; gap: 5px; }
  .scenario-stage { min-height: 0; }
  .scenario-stage__image { min-height: 340px; }
  .scenario-stage__copy { padding: 36px 26px; }
  .scenario-stage__copy h3 { margin-bottom: 38px; font-size: 38px; }
  .scenario-grid { grid-template-columns: 1fr; }
  .fleet-story { min-height: 740px; }
  .use-case { padding: 28px 0; }
  .use-case h3 { font-size: 22px; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li { min-height: 290px; }
  .lead-form { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--wide { grid-column: auto; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .form-footer .button { width: 100%; }
  .site-footer__top, .site-footer__bottom { grid-template-columns: 1fr; }
  .site-footer__top > div { justify-self: start; }
  .site-footer__bottom p { margin: 0; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}
