:root {
  --ink: #171817;
  --night: #101211;
  --paper: #f5f3ee;
  --paper-deep: #e5e1d8;
  --soft: #d4d0c7;
  --line: rgba(245, 243, 238, 0.2);
  --green: #6f8b78;
  --amber: #b38451;
  --red: #a85b4c;
  --steel: #607680;
  --white: #fffdfa;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(20px, 4vw, 58px);
  color: var(--ink);
}

.brand,
.header-cta,
nav {
  backdrop-filter: blur(18px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: 13px;
}

nav {
  display: flex;
  gap: 22px;
  padding: 12px 18px;
  color: rgba(23, 24, 23, 0.72);
  border: 1px solid rgba(23, 24, 23, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 250, 0.72);
  font-size: 13px;
  font-weight: 600;
}

.header-cta {
  justify-self: end;
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(245, 243, 238, 0.98), rgba(245, 243, 238, 0.84) 40%, rgba(245, 243, 238, 0.3) 100%),
    linear-gradient(135deg, #f5f3ee 0%, #d7ddd8 55%, #b9c6c8 100%);
}

#axis-map,
.hero-scrim {
  position: absolute;
  inset: 0;
}

#axis-map {
  width: 100%;
  height: 100%;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(245, 243, 238, 0.98) 0%, rgba(245, 243, 238, 0.86) 42%, rgba(245, 243, 238, 0.12) 100%),
    linear-gradient(180deg, rgba(245, 243, 238, 0.1), rgba(245, 243, 238, 0.7));
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 40px));
  padding: 20vh 0 16vh clamp(20px, 6vw, 82px);
}

.eyebrow {
  margin: 0 0 18px;
  color: #7d6347;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #8f6840;
}

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

h1 {
  margin-bottom: 8px;
  font-size: clamp(70px, 10vw, 140px);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-line {
  max-width: 680px;
  margin-bottom: 24px;
  color: rgba(23, 24, 23, 0.9);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 700;
  line-height: 1.02;
}

.hero-text {
  max-width: 620px;
  color: rgba(23, 24, 23, 0.66);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.button.primary {
  color: var(--white);
  background: var(--ink);
}

.button.secondary {
  color: var(--ink);
  border: 1px solid rgba(23, 24, 23, 0.22);
}

.signal-panel {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 5vw, 70px);
  bottom: 56px;
  width: min(352px, calc(100% - 40px));
  padding: 18px;
  border: 1px solid rgba(23, 24, 23, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 250, 0.78);
  backdrop-filter: blur(22px);
  box-shadow: 0 28px 80px rgba(23, 24, 23, 0.12);
}

.panel-topline,
.vehicle-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-topline {
  margin-bottom: 14px;
  color: rgba(23, 24, 23, 0.52);
  font-size: 12px;
  font-weight: 700;
}

.panel-topline strong {
  color: #7d6347;
}

.vehicle-card {
  min-height: 62px;
  padding: 12px 0;
  border-top: 1px solid rgba(23, 24, 23, 0.1);
}

.vehicle-card strong,
.vehicle-card span,
.vehicle-card em {
  display: block;
}

.vehicle-card strong {
  font-size: 14px;
}

.vehicle-card span {
  margin-top: 5px;
  color: rgba(23, 24, 23, 0.54);
  font-size: 12px;
}

.vehicle-card em {
  color: var(--green);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.vehicle-card.active em,
.vehicle-card:nth-of-type(4) em {
  color: var(--red);
}

.signal-meter {
  height: 8px;
  margin-top: 14px;
  overflow: hidden;
  background: rgba(23, 24, 23, 0.12);
}

.signal-meter span {
  display: block;
  width: 74%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--amber));
}

.intro-band {
  padding: 42px clamp(20px, 6vw, 82px);
  color: var(--ink);
  background: var(--paper-deep);
}

.intro-band p {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.14;
}

.section,
.axis-board,
.pricing-band {
  padding: 112px clamp(20px, 6vw, 82px);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(420px, 1fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
}

h2 {
  max-width: 780px;
  font-size: clamp(36px, 5vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(17, 20, 19, 0.2);
  border-left: 1px solid rgba(17, 20, 19, 0.2);
}

.proof-grid article {
  min-height: 220px;
  padding: 26px;
  border-right: 1px solid rgba(17, 20, 19, 0.2);
  border-bottom: 1px solid rgba(17, 20, 19, 0.2);
  background: rgba(255, 250, 240, 0.38);
}

.proof-grid span {
  color: #8f6840;
  font-size: 12px;
  font-weight: 900;
}

.proof-grid h3,
.product-lanes h3 {
  margin: 42px 0 14px;
  font-size: 25px;
  line-height: 1.05;
}

.proof-grid p,
.product-lanes p,
.security-stack span {
  color: #625c52;
  font-size: 15px;
  line-height: 1.58;
}

.axis-board {
  background: #e7e3da;
}

.board-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 46px;
}

.product-lanes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(17, 20, 19, 0.18);
}

