/* TranSort: electric blue, charcoal and the quiet precision of an operations desk. */
@font-face {
  font-family: "Plex Sans";
  src: url("fonts/plex-sans-var.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Plex Mono";
  src: url("fonts/plex-mono-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
:root {
  /* brand:start site */
  --brand: #005ffb;
  --brand-bright: #7aa8ff;
  --brand-ink: #0a3fae;
  --brand-tint: #e8f0ff;
  --brand-rgb: 0, 95, 251;
  --brand-bright-rgb: 122, 168, 255;
  /* brand:end site */
  --ink: #101722;
  --muted: #626b78;
  --line: #e1e5ec;
  --paper: #fff;
  --wash: #f4f6f9;
  --green: #197653;
  --amber: #94621c;
  --shell: 1240px;
  --radius: 12px;
  --night: #101722;
  --night-2: #192230;
  --night-3: #253248;
  --night-ink: #fff;
  --night-ink-2: #b3bece;
  --night-line: #344052;
  --bg: #fff;
  --bg-2: #f4f6f9;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Plex Sans", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
svg {
  display: block;
}
img {
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  line-height: 1.13;
  font-weight: 550;
  letter-spacing: -0.04em;
}
button {
  color: inherit;
}
ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 5px;
}
::selection {
  background: #c8dbff;
  color: #101722;
}
[hidden] {
  display: none !important;
}
.shell {
  width: min(var(--shell), calc(100% - 96px));
  margin-inline: auto;
}
.icon {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.skip {
  position: fixed;
  top: -100px;
  left: 16px;
  padding: 12px 20px;
  background: var(--ink);
  color: white;
  z-index: 100;
}
.skip:focus {
  top: 12px;
}
.mono,
.eyebrow {
  font-family: "Plex Mono", monospace;
}
.eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.65px;
  color: var(--brand-ink);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.6;
  margin-bottom: 22px;
}
.eyebrow-line {
  width: 24px;
  height: 2px;
  background: var(--brand);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s;
}
/* The ↗ on a contact link, drawn rather than written (0290).
   The glyph is house style on ten links. On the two that carry a phone number
   or an email it also made the LINK TEXT disagree with the href — which is
   what a parser reads as the contact detail, and what an audit flags as a
   mismatched NAP. Generated content keeps the look and leaves the text equal
   to the number. aria-hidden because it is decoration, not a word. */
.link-arrow::after {
  content: " \2197";
}

.text-link:hover {
  color: var(--brand);
}
.text-link .icon {
  width: 18px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
  padding: 15px 21px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 550;
  line-height: 1.4;
  transition:
    background 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
  white-space: nowrap;
}
.btn .icon {
  width: 18px;
  height: 18px;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 3px 7px #005ffb15;
}
.btn-primary:hover {
  background: #004fda;
  box-shadow: 0 6px 18px #005ffb25;
}
.btn-small {
  font-size: 13px;
  padding: 11px 15px;
  gap: 15px;
}
.btn-outline {
  border-color: var(--line);
  background: #fff;
}
.btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.btn-white {
  background: white;
  color: var(--brand);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 25px;
  font-weight: 650;
  letter-spacing: -1.1px;
  line-height: 1;
}
.brand img {
  width: 40px;
  height: auto;
}
.brand-blue {
  color: var(--brand);
}
.site-head {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fffffff2;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid #e7eaf0;
}
.head-inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.nav,
.head-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav a,
.login {
  font-size: 13px;
  font-weight: 500;
  color: #535d6b;
  transition: color 0.2s;
}
.nav a:hover,
.nav a[aria-current],
.login:hover {
  color: var(--brand);
}
.head-actions {
  gap: 25px;
}
.mobile-login {
  display: none;
}
.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: white;
  padding: 11px;
}
.menu-btn span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.2s;
}
.hero {
  background: linear-gradient(180deg, #fff 0%, #f1f6ff 75%, #fff 100%);
  padding: 70px 0 0;
  overflow: hidden;
}
.hero-heading {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: end;
  padding-bottom: 53px;
}
.hero h1 {
  font-size: clamp(62px, 6.4vw, 91px);
  line-height: 1.02;
  letter-spacing: -5px;
  font-weight: 550;
}
.hero h1 > span {
  color: var(--brand);
}
.hero-description {
  padding-bottom: 7px;
}
.hero-description > p:first-child {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 420px;
}
.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 25px;
}
.trial-note {
  display: flex;
  gap: 9px;
  align-items: center;
  color: #626b78;
  font-size: 11px;
  margin-top: 15px;
}
.trial-note .icon {
  width: 14px;
  height: 14px;
  color: var(--green);
}
.trial-note > span {
  color: #8992a2;
}
.product-stage {
  background: var(--ink);
  border-radius: 12px;
  box-shadow: 0 30px 70px -35px #1c397866;
  overflow: hidden;
  border: 1px solid var(--ink);
}
.stage-caption,
.stage-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #b3bece;
  padding: 15px 20px;
  font-size: 9px;
  letter-spacing: 1.2px;
  font-family: "Plex Mono", monospace;
}
.stage-caption > span:first-child {
  display: flex;
  align-items: center;
  gap: 9px;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #47c291;
  display: inline-block;
  box-shadow: 0 0 0 3px #47c29112;
}
.stage-caption > span:last-child {
  color: #a6b2c5;
  font-size: 8px;
}
.dashboard {
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 513px;
  margin: 0 7px;
  border-radius: 6px;
  overflow: hidden;
  background: #f7f8fa;
}
.dash-sidebar {
  display: flex;
  flex-direction: column;
  background: #171f2d;
  color: #aab5c7;
  padding: 24px 13px 15px;
}
.dash-brand {
  padding-left: 9px;
}
.dash-brand .brand {
  font-size: 21px;
  color: #fff;
  gap: 7px;
}
.dash-brand .brand img {
  width: 29px;
  filter: brightness(0) invert(1);
}
.dash-brand .brand-blue {
  color: #7aa8ff;
}
.workspace {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 13px 8px;
  margin: 24px 0 16px;
  border: 1px solid #344052;
  border-radius: 6px;
  font-size: 10px;
  color: #e4e8f1;
  line-height: 1.4;
}
.workspace > span:last-child {
  margin-left: auto;
}
.workspace small {
  display: block;
  font-size: 8px;
  color: #a8b4c7;
  margin-top: 3px;
}
.workspace-icon {
  display: grid;
  place-items: center;
  width: 25px;
  height: 27px;
  background: #2b374b;
  border-radius: 4px;
  font-size: 11px;
}
.sidebar-label {
  font-size: 8px;
  letter-spacing: 1.5px;
  color: #98a6bc;
  padding: 0 10px 10px;
}
.dash-tabs {
  display: grid;
  gap: 3px;
}
.dash-tabs button,
.sidebar-static > span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  font-size: 10px;
  border: 0;
  background: none;
  color: #bac4d3;
  text-align: left;
  border-radius: 5px;
  line-height: 1.4;
}
.dash-tabs .icon,
.sidebar-static .icon {
  width: 15px;
  height: 15px;
  color: #92a2ba;
}
.dash-tabs button[aria-selected="true"] {
  background: var(--brand);
  color: white;
}
.dash-tabs button[aria-selected="true"] .icon {
  color: white;
}
.dash-tabs button:hover:not([aria-selected="true"]) {
  background: #263348;
}
.sidebar-static {
  margin-top: 4px;
}
.sidebar-bottom {
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid #344052;
  padding: 17px 6px 0;
  margin-top: auto;
  font-size: 10px;
  color: #e6ebf4;
}
.sidebar-bottom small {
  display: block;
  color: #a5b2c6;
  font-size: 8px;
}
.sidebar-bottom > span:last-child {
  margin-left: auto;
}
.avatar {
  display: inline-grid;
  place-items: center;
  background: #e3eafd;
  color: #245094;
  border: 1px solid #d3ddf4;
  font-size: 11px;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  flex-shrink: 0;
  font-weight: 500;
}
.avatar.small {
  width: 24px;
  height: 24px;
  font-size: 8px;
}
.dash-main {
  min-width: 0;
}
.dash-topbar {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 0 22px;
  font-size: 9px;
  color: var(--muted);
}
.dash-topbar > span > span {
  padding: 0 10px;
  color: #a4aab5;
}
.dash-topbar b {
  font-weight: 500;
  color: #313d50;
}
.dash-topbar > div {
  display: flex;
  gap: 14px;
  align-items: center;
}
.dash-topbar .icon {
  width: 14px;
  height: 14px;
}
.preview-label {
  font-size: 8px;
  border: 1px solid #e3e7ed;
  padding: 2px 7px;
  border-radius: 4px;
  background: #fafbfd;
}
.dash-panel {
  padding: 23px 22px 18px;
  min-height: 465px;
}
.dash-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 21px;
}
.dash-title h2 {
  font-size: 21px;
  letter-spacing: -0.6px;
  font-weight: 550;
}
.dash-title p {
  font-size: 10px;
  color: var(--muted);
  margin-top: 5px;
}
.date-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  padding: 6px 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  white-space: nowrap;
}
.date-chip .icon {
  width: 12px;
  height: 12px;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.metrics > div {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  padding: 12px;
}
.metrics > div > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  color: var(--muted);
}
.metrics .icon {
  width: 13px;
  height: 13px;
  color: #8b96a8;
}
.metrics strong {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 26px;
  letter-spacing: -1px;
  font-weight: 550;
  line-height: 1.35;
  margin-top: 6px;
}
.metrics strong small {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0;
  color: #626b78;
}
.metrics strong .metric-status {
  font-size: 8px;
  color: var(--green);
}
.metrics p {
  font-size: 8px;
  color: #626b78;
  margin-top: 5px;
}
.metrics p span {
  padding: 0 3px;
}
.dash-content {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 15px;
}
.fleet-map {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
  background: #eef3ee;
  min-width: 0;
}
.map-heading {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}
.map-heading b {
  font-size: 10px;
  padding: 5px 8px;
  background: #fffc;
  border-radius: 4px;
  font-weight: 500;
}
.map-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 8px;
  background: white;
  border: 1px solid #d8e1db;
  padding: 4px 7px;
  border-radius: 4px;
}
.map-live .status-dot {
  width: 5px;
  height: 5px;
}
.map-art {
  width: 100%;
  height: 251px;
  object-fit: cover;
}
.map-legend {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  gap: 13px;
  background: #ffffffeb;
  padding: 7px 9px;
  border-radius: 4px;
  font-size: 8px;
  align-items: center;
}
.map-legend > span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.map-legend > span:last-child {
  margin-left: auto;
  font-size: 7px;
  color: #677365;
}
.legend-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}
.blue {
  color: var(--brand);
}
.green {
  color: var(--green);
}
.amber {
  color: var(--amber);
}
.legend-dot.blue {
  background: var(--brand);
}
.legend-dot.green {
  background: var(--green);
}
.legend-dot.amber {
  background: var(--amber);
}
.activity {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.activity-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 12px 6px;
  font-size: 10px;
}
.activity-heading b {
  font-weight: 500;
}
.activity-heading > span {
  background: #f0f2f5;
  border-radius: 4px;
  font-size: 8px;
  padding: 1px 5px;
  color: var(--muted);
}
.activity-item {
  display: flex;
  gap: 9px;
  margin: 0 12px;
  padding: 12px 0;
  border-bottom: 1px solid #edf0f4;
}
.activity-icon {
  background: #f4f6f9;
  padding: 6px;
  align-self: flex-start;
  border-radius: 5px;
}
.activity-icon .icon {
  width: 14px;
  height: 14px;
}
.activity-icon.amber {
  background: #fbf3e7;
}
.activity-icon.blue {
  background: #edf3ff;
}
.activity-icon.green {
  background: #eaf6ef;
}
.activity-item strong {
  display: block;
  font-size: 9px;
  font-weight: 500;
}
.activity-item p {
  font-size: 8px;
  color: #667283;
  margin-top: 2px;
}
.activity-item p span {
  padding: 0 2px;
}
.activity-item small {
  font-size: 7px;
  color: #626b78;
  display: block;
  margin-top: 2px;
}
.activity-footer {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  background: #fafbfd;
  padding: 9px 4px;
  margin-top: auto;
  color: #626b78;
}
.activity-footer .icon {
  width: 10px;
  height: 10px;
}
.stage-footer {
  font-family: "Plex Sans", sans-serif;
  font-size: 10px;
  letter-spacing: 0.1px;
  padding: 11px 20px;
}
.stage-footer a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e2e9f5;
}
.stage-footer .icon {
  width: 13px;
  height: 13px;
}
.dispatch-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.dispatch-column {
  background: #edf0f5;
  padding: 12px;
  border-radius: 7px;
}
.dispatch-column h3 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 13px;
}
.dispatch-column h3 > span {
  margin-left: auto;
  color: var(--muted);
  font-size: 9px;
}
.dispatch-column article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 15px;
  margin-top: 9px;
}
.dispatch-column article small {
  font-size: 8px;
  color: var(--muted);
}
.dispatch-column h4 {
  font-size: 13px;
  letter-spacing: -0.3px;
  margin: 9px 0;
}
.dispatch-column article p {
  font-size: 10px;
}
.dispatch-column article > span {
  display: block;
  font-size: 8px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  margin-top: 16px;
  padding-top: 10px;
}
.preview-explainer {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 10px;
  color: var(--muted);
  margin-top: 20px;
}
.preview-explainer .icon {
  width: 15px;
  height: 15px;
  color: var(--brand);
}
.fleet-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}
.fleet-table {
  border-collapse: collapse;
  width: 100%;
  white-space: nowrap;
  font-size: 10px;
  text-align: left;
}
.fleet-table th {
  background: #edf1f6;
  font-weight: 500;
  color: #626c7b;
  padding: 13px 11px;
}
.fleet-table td {
  padding: 20px 11px;
  border-top: 1px solid var(--line);
}
.fleet-table b {
  font-weight: 500;
  font-family: "Plex Mono", monospace;
  font-size: 9px;
}
.table-status {
  display: inline-block;
  padding: 3px 6px;
  border-radius: 4px;
  background: #f1f5fb;
  font-size: 8px;
}
.proof-strip {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 35px;
  align-items: center;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}