.product-lanes article {
  min-height: 420px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--paper);
}

.lane-code {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.product-lanes ul {
  display: grid;
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.product-lanes li {
  padding-top: 12px;
  border-top: 1px solid rgba(17, 20, 19, 0.16);
  color: #35312b;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  margin-top: 34px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.security {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(420px, 0.9fr);
  gap: clamp(40px, 8vw, 112px);
  background: var(--paper);
}

.security-stack {
  display: grid;
  gap: 16px;
}

.security-stack div {
  padding: 28px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 8px;
}

.security-stack strong {
  display: block;
  margin-bottom: 16px;
  font-size: 22px;
}

.security-stack span {
  color: rgba(244, 241, 234, 0.72);
}

.pricing-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 15, 14, 0.94), rgba(41, 48, 43, 0.92)),
    var(--ink);
}

.pricing-band h2 {
  max-width: 900px;
}

.pricing-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 56px;
  background: rgba(255, 250, 240, 0.2);
}

.pricing-row div {
  min-height: 170px;
  padding: 28px;
  background: rgba(255, 250, 240, 0.06);
}

.pricing-row span {
  display: block;
  margin-bottom: 48px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-row strong {
  display: block;
  max-width: 240px;
  font-size: 27px;
  line-height: 1.05;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 6vw, 82px);
  color: rgba(244, 241, 234, 0.72);
  background: var(--night);
  font-size: 14px;
}

footer span {
  color: var(--white);
  font-weight: 900;
}

.product-page {
  background: var(--paper);
}

.product-hero {
  display: grid;
  min-height: 92vh;
  grid-template-columns: minmax(320px, 0.95fr) minmax(340px, 0.58fr);
  gap: clamp(40px, 8vw, 116px);
  align-items: center;
  padding: 132px clamp(20px, 6vw, 82px) 86px;
  background:
    linear-gradient(90deg, rgba(245, 243, 238, 0.98), rgba(245, 243, 238, 0.74)),
    linear-gradient(135deg, #f5f3ee, #dce3df);
}

.product-copy h1 {
  max-width: 860px;
  margin-bottom: 26px;
  font-size: clamp(54px, 7.5vw, 110px);
  line-height: 0.92;
}

.product-copy p {
  max-width: 720px;
  color: rgba(23, 24, 23, 0.66);
  font-size: 18px;
  line-height: 1.7;
}

.pilot-note {
  display: grid;
  max-width: 650px;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(23, 24, 23, 0.18);
}

.pilot-note strong {
  font-size: 13px;
  text-transform: uppercase;
}

.pilot-note span {
  color: rgba(23, 24, 23, 0.62);
  font-size: 14px;
  line-height: 1.6;
}

.product-console {
  padding: 20px;
  border: 1px solid rgba(23, 24, 23, 0.13);
  border-radius: 8px;
  background: rgba(255, 253, 250, 0.76);
  box-shadow: 0 34px 90px rgba(23, 24, 23, 0.13);
}

.console-header,
.console-row,
.fleet-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.console-header {
  margin-bottom: 18px;
  color: rgba(23, 24, 23, 0.55);
  font-size: 12px;
  font-weight: 800;
}

.console-header strong {
  color: #7d6347;
}

.console-map {
  position: relative;
  height: 260px;
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid rgba(23, 24, 23, 0.1);
  border-radius: 6px;
  background:
    linear-gradient(rgba(23, 24, 23, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 24, 23, 0.035) 1px, transparent 1px),
    #f1eee7;
  background-size: 34px 34px;
}

.pin {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
}

.pin.one {
  left: 27%;
  top: 36%;
}

.pin.two {
  right: 25%;
  bottom: 28%;
  background: var(--amber);
}

.route-line {
  position: absolute;
  left: 31%;
  top: 41%;
  width: 42%;
  height: 2px;
  transform: rotate(22deg);
  transform-origin: left center;
  background: rgba(96, 118, 128, 0.6);
}

.console-row {
  min-height: 48px;
  border-top: 1px solid rgba(23, 24, 23, 0.1);
}

.console-row span,
.fleet-list span {
  color: rgba(23, 24, 23, 0.54);
  font-size: 12px;
  font-weight: 700;
}

.console-row strong,
.fleet-list strong {
  font-size: 13px;
}

.product-section {
  padding: 112px clamp(20px, 6vw, 82px);
}

.product-section h2 {
  max-width: 960px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 54px;
  background: rgba(23, 24, 23, 0.18);
}

.product-grid article {
  min-height: 260px;
  padding: 30px;
  background: rgba(255, 253, 250, 0.56);
}

.product-grid span {
  color: #8f6840;
  font-size: 12px;
  font-weight: 900;
}

.product-grid h3 {
  margin: 52px 0 14px;
  font-size: 24px;
}

.product-grid p {
  color: #625c52;
  font-size: 15px;
  line-height: 1.6;
}

.fleet-console {
  background: rgba(22, 24, 23, 0.92);
  color: var(--white);
}

.fleet-console .console-header,
.fleet-list span {
  color: rgba(255, 253, 250, 0.58);
}

.fleet-list div {
  min-height: 58px;
  border-top: 1px solid rgba(255, 253, 250, 0.12);
}

.fleet-meter {
  height: 8px;
  margin-top: 22px;
  background: rgba(255, 253, 250, 0.16);
}

.fleet-meter span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--amber));
}

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

  nav {
    display: none;
  }

  .hero-copy {
    padding-top: 150px;
    padding-bottom: 300px;
  }

  .signal-panel {
    left: 20px;
    right: auto;
  }

  .split,
  .security,
  .product-hero {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .product-lanes,
  .pricing-row,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .board-heading {
    display: block;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 16px;
  }

  .header-cta {
    padding-inline: 13px;
  }

  .hero-copy {
    width: calc(100% - 32px);
    padding-left: 16px;
    padding-bottom: 280px;
  }

  .button {
    width: 100%;
  }

  .section,
  .axis-board,
  .pricing-band,
  .product-section {
    padding: 82px 16px;
  }

  .product-hero {
    padding: 126px 16px 72px;
  }

  .pilot-note {
    grid-template-columns: 1fr;
  }
}