.proof-strip > p {
  font-family: "Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--muted);
  line-height: 1.8;
}
.proof-strip > div {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
  padding-left: 33px;
}
.proof-strip strong {
  font-size: 34px;
  font-weight: 550;
  letter-spacing: -1px;
  line-height: 1.2;
}
.proof-strip strong > span {
  color: var(--brand);
  font-size: 25px;
}
.proof-strip > div > span {
  font-size: 11px;
  color: var(--muted);
  margin-top: 7px;
}
.proof-strip .proof-client {
  align-items: center;
}
.proof-client img {
  height: 54px;
  width: 145px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.proof-strip .proof-client > span {
  font-size: 9px;
  margin-top: 0;
}
.section {
  padding: 108px 0;
}
.section h2 {
  font-size: clamp(35px, 3.5vw, 49px);
  letter-spacing: -1.8px;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 100px;
  align-items: end;
  margin-bottom: 47px;
}
.section-heading > p {
  max-width: 400px;
  color: var(--muted);
  font-size: 15px;
  padding-bottom: 5px;
}
.workflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 48px;
}
.workflow article {
  border-top: 1px solid var(--line);
  padding: 24px 25px 0 0;
  position: relative;
}
.workflow article:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: 20px;
  top: 22px;
  color: #818da0;
}
.workflow-top {
  display: flex;
  gap: 13px;
  align-items: center;
}
.workflow-top > span {
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  border: 1px solid #dce7fc;
  border-radius: 6px;
  background: #f2f6ff;
  color: var(--brand);
}
.workflow-top .icon {
  width: 18px;
  height: 18px;
}
.workflow-top > b {
  font-family: "Plex Mono", monospace;
  font-size: 10px;
  color: #626b78;
  font-weight: 500;
}
.workflow h3 {
  font-size: 17px;
  letter-spacing: -0.4px;
  margin: 16px 0 10px;
}
.workflow p {
  font-size: 13px;
  color: var(--muted);
  max-width: 215px;
  line-height: 1.6;
}
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 19px;
}
.feature {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fafbfd;
}
.feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 8px;
}
.feature-icon {
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  border: 1px solid #dce4f2;
  border-radius: 6px;
  color: var(--brand);
  background: #fff;
}
.feature-icon .icon {
  width: 19px;
  height: 19px;
}
.feature-top .mono {
  font-size: 8px;
  letter-spacing: 0.7px;
  color: #687386;
}
.feature h3 {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.7px;
}
.feature > p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 16px;
}
.feature > .text-link {
  padding-top: 25px;
  margin-top: auto;
  border-top: 1px solid var(--line);
  font-size: 12px;
}
.feature-dark {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}
.feature-dark .feature-icon {
  background: #23324a;
  border-color: #344563;
  color: #8bb5ff;
}
.feature-dark .mono {
  color: #a8b4c7;
}
.feature-dark > p {
  color: #b0bbcb;
}
.feature-dark > .text-link {
  border-color: #344052;
}
.route-visual {
  margin: 29px 0 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.route-stop {
  font-size: 11px;
  font-weight: 500;
}
.route-stop small {
  font-size: 9px;
  color: #aebbd1;
  display: block;
  margin-top: 4px;
}
.route-stop:nth-of-type(2) {
  text-align: right;
}
.route-track {
  grid-column: 1/-1;
  grid-row: 2;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
  height: 23px;
}
.route-track:before {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    #4a8dfd 0 8px,
    transparent 8px 13px
  );
}
.route-track i {
  width: 8px;
  height: 8px;
  border: 2px solid #8ab3ff;
  border-radius: 50%;
  background: #17253b;
  z-index: 1;
}
.route-track > span {
  padding: 7px;
  border: 1px solid #45618e;
  border-radius: 5px;
  background: #193761;
  z-index: 1;
}
.route-track .icon {
  width: 17px;
  height: 17px;
  color: #b7d1ff;
}
.route-proof {
  display: flex;
  align-items: center;
  gap: 6px;
  grid-column: 1/-1;
  color: #9eafd0;
  font-size: 9px;
  margin-top: 11px;
}
.route-proof .icon {
  width: 13px;
  height: 13px;
  color: #68d4a8;
}
.cost-visual {
  display: grid;
  gap: 13px;
  margin: 33px 0 25px;
}
.cost-visual > div {
  display: grid;
  grid-template-columns: 42px 1fr 49px;
  gap: 9px;
  align-items: center;
  font-size: 9px;
}
.cost-visual b {
  font-weight: 500;
  font-family: "Plex Mono", monospace;
  font-size: 9px;
  text-align: right;
}
.cost-visual i {
  height: 10px;
  background: #e5ebf5;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.cost-visual i:after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar);
  background: var(--brand);
  border-radius: 2px;
}
.cost-visual > div:nth-child(2) i:after {
  background: #71a4fc;
}
.cost-visual > div:nth-child(3) i:after {
  background: #b1cdff;
}
.cost-visual > small {
  font-size: 9px;
  color: var(--muted);
  margin-top: 7px;
}
.people-visual {
  margin: 27px 0 25px;
}
.people-visual > div {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  line-height: 1.5;
}
.people-visual > div:last-child {
  border: 0;
}
.people-visual .avatar {
  width: 28px;
  height: 28px;
  font-size: 8px;
}
.people-visual small {
  font-size: 8px;
  color: var(--muted);
  display: block;
}
.people-visual b {
  font-size: 8px;
  display: flex;
  gap: 3px;
  align-items: center;
  color: var(--green);
  margin-left: auto;
  font-weight: 500;
}
.people-visual .icon {
  width: 11px;
  height: 11px;
}
.section-tint {
  background: var(--wash);
  border-block: 1px solid var(--line);
}
.modules-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
  align-items: start;
}
.modules-intro h2 > span {
  color: var(--brand);
}
.modules-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
  margin: 23px 0;
  max-width: 335px;
}
.core-note {
  display: flex;
  gap: 13px;
  border-block: 1px solid var(--line);
  padding: 23px 0;
  margin: 28px 0;
  color: var(--brand);
}
.core-note > .icon {
  margin-top: 2px;
}
.core-note b {
  font-size: 12px;
  color: var(--ink);
  font-weight: 500;
}
.core-note p {
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 5px;
  max-width: 260px;
}
.pack {
  border: 1px solid #dfe4ec;
  border-radius: 7px;
  background: white;
  margin-bottom: 11px;
  overflow: hidden;
}
.pack summary {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 21px;
  list-style: none;
  position: relative;
  flex-wrap: wrap;
}
.pack summary::-webkit-details-marker,
.faq summary::-webkit-details-marker {
  display: none;
}
.pack .tile {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: #edf3ff;
  color: var(--brand);
  border-radius: 6px;
  flex-shrink: 0;
  grid-row: 1/3;
}
.pack .tile svg {
  width: 19px;
  height: 19px;
}
.pack__name {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.3px;
}
.pack__count {
  display: block;
  font-size: 10px;
  color: var(--muted);
  order: 4;
  flex-basis: 100%;
  padding-left: 46px;
  margin-top: -13px;
  padding-right: 20px;
}
.pack__chev {
  margin-left: auto;
  transition: transform 0.2s;
  color: #6b778a;
}
.pack[open] .pack__chev {
  transform: rotate(180deg);
}
.pack[open] {
  border-color: #a6c4fb;
  box-shadow: 0 4px 15px #0e346105;
}
.pack[open] summary {
  background: #fbfcff;
}
.pack summary:hover {
  background: #f7faff;
}
.pack__body {
  padding: 0 22px 8px;
}
.mods li {
  display: flex;
  gap: 15px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.mods .n {
  font:
    9px "Plex Mono",
    monospace;
  color: var(--brand);
  padding-top: 4px;
}
.mods li b {
  display: block;
  font-weight: 500;
  font-size: 13px;
  margin-bottom: 5px;
}
.mods li div > span {
  font-size: 12px;
  line-height: 1.65;
  color: var(--muted);
  display: block;
}
.ai-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}
.ai-copy > p:not(.eyebrow) {
  font-size: 15px;
  color: var(--muted);
  margin: 24px 0;
}
.check-list {
  display: grid;
  gap: 15px;
  font-size: 13px;
}
.check-list li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  line-height: 1.5;
}
.check-list .icon {
  color: var(--brand);
  width: 16px;
  height: 16px;
  margin-top: 2px;
}
.ai-principle {
  display: flex;
  gap: 12px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 23px;
  margin-top: 30px;
  color: var(--brand);
}
.ai-principle b {
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
}
.ai-principle small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-top: 3px;
}
.ai-visual {
  position: relative;
  border: 1px solid #e1e7f0;
  border-radius: 12px;
  background-color: #f2f6fc;
  background-image: radial-gradient(#ccd6e8 0.8px, transparent 0.8px);
  background-size: 16px 16px;
  height: 485px;
  padding: 23px;
}
.ai-visual-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font:
    8px "Plex Mono",
    monospace;
  color: #576783;
  gap: 8px;
}
.ai-visual-heading > span:first-child {
  display: flex;
  align-items: center;
  gap: 7px;
}
.ai-visual-heading .icon {
  width: 13px;
  height: 13px;
}
.ai-visual-heading .mono {
  font-size: 7px;
}
.scan-document {
  position: relative;
  width: 215px;
  margin: 30px 0 0 15px;
  padding: 19px;
  transform: rotate(-5deg);
}
.pump-display {
  background: #24352e;
  border: 8px solid #394c44;
  border-radius: 6px;
  padding: 15px;
  color: #e3eedc;
  box-shadow: 0 8px 15px #19352a18;
  font-family: "Plex Mono", monospace;
}
.pump-display small {
  font-size: 8px;
  letter-spacing: 1.6px;
  display: block;
  color: #b6cdb3;
}
.pump-display strong {
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -1.5px;
  display: block;
  line-height: 1.6;
}
.pump-display > div {
  border-top: 1px solid #657b68;
  margin: 6px 0 10px;
}
.scan-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--brand);
  border-style: solid;
}
.tl {
  top: 0;
  left: 0;
  border-width: 2px 0 0 2px;
}
.tr {
  top: 0;
  right: 0;
  border-width: 2px 2px 0 0;
}
.bl {
  bottom: 0;
  left: 0;
  border-width: 0 0 2px 2px;
}
.br {
  bottom: 0;
  right: 0;
  border-width: 0 2px 2px 0;
}
.scan-line {
  position: absolute;
  top: 50%;
  height: 1px;
  left: 0;
  right: 0;
  background: #3280ff;
  box-shadow: 0 0 15px 2px #005ffb38;
  animation: scan 4s ease-in-out 1;
}
.extraction-card {
  background: #fff;
  border: 1px solid #dce5f3;
  border-radius: 8px;
  position: absolute;
  bottom: 32px;
  right: 26px;
  width: 285px;
  box-shadow: 0 15px 30px -12px #193e7233;
  transform: rotate(2deg);
  padding: 18px;
}
.extraction-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 13px;
  margin-bottom: 5px;
}
.extraction-title > span:first-child {
  display: flex;
  align-items: center;
  gap: 6px;
}
.extraction-title .icon {
  width: 14px;
  height: 14px;
  color: var(--brand);
}
.ai-pill {
  color: var(--brand-ink);
  background: #edf3ff;
  font-size: 8px;
  border: 1px solid #dae7ff;
  border-radius: 3px;
  padding: 2px 5px;
}
.extraction-card > div:not(:first-child) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  color: var(--muted);
  padding: 10px 0;
  border-bottom: 1px solid #f0f2f5;
}
.extraction-card b {
  font-weight: 500;
  color: var(--ink);
}
.extraction-card > p {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-size: 9px;
  margin-top: 13px;
}
.extraction-card > p .icon {
  width: 13px;
  height: 13px;
}
.why-section {
  background: var(--ink);
  color: #fff;
}
.why-section .eyebrow {
  color: #7aa8ff;
}
.why-section .section-heading > p {
  color: #adb8c9;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 47px;
  margin-top: 55px;
}
.why-grid article {
  border-top: 1px solid #344052;
  padding-top: 25px;
}
.why-grid article > .icon {
  color: #7faeff;
  width: 26px;
  height: 26px;
  margin-bottom: 24px;
}
.why-grid h3 {
  font-size: 24px;
  letter-spacing: -0.6px;
  line-height: 1.25;
}
.why-grid p {
  font-size: 13px;
  color: #abb8ca;
  margin: 18px 0 23px;
  line-height: 1.8;
  max-width: 320px;
}
.language-chips {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #233045;
  color: #c5d7f4;
  border: 1px solid #344760;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 11px;
}
.language-chips i {
  font-style: normal;
}
.why-detail {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: #b6c8e3;
}
.why-detail .icon {
  width: 13px;
  height: 13px;
  color: #7aa8ff;
}
.audiences {
  border-top: 1px solid #344052;
  margin-top: 57px;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.audiences > span {
  font:
    8px "Plex Mono",
    monospace;
  letter-spacing: 1px;
  color: #b1bed2;
}
.audiences p {
  font-size: 13px;
  color: #dae2ee;
}
.audiences i {
  font-style: normal;
  color: #556680;
  margin: 0 20px;
}
.pricing-heading {
  text-align: center;
  margin-bottom: 49px;
}
.pricing-heading .eyebrow {
  justify-content: center;
}
.pricing-heading > p:not(.eyebrow) {
  color: var(--muted);
  margin-top: 18px;
  font-size: 15px;
}
.billing-toggle {
  display: inline-flex;
  background: #f0f3f8;
  padding: 4px;
  border: 1px solid #e1e7f0;
  border-radius: 7px;
  gap: 5px;
  margin-top: 25px;
}
.billing-toggle button {
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  padding: 8px 17px;
  color: var(--muted);
  font-size: 12px;
  min-height: 39px;
}
.billing-toggle button[aria-pressed="true"] {
  background: #fff;
  box-shadow: 0 1px 5px #12254c12;
  border-color: #e1e7f0;
  color: var(--ink);
}
.billing-toggle button > span {
  font-size: 9px;
  color: var(--green);
  margin-left: 6px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  max-width: 920px;
  margin: 0 auto;
}
.plan {
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 34px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.plan-eyebrow {
  font:
    9px "Plex Mono",
    monospace;
  color: var(--muted);
  letter-spacing: 1px;
  margin-bottom: 13px;
}
.plan h3 {
  font-size: 30px;
  letter-spacing: -1px;
}
.plan > p:not([class]) {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 29px;
  flex-wrap: wrap;
}
.plan-price strong {
  font-size: 49px;
  line-height: 1;
  letter-spacing: -2px;
  font-weight: 550;
}
.plan-price > span {
  font-size: 11px;
  color: var(--muted);
}
.annual-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 12px;
}
.plan > .btn {
  margin: 25px 0;
  justify-content: space-between;
}
.plan .check-list {
  font-size: 12px;
  gap: 15px;
  margin-bottom: 25px;
}
.plan-volume {
  border-top: 1px solid var(--line);
  padding-top: 19px;
  font-size: 10px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: auto;
}
.plan-volume b {
  color: var(--ink);
  font-weight: 500;
}
.plan-featured {
  border-color: var(--brand);
  background: #f8fbff;
  box-shadow: 0 10px 40px -20px #005ffb33;
}
.plan-recommendation {
  position: absolute;
  left: -1px;
  right: -1px;
  top: -22px;
  height: 24px;
  background: var(--brand);
  color: white;
  border-radius: 8px 8px 0 0;
  text-align: center;
  font:
    8px "Plex Mono",
    monospace;
  letter-spacing: 1px;
  display: grid;
  place-items: center;
}
.plan-featured {
  border-radius: 0 0 9px 9px;
}
.plan-featured .plan-eyebrow {
  color: var(--brand-ink);
}
.pricing-fineprint {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  margin-top: 26px;
  line-height: 1.8;
}
.pricing-fineprint > span {
  font-weight: 500;
  color: #46546a;
}
.pricing-fineprint p {
  margin-top: 7px;
  font-size: 10px;
}
.pricing-fineprint a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.website-included {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 920px;
  margin: 32px auto 0;
  padding: 22px 27px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 7px;
}
.website-included > .icon {
  width: 27px;
  height: 27px;
  color: var(--brand);
}
.website-included b {
  font-size: 13px;
  font-weight: 500;
}
.website-included p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
}
.website-included > .text-link {
  margin-left: auto;
  white-space: nowrap;
  font-size: 12px;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 110px;
}
.faq-layout > div:first-child > p:not(.eyebrow) {
  font-size: 14px;
  color: var(--muted);
  margin: 23px 0 16px;
}
.faq-layout > div:first-child > .text-link {
  font-size: 12px;
  color: var(--brand);
}
.faq {
  border-bottom: 1px solid #dce2eb;
}
.faq:first-child {
  border-top: 1px solid #dce2eb;
}
.faq summary {
  list-style: none;
  padding: 23px 30px 23px 0;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  line-height: 1.5;
}
.faq summary:after {
  content: "+";
  position: absolute;
  right: 1px;
  top: 20px;
  color: var(--brand);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}
.faq[open] summary:after {
  content: "−";
}
.faq summary:hover {
  color: var(--brand);
}
.faq > p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.85;
  padding-bottom: 24px;
  padding-right: 24px;
}
.contact-section {
  background: var(--brand);
  color: #fff;
  overflow: hidden;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 70px;
  padding-top: 83px;
  padding-bottom: 80px;
  position: relative;
}
.contact-section .eyebrow {
  color: #ffffff;
  font-size: 9px;
}
.contact-section h2 {
  font-size: 76px;
  letter-spacing: -3px;
  line-height: 1.05;
}
.contact-section h2 span {
  color: #d1e3ff;
}
.contact-section p:not(.eyebrow) {
  color: #ffffff;
  font-size: 15px;
  margin-top: 22px;
}
.contact-section .text-link:hover {
  color: #c5dcff;
}
.contact-section .hero-actions {
  gap: 25px;
  margin-top: 28px;
}
.contact-section p.contact-phone {
  font-size: 11px;
  color: #ffffff;
  margin-top: 22px;
}
.contact-phone a {
  color: white;
  margin-left: 5px;
  border-bottom: 1px solid #a7c8ff;
}
.contact-road {
  position: relative;
  min-height: 370px;
  transform: rotate(-18deg);
  opacity: 1;
}
.road-label {
  position: absolute;
  top: 48px;
  left: 5px;
  font:
    9px "Plex Mono",
    monospace;
  letter-spacing: 2px;
  color: #d7e7ff;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.road-line {
  position: absolute;
  top: -200px;
  bottom: -200px;
  width: 128px;
  border-inline: 1px solid #71a5ff;
  left: 90px;
  background: #ffffff04;
}
.road-line:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(
    180deg,
    #9cc2ff 0 24px,
    transparent 24px 48px
  );
}
.road-line.second {
  left: 247px;
  background: transparent;
  border-color: #5996ff;
}
.road-line.second:before {
  opacity: 0.4;
}
.road-marker {
  position: absolute;
  top: 144px;
  left: 124px;
  background: #fff;
  border-radius: 10px;
  padding: 14px;
  box-shadow:
    0 0 0 13px #ffffff13,
    0 0 0 27px #ffffff0a;
  z-index: 1;
}
.road-marker .icon {
  color: var(--brand);
  width: 30px;
  height: 30px;
}
.road-destination {
  position: absolute;
  left: 68px;
  bottom: 21px;
  font:
    8px "Plex Mono",
    monospace;
  letter-spacing: 1.5px;
  white-space: nowrap;
  background: var(--brand);
  padding: 10px;
  color: #ffffff;
}
.site-foot {
  padding: 62px 0 0;
  background: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
  gap: 35px;
  padding-bottom: 50px;
}
.footer-grid > div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.footer-grid .brand {
  font-size: 25px;
  margin-bottom: 20px;
}
.footer-grid .brand img {
  width: 38px;
}
.footer-grid p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}
.footer-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #626b78;
  font-size: 10px;
  margin-top: 18px;
}
.footer-location .icon {
  width: 12px;
  height: 12px;
}
.footer-grid h2 {
  font-size: 12px;
  font-weight: 550;
  letter-spacing: 0;
  margin-bottom: 21px;
}
.footer-grid > div > a:not(.brand) {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 11px;
}
.footer-grid > div > a:hover {
  color: var(--brand);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  font-size: 9px;
  color: var(--muted);
}
.footer-bottom a {
  color: var(--ink);
}
@keyframes scan {
  0%,
  100% {
    transform: translateY(-65px);
    opacity: 0.4;
  }
  50% {
    transform: translateY(65px);
    opacity: 1;
  }
}
@keyframes arrive {
  from {
    opacity: 0.5;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-heading {
    animation: arrive 0.7s both;
  }
  .product-stage {
    animation: arrive 0.85s 0.12s both;
  }
  .js [data-reveal].in {
    animation: arrive 0.7s both;
  }
}
@media (min-width: 1600px) {
  :root {
    --shell: 1320px;
  }
  .hero {
    padding-top: 85px;
  }
  .hero-heading {
    padding-bottom: 62px;
  }
  .dash-panel {
    padding: 28px;
  }
  .map-art {
    height: 270px;
  }
  .dashboard {
    min-height: 555px;
  }
  .dash-content {
    grid-template-columns: 1.9fr 1fr;
  }
  .activity-item {
    padding: 14px 0;
  }
}
@media (max-width: 1190px) {
  .shell {
    width: calc(100% - 64px);
  }
  .nav {
    gap: 20px;
  }
  .head-inner {
    gap: 18px;
  }
  .head-actions {
    gap: 17px;
  }
  .hero-heading {
    gap: 40px;
  }
  .hero h1 {
    font-size: 76px;
  }
  .hero-description > p:first-child {
    font-size: 16px;
  }
  .hero-actions {
    gap: 15px;
  }
  .hero-actions .text-link {
    font-size: 12px;
  }
  .dashboard {
    grid-template-columns: 170px 1fr;
  }
  .dash-panel {
    padding: 20px 16px;
  }
  .dash-sidebar {
    padding-inline: 10px;
  }
  .dash-content {
    grid-template-columns: 1.5fr 1fr;
    gap: 12px;
  }
  .metrics {
    gap: 7px;
  }
  .metrics > div {
    padding: 10px;
  }
  .metrics strong {
    font-size: 23px;
  }
  .metrics strong small {
    font-size: 8px;
  }
  .metrics p {
    font-size: 7px;
  }
  .feature {
    padding: 23px;
  }
  .feature h3 {
    font-size: 22px;
  }
  .feature-top .mono {
    font-size: 7px;
  }
  .modules-layout,
  .ai-layout,
  .faq-layout {
    gap: 65px;
  }
  .section-heading {
    gap: 65px;
  }
  .why-grid {
    gap: 32px;
  }
  .audiences i {
    margin: 0 12px;
  }
  .contact-inner {
    gap: 30px;
  }
  .contact-section h2 {
    font-size: 68px;
  }
  .head-actions .login {
    display: none;
  }
}
@media (max-width: 960px) {
  .shell {
    width: calc(100% - 48px);
  }
  .head-inner {
    height: 74px;
  }
  .nav {
    gap: 17px;
  }
  .nav a {
    font-size: 12px;
  }
  .head-actions .btn {
    font-size: 11px;
    padding: 11px;
  }
  .brand {
    font-size: 23px;
  }
  .brand img {
    width: 34px;
  }
  .hero {
    padding-top: 48px;
  }
  .hero-heading {
    gap: 34px;
    grid-template-columns: 1.05fr 1fr;
  }
  .hero h1 {
    font-size: 64px;
    letter-spacing: -3.5px;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 1.2px;
  }
  .hero-description > p:first-child {
    font-size: 14px;
  }
  .hero-description .hero-actions {
    gap: 13px;
    margin-top: 20px;
  }
  .hero-description .btn {
    font-size: 12px;
    padding: 13px 16px;
  }
  .trial-note {
    font-size: 9px;
  }
  .dashboard {
    grid-template-columns: 140px 1fr;
  }
  .dash-sidebar {
    padding-inline: 8px;
  }
  .dash-brand .brand {
    font-size: 18px;
  }
  .dash-brand .brand img {
    width: 25px;
  }
  .workspace {
    padding: 10px 6px;
    font-size: 8px;
    gap: 6px;
  }
  .workspace-icon {
    width: 22px;
    height: 23px;
  }
  .workspace small {
    font-size: 7px;
  }
  .workspace > span:last-child {
    display: none;
  }
  .dash-tabs button,
  .sidebar-static > span {
    font-size: 9px;
    padding: 10px 8px;
    gap: 7px;
  }
  .dash-tabs .icon,
  .sidebar-static .icon {
    width: 13px;
    height: 13px;
  }
  .dash-topbar {
    padding-inline: 15px;
  }
  .dash-panel {
    padding: 20px 13px;
    min-height: 460px;
  }
  .dash-title h2 {
    font-size: 18px;
  }
  .dash-title p {
    font-size: 9px;
  }
  .date-chip {
    font-size: 8px;
  }
  .metrics strong {
    font-size: 21px;
    gap: 4px;
  }
  .metrics > div > span {
    font-size: 8px;
  }
  .metrics > div > span .icon {
    display: none;
  }
  .metrics strong small {
    font-size: 7px;
  }
  .metrics strong .metric-status {
    font-size: 6px;
  }
  .metrics p {
    font-size: 6.5px;
  }
  .dash-content {
    grid-template-columns: 1.5fr 1fr;
    gap: 8px;
  }
  .activity-item {
    margin-inline: 9px;
    gap: 6px;
    padding-block: 13px;
  }
  .activity-icon {
    padding: 5px;
  }
  .activity-icon .icon {
    width: 12px;
    height: 12px;
  }
  .activity-heading {
    padding-inline: 9px;
    font-size: 9px;
  }
  .activity-item strong {
    font-size: 8px;
  }
  .activity-item p {
    font-size: 7px;
  }
  .activity-item small {
    font-size: 6.5px;
  }
  .activity-footer {
    font-size: 6px;
  }
  .map-legend {
    gap: 8px;
    font-size: 7px;
    padding: 7px;
  }
  .map-legend > span:last-child {
    display: none;
  }
  .map-art {
    height: 251px;
  }
  .proof-strip {
    gap: 20px;
  }
  .proof-strip > div {
    padding-left: 20px;
  }
  .proof-strip > p {
    font-size: 8px;
  }
  .proof-strip strong {
    font-size: 29px;
  }
  .proof-strip > div > span {
    font-size: 9px;
  }
  .section {
    padding: 80px 0;
  }
  .section-heading {
    gap: 45px;
  }
  .section h2 {
    font-size: 38px;
    letter-spacing: -1.5px;
  }
  .section-heading > p {
    font-size: 13px;
  }
  .platform-grid {
    gap: 12px;
  }
  .feature {
    padding: 20px;
  }
  .feature-top {
    gap: 6px;
    margin-bottom: 22px;
  }
  .feature-top .mono {
    font-size: 6px;
    letter-spacing: 0.3px;
  }
  .feature-icon {
    width: 30px;
    height: 30px;
  }
  .feature h3 {
    font-size: 20px;
  }
  .feature > p {
    font-size: 12px;
  }
  .feature > .text-link {
    font-size: 11px;
    gap: 5px;
  }
  .people-visual > div {
    gap: 5px;
  }
  .people-visual .avatar {
    display: none;
  }
  .cost-visual > div {
    grid-template-columns: 35px 1fr 44px;
    gap: 6px;
    font-size: 8px;
  }
  .cost-visual b {
    font-size: 8px;
  }
  .modules-layout {
    gap: 50px;
    grid-template-columns: 0.8fr 1.2fr;
  }
  .modules-intro > p:not(.eyebrow) {
    font-size: 13px;
  }
  .pack summary {
    padding: 19px 17px;
    gap: 10px;
  }
  .pack__count {
    font-size: 9px;
  }
  .pack__name {
    font-size: 16px;
  }
  .ai-layout {
    gap: 40px;
  }
  .ai-copy > p:not(.eyebrow) {
    font-size: 13px;
  }
  .ai-copy .check-list {
    font-size: 11px;
  }
  .ai-principle b {
    font-size: 11px;
  }
  .ai-principle small {
    font-size: 10px;
  }
  .ai-visual {
    height: 460px;
    padding: 20px;
  }
  .ai-visual-heading > .mono {
    display: none;
  }
  .scan-document {
    margin-left: 0;
  }
  .extraction-card {
    width: 255px;
    right: 20px;
  }
  .why-grid {
    gap: 30px;
  }
  .why-grid h3 {
    font-size: 21px;
  }
  .why-grid p {
    font-size: 12px;
  }
  .why-detail {
    font-size: 9px;
  }
  .audiences {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .plan {
    padding: 28px;
  }
  .plan-price strong {
    font-size: 43px;
  }
  .faq-layout {
    gap: 60px;
  }
  .contact-section h2 {
    font-size: 62px;
  }
  .contact-inner {
    grid-template-columns: 1.6fr 1fr;
    gap: 10px;
  }
  .road-line {
    left: 30px;
  }
  .road-line.second {
    left: 187px;
  }
  .road-marker {
    left: 64px;
  }
  .road-label {
    left: -40px;
  }
  .road-destination {
    left: -10px;
    font-size: 7px;
  }
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 25px;
  }
  .footer-grid > div > a:not(.brand) {
    font-size: 11px;
  }
  .footer-grid p {
    font-size: 11px;
  }
  .dispatch-board {
    gap: 8px;
  }
  .dispatch-column {
    padding: 8px;
  }
  .dispatch-column h3 {
    font-size: 9px;
  }
  .dispatch-column article {
    padding: 10px;
  }
  .dispatch-column h4 {
    font-size: 11px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 88px;
  }
  .shell {
    width: calc(100% - 36px);
  }
  .head-inner {
    height: 68px;
    gap: 12px;
  }
  .brand {
    font-size: 23px;
  }
  .brand img {
    width: 35px;
  }
  .head-actions {
    margin-left: auto;
  }
  .head-actions .btn {
    font-size: 11px;
    padding: 10px 12px;
    gap: 9px;
  }
  .head-actions .btn .icon {
    width: 14px;
  }
  .menu-btn {
    display: block;
    flex-shrink: 0;
  }
  .nav {
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    padding: 14px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    gap: 13px 22px;
  }
  .nav a {
    font-size: 12px;
  }
  .js .nav {
    display: none;
    padding: 17px 20px 23px;
    box-shadow: 0 16px 20px #1836580a;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .js .nav.open {
    display: flex;
  }
  .js .nav a {
    padding: 11px 6px;
    font-size: 14px;
  }
  .js .nav .mobile-login {
    display: block;
    border-top: 1px solid var(--line);
    margin-top: 10px;
    padding-top: 17px;
    color: var(--brand);
  }
  .menu-btn[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-btn[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .hero {
    padding-top: 70px;
  }
  .js .hero {
    padding-top: 43px;
  }
  .hero-heading {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-bottom: 34px;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }
  .hero h1 {
    font-size: clamp(58px, 10vw, 80px);
    letter-spacing: -3.3px;
    line-height: 1.04;
  }
  .hero-description {
    padding: 0;
  }
  .hero-description > p:first-child {
    font-size: 15px;
    max-width: 465px;
  }
  .hero-description .hero-actions {
    margin-top: 20px;
    gap: 18px;
  }
  .hero-description .btn {
    font-size: 12px;
  }
  .trial-note {
    font-size: 10px;
  }
  .stage-caption {
    padding: 12px;
    font-size: 7px;
    letter-spacing: 0.7px;
  }
  .stage-caption > span:last-child {
    display: none;
  }
  .dashboard {
    display: block;
    margin: 0 5px;
  }
  .dash-sidebar {
    display: block;
    padding: 0;
    background: #172131;
  }
  .dash-brand,
  .workspace,
  .sidebar-label,
  .sidebar-static,
  .sidebar-bottom {
    display: none;
  }
  .dash-tabs {
    display: flex;
    padding: 9px;
    gap: 5px;
  }
  .dash-tabs button {
    flex: 1;
    justify-content: center;
    padding: 10px 7px;
    font-size: 10px;
    gap: 6px;
  }
  .dash-tabs .icon {
    width: 14px;
    height: 14px;
  }
  .dash-topbar {
    height: 39px;
    font-size: 8px;
    padding-inline: 13px;
  }
  .dash-topbar > div {
    gap: 9px;
  }
  .dash-topbar > div > .icon {
    display: none;
  }
  .dash-panel {
    padding: 20px 13px 14px;
    min-height: 0;
  }
  .dash-title {
    margin-bottom: 17px;
    gap: 7px;
  }
  .dash-title h2 {
    font-size: 18px;
  }
  .dash-title p {
    font-size: 9px;
  }
  .date-chip {
    font-size: 7px;
    padding: 5px;
  }
  .date-chip .icon {
    width: 10px;
    height: 10px;
  }
  .metrics {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-bottom: 13px;
  }
  .metrics > div {
    padding: 9px;
  }
  .metrics strong {
    font-size: 23px;
  }
  .metrics > div > span {
    font-size: 8px;
  }
  .metrics strong small {
    font-size: 7px;
  }
  .metrics p {
    font-size: 7px;
  }
  .dash-content {
    grid-template-columns: 1.5fr 1fr;
    gap: 9px;
  }
  .map-art {
    height: 255px;
  }
  .activity-heading {
    font-size: 9px;
    padding-top: 12px;
  }
  .activity-item strong {
    font-size: 9px;
  }
  .activity-item p {
    font-size: 7px;
  }
  .activity-item {
    padding: 13px 0;
  }
  .activity-item small {
    font-size: 7px;
  }
  .activity-footer {
    font-size: 6px;
  }
  .stage-footer {
    font-size: 8px;
    padding: 11px 12px;
  }
  .stage-footer .icon {
    width: 11px;
    height: 11px;
  }
  .proof-strip {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    padding: 29px 0;
  }
  .proof-strip > p {
    font-size: 9px;
  }
  .proof-strip > div {
    padding-left: 22px;
  }
  .proof-strip > div:nth-of-type(2) {
    border-left: 0;
    padding-left: 0;
  }
  .proof-strip strong {
    font-size: 31px;
  }
  .proof-strip > div > span {
    font-size: 10px;
  }
  .proof-strip .proof-client {
    align-items: flex-start;
  }
  .proof-client img {
    height: 48px;
    width: 125px;
  }
  .proof-strip .proof-client > span {
    font-size: 8px;
  }
  .section {
    padding: 64px 0;
  }
  .section .eyebrow {
    margin-bottom: 18px;
    font-size: 8px;
  }
  .section h2 {
    font-size: 37px;
    letter-spacing: -1.5px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 31px;
  }
  .section-heading > p {
    font-size: 14px;
    max-width: 490px;
  }
  .workflow {
    grid-template-columns: 1fr 1fr;
    gap: 23px;
    margin-bottom: 32px;
  }
  .workflow article {
    padding: 19px 15px 0 0;
  }
  .workflow article:not(:last-child)::after {
    top: 19px;
    right: 0;
  }
  .workflow article:nth-child(2)::after {
    display: none;
  }
  .workflow h3 {
    font-size: 15px;
  }
  .workflow p {
    font-size: 12px;
  }
  .workflow-top > span {
    width: 32px;
    height: 32px;
  }
  .workflow-top > b {
    font-size: 9px;
  }
  .platform-grid {
    grid-template-columns: 1fr;
  }
  .feature {
    padding: 27px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 25px;
  }
  .feature-top {
    grid-column: 1/-1;
    margin-bottom: 22px;
  }
  .feature-top .mono {
    font-size: 8px;
  }
  .feature h3 {
    font-size: 25px;
    grid-column: 1;
  }
  .feature > p {
    grid-column: 1;
    font-size: 13px;
  }
  .feature > .text-link {
    grid-column: 1/-1;
    margin-top: 25px;
    padding-top: 20px;
    font-size: 12px;
  }
  .route-visual,
  .cost-visual,
  .people-visual {
    grid-column: 2;
    grid-row: 2/4;
    align-self: center;
    margin: 0;
  }
  .route-stop {
    font-size: 9px;
  }
  .route-stop small {
    font-size: 7px;
  }
  .route-proof {
    font-size: 8px;
  }
  .people-visual > div {
    font-size: 9px;
  }
  .people-visual small {
    font-size: 7px;
  }
  .cost-visual > div {
    grid-template-columns: 31px 1fr 44px;
    font-size: 8px;
  }
  .cost-visual > small {
    font-size: 8px;
  }
  .modules-layout,
  .ai-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .modules-intro h2 br:nth-child(2) {
    display: none;
  }
  .modules-intro > p:not(.eyebrow) {
    max-width: 440px;
    font-size: 14px;
  }
  .core-note {
    margin: 22px 0;
    padding: 18px 0;
  }
  .core-note p {
    max-width: none;
  }
  .module-list {
    width: 100%;
    min-width: 0;
  }
  .pack summary {
    padding: 20px;
  }
  .pack__count {
    font-size: 10px;
  }
  .pack__name {
    font-size: 18px;
  }
  .mods li b {
    font-size: 13px;
  }
  .mods li div > span {
    font-size: 12px;
  }
  .ai-copy > p:not(.eyebrow) {
    font-size: 14px;
    max-width: 470px;
  }
  .ai-copy .check-list {
    font-size: 12px;
  }
  .ai-principle b {
    font-size: 12px;
  }
  .ai-visual {
    height: 460px;
    max-width: 490px;
    width: 100%;
    margin: auto;
    padding: 24px;
  }
  .ai-visual-heading > .mono {
    display: block;
    font-size: 7px;
  }
  .scan-document {
    margin-left: 25px;
  }
  .extraction-card {
    right: 28px;
    bottom: 28px;
    width: 285px;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 25px;
  }
  .why-grid article {
    padding-top: 25px;
    display: grid;
    grid-template-columns: 38px 1fr;
    column-gap: 14px;
  }
  .why-grid article > .icon {
    grid-row: 1/4;
    margin-top: 3px;
  }
  .why-grid h3 {
    font-size: 24px;
  }
  .why-grid p {
    max-width: 490px;
    font-size: 13px;
    margin: 13px 0 17px;
    grid-column: 2;
  }
  .language-chips,
  .why-detail {
    grid-column: 2;
    justify-self: start;
  }
  .why-detail {
    font-size: 10px;
  }
  .audiences {
    margin-top: 35px;
    padding-top: 23px;
    gap: 13px;
  }
  .audiences > span {
    font-size: 8px;
  }
  .audiences p {
    font-size: 12px;
    line-height: 2;
  }
  .audiences i {
    margin: 0 9px;
  }
  .pricing-heading {
    margin-bottom: 32px;
  }
  .pricing-heading > p:not(.eyebrow) {
    font-size: 14px;
  }
  .pricing-grid {
    gap: 18px;
  }
  .plan {
    padding: 23px;
  }
  .plan h3 {
    font-size: 27px;
  }
  .plan-eyebrow {
    font-size: 7px;
    letter-spacing: 0.5px;
  }
  .plan > p:not([class]) {
    font-size: 11px;
  }
  .plan-price {
    gap: 9px;
  }
  .plan-price strong {
    font-size: 37px;
  }
  .plan-price > span {
    font-size: 9px;
  }
  .annual-note {
    font-size: 9px;
  }
  .plan > .btn {
    font-size: 11px;
    padding: 12px;
    gap: 10px;
  }
  .plan .check-list {
    font-size: 10px;
    gap: 12px;
  }
  .plan .check-list .icon {
    width: 13px;
    height: 13px;
  }
  .plan-volume {
    font-size: 9px;
  }
  .plan-recommendation {
    font-size: 6px;
    letter-spacing: 0.5px;
  }
  .pricing-fineprint {
    font-size: 10px;
  }
  .website-included {
    padding: 21px;
    gap: 12px;
    flex-wrap: wrap;
  }
  .website-included > div {
    flex: 1;
  }
  .website-included b {
    font-size: 12px;
  }
  .website-included p {
    font-size: 11px;
  }
  .website-included > .text-link {
    margin-left: 39px;
    font-size: 11px;
  }
  .faq-layout {
    gap: 28px;
  }
  .faq-layout > div:first-child h2 br {
    display: none;
  }
  .faq-layout > div:first-child > p:not(.eyebrow) {
    margin: 17px 0 12px;
  }
  .faq summary {
    font-size: 13px;
    padding: 21px 26px 21px 0;
  }
  .faq > p {
    font-size: 12px;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    padding-block: 60px;
    gap: 0;
  }
  .contact-section .eyebrow {
    font-size: 8px;
  }
  .contact-section h2 {
    font-size: 62px;
    letter-spacing: -2.5px;
  }
  .contact-section p:not(.eyebrow) {
    font-size: 14px;
  }
  .contact-road {
    display: none;
  }
  .contact-section .hero-actions {
    gap: 18px;
  }
  .contact-section .btn {
    font-size: 12px;
    padding: 14px 16px;
  }
  .contact-section .text-link {
    font-size: 12px;
  }
  .contact-section p.contact-phone {
    font-size: 10px;
  }
  .site-foot {
    padding-top: 43px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
    padding-bottom: 35px;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .footer-grid > div:last-child {
    grid-column: 1/-1;
  }
  .footer-grid > div > a:not(.brand) {
    font-size: 12px;
  }
  .footer-grid p {
    font-size: 12px;
  }
  .footer-grid h2 {
    font-size: 12px;
    margin-bottom: 17px;
  }
  .footer-grid .brand {
    margin-bottom: 16px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    font-size: 9px;
    gap: 10px;
    padding: 22px 0;
  }
  .footer-bottom > span:nth-child(2) {
    flex-basis: 100%;
    order: 3;
  }
  .footer-bottom > a {
    margin-left: auto;
  }
  .dispatch-board {
    gap: 9px;
  }
  .dispatch-column h3 {
    font-size: 9px;
  }
  .dispatch-column article {
    padding: 10px;
  }
  .dispatch-column h4 {
    font-size: 11px;
  }
  .preview-explainer {
    font-size: 9px;
  }
  .fleet-table {
    font-size: 9px;
  }
  .fleet-table td {
    padding: 16px 11px;
  }
}
@media (max-width: 480px) {
  .head-actions .btn {
    font-size: 10px;
    padding: 10px;
    gap: 5px;
  }
  .head-actions .btn .icon {
    width: 12px;
  }
  .head-inner {
    gap: 9px;
  }
  .brand {
    font-size: 21px;
    gap: 6px;
  }
  .brand img {
    width: 31px;
  }
  .menu-btn {
    width: 36px;
    height: 36px;
    padding: 8px;
  }
  .hero-description > p:first-child {
    font-size: 14px;
  }
  .hero-description .hero-actions {
    gap: 16px;
  }
  .hero-description .btn {
    padding: 13px 15px;
    font-size: 11px;
    gap: 15px;
  }
  .hero-description .text-link {
    font-size: 11px;
  }
  .metrics {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .metrics > div {
    padding: 10px;
  }
  .metrics > div > span {
    font-size: 9px;
  }
  .metrics > div > span .icon {
    display: block;
    width: 12px;
    height: 12px;
  }
  .metrics strong {
    font-size: 25px;
  }
  .metrics strong small {
    font-size: 8px;
  }
  .metrics strong .metric-status {
    font-size: 8px;
  }
  .metrics p {
    font-size: 8px;
  }
  .dash-panel {
    padding: 18px 10px 10px;
  }
  .dash-title h2 {
    font-size: 16px;
  }
  .dash-title p {
    font-size: 8px;
  }
  .dash-title .date-chip {
    display: none;
  }
  .dash-tabs button {
    font-size: 9px;
    padding: 9px 4px;
    gap: 5px;
  }
  .dash-tabs .icon {
    width: 13px;
    height: 13px;
  }
  .dash-content {
    grid-template-columns: 1fr;
  }
  .map-art {
    height: 225px;
  }
  .map-heading b {
    font-size: 9px;
  }
  .map-live {
    font-size: 7px;
  }
  .map-legend {
    font-size: 8px;
  }
  .map-legend > span:last-child {
    display: block;
    font-size: 7px;
  }
  .activity {
    display: none;
  }
  .stage-footer > span {
    display: none;
  }
  .stage-footer {
    justify-content: center;
    font-size: 9px;
  }
  .stage-caption {
    font-size: 6.5px;
  }
  .feature {
    display: flex;
    padding: 26px;
  }
  .feature-top {
    margin-bottom: 22px;
  }
  .feature h3 {
    font-size: 26px;
  }
  .feature > p {
    font-size: 13px;
  }
  .route-visual,
  .cost-visual,
  .people-visual {
    width: 100%;
    margin: 30px 0 0;
  }
  .route-stop {
    font-size: 11px;
  }
  .route-stop small {
    font-size: 9px;
  }
  .route-proof {
    font-size: 9px;
  }
  .people-visual > div {
    font-size: 11px;
    gap: 9px;
  }
  .people-visual .avatar {
    display: inline-grid;
  }
  .people-visual small {
    font-size: 9px;
  }
  .people-visual b {
    font-size: 9px;
  }
  .cost-visual > div {
    font-size: 10px;
    grid-template-columns: 45px 1fr 57px;
    gap: 10px;
  }
  .cost-visual b {
    font-size: 10px;
  }
  .cost-visual > small {
    font-size: 9px;
  }
  .cost-visual i {
    height: 12px;
  }
  .feature > .text-link {
    font-size: 12px;
  }
  .pack summary {
    padding: 18px 15px;
  }
  .pack__count {
    font-size: 8.5px;
    line-height: 1.6;
    padding-left: 44px;
    margin-top: -12px;
  }
  .pack__body {
    padding: 0 17px 5px;
  }
  .mods li {
    gap: 12px;
  }
  .ai-visual {
    height: 435px;
    padding: 18px;
  }
  .ai-visual-heading {
    font-size: 7px;
  }
  .ai-visual-heading > .mono {
    font-size: 6px;
  }
  .scan-document {
    width: 197px;
    margin-left: 5px;
    margin-top: 27px;
    padding: 17px;
  }
  .pump-display strong {
    font-size: 23px;
  }
  .extraction-card {
    width: 252px;
    right: 20px;
    bottom: 25px;
    padding: 16px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 43px;
    max-width: 380px;
  }
  .plan {
    padding: 29px;
  }
  .plan h3 {
    font-size: 31px;
  }
  .plan-eyebrow {
    font-size: 9px;
    letter-spacing: 0.8px;
  }
  .plan > p:not([class]) {
    font-size: 13px;
  }
  .plan-price strong {
    font-size: 48px;
  }
  .plan-price > span {
    font-size: 11px;
  }
  .annual-note {
    font-size: 11px;
  }
  .plan > .btn {
    font-size: 13px;
    padding: 14px 18px;
  }
  .plan .check-list {
    font-size: 12px;
    gap: 14px;
  }
  .plan .check-list .icon {
    width: 15px;
    height: 15px;
  }
  .plan-volume {
    font-size: 10px;
  }
  .plan-recommendation {
    font-size: 8px;
    letter-spacing: 0.7px;
  }
  .pricing-heading {
    margin-bottom: 29px;
  }
  .pricing-heading h2 {
    font-size: 36px;
  }
  .pricing-fineprint > span {
    font-size: 9px;
  }
  .billing-toggle button {
    font-size: 12px;
  }
  .dispatch-board {
    grid-template-columns: 1fr;
  }
  .dispatch-column {
    padding: 12px;
  }
  .dispatch-column h3 {
    font-size: 11px;
    margin-bottom: 10px;
  }
  .dispatch-column article {
    padding: 12px;
  }
  .dispatch-column h4 {
    font-size: 14px;
  }
  .dispatch-column article small {
    font-size: 9px;
  }
  .dispatch-column article p {
    font-size: 11px;
  }
  .dispatch-column article > span {
    font-size: 9px;
    margin-top: 10px;
    padding-top: 8px;
  }
  .dispatch-column article:nth-of-type(2) {
    display: none;
  }
  .preview-explainer {
    font-size: 9px;
    align-items: flex-start;
  }
  .contact-section h2 {
    font-size: 58px;
  }
  .contact-section .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .contact-section .text-link {
    margin-top: 2px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
@media print {
  .site-head,
  .contact-road,
  .menu-btn,
  .billing-toggle {
    display: none !important;
  }
  body {
    font-size: 11px;
  }
  .shell {
    width: 100%;
  }
  .section {
    padding: 30px 0;
  }
  .hero {
    padding-top: 15px;
  }
  .product-stage {
    break-inside: avoid;
    box-shadow: none;
  }
  .section-tint {
    background: white;
  }
  .why-section,
  .contact-section {
    background: #fff;
    color: #101722;
  }
  .why-section p,
  .contact-section p {
    color: #555 !important;
  }
  .plan,
  .feature {
    break-inside: avoid;
  }
  .footer-grid {
    display: none;
  }
  .footer-bottom {
    padding: 15px 0;
  }
}

/* Progressive fallback and compact pricing comparison. */
html:not(.js) .dash-tabs {
  display: none;
}
.modules-layout > *,
.ai-layout > *,
.faq-layout > * {
  min-width: 0;
}
.core-note > div {
  min-width: 0;
}
.pricing-examples {
  max-width: 920px;
  margin: 25px auto 0;
  border: 1px solid var(--line);
  border-radius: 7px;
}
.pricing-examples summary {
  padding: 17px 22px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
}
.pricing-examples summary:hover {
  color: var(--brand);
}
.table-wrap {
  overflow-x: auto;
  margin: 0 22px 20px;
}
.pricetable {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  white-space: nowrap;
  font-size: 11px;
}
.pricetable caption {
  text-align: left;
  white-space: normal;
  font-size: 10px;
  color: var(--muted);
  padding: 0 0 15px;
}
.pricetable th,
.pricetable td {
  border-top: 1px solid var(--line);
  padding: 12px;
}
.pricetable th {
  font-weight: 500;
}
.pricetable thead {
  background: var(--wash);
}
@media (max-width: 480px) {
  .modules-intro .core-note b {
    font-size: 11px;
  }
  .modules-intro h2 {
    font-size: 35px;
  }
  .pricing-examples summary {
    font-size: 11px;
    padding: 16px;
  }
  .table-wrap {
    margin: 0 12px 15px;
  }
}

/* Fleet pricing: one shared selector, two complete quotes. */
.fleet-configurator {
  max-width: 920px;
  margin: 0 auto 25px;
  border: 1px solid #cfddf3;
  border-radius: 12px;
  padding: 30px 34px;
  background: linear-gradient(115deg, #f3f7ff, #fcfdff 65%);
  box-shadow: 0 8px 30px -22px #19457a30;
}
.fleet-config-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.fleet-kicker {
  font:
    8px "Plex Mono",
    monospace;
  letter-spacing: 1.7px;
  color: var(--brand-ink);
  margin-bottom: 10px;
}
.fleet-config-top label {
  display: block;
  font-size: 23px;
  font-weight: 550;
  letter-spacing: -0.7px;
  line-height: 1.3;
}
.fleet-config-top > div > p:last-child {
  font-size: 12px;
  color: var(--muted);
  margin-top: 7px;
}
.fleet-stepper {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #cfdaec;
  border-radius: 8px;
  padding: 5px;
  flex-shrink: 0;
  box-shadow: 0 3px 8px #1e407008;
}
.fleet-stepper button {
  border: 0;
  border-radius: 5px;
  width: 35px;
  height: 44px;
  background: #f3f6fc;
  color: #536984;
  font-size: 21px;
  line-height: 1;
}
.fleet-stepper button:hover {
  background: #e5eeff;
  color: var(--brand);
}
.fleet-stepper button:disabled {
  opacity: 0.4;
  cursor: default;
}
.fleet-stepper input {
  width: 91px;
  min-width: 0;
  background: transparent;
  border: 0;
  text-align: center;
  color: var(--brand);
  font-size: 30px;
  font-weight: 550;
  letter-spacing: -1px;
  line-height: 1.3;
  appearance: textfield;
  -moz-appearance: textfield;
}
.fleet-stepper input::-webkit-inner-spin-button,
.fleet-stepper input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.fleet-stepper input:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 0;
  border-radius: 3px;
}
.fleet-range {
  margin-top: 28px;
}
.fleet-range input {
  --range-progress: 1.8%;
  width: 100%;
  display: block;
  margin: 0;
  height: 24px;
  appearance: none;
  background: transparent;
  cursor: pointer;
}
.fleet-range input::-webkit-slider-runnable-track {
  height: 5px;
  border-radius: 10px;
  background: linear-gradient(
    to right,
    var(--brand) 0 var(--range-progress),
    #dde5f2 var(--range-progress) 100%
  );
}
.fleet-range input::-moz-range-track {
  height: 5px;
  border-radius: 10px;
  background: #dde5f2;
}
.fleet-range input::-moz-range-progress {
  height: 5px;
  border-radius: 10px;
  background: var(--brand);
}
.fleet-range input::-webkit-slider-thumb {
  appearance: none;
  width: 19px;
  height: 19px;
  margin-top: -7px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--brand);
  box-shadow:
    0 0 0 1px #8db7ff,
    0 2px 5px #005ffb25;
}
.fleet-range input::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 1px #8db7ff;
}
.fleet-range input:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 5px;
  border-radius: 4px;
}
.fleet-range-labels {
  display: flex;
  justify-content: space-between;
}
.fleet-range > div {
  position: relative;
  height: 24px;
  font:
    9px "Plex Mono",
    monospace;
  color: #657389;
  margin-top: 5px;
}
.fleet-range > div span {
  position: absolute;
  top: 0;
}
.fleet-range > div span:nth-child(1) {
  left: 0;
}
.fleet-range > div span:nth-child(2) {
  left: 19.84%;
  transform: translateX(-50%);
}
.fleet-range > div span:nth-child(3) {
  left: 49.9%;
  transform: translateX(-50%);
}
.fleet-range > div span:nth-child(4) {
  right: 0;
}
.fleet-config-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  border-top: 1px solid #dce5f2;
  padding-top: 19px;
  margin-top: 10px;
}
.fleet-presets {
  display: flex;
  align-items: center;
  gap: 6px;
}
.fleet-presets > span {
  font:
    7px "Plex Mono",
    monospace;
  color: #68758a;
  letter-spacing: 0.8px;
  margin-right: 4px;
}
.fleet-presets button {
  border: 1px solid #dce4f0;
  padding: 6px 9px;
  min-width: 35px;
  border-radius: 4px;
  font-size: 10px;
  background: #fff;
  color: #53647b;
  min-height: 32px;
}
.fleet-presets button:hover {
  border-color: #9cbdf5;
  color: var(--brand);
}
.fleet-presets button[aria-pressed="true"] {
  background: var(--brand);
  border-color: var(--brand);
  color: white;
}
.fleet-tier {
  font-size: 10px;
  color: #617089;
  display: flex;
  align-items: center;
  gap: 7px;
  line-height: 1.5;
}
.fleet-tier > span {
  width: 6px;
  height: 6px;
  background: #7198d7;
  border-radius: 50%;
  flex-shrink: 0;
}
.fleet-tier.is-volume {
  color: var(--green);
}
.fleet-tier.is-volume > span {
  background: var(--green);
}
.pricing-toolbar {
  max-width: 920px;
  margin: 0 auto 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.pricing-toolbar > p {
  font-size: 12px;
  color: var(--muted);
}
.pricing-toolbar > p > strong {
  font-weight: 550;
  color: var(--ink);
}
.pricing-toolbar .billing-toggle {
  margin: 0;
}
.pricing-toolbar .billing-toggle button > span {
  font-size: 8px;
}
.plan-discount {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 23px;
  min-height: 22px;
  line-height: 1.3;
}
.plan-discount s {
  font-size: 20px;
  color: #626b78;
  text-decoration-thickness: 1.5px;
  font-weight: 400;
  letter-spacing: -0.5px;
}
.plan-discount > [data-rate-saving] {
  font-size: 9px;
  font-weight: 500;
  background: #e8f5ed;
  color: #1a714f;
  border: 1px solid #d0e9db;
  border-radius: 4px;
  padding: 3px 6px;
}
.plan[data-plan] .plan-price {
  margin-top: 9px;
}
.plan[data-plan] .plan-price strong {
  font-size: 58px;
  letter-spacing: -2.5px;
}
.plan[data-plan] .plan-price > span {
  font-size: 11px;
  max-width: 100px;
  line-height: 1.5;
}
.plan[data-plan] .annual-note {
  font-size: 11px;
  min-height: 18px;
  margin-top: 11px;
}
.plan[data-plan] .check-list {
  margin-bottom: 24px;
}
.fleet-quote {
  margin-top: auto;
  padding: 18px 19px;
  background: #f5f7fb;
  border: 1px solid #e1e7f0;
  border-radius: 7px;
}
.plan-featured .fleet-quote {
  background: #edf3ff;
  border-color: #d6e3fb;
}
.fleet-quote > p:first-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  color: #57667c;
}
.fleet-quote [data-quote-cycle] {
  font:
    7px "Plex Mono",
    monospace;
  letter-spacing: 0.7px;
  color: #56647b;
}
.fleet-quote > div {
  display: flex;
  align-items: baseline;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.fleet-quote strong {
  font-size: 30px;
  letter-spacing: -1px;
  font-weight: 550;
  line-height: 1.3;
}
.fleet-quote [data-fleet-period] {
  font-size: 11px;
  color: var(--muted);
}
.fleet-quote .quote-tax {
  font-size: 9px;
  color: #626b78;
  margin-top: 6px;
  line-height: 1.6;
}
.fleet-quote .quote-saving {
  font-size: 9px;
  color: var(--green);
  border-top: 1px solid #d6e4db;
  padding-top: 9px;
  margin-top: 10px;
  line-height: 1.6;
}
.pricing-heading {
  margin-bottom: 33px;
}
.pricing-grid .plan-recommendation {
  height: 25px;
  top: -24px;
}
.pricing-fineprint p {
  max-width: 700px;
  margin-inline: auto;
}
.pricing-grid .plan {
  padding: 32px;
}
.pricing-grid {
  gap: 24px;
}
@media (max-width: 960px) {
  .fleet-configurator {
    padding: 27px;
  }
  .fleet-config-top label {
    font-size: 21px;
  }
  .plan[data-plan] .plan-price strong {
    font-size: 50px;
  }
  .pricing-grid .plan {
    padding: 26px;
  }
  .fleet-quote {
    padding: 16px;
  }
  .fleet-quote strong {
    font-size: 27px;
  }
}
@media (max-width: 760px) {
  .fleet-configurator {
    padding: 23px;
  }
  .fleet-config-top label {
    font-size: 21px;
  }
  .fleet-stepper input {
    width: 65px;
    font-size: 26px;
  }
  .fleet-stepper button {
    width: 30px;
    height: 39px;
  }
  .fleet-config-bottom {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 13px;
  }
  .fleet-tier {
    font-size: 10px;
  }
  .pricing-toolbar {
    margin-bottom: 44px;
  }
  .pricing-toolbar > p {
    max-width: 165px;
    font-size: 11px;
  }
  .pricing-toolbar .billing-toggle button {
    padding: 8px 11px;
    font-size: 11px;
  }
  .pricing-toolbar .billing-toggle button > span {
    display: none;
  }
  .pricing-grid .plan {
    padding: 24px;
  }
  .plan[data-plan] .plan-price strong {
    font-size: 46px;
  }
  .plan[data-plan] .plan-price > span {
    font-size: 10px;
  }
  .plan[data-plan] .annual-note {
    font-size: 10px;
  }
  .fleet-quote {
    padding: 13px;
  }
  .fleet-quote > p:first-child {
    flex-wrap: wrap;
    font-size: 9px;
  }
  .fleet-quote [data-quote-cycle] {
    font-size: 6px;
  }
  .fleet-quote strong {
    font-size: 24px;
  }
  .fleet-quote .quote-tax,
  .fleet-quote .quote-saving {
    font-size: 8px;
  }
  .plan-discount s {
    font-size: 18px;
  }
  .plan-discount > [data-rate-saving] {
    font-size: 8px;
  }
  .pricing-grid .plan > .btn {
    font-size: 12px;
  }
}
@media (max-width: 580px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 430px;
    gap: 44px;
  }
  .pricing-grid .plan {
    padding: 29px;
  }
  .plan[data-plan] .plan-price strong {
    font-size: 58px;
  }
  .plan[data-plan] .plan-price > span {
    font-size: 12px;
  }
  .plan[data-plan] .annual-note {
    font-size: 11px;
  }
  .pricing-grid .plan h3 {
    font-size: 30px;
  }
  .pricing-grid .plan > p:not([class]) {
    font-size: 13px;
  }
  .pricing-grid .plan-eyebrow {
    font-size: 8px;
  }
  .pricing-grid .plan .check-list {
    font-size: 12px;
  }
  .pricing-grid .plan > .btn {
    font-size: 13px;
    padding: 14px 18px;
  }
  .fleet-quote {
    padding: 18px;
  }
  .fleet-quote > p:first-child {
    font-size: 10px;
  }
  .fleet-quote [data-quote-cycle] {
    font-size: 7px;
  }
  .fleet-quote strong {
    font-size: 30px;
  }
  .fleet-quote .quote-tax,
  .fleet-quote .quote-saving {
    font-size: 9px;
  }
  .plan-discount s {
    font-size: 20px;
  }
  .plan-discount > [data-rate-saving] {
    font-size: 9px;
  }
}
@media (max-width: 480px) {
  .fleet-configurator {
    padding: 21px 18px;
  }
  .fleet-config-top {
    flex-wrap: wrap;
    gap: 19px;
  }
  .fleet-config-top > div:first-child {
    flex-basis: 100%;
  }
  .fleet-config-top label {
    font-size: 22px;
    max-width: 240px;
  }
  .fleet-config-top > div > p:last-child {
    font-size: 11px;
  }
  .fleet-stepper {
    width: 100%;
    justify-content: space-between;
    padding: 6px;
  }
  .fleet-stepper input {
    width: calc(100% - 100px);
    font-size: 32px;
  }
  .fleet-stepper button {
    width: 42px;
    height: 42px;
  }
  .fleet-range {
    margin-top: 19px;
  }
  .fleet-presets {
    gap: 6px;
    flex-wrap: wrap;
  }
  .fleet-presets > span {
    margin-right: 2px;
    font-size: 6px;
  }
  .fleet-presets button {
    font-size: 10px;
    min-width: 33px;
    padding: 6px 8px;
  }
  .fleet-config-bottom {
    padding-top: 16px;
    gap: 13px;
  }
  .fleet-tier {
    font-size: 9px;
  }
  .pricing-toolbar {
    gap: 10px;
    margin-bottom: 43px;
  }
  .pricing-toolbar > p {
    font-size: 10px;
    max-width: 125px;
    line-height: 1.7;
  }
  .pricing-toolbar > p > strong {
    display: block;
  }
  .pricing-toolbar .billing-toggle {
    gap: 2px;
    padding: 3px;
  }
  .pricing-toolbar .billing-toggle button {
    padding: 7px 10px;
    font-size: 10px;
    min-height: 36px;
  }
  .pricing-grid .plan {
    padding: 25px;
  }
  .pricing-grid .plan-recommendation {
    font-size: 7px;
  }
  .plan[data-plan] .plan-price strong {
    font-size: 54px;
  }
  .fleet-quote strong {
    font-size: 28px;
  }
}

.plan-custom-price {
  margin: 27px 0 0;
  min-height: 127px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 11px;
}
.custom-label {
  font:
    8px "Plex Mono",
    monospace;
  letter-spacing: 1px;
  color: var(--brand-ink);
}
.plan-custom-price strong {
  font-size: 40px;
  font-weight: 550;
  letter-spacing: -1.7px;
  line-height: 1.15;
}
.plan-custom-price p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 260px;
}
.complete-contact-note {
  margin-top: auto;
  padding: 19px;
  background: #edf3ff;
  border: 1px solid #d6e3fb;
  border-radius: 7px;
}
.complete-contact-note b {
  font-size: 12px;
  font-weight: 500;
}
.complete-contact-note p {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.7;
  margin: 7px 0 10px;
}
.complete-contact-note a {
  font-size: 12px;
  color: var(--brand-ink);
  font-weight: 500;
}
.pricing-fineprint .essentials-rate-note {
  max-width: 760px;
  font-size: 11px;
  line-height: 1.9;
  margin: 0 auto 17px;
}
.essentials-rate-note b {
  font-weight: 500;
  color: #46546a;
}
@media (max-width: 760px) {
  .plan-custom-price strong {
    font-size: 32px;
  }
  .plan-custom-price p {
    font-size: 11px;
  }
  .complete-contact-note {
    padding: 15px;
  }
  .complete-contact-note b {
    font-size: 11px;
  }
  .complete-contact-note p {
    font-size: 10px;
  }
}
@media (max-width: 580px) {
  .plan-custom-price {
    min-height: 0;
    margin: 26px 0 5px;
  }
  .plan-custom-price strong {
    font-size: 40px;
  }
  .plan-custom-price p {
    font-size: 12px;
  }
  .complete-contact-note {
    padding: 18px;
  }
  .complete-contact-note b {
    font-size: 12px;
  }
  .complete-contact-note p {
    font-size: 11px;
  }
  .pricing-fineprint .essentials-rate-note {
    font-size: 10px;
    text-align: left;
    padding: 15px 18px;
    background: var(--wash);
    border-radius: 6px;
  }
}

/* A direct chat link: no embedded service or tracking requests. */
html { scroll-padding-bottom: 100px; }
a, button, summary, input { touch-action: manipulation; }
h1, h2, h3 { text-wrap: balance; }
.metrics strong, .plan-price, .fleet-quote, .pricetable, .fleet-stepper input { font-variant-numeric: tabular-nums; }
.field-error { margin-top: 10px; color: #ae2424; font-size: 14px; }
.whatsapp-float {
  position: fixed; z-index: 40;
  right: max(24px, env(safe-area-inset-right));
  bottom: max(24px, env(safe-area-inset-bottom));
  display: flex; align-items: center; gap: 10px;
  min-width: 56px; min-height: 56px; padding: 14px 20px;
  border: 1px solid #ffffff80; border-radius: 40px;
  background: #147a44; color: #fff; font-size: 14px; font-weight: 600;
  box-shadow: 0 5px 20px #102a2630;
  transition: transform .18s, background-color .18s;
}
.whatsapp-float > svg { width: 27px; height: 27px; flex-shrink: 0; }
.whatsapp-float:hover { background: #105f35; transform: translateY(-2px); }
.whatsapp-float:focus-visible { outline: 3px solid var(--brand); outline-offset: 4px; }
/* Keep the mobile menu clear of the floating control. */
body:has(.nav.open) .whatsapp-float { visibility: hidden; }
.document-shell { padding-top: 30px; padding-bottom: 100px; }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; font-size: 13px; color: var(--muted); }
.breadcrumbs a { text-decoration: underline; text-underline-offset: 4px; padding-block: 8px; }
.document-heading { padding: 64px 0 54px; max-width: 850px; }
.document-heading h1 { font-size: clamp(38px, 5.1vw, 70px); line-height: 1.09; letter-spacing: -.045em; margin: 20px 0 24px; }
.document-heading h1 span { color: var(--brand); }
.document-heading > p:not(.eyebrow) { max-width: 680px; font-size: 19px; color: var(--muted); }
.document-heading .document-date { margin-top: 20px; font-size: 13px !important; }
.contact-options { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.contact-options article { padding: 32px; display: flex; flex-direction: column; align-items: flex-start; }
.contact-options article + article { border-left: 1px solid var(--line); }
.contact-option-icon { display: grid; place-items: center; width: 48px; height: 48px; background: var(--brand-tint); color: var(--brand-ink); border-radius: 12px; font-size: 25px; margin-bottom: 30px; }
.contact-option-icon svg { width: 26px; height: 26px; }
.whatsapp-icon { background: #e6f5ed; color: #147a44; }
.contact-options h2 { font-size: 24px; line-height: 1.25; margin-bottom: 12px; }
.contact-options p { color: var(--muted); margin-bottom: 25px; }
.contact-options a { margin-top: auto; overflow-wrap: anywhere; }
.contact-support-band { display: grid; grid-template-columns: 1.2fr 1fr; gap: 70px; margin-top: 60px; padding: 44px; border-radius: 16px; background: var(--wash); }
.contact-support-band h2 { font-size: 32px; line-height: 1.2; margin: 12px 0 20px; }
.contact-support-band p:not(.eyebrow), .contact-next p { color: var(--muted); }
.contact-next h3 { margin-bottom: 12px; font-size: 20px; }
.contact-next .text-link { display: block; width: fit-content; margin-top: 16px; }
.about-story { display: grid; grid-template-columns: 1.45fr 1fr; gap: 80px; padding-top: 36px; border-top: 1px solid var(--line); }
.about-story article h2, .document-prose h2 { font-size: 28px; line-height: 1.25; margin: 38px 0 16px; }
.about-story article h2:first-child, .document-prose h2:first-child { margin-top: 0; }
.about-story article p, .document-prose p { margin-top: 16px; color: var(--muted); }
.about-facts { align-self: start; padding: 32px; background: var(--wash); border-radius: 16px; }
.about-facts dl { margin: 24px 0; }
.about-facts dl div { border-bottom: 1px solid var(--line); padding: 15px 0; }
.about-facts dt { font-size: 12px; color: var(--muted); }
.about-facts dd { margin: 4px 0 0; font-weight: 600; }
.about-facts .btn { white-space: normal; }
.document-cta { margin-top: 65px; padding: 42px; background: var(--brand-tint); border-radius: 16px; }
.document-cta h2 { font-size: 32px; }
.document-cta p { margin: 12px 0 25px; color: var(--muted); }
.document-cta .text-link { display: inline-block; margin: 16px 0 0 24px; }
.document-prose { max-width: 780px; border-top: 1px solid var(--line); padding-top: 32px; }
.document-prose a { color: var(--brand-ink); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 900px) {
  .contact-options article { padding: 24px; }
  .contact-options h2 { font-size: 21px; }
  .contact-options .btn { padding-inline: 16px; white-space: normal; }
  .contact-support-band, .about-story { gap: 32px; }
}
@media (max-width: 760px) {
  .whatsapp-float { right: max(16px, env(safe-area-inset-right)); bottom: max(16px, env(safe-area-inset-bottom)); width: 56px; height: 56px; padding: 13px; justify-content: center; }
  .whatsapp-float > span { display: none; }
  .document-shell { padding-bottom: 70px; }
  .document-heading { padding: 34px 0 36px; }
  .document-heading > p:not(.eyebrow) { font-size: 17px; }
  .contact-options, .contact-support-band, .about-story { grid-template-columns: 1fr; }
  .contact-options article + article { border-left: 0; border-top: 1px solid var(--line); }
  .contact-option-icon { margin-bottom: 20px; }
  .contact-options h2 { font-size: 24px; }
  .contact-support-band, .document-cta { padding: 26px; margin-top: 36px; }
  .document-cta .text-link { margin-left: 0; display: block; }
  .about-facts { padding: 26px; }
  .footer-bottom { padding-bottom: 68px; }
}
@media print { .whatsapp-float { display: none; } }

/* Passenger and freight: two work streams, a shared foundation. */
.business-section { background: #fff; }
.business-heading { display: grid; grid-template-columns: 1.3fr 1fr; gap: 70px; align-items: end; margin-bottom: 40px; }
.business-heading h2 { margin-top: 18px; font-size: clamp(34px, 4vw, 52px); line-height: 1.12; letter-spacing: -.04em; }
.business-heading h2 span { color: var(--brand); }
.business-heading > p { color: var(--muted); max-width: 440px; font-size: 18px; }
.business-stories { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.business-story { border: 1px solid var(--line); border-radius: 16px; padding: 34px; background: var(--wash); }
.freight-story { background: #eff4ff; border-color: #d4e2ff; }
.business-story-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.business-story-top svg { width: 86px; height: 54px; color: var(--brand); }
.business-number { font: 11px "Plex Mono", monospace; letter-spacing: .1em; color: var(--brand-ink); }
.business-story h3 { font-size: 30px; line-height: 1.2; letter-spacing: -.025em; }
.business-story > p { color: var(--muted); margin: 18px 0 25px; max-width: 460px; }
.journey-steps { display: flex; list-style: none; margin: 0 0 30px; padding: 0; font-size: 12px; font-weight: 600; gap: 12px; flex-wrap: wrap; }
.journey-steps li:not(:last-child)::after { content: "→"; padding-left: 12px; color: var(--muted); }
.freight-workbench { display: grid; grid-template-columns: 1fr 1.15fr; gap: 70px; padding: 50px; margin-top: 22px; background: var(--night); color: #fff; border-radius: 16px; overflow: hidden; }
.freight-workbench .eyebrow { color: #a8c8ff; }
.freight-workbench h3 { font-size: 34px; line-height: 1.18; letter-spacing: -.025em; margin: 18px 0; }
.freight-workbench-copy > p:not(.eyebrow) { color: #b3bece; }
.freight-workbench .text-link { display: inline-block; color: #a8c8ff; margin-top: 25px; }
.workbench-caption { display: block; font-size: 11px; color: #b3bece; margin-top: 24px; }
.freight-document { background: #fff; color: var(--ink); border-radius: 10px; padding: 24px; box-shadow: 0 12px 35px #0003; }
.freight-document-head { display: flex; justify-content: space-between; gap: 12px; font: 10px "Plex Mono", monospace; align-items: center; }
.freight-document-status { background: #e6f5ed; color: #16613e; border-radius: 5px; padding: 5px 8px; }
.freight-document-route { display: flex; align-items: center; gap: 20px; margin: 22px 0; font-size: 24px; letter-spacing: -.02em; font-weight: 600; }
.freight-document-route span:nth-child(2) { color: var(--brand); }
.freight-records { margin: 0; }
.freight-records > div { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; border-top: 1px solid var(--line); padding: 15px 0; font-size: 12px; }
.freight-records dt { font-weight: 600; }
.freight-records dt span { font: 10px "Plex Mono", monospace; color: var(--brand); margin-right: 8px; }
.freight-records dd { margin: 0; font-weight: 600; }
.freight-records dd small { display: block; font-size: 11px; color: var(--muted); font-weight: 400; margin-top: 3px; }
.business-together { display: flex; gap: 35px; justify-content: space-between; align-items: center; padding: 30px 0 0; }
.business-together h3 { font-size: 22px; margin-bottom: 8px; }
.business-together p { max-width: 670px; color: var(--muted); font-size: 15px; }
.business-together .btn { flex-shrink: 0; }
.business-picker { border: 1px solid var(--line); border-radius: 16px; padding: 28px; background: white; margin: 35px 0 20px; }
.business-picker-heading h3 { font-size: 27px; margin: 8px 0 4px; }
.business-picker-heading p { color: var(--muted); font-size: 15px; }
.business-options { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; margin-top: 22px; }
.business-options button { position: relative; display: flex; flex-direction: column; align-items: flex-start; text-align: left; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 20px; color: var(--ink); }
.business-options button[aria-pressed="true"] { border-color: var(--brand); box-shadow: inset 0 0 0 1px var(--brand); background: #f2f6ff; }
.business-options button[aria-pressed="true"]::after { content: "✓"; position: absolute; top: 15px; right: 16px; color: var(--brand); font-weight: 700; }
.business-options svg, .both-symbol { width: 52px; height: 34px; color: var(--brand); margin-bottom: 16px; }
.both-symbol { font-size: 40px; line-height: 30px; font-weight: 300; }
.business-options strong { font-size: 19px; }
.business-options button > span:not(.both-symbol) { font-size: 13px; color: var(--muted); margin-top: 5px; }
.business-options small { font-size: 11px; color: var(--brand-ink); margin-top: 16px; }
.business-price-note { margin-top: 18px; color: var(--muted); font-size: 14px; max-width: 900px; }
.plan-business-warning { margin-top: 12px; padding: 12px; background: var(--brand-tint); color: var(--brand-ink); border-radius: 7px; font-size: 13px; }
.plan-line-breakdown { color: var(--muted); font-size: 13px; margin-top: 18px; }
.plan.recommended-both { outline: 3px solid var(--brand); outline-offset: 4px; }
.second-line-note { max-width: 880px; margin: 15px auto; }
@media (max-width: 900px) {
 .business-heading { gap: 30px; }
 .freight-workbench { padding: 30px; gap: 30px; }
 .business-options button { padding: 16px; }
 .business-options strong { font-size: 17px; }
 .business-together { align-items: flex-start; flex-direction: column; gap: 20px; }
}
@media (max-width: 760px) {
 .business-heading, .business-stories, .freight-workbench { grid-template-columns: 1fr; }
 .business-heading { gap: 20px; }
 .business-story { padding: 25px; }
 .business-story h3 { font-size: 28px; }
 .freight-workbench { padding: 25px 20px; }
 .freight-workbench h3 { font-size: 30px; }
 .freight-document { padding: 18px; }
 .freight-document-head { flex-wrap: wrap; }
 .freight-document-route { font-size: 22px; }
 .freight-records > div { grid-template-columns: 1fr; gap: 5px; }
 .freight-records dd { padding-left: 24px; }
 .business-picker { padding: 20px; }
 .business-options { grid-template-columns: 1fr; }
 .business-options button { padding: 18px 18px 18px 82px; min-height: 108px; }
 .business-options svg, .business-options .both-symbol { position: absolute; left: 17px; top: 22px; width: 45px; }
 .business-options small { margin-top: 8px; }
 .business-options button[aria-pressed="true"]::after { top: 8px; right: 10px; font-size: 12px; }
}

/* Business positioning (17 Sept 2026): footer legal line, business-details card,
   pricing page intro and subscribe flow. Reuses the site's tokens. */
.footer-owner { font-size: 14px; margin-top: 4px; color: var(--ink); }
.footer-legal { margin: 0 0 22px; max-width: 760px; font-size: 13px; line-height: 1.65; color: var(--muted); }
.contact-owner { opacity: .8; }
.business-card { margin-top: 44px; max-width: 780px; }
.business-card dd a { color: var(--brand-ink); text-decoration: underline; text-underline-offset: 3px; }
.pricing-intro { padding-bottom: 0; }
.pricing-intro .document-heading { padding-bottom: 44px; }
.subscribe-flow { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; padding-top: 36px; border-top: 1px solid var(--line); }
.subscribe-flow h2 { font-size: 32px; line-height: 1.2; margin: 12px 0 16px; }
.subscribe-flow > div > p:not(.eyebrow) { color: var(--muted); }
.subscribe-flow .text-link { display: inline-block; margin-top: 10px; }
.flow-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.flow-steps li { display: grid; grid-template-columns: 40px 1fr; gap: 6px 16px; align-items: start; padding: 20px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); }
.flow-steps li > span { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--brand-tint); color: var(--brand-ink); font-weight: 600; grid-row: span 2; }
.flow-steps li > strong { font-size: 17px; align-self: center; }
.flow-steps li > p { grid-column: 2; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.6; }
@media (max-width: 900px) {
  .subscribe-flow { display: block; }
  .flow-steps { margin-top: 24px; }
}

/* Clear product paths and the separately quoted website service. Shared on all solution pages. */
.hero h1 { font-size: clamp(42px, 5.1vw, 72px); line-height: 1.06; max-width: 19ch; }
.solution-links { display: flex; flex-wrap: wrap; gap: 8px 24px; margin: 0 0 28px; }
.solution-links a, .solution-related a { color: var(--brand-ink); min-height: 44px; display: inline-flex; align-items: center; text-decoration: underline; text-underline-offset: 5px; font-size: 15px; }
.website-service { padding: 76px 0; border-top: 1px solid var(--line); background: var(--wash); }
.website-service-inner { display: grid; grid-template-columns: 1.25fr 1fr; align-items: start; gap: 64px; }
.service-byline { color: var(--brand-ink); font-size: 15px; font-weight: 600; margin-bottom: 16px; }
.website-service h2 { font-size: clamp(32px, 4vw, 48px); line-height: 1.15; letter-spacing: -.035em; margin-bottom: 20px; }
.website-service p:not(.service-byline):not(.service-price) { color: var(--muted); max-width: 56ch; }
.website-service-offer { border-left: 1px solid var(--line); padding-left: 48px; }
.service-price { font-size: 20px; margin: 0 0 12px; color: var(--ink); }
.service-price strong { font-size: clamp(34px, 4vw, 48px); font-weight: 600; letter-spacing: -.04em; white-space: nowrap; }
.website-service .btn { margin: 24px 0 16px; }
.service-note { font-size: 14px; color: var(--muted); line-height: 1.7; }
.solution-shell { padding-bottom: 72px; }
.solution-intro { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, .7fr); gap: 72px; padding: 48px 0 52px; align-items: center; }
.solution-intro h1 { font-size: clamp(38px, 5vw, 66px); line-height: 1.08; letter-spacing: -.045em; max-width: 17ch; margin-bottom: 24px; }
.solution-lead { font-size: 18px; line-height: 1.75; color: var(--muted); max-width: 62ch; }
.solution-intro .service-price { margin-top: 24px; }
.solution-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px; margin-top: 28px; }
.solution-facts { border-left: 2px solid var(--brand); padding: 8px 0 8px 28px; }
.solution-facts dl { display: grid; gap: 24px; }
.solution-facts dt { color: var(--muted); font-size: 14px; margin-bottom: 6px; }
.solution-facts dd { margin: 0; font-size: 18px; font-weight: 500; line-height: 1.5; }
.solution-workflow { border-block: 1px solid var(--line); padding: 24px 0; }
.solution-workflow ol { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; padding: 0; margin: 0; list-style: none; }
.solution-workflow li { display: flex; gap: 12px; align-items: center; font-size: 15px; font-weight: 500; }
.solution-workflow span { display: grid; place-items: center; width: 32px; height: 32px; flex: 0 0 32px; border-radius: 50%; background: var(--brand-tint); color: var(--brand-ink); }
.solution-section { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 64px; padding: 52px 0; border-bottom: 1px solid var(--line); }
.solution-section h2, .solution-faq h2, .solution-next h2 { font-size: clamp(27px, 3vw, 36px); letter-spacing: -.025em; line-height: 1.2; max-width: 24ch; }
.solution-section p, .solution-section li { line-height: 1.8; color: var(--muted); max-width: 70ch; }
.solution-section ul { margin-top: 20px; padding-left: 20px; display: grid; gap: 10px; }
.solution-section li::marker { color: var(--brand-ink); }
.solution-faq { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); gap: 64px; padding: 52px 0; }
.solution-faq .faq { border-bottom: 1px solid var(--line); }
.solution-next { padding: 36px; background: var(--brand-tint); border-radius: var(--radius); }
.solution-next p { max-width: 65ch; color: var(--muted); margin: 18px 0 24px; }
.solution-related { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 32px; }
@media (max-width: 760px) {
  .hero h1 { font-size: clamp(38px, 9vw, 58px); }
  .website-service { padding: 48px 0; }
  .website-service-inner, .solution-intro, .solution-section, .solution-faq { grid-template-columns: 1fr; gap: 24px; }
  .website-service-offer { padding: 24px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .solution-intro { padding: 32px 0; }
  .solution-section, .solution-faq { padding: 36px 0; }
  .solution-workflow ol { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .solution-next { padding: 24px; }
  .solution-actions .btn { width: 100%; justify-content: center; }
  .solution-lead { font-size: 17px; }
}

/* AI introduction uses the same blue family as the product mark. */
.hero-ai { display: block; margin: 20px 0; padding: 16px 18px; border: 1px solid var(--brand-bright); border-radius: var(--radius); background: linear-gradient(120deg, var(--brand-tint), var(--paper)); color: var(--brand-ink); text-decoration: none; }
.hero-ai strong { display: block; font-size: 17px; }
.hero-ai span { display: block; margin-top: 5px; font-size: 14px; line-height: 1.6; color: var(--ink); }
.hero-ai:hover { border-color: var(--brand); }
.hero-ai:focus-visible { outline: 2px solid var(--brand); outline-offset: 4px; }

/* Official product profiles, shared by every page footer. */
.footer-social { display: flex; flex-wrap: wrap; gap: 4px 16px; margin-top: 12px; }
.footer-social a { display: inline-flex; align-items: center; gap: 4px; min-height: 44px; }

/* Business-specific plan comparison: one workspace, two clear levels. */
.module-plans { background: var(--wash); }
.module-plans-heading { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 40px; margin-bottom: 36px; }
.module-plans-heading h2 { margin: 0; font-size: clamp(34px, 4vw, 54px); line-height: 1.1; letter-spacing: -.04em; }
.module-plans-heading > p { max-width: 470px; margin: 0; color: var(--muted); font-size: 18px; }
.module-business { display: flex; flex-wrap: wrap; gap: 12px; border: 0; padding: 0; margin: 0 0 24px; }
.module-business legend { padding: 0; margin-bottom: 12px; font-size: 14px; font-weight: 550; }
.module-business label { position: relative; flex: 1; min-width: 180px; cursor: pointer; }
.module-business input { position: absolute; left: 16px; top: 22px; width: 18px; height: 18px; margin: 0; accent-color: var(--brand); }
.module-business label > span { display: flex; flex-direction: column; min-height: 82px; padding: 14px 18px 14px 46px; border: 2px solid var(--line); border-radius: 8px; background: var(--paper); }
.module-business strong { font-size: 16px; font-weight: 550; }
.module-business small { font-size: 13px; color: var(--muted); }
.module-business input:checked + span { border-color: var(--brand); background: var(--brand-tint); }
.module-business input:focus-visible + span { outline: 3px solid var(--brand); outline-offset: 4px; }
.module-business-panel { display: none; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.module-explorer:has(input[value="passenger"]:checked) [data-module-business="passenger"],
.module-explorer:has(input[value="freight"]:checked) [data-module-business="freight"],
.module-explorer:has(input[value="both"]:checked) [data-module-business="both"] { display: grid; }
.module-plan { display: flex; flex-direction: column; min-width: 0; padding: 32px; background: var(--paper); }
.module-plan header { display: flex; align-items: start; justify-content: space-between; gap: 16px; }
.module-plan h3 { margin: 0; font-size: 28px; line-height: 1.2; letter-spacing: -.025em; }
.module-plan header p { margin: 8px 0 0; color: var(--muted); font-size: 15px; }
.module-plan header > span { white-space: nowrap; font-size: 12px; padding: 5px 10px; border: 1px solid var(--line); border-radius: 20px; }
.module-plan ul { list-style: none; padding: 0; margin: 28px 0; }
.module-plan li { display: flex; align-items: start; justify-content: space-between; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line); }
.module-plan h4 { margin: 0; font-size: 16px; font-weight: 550; line-height: 1.4; }
.module-plan li p { margin: 5px 0 0; max-width: 36ch; color: var(--muted); font-size: 13px; line-height: 1.55; }
.module-plan-tag { flex-shrink: 0; padding-top: 3px; color: var(--muted); font-size: 11px; }
.module-plan-bottom { margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line); }
.module-plan-bottom p { margin: 0 0 8px; font-size: 14px; }
.module-plan-bottom strong { font-size: 22px; font-weight: 550; }
.complete-modules { background: var(--night); color: var(--night-ink); }
.complete-modules header p, .complete-modules li p, .complete-modules .module-plan-tag { color: var(--night-ink-2); }
.complete-modules li, .complete-modules .module-plan-bottom { border-color: var(--night-line); }
.complete-modules .text-link { color: var(--night-ink); }
.module-inherits { margin: 24px 0 0; padding: 12px 16px; background: var(--night-2); color: var(--night-ink); font-size: 14px; border-left: 3px solid var(--brand-bright); }
.complete-modules ul { margin-top: 16px; }
.module-service-notes { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 32px; }
.module-service-notes h3 { margin: 0 0 8px; font-size: 17px; }
.module-service-notes p { margin: 0; color: var(--muted); font-size: 14px; max-width: 65ch; }
.module-catalog-note { margin: 28px 0 0; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.module-catalog-note span { display: inline; }
@media (max-width: 760px) {
  .module-plans-heading, .module-business-panel, .module-service-notes { grid-template-columns: 1fr; }
  .module-plans-heading { gap: 18px; }
  .module-plans-heading > p { font-size: 16px; }
  .module-business { gap: 8px; }
  .module-business label { min-width: 100%; }
  .module-business label > span { min-height: 68px; padding-top: 10px; padding-bottom: 10px; }
  .module-plan { padding: 24px 20px; }
  .module-plan h3 { font-size: 25px; }
  .module-plan li { gap: 10px; }
  .module-plan li p { max-width: 30ch; }
  .module-plan-tag { max-width: 62px; line-height: 1.4; }
  .module-service-notes { gap: 24px; }
}
@supports not selector(:has(*)) {
  .module-business { display: none; }
  .module-business-panel { display: grid; margin-top: 24px; }
  .module-business-panel::before { content: attr(aria-label); grid-column: 1 / -1; padding: 16px 24px; background: var(--brand-tint); font-weight: 550; }
}