.not-found-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(245, 243, 238, 0.98), rgba(245, 243, 238, 0.86)),
    linear-gradient(135deg, #f5f3ee, #cbd7d4);
}

.not-found {
  min-height: 100vh;
  padding: 32px clamp(20px, 5vw, 70px) 56px;
}

.not-found .brand {
  width: fit-content;
}

.not-found-panel {
  display: grid;
  min-height: calc(100vh - 118px);
  grid-template-columns: minmax(320px, 0.84fr) minmax(320px, 0.9fr);
  gap: clamp(36px, 8vw, 110px);
  align-items: center;
}

.lost-map {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(23, 24, 23, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(rgba(23, 24, 23, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 24, 23, 0.04) 1px, transparent 1px),
    rgba(255, 253, 250, 0.42);
  background-size: 42px 42px;
  box-shadow: 0 30px 80px rgba(23, 24, 23, 0.08);
}

.lost-map::before {
  position: absolute;
  right: 34px;
  bottom: 28px;
  color: rgba(23, 24, 23, 0.08);
  content: "404";
  font-size: clamp(130px, 18vw, 230px);
  font-weight: 800;
  line-height: 0.8;
}

.lost-axis,
.lost-pin,
.lost-route {
  position: absolute;
  display: block;
}

.lost-axis {
  background: rgba(23, 24, 23, 0.12);
}

.lost-axis.horizontal {
  left: 15%;
  right: 15%;
  top: 50%;
  height: 1px;
}

.lost-axis.vertical {
  top: 14%;
  bottom: 14%;
  left: 50%;
  width: 1px;
}

.lost-pin {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ink);
}

.lost-pin.start {
  left: 23%;
  top: 34%;
}

.lost-pin.middle {
  left: 49%;
  top: 49%;
  background: var(--amber);
}

.lost-pin.end {
  right: 22%;
  bottom: 28%;
  background: var(--red);
}

.lost-route {
  height: 2px;
  transform-origin: left center;
  background: rgba(96, 118, 128, 0.62);
}

.lost-route.one {
  left: 25%;
  top: 36%;
  width: 31%;
  transform: rotate(29deg);
}

.lost-route.two {
  left: 51%;
  top: 52%;
  width: 31%;
  transform: rotate(30deg);
  background: rgba(168, 91, 76, 0.42);
}

.not-found-copy h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(54px, 7.4vw, 112px);
  line-height: 0.9;
}

.not-found-copy p {
  max-width: 560px;
  color: rgba(23, 24, 23, 0.64);
  font-size: 18px;
  line-height: 1.7;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

@media (max-width: 900px) {
  .not-found-panel {
    grid-template-columns: 1fr;
    padding-top: 58px;
  }

  .lost-map {
    min-height: 340px;
  }
}
