:root {
  color-scheme: light;
  --ink: #111c20;
  --ink-soft: #223238;
  --muted: #617379;
  --panel: #ffffff;
  --paper: #f6f8f8;
  --wash: #edf3f1;
  --line: #d8e2e3;
  --line-strong: #c6d3d5;
  --teal: #0d7d76;
  --teal-dark: #10283a;
  --mint: #0d9f98;
  --steel: #486977;
  --steel-soft: #e7eef0;
  --amber: #c9841f;
  --red: #b84a3f;
  --shadow-soft: 0 18px 46px rgba(17, 28, 32, 0.08);
  --shadow-deep: 0 34px 90px rgba(17, 28, 32, 0.2);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fbfcfc 0%, var(--paper) 34rem);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

:focus-visible {
  outline: 3px solid rgba(16, 117, 109, 0.42);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 252, 252, 0.92);
  border-bottom: 1px solid rgba(216, 226, 227, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
}

.brand-logo {
  display: block;
  width: 148px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a {
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.site-nav a:hover {
  color: var(--ink);
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 800;
}

.nav-cta {
  padding: 10px 16px;
  color: #ffffff !important;
  background: var(--ink);
  border-radius: 7px;
}

.nav-cta:hover {
  background: var(--teal-dark);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--panel);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.section-shell {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr);
  align-items: center;
  gap: clamp(28px, 5vw, 58px);
  min-height: calc(100vh - 72px);
  padding-top: 54px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 3.5rem;
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.1rem;
}

.hero-lede,
.section-heading p,
.lead-grid > div > p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-proof {
  display: inline-flex;
  margin: 4px 0 0;
  padding: 8px 12px;
  color: var(--teal-dark);
  background: rgba(16, 117, 109, 0.09);
  border: 1px solid rgba(16, 117, 109, 0.18);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 850;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 850;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

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

.button-primary {
  color: #ffffff;
  background: var(--teal);
  box-shadow: 0 14px 30px rgba(16, 117, 109, 0.2);
}

.button-primary:hover {
  background: var(--teal-dark);
}

.button-secondary {
  color: var(--ink);
  background: #ffffff;
  border-color: var(--line);
}

.button-secondary:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 640px;
  margin: 0;
}

.hero-metrics div {
  min-height: 92px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(17, 28, 32, 0.05);
}

.hero-metrics dt {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 850;
}

.hero-metrics dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.product-visual {
  position: relative;
  overflow: hidden;
  color: #dbe7e9;
  background: #0a1518;
  border: 1px solid #203337;
  border-radius: 8px;
  box-shadow: var(--shadow-deep);
  transform: perspective(1400px) rotateY(-3deg) rotateX(1deg);
  transform-origin: center;
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(130deg, rgba(88, 199, 182, 0.1), transparent 32%, rgba(72, 105, 119, 0.08));
}

.window-bar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 15px 16px;
  background: rgba(9, 19, 22, 0.9);
  border-bottom: 1px solid #203337;
}

.window-bar strong {
  margin-left: 10px;
  color: #edf5f6;
  font-size: 0.82rem;
}

.window-bar em {
  margin-left: auto;
  color: #91a7ab;
  font-size: 0.78rem;
  font-style: normal;
}

.window-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #6f8286;
}

.dashboard-preview {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  min-height: 520px;
}

.preview-sidebar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 18px;
  color: #8fa4a8;
  border-right: 1px solid #203337;
}

.preview-sidebar strong {
  margin-bottom: 12px;
  color: #ffffff;
}

.preview-sidebar span {
  padding: 9px 10px;
  border-radius: 7px;
}

.preview-sidebar span:nth-child(3) {
  color: #ffffff;
  background: rgba(88, 199, 182, 0.14);
}

.preview-main {
  padding: 18px;
}

.preview-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.preview-topline small,
.panel-head small,
.analytics-panel small {
  display: block;
  color: #8fa4a8;
}

.preview-topline strong,
.panel-head strong,
.analytics-panel strong {
  color: #ffffff;
}

.status-pill,
.queue-chip,
.exception-badge,
.panel-head > span,
.route-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 6px 10px;
  color: #c8f3ec;
  background: rgba(16, 117, 109, 0.28);
  border: 1px solid rgba(88, 199, 182, 0.34);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 850;
  white-space: nowrap;
}

.status-pill {
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}

.status-pill[data-state="Delivered"] {
  color: #d9fff7;
  background: rgba(88, 199, 182, 0.22);
}

.status-pill[data-state="On route"] {
  color: #ffe6bd;
  background: rgba(201, 132, 31, 0.22);
  border-color: rgba(201, 132, 31, 0.34);
}

.preview-command-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1.18fr);
  grid-template-areas:
    "route route"
    "queue timeline"
    "analytics analytics";
  gap: 12px;
}

.dashboard-card {
  min-width: 0;
  padding: 14px;
  background: rgba(18, 34, 38, 0.88);
  border: 1px solid #203337;
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.dashboard-card:hover {
  transform: translateY(-2px);
  border-color: rgba(88, 199, 182, 0.36);
  background: rgba(20, 41, 45, 0.94);
}

.route-panel {
  grid-area: route;
}

.dispatch-queue {
  grid-area: queue;
}

.timeline-panel {
  grid-area: timeline;
}

.analytics-panel {
  grid-area: analytics;
}

.panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.exception-badge {
  color: #ffe3df;
  background: rgba(184, 74, 63, 0.2);
  border-color: rgba(184, 74, 63, 0.42);
}

.exception-badge.is-resolved {
  color: #d5fff8;
  background: rgba(16, 117, 109, 0.24);
  border-color: rgba(88, 199, 182, 0.36);
}

.route-map {
  position: relative;
  height: 220px;
  overflow: hidden;
  background:
    radial-gradient(circle at 43% 55%, rgba(39, 157, 145, 0.12), transparent 30%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #0b191d;
  background-size: auto, 34px 34px, 34px 34px, auto;
  border: 1px solid #203337;
  border-radius: 8px;
}

.route-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke-linecap: round;
}

.network-map {
  isolation: isolate;
}

.network-caption {
  position: absolute;
  z-index: 4;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #b8cccf;
  font-size: 0.65rem;
  font-weight: 850;
  text-transform: uppercase;
}

.network-live-dot {
  width: 7px;
  height: 7px;
  background: #58c7b6;
  border: 1px solid #dffffa;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(88, 199, 182, 0.12);
}

.world-map {
  opacity: 0.68;
}

.network-route {
  stroke-width: 2.5;
  stroke-dasharray: 5 7;
}

.network-route-primary {
  stroke: rgba(88, 199, 182, 0.7);
}

.network-last-mile {
  stroke: rgba(217, 164, 65, 0.62);
  stroke-width: 4;
  stroke-dasharray: 3 5;
  filter: drop-shadow(0 0 3px rgba(217, 164, 65, 0.34));
}

.network-route-travelled {
  stroke: #7ee2d3;
  stroke-width: 3.5;
}

.network-minor-nodes {
  fill: #49b8a8;
  stroke: #dffffa;
  stroke-width: 1.2;
}

.network-last-mile-drops {
  fill: #d9a441;
  stroke: #fff0d2;
  stroke-width: 1.8;
}

.network-node circle:not(.node-halo) {
  fill: #dffffa;
  stroke: #117b72;
  stroke-width: 3;
}

.network-node .node-halo {
  fill: rgba(88, 199, 182, 0.12);
  stroke: rgba(88, 199, 182, 0.32);
}

.network-node-amber circle:not(.node-halo) {
  fill: #fff0d2;
  stroke: #c98b2b;
}

.network-node-amber .node-halo {
  fill: rgba(217, 164, 65, 0.1);
  stroke: rgba(217, 164, 65, 0.3);
}

.network-hub circle:not(.node-halo) {
  fill: #ffffff;
}

.delivery-marker {
  stroke: #ffffff;
  stroke-width: 2.5;
}

.delivery-marker-primary {
  fill: #58c7b6;
}

.delivery-marker-secondary {
  fill: #d9a441;
}

.delivery-marker-delayed {
  opacity: 0.7;
}

.network-label {
  position: absolute;
  z-index: 3;
  padding: 4px 6px;
  color: #dce9eb;
  background: rgba(8, 23, 27, 0.82);
  border: 1px solid #203337;
  border-radius: 5px;
  font-size: 0.62rem;
  font-weight: 800;
  white-space: nowrap;
}

.network-label-cape-town { left: 8%; bottom: 4%; }
.network-label-gqeberha { left: 34%; bottom: 4%; }
.network-label-johannesburg { left: 43%; top: 25%; }
.network-label-durban { left: 54%; top: 53%; }

.network-mode-key {
  position: absolute;
  z-index: 3;
  top: 48px;
  right: 12px;
  display: grid;
  gap: 8px;
  color: #b9cbce;
  font-size: 0.61rem;
  font-weight: 800;
}

.network-mode-key a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  text-decoration: none;
}

.network-mode-key i {
  width: 20px;
  border-top: 2px dashed #58c7b6;
}

.network-mode-key .mode-last-mile {
  border-color: #d9a441;
}

.network-mode-key a:hover,
.network-mode-key a:focus-visible {
  color: #ffffff;
}

.network-last-mile-callout {
  position: absolute;
  z-index: 3;
  right: 10px;
  bottom: 8px;
  color: #f1c779;
  font-size: 0.54rem;
  font-weight: 850;
  text-transform: uppercase;
}

.route-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.route-footer a {
  color: #c3d5d8;
  background: rgba(255, 255, 255, 0.05);
  border-color: #203337;
  text-decoration: none;
}

.route-footer a:hover,
.route-footer a:focus-visible {
  color: #ffffff;
  border-color: rgba(88, 199, 182, 0.6);
}

.shipment-card {
  position: relative;
  display: block;
  min-height: 58px;
  padding: 9px 86px 9px 9px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid #203337;
  border-radius: 8px;
  transition: transform 260ms ease, border-color 260ms ease, background-color 260ms ease;
}

.shipment-card + .shipment-card {
  margin-top: 8px;
}

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

.shipment-card strong {
  color: #ffffff;
  font-size: 0.8rem;
}

.shipment-card div span {
  overflow: hidden;
  color: #9eb2b6;
  font-size: 0.72rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shipment-card.is-assigned {
  transform: translateY(2px);
  border-color: rgba(88, 199, 182, 0.42);
  background: rgba(88, 199, 182, 0.08);
}

.queue-chip {
  position: absolute;
  top: 50%;
  right: 8px;
  min-height: 24px;
  max-width: 74px;
  padding: 4px 8px;
  text-align: center;
  color: #d8e4e6;
  background: rgba(255, 255, 255, 0.06);
  border-color: #203337;
  line-height: 1.1;
  transform: translateY(-50%);
}

.queue-chip.assigned,
.queue-chip.is-assigned {
  color: #c8f3ec;
  background: rgba(16, 117, 109, 0.28);
  border-color: rgba(88, 199, 182, 0.34);
}

.queue-chip.delivered {
  color: #ffe6bd;
  background: rgba(201, 132, 31, 0.22);
  border-color: rgba(201, 132, 31, 0.34);
}

.scan-timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.scan-timeline li {
  position: relative;
  padding: 0 0 0 18px;
  color: #c6d6d9;
  font-size: 0.78rem;
  opacity: 0.52;
  animation: timelineReveal 8s ease-in-out infinite;
}

.scan-timeline li:nth-child(2) { animation-delay: 800ms; }
.scan-timeline li:nth-child(3) { animation-delay: 1600ms; }
.scan-timeline li:nth-child(4) { animation-delay: 2400ms; }

.scan-timeline li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--mint);
  border-radius: 50%;
}

.scan-timeline span {
  margin-right: 6px;
  color: #7f969b;
  font-weight: 850;
}

.analytics-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

.analytics-panel dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.analytics-panel dl div {
  padding: 9px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid #203337;
  border-radius: 7px;
}

.analytics-panel dt {
  color: #8fa4a8;
  font-size: 0.68rem;
}

.analytics-panel dd {
  margin: 0;
  color: #ffffff;
  font-weight: 850;
}

.analytics-panel .warn {
  color: #ffd7cc;
}

.credibility-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1180px, calc(100% - 40px));
  margin: -34px auto 0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.credibility-strip div {
  padding: 22px;
}

.credibility-strip div + div {
  border-left: 1px solid var(--line);
}

.credibility-strip strong,
.credibility-strip span {
  display: block;
}

.credibility-strip strong {
  margin-bottom: 6px;
}

.credibility-strip span {
  color: var(--muted);
  font-size: 0.94rem;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.capability-clusters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.capability-card {
  display: flex;
  flex-direction: column;
  min-height: 292px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(17, 28, 32, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.capability-card:hover {
  transform: translateY(-3px);
  border-color: rgba(16, 117, 109, 0.3);
  box-shadow: 0 18px 44px rgba(17, 28, 32, 0.08);
}

.capability-card-wide {
  grid-column: span 3;
  min-height: auto;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 34px;
  margin-bottom: 18px;
  color: #ffffff;
  background: var(--steel);
  border-radius: 7px;
  font-size: 0.78rem;
  font-weight: 850;
}

.capability-card p,
.differentiators span {
  color: var(--muted);
}

.capability-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.capability-card li {
  padding: 6px 8px;
  color: var(--ink-soft);
  background: var(--steel-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 750;
}

.capability-card > .capability-link,
.capability-links {
  margin-top: auto;
  padding-top: 22px;
}

.capability-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.capability-link {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  width: fit-content;
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 850;
}

.capability-link:hover {
  color: var(--ink);
}

.operating-model-band {
  background: #eef4f2;
  border-block: 1px solid var(--line);
}

.operating-model-shell {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}

.operating-models {
  border-top: 1px solid #bfd0cc;
}

.operating-model {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid #bfd0cc;
}

.operating-model h3 {
  margin: 0 0 7px;
  font-size: 1rem;
}

.operating-model p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.operating-model-status {
  padding-top: 2px;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.status-available {
  color: var(--teal-dark);
}

.status-configurable {
  color: #8a5800;
}

.status-planned {
  color: var(--steel);
}

.operating-model-link {
  padding-top: 2px;
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 850;
  white-space: nowrap;
}

.operating-model:hover h3,
.operating-model:hover .operating-model-link {
  color: var(--teal-dark);
}

.workflow-band,
.lead-band {
  background: #ffffff;
  border-block: 1px solid var(--line);
}

.network-band {
  color: #ffffff;
  background: #122829;
}

.network-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.network-copy {
  max-width: 34rem;
}

.network-copy .eyebrow {
  color: #87d8cc;
}

.network-copy h2 {
  margin-bottom: 18px;
  color: #ffffff;
}

.network-copy > p:not(.eyebrow) {
  color: #c4d2d1;
}

.network-signals {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.network-signals li {
  position: relative;
  padding-left: 20px;
  color: #d7e5e3;
  font-size: 0.9rem;
  font-weight: 700;
}

.network-signals li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--mint);
  border-radius: 50%;
}

.network-art {
  min-width: 0;
  margin: 0;
}

.network-art img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(214, 237, 232, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow-deep);
}

.workflow-map {
  display: grid;
  gap: 14px;
}

.workflow-lane {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 24px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--steel);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(17, 28, 32, 0.04);
}

.workflow-lane-commercial {
  border-left-color: var(--steel);
}

.workflow-lane-execution {
  border-left-color: var(--teal);
}

.workflow-lane-visibility {
  border-left-color: var(--mint);
}

.workflow-lane-outcomes {
  border-left-color: var(--amber);
}

.workflow-lane-heading {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.workflow-lane-heading > span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--teal-dark);
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 850;
}

.workflow-lane-heading h3 {
  margin: 0;
  font-size: 1rem;
}

.workflow-lane-heading p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.workflow-nodes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.workflow-node {
  min-width: 0;
  padding: 14px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.workflow-node:hover {
  background: #ffffff;
  border-color: rgba(16, 117, 109, 0.42);
  transform: translateY(-2px);
}

.workflow-node strong,
.workflow-node span {
  display: block;
}

.workflow-node strong {
  font-size: 0.88rem;
}

.workflow-node span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.workflow-catalogue-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.workflow-catalogue-action p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.workflow-catalogue-action a {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 8px;
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 850;
}

.workflow-catalogue-action a:hover {
  color: var(--ink);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

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

.differentiators div {
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(17, 28, 32, 0.04);
}

.differentiators strong,
.differentiators span {
  display: block;
}

.differentiators strong {
  margin-bottom: 8px;
}

.operator-section {
  padding-top: 0;
}

.operator-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 62px);
  padding: clamp(28px, 5vw, 56px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(16, 117, 109, 0.18), transparent 38%),
    var(--ink);
  border: 1px solid #203337;
  border-radius: 8px;
  box-shadow: var(--shadow-deep);
}

.operator-panel h2 {
  color: #ffffff;
}

.operator-panel .eyebrow {
  color: #80d9ca;
}

.operator-panel p {
  color: #b6c7ca;
}

.architecture-list {
  display: grid;
  gap: 10px;
}

.architecture-list span {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 14px 16px;
  color: #dce8ea;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
}

.operational-commitments {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.operational-commitments article {
  min-height: 250px;
  padding: clamp(22px, 3vw, 34px);
  color: #dbe7e9;
  background: var(--ink);
  border: 1px solid #203337;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.operational-commitments article:nth-child(2) {
  background: var(--teal-dark);
}

.operational-commitments span {
  display: inline-block;
  margin-bottom: 34px;
  color: #8ee0d2;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.operational-commitments h3 {
  color: #ffffff;
  font-size: 1.38rem;
  line-height: 1.18;
}

.operational-commitments p {
  margin: 0;
  color: #b8c9cc;
  font-size: 0.94rem;
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.lead-points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.lead-points li {
  padding: 12px 14px;
  color: var(--teal-dark);
  background: rgba(16, 117, 109, 0.08);
  border: 1px solid rgba(16, 117, 109, 0.16);
  border-radius: 7px;
  font-weight: 850;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 850;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 7px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(16, 117, 109, 0.5);
  box-shadow: 0 0 0 4px rgba(16, 117, 109, 0.08);
  outline: 0;
}

.form-wide {
  grid-column: 1 / -1;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 850;
}

.faq-section {
  max-width: 960px;
}

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

details {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(17, 28, 32, 0.04);
}

details[open] {
  border-color: rgba(16, 117, 109, 0.24);
}

summary {
  position: relative;
  cursor: pointer;
  min-height: 58px;
  padding: 18px 54px 18px 20px;
  font-weight: 850;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--teal-dark);
  background: rgba(16, 117, 109, 0.08);
  border-radius: 50%;
  transform: translateY(-50%);
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

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

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.92rem;
  font-weight: 750;
}

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

@keyframes timelineReveal {
  0%, 18% { opacity: 0.42; transform: translateY(3px); }
  28%, 74% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0.52; transform: translateY(0); }
}

@media (max-width: 1180px) {
  .product-visual {
    transform: none;
  }

  .dashboard-preview {
    grid-template-columns: 1fr;
  }

  .preview-sidebar {
    display: none;
  }

  .preview-main {
    padding: 16px;
  }

  .route-map {
    height: 205px;
  }

  .dispatch-queue .queue-chip {
    width: fit-content;
  }

  .workflow-lane {
    grid-template-columns: minmax(190px, 0.65fr) minmax(0, 1.35fr);
  }
}

@media (max-width: 980px) {
  .hero,
  .split-section,
  .lead-grid,
  .operator-panel,
  .network-shell,
  .operating-model-shell {
    grid-template-columns: 1fr;
  }

  .capability-clusters,
  .credibility-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability-card-wide {
    grid-column: span 2;
  }

  .preview-command-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "route"
      "queue"
      "timeline"
      "analytics";
  }

}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .section-shell {
    width: min(100% - 28px, 1240px);
    padding: 64px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  h1 {
    font-size: 2.5rem;
  }

  .hero-metrics,
  .capability-clusters,
  .differentiators,
  .operational-commitments,
  .lead-form,
  .credibility-strip {
    grid-template-columns: 1fr;
  }

  .capability-card-wide {
    grid-column: auto;
  }

  .operating-model {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .operating-model-link {
    white-space: normal;
  }

  .credibility-strip {
    margin-top: 0;
  }

  .credibility-strip div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .product-visual {
    min-width: 0;
  }

  .window-bar em {
    display: none;
  }

  .preview-main {
    padding: 16px;
  }

  .preview-topline,
  .panel-head,
  .shipment-card,
  .analytics-panel {
    grid-template-columns: 1fr;
  }

  .preview-topline,
  .panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .route-map {
    height: 188px;
  }

  .network-label-gqeberha {
    left: 28%;
    bottom: 20%;
  }

  .network-mode-key {
    top: auto;
    right: 10px;
    bottom: 27px;
    gap: 4px;
  }

  .analytics-panel dl {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .scan-timeline {
    grid-template-columns: 1fr;
  }

  .panel-head {
    align-items: flex-start;
    flex-direction: row;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .workflow-lane {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .workflow-catalogue-action {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .workflow-lane {
    padding: 18px;
  }

  .workflow-nodes {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .delivery-marker {
    display: none;
  }

}

/* Buyer overview: one shipment narrative, with the detailed library one level deeper. */
.skip-link { position: fixed; top: -100px; left: 16px; z-index: 100; padding: 12px 18px; color: white; background: var(--teal-dark); }
.skip-link:focus { top: 12px; }
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
#main-content { display: block; scroll-margin-top: 90px; }
.site-nav a { display: inline-flex; align-items: center; min-height: 44px; }
.site-nav { gap: 20px; }
.nav-toggle { min-width: 44px; min-height: 44px; }
.marketing-home { background: #fbfcfc; }
.marketing-home section[id], .marketing-home #workflow { scroll-margin-top: 90px; }
.marketing-home .section-shell { max-width: 1120px; padding-block: 64px; }
.marketing-home .section-heading { margin-bottom: 32px; }
.marketing-home h2 { font-size: 2.25rem; line-height: 1.15; }
.marketing-home h3 { font-size: 1.15rem; line-height: 1.35; }
.marketing-home p { color: #4d6268; }
.marketing-home a:not(.button):not(.brand):not(.nav-cta) { text-underline-offset: 4px; }
.marketing-home .section-shell a:not(.button):not(.network-mode-key a) { text-decoration: underline; color: var(--teal-dark); }
.marketing-home .buyer-intro { display: grid; grid-template-columns: minmax(0, 1.42fr) minmax(300px, 0.58fr); gap: clamp(48px, 8vw, 112px); align-items: end; padding-top: 76px; padding-bottom: 80px; text-align: left; }
.buyer-intro-main { min-width: 0; }
.buyer-intro h1 { max-width: 820px; margin-bottom: 24px; font-size: clamp(4rem, 7vw, 6.75rem); line-height: 0.9; }
.buyer-lede { max-width: 760px; margin-bottom: 0; font-size: clamp(1.65rem, 2.6vw, 2.45rem); line-height: 1.15; font-weight: 650; }
.marketing-home .buyer-lede { color: var(--ink); }
.buyer-intro-detail { padding: 8px 0 8px 28px; border-left: 2px solid #91b7b2; }
.buyer-summary { max-width: 520px; margin-bottom: 24px; font-size: 1.08rem; }
.positioning-line { max-width: 500px; margin-bottom: 24px; font-size: 0.95rem; }
.positioning-line strong { color: var(--ink); }
.buyer-intro .hero-actions { margin: 32px 0 0; }
.stage-note { display: flex; flex-wrap: wrap; gap: 4px 14px; max-width: 500px; margin-bottom: 0; padding-top: 18px; border-top: 1px solid var(--line); font-size: 0.88rem; }
.stage-note strong { color: var(--teal-dark); }
.product-band { background: #edf4f2; border-block: 1px solid #cedfdb; }
.marketing-home .product-band > .section-shell { padding-top: 72px; }
.workspace-story { display: grid; grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr); column-gap: clamp(40px, 8vw, 100px); align-items: end; margin: 0 0 38px; }
.workspace-story .eyebrow { grid-column: 1 / -1; }
.workspace-story h2 { max-width: 520px; margin-bottom: 0; }
.workspace-story p:last-child { max-width: 680px; margin-bottom: 2px; font-size: 1.05rem; }
.movement-figure { margin: 0 0 36px; }
.movement-heading { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; padding-block: 12px; }
.movement-heading span { color: #4d6268; font-size: 0.88rem; }
.movement-figure .route-map { width: 100%; height: auto; aspect-ratio: 2 / 1; border-radius: 0; background: #10282a; }
.movement-figure .route-map svg { position: static; display: block; }
.movement-figure .world-map { opacity: 1; }
.movement-figure .network-label { font-size: 0.8rem; }
.movement-figure .network-mode-key { top: 32px; font-size: 0.82rem; }
.movement-figure .network-mode-key a { min-height: 36px; }
.movement-figure .network-label-cape-town { left: 9%; bottom: 4%; }
.movement-figure .network-label-gqeberha { left: 34%; bottom: 4%; }
.movement-figure .network-last-mile-callout { font-size: 0.72rem; }
.movement-figure figcaption { margin-top: 12px; max-width: 790px; font-size: 0.9rem; color: #4d6268; }
.workspace-preview { margin: 0 0 72px; color: #172126; }
.workspace-preview > figcaption { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px 20px; margin-bottom: 14px; }
.workspace-preview > figcaption span { font-size: 0.85rem; color: #5e6c73; }
.workspace-preview-window { overflow: hidden; border: 1px solid #b4ceca; border-radius: 8px; background: #f5f7f8; box-shadow: 0 28px 60px -20px #16443e45, 0 3px 10px #17212612; }
.workspace-preview-topbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 64px; padding: 12px 20px; background: #fff; border-bottom: 1px solid #dce3e6; font-size: 0.85rem; }
.workspace-preview-topbar > strong { display: flex; align-items: center; gap: 10px; font-size: 1.1rem; }
.workspace-preview-topbar > strong small { padding-left: 10px; border-left: 1px solid #dce3e6; color: #5e6c73; font-size: 0.72rem; font-weight: 600; }
.workspace-brand-logo { display: block; width: 132px; height: auto; }
.workspace-preview-session { display: flex; align-items: center; gap: 6px; }
.workspace-preview-session > span { padding: 4px 8px; border: 1px solid #dce3e6; border-radius: 999px; background: #f7f9fa; color: #405660; font-size: 0.68rem; white-space: nowrap; }
.workspace-preview-session .workspace-ready { background: #edf6f1; color: #185c42; border-color: #c8e3d6; }
.workspace-preview-layout { display: grid; grid-template-columns: 150px minmax(0, 1fr); }
.workspace-preview-nav { display: flex; flex-direction: column; padding: 20px 12px; background: #fff; border-right: 1px solid #dce3e6; }
.workspace-preview-nav > strong, .workspace-preview-nav > span { padding-inline: 10px; }
.workspace-preview-nav > span { color: #5e6c73; font-size: 0.75rem; padding-bottom: 16px; margin-bottom: 10px; border-bottom: 1px solid #dce3e6; }
.workspace-preview-nav a { padding: 8px 10px; font-size: 0.8rem; color: #5e6c73; text-decoration: none; border-left: 3px solid transparent; }
.marketing-home .workspace-preview-nav a { text-decoration: none; }
.workspace-preview-nav a:hover { background: #f0f5f5; color: #1f6f68; }
.workspace-preview-nav a.workspace-current { background: #e8f2f0; color: #1f6f68; border-left-color: #1f6f68; font-weight: 750; }
.workspace-preview-main { min-width: 0; padding: 22px; }
.workspace-preview-title { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.workspace-preview-title h3 { margin: 0; font-size: 1.35rem; }
.workspace-preview-title p { margin: 2px 0 0; font-size: 0.8rem; }
.workspace-preview-title a { font-size: 0.75rem; font-weight: 700; color: #fff; text-decoration: none; }
.marketing-home .section-shell .workspace-preview .workspace-preview-title a.workspace-add { display: inline-flex; align-items: center; gap: 6px; min-height: 34px; padding: 7px 11px; border-radius: 4px; background: #1f6f68; color: #fff; text-decoration: none; }
.workspace-preview-metrics { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 8px; margin: 16px 0; }
.workspace-preview-metrics > div { padding: 12px; background: #fff; border: 1px solid #dce3e6; border-top: 3px solid #617a87; border-radius: 4px; }
.workspace-preview-metrics dt { font-size: 0.75rem; color: #5e6c73; }
.workspace-preview-metrics dd { margin: 4px 0 0; font-size: 1.55rem; font-weight: 750; }
.workspace-preview-metrics .metric-overdue { border-top-color: #c83d3d; }
.workspace-preview-metrics .metric-attention { border-top-color: #a86727; }
.workspace-preview-metrics .metric-complete { border-top-color: #1f6f68; }
.workspace-preview-records { display: grid; grid-template-columns: minmax(0, 1fr) 300px; border: 1px solid #dce3e6; background: white; }
.workspace-preview-table { min-width: 0; overflow-x: auto; }
.workspace-preview-toolbar { min-width: 560px; border-bottom: 1px solid #dce3e6; }
.workspace-filter-tabs { display: flex; align-items: center; gap: 18px; min-height: 44px; padding: 0 12px; overflow: hidden; color: #5e6c73; font-size: 0.67rem; white-space: nowrap; }
.workspace-filter-tabs strong { display: flex; align-items: center; min-height: 44px; color: #1f6f68; border-bottom: 2px solid #1f6f68; }
.workspace-search { display: flex; justify-content: flex-end; align-items: center; gap: 14px; padding: 7px 12px; border-top: 1px solid #edf1f2; color: #5e6c73; font-size: 0.68rem; }
.workspace-search-field { width: 190px; padding: 7px 9px; border: 1px solid #b9c5c9; border-radius: 4px; background: #fff; }
.workspace-preview-table table { width: 100%; min-width: 560px; border-collapse: collapse; font-size: 0.7rem; }
.workspace-preview-table th { background: #f7f9fa; color: #5e6c73; font-weight: 600; }
.workspace-preview-table th, .workspace-preview-table td { padding: 11px 9px; text-align: left; border-bottom: 1px solid #e5eaec; white-space: nowrap; }
.workspace-preview-table td strong, .workspace-preview-table td > span:not(.workspace-status) { display: block; }
.workspace-preview-table td > span:not(.workspace-status):not(.workspace-action) { margin-top: 4px; color: #5e6c73; }
.workspace-status { display: inline-block; color: #405660; background: #edf1f4; padding: 3px 7px; border-radius: 4px; font-size: 0.7rem; white-space: nowrap; }
.workspace-status.status-complete { color: #185c42; background: #e1f2e9; }
.workspace-status.status-moving { color: #255b7b; background: #e5f0f9; }
.workspace-status.status-attention { color: #854113; background: #fff0df; }
.workspace-priority { display: inline-block; width: fit-content; padding: 2px 5px; color: #fff !important; background: #c83d3d; border-radius: 999px; font-size: 0.58rem; }
.workspace-priority.priority-high { background: #d66b19; }
.workspace-action { display: inline-block !important; padding: 4px 7px; border: 1px solid #8cb7b2; border-radius: 4px; color: #1f6f68; font-weight: 700; }
.workspace-row-selected { background: #edf6f4; box-shadow: inset 3px 0 #1f6f68; }
.workspace-focus-panel { display: flex; min-width: 0; padding: 18px; flex-direction: column; border-left: 1px solid #dce3e6; background: #fff; }
.workspace-focus-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.workspace-focus-header > div { display: flex; min-width: 0; flex-direction: column; }
.workspace-focus-header span:first-child { color: #a45a1c; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.workspace-focus-header strong { margin-top: 4px; font-size: 1rem; }
.workspace-focus-header small { margin-top: 2px; color: #5e6c73; font-size: 0.7rem; }
.workspace-focus-tabs { display: flex; gap: 22px; margin-top: 18px; border-bottom: 1px solid #dce3e6; color: #5e6c73; font-size: 0.68rem; }
.workspace-focus-tabs > * { padding-bottom: 8px; }
.workspace-focus-tabs strong { color: #1f6f68; border-bottom: 2px solid #1f6f68; }
.workspace-focus-alert { display: flex; margin-top: 14px; padding: 10px 11px; flex-direction: column; background: #fff4e8; border-left: 3px solid #c66a20; }
.workspace-focus-alert strong { color: #744015; font-size: 0.76rem; }
.workspace-focus-alert span { margin-top: 2px; color: #765b45; font-size: 0.66rem; }
.workspace-focus-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 16px; margin: 16px 0; }
.workspace-focus-facts div { min-width: 0; }
.workspace-focus-facts dt { color: #64747a; font-size: 0.62rem; }
.workspace-focus-facts dd { margin: 3px 0 0; font-size: 0.71rem; font-weight: 700; line-height: 1.35; }
.workspace-focus-next { display: flex; margin-top: auto; padding-top: 13px; flex-direction: column; border-top: 1px solid #dce3e6; }
.workspace-focus-next span { color: #64747a; font-size: 0.62rem; }
.workspace-focus-next strong { margin-top: 3px; font-size: 0.74rem; }
.marketing-home .workspace-focus-panel > a { align-self: flex-start; margin-top: 10px; padding-block: 4px; font-size: 0.7rem; font-weight: 750; }
.journey-heading { display: grid; grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr); column-gap: clamp(40px, 8vw, 100px); align-items: end; margin-bottom: 30px; }
.journey-heading .eyebrow { grid-column: 1 / -1; }
.journey-heading h2 { max-width: 570px; margin-bottom: 0; }
.journey-heading p:last-child { max-width: 660px; margin-bottom: 2px; color: #4d6268; font-size: 1.02rem; }
.marketing-home .network-supplement { margin-bottom: 28px; }
.network-supplement > summary { font-size: 0.95rem; }
@media (max-width: 1050px) {
  .workspace-preview-layout { grid-template-columns: 125px minmax(0, 1fr); }
  .workspace-preview-main { padding: 16px; }
  .workspace-preview-metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .workspace-preview-records { grid-template-columns: minmax(0, 1fr) 270px; }
}
@media (max-width: 600px) {
  .workspace-preview-layout { grid-template-columns: minmax(0, 1fr); }
  .workspace-preview-nav { display: none; }
  .workspace-role { display: none; }
  .workspace-preview-topbar { padding: 12px; }
  .workspace-preview-main { padding: 12px; }
  .workspace-preview-title { flex-wrap: wrap; gap: 8px; }
  .workspace-preview-metrics { gap: 6px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .workspace-preview-metrics > div { padding: 8px; }
  .workspace-preview-session span:nth-child(-n + 2), .workspace-preview-topbar > strong small { display: none; }
}
.shipment-stages { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 0; margin: 0; padding: 2px 0 30px; list-style: none; }
.shipment-stages li { position: relative; min-width: 0; }
.shipment-stages li:not(:last-child)::after { position: absolute; z-index: 0; top: 8px; left: 30px; width: calc(100% - 16px); height: 1px; content: ""; background: #4f8f87; }
.marketing-home .shipment-stages a { display: flex; min-height: 118px; padding: 0 14px; flex-direction: column; color: var(--ink); text-decoration: none; }
.shipment-stages .stage-node { position: relative; z-index: 1; width: 14px; height: 14px; margin-bottom: 24px; border: 3px solid #0b2927; border-radius: 50%; outline: 1px solid #73d3c4; background: #73d3c4; }
.shipment-stages strong { margin-bottom: 6px; font-size: 1rem; }
.shipment-stages a > span:last-child { max-width: 150px; color: #bdd0cd; font-size: 0.78rem; line-height: 1.45; }
.shipment-stages a:hover strong, .shipment-stages a:focus-visible strong { color: #8de1d4; }
.shipment-stages a, .exception-rows a, .fit-columns a, .text-link { display: inline-block; padding-block: 10px; font-size: 0.94rem; font-weight: 700; }
.journey-system { overflow: hidden; margin-bottom: 20px; padding: 30px 28px 28px; color: #fff; background: #0b2927; border: 1px solid #234642; border-radius: 8px; }
.journey-system .shipment-stages { margin-bottom: 0; }
.marketing-home .journey-system .shipment-stages a { color: #fff; }
.network-pathways { margin: 0 -28px -28px; padding: 28px; border-top: 1px solid rgba(189, 208, 205, 0.2); background: #10312d; }
.network-pathways > figcaption { display: grid; grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr); gap: 32px; align-items: start; margin-bottom: 28px; }
.network-pathways > figcaption strong { color: #fff; font-size: 1.32rem; line-height: 1.25; }
.network-pathways > figcaption span { max-width: 710px; color: #bdd0cd; font-size: 0.9rem; line-height: 1.6; }
.pathway-lanes { border-block: 1px solid #355753; }
.pathway-lane { display: grid; grid-template-columns: 170px minmax(0, 1fr); gap: 22px; align-items: start; padding: 22px 0; }
.pathway-lane + .pathway-lane { border-top: 1px solid #355753; }
.pathway-label { display: flex; min-height: 76px; flex-direction: column; justify-content: flex-start; padding-right: 16px; border-right: 1px solid #45625f; }
.pathway-label strong { color: #fff; font-size: 0.92rem; }
.pathway-label span { margin-top: 5px; color: #9eb9b5; font-size: 0.75rem; }
.pathway-lane ol { display: grid; align-items: start; gap: 0; margin: 0; padding: 0; list-style: none; }
.pathway-direct ol { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pathway-network ol { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.pathway-lane li { position: relative; min-width: 0; }
.pathway-lane li:not(:last-child)::after { position: absolute; z-index: 0; top: 8px; left: 22px; width: calc(100% - 10px); height: 2px; content: ""; background: #4f8f87; }
.marketing-home .pathway-lane a { position: relative; z-index: 1; display: flex; min-height: 76px; padding: 0 10px 0 0; flex-direction: column; color: #fff; text-decoration: none; }
.marketing-home .pathway-lane a::before { width: 14px; height: 14px; margin-bottom: 14px; border: 3px solid #10312d; border-radius: 50%; outline: 1px solid #73d3c4; background: #73d3c4; content: ""; }
.pathway-lane a span { color: #9eb9b5; font-size: 0.68rem; }
.pathway-lane a strong { margin-top: 3px; font-size: 0.78rem; line-height: 1.3; }
.marketing-home .pathway-lane a:hover,
.marketing-home .pathway-lane a:focus-visible { color: #8de1d4; }
.marketing-home .pathway-hub a::before { border-radius: 2px; background: #b8d0cc; }
.marketing-home .pathway-linehaul a::before { border-radius: 2px; outline-color: #d2a84d; background: #d2a84d; transform: rotate(45deg); }
.marketing-home .pathway-linehaul a:hover,
.marketing-home .pathway-linehaul a:focus-visible { color: #dfbd72; }
.exception-rows { border-top: 1px solid var(--line); }
.exception-rows article { display: grid; grid-template-columns: minmax(160px, 0.8fr) minmax(0, 1.5fr) minmax(140px, 0.7fr); align-items: start; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.exception-rows p { margin: 0; }
.exception-rows a { padding-top: 0; }
.fit-band { background: #eef1f6; border-block: 1px solid #d4dce7; }
.fit-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.fit-columns > div { border-top: 3px solid #446675; padding-top: 20px; }
.fit-columns > div + div { border-color: #94692f; }
.evaluation-list { margin: 0; padding-left: 24px; }
.evaluation-list li { padding: 12px 0 12px 8px; }
.evaluation-list strong, .evaluation-list span { display: block; }
.evaluation-list span { color: #4d6268; }
.evaluation-links { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 24px; }
.evaluation-links a { padding-block: 10px; }
.marketing-home .faq-section { border-top: 1px solid var(--line); padding-top: 48px; }
.marketing-home .faq-list { gap: 0; }
.marketing-home details { border: 0; border-bottom: 1px solid var(--line); border-radius: 0; box-shadow: none; background: transparent; }
.marketing-home summary { padding-left: 0; }
.marketing-home details p { padding-left: 0; }
.marketing-home .lead-band { border-top: 1px solid var(--line); background: #edf3f1; }
.marketing-home .lead-form { padding: 0; border: 0; border-radius: 0; box-shadow: none; background: transparent; }
.enquiry-unavailable { padding-block: 24px; border-block: 1px solid #b9cdc8; }
.marketing-home .lead-form input, .marketing-home .lead-form textarea { border-color: #8fa6a5; }
.marketing-home .button-primary { background: #126f65; border-color: #126f65; box-shadow: 0 5px 12px #126f6528; }
.marketing-home .button-primary:hover { background: #095d55; border-color: #095d55; box-shadow: 0 6px 14px #126f6530; }
.marketing-home .button { transition: background-color 140ms ease, border-color 140ms ease, color 140ms ease, box-shadow 140ms ease; }
.marketing-home .button:hover { transform: none; }
.marketing-home .section-shell .journey-system #workflow a,
.marketing-home .section-shell .journey-system .pathway-lanes .pathway-lane a { color: #fff; text-decoration: none; }
.marketing-home .site-footer { background: #fff; }
@media (max-width: 1050px) {
  .site-nav { gap: 12px; font-size: 0.88rem; }
  .marketing-home .buyer-intro { grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr); gap: 48px; }
  .buyer-intro h1 { font-size: clamp(3.8rem, 7vw, 5rem); }
  .network-pathways > figcaption { grid-template-columns: 1fr; gap: 8px; }
  .pathway-lane { grid-template-columns: 1fr; gap: 18px; }
  .pathway-label { min-height: 0; padding: 0 0 14px; border-right: 0; border-bottom: 1px solid #45625f; }
  .pathway-network ol { grid-auto-columns: minmax(135px, 1fr); grid-auto-flow: column; grid-template-columns: none; padding-bottom: 10px; overflow-x: auto; scrollbar-color: #5aa99f #173a36; scrollbar-width: thin; }
}
@media (max-width: 720px) {
  .marketing-home .section-shell { padding-block: 40px; }
  .marketing-home .buyer-intro { grid-template-columns: 1fr; gap: 24px; padding-top: 34px; padding-bottom: 38px; }
  .buyer-intro h1 { font-size: clamp(3rem, 15vw, 4rem); }
  .buyer-lede { font-size: 1.35rem; }
  .buyer-summary { font-size: 1rem; }
  .buyer-intro-detail { padding: 18px 0 0; border-top: 2px solid #91b7b2; border-left: 0; }
  .marketing-home h2 { font-size: 1.8rem; }
  .buyer-intro .hero-actions { flex-direction: row; gap: 10px; }
  .buyer-intro .hero-actions { margin-top: 24px; }
  .buyer-intro .button { width: auto; flex: 1 1 0; padding: 10px 9px; font-size: 0.84rem; white-space: nowrap; }
  .stage-note { padding-top: 14px; }
  .marketing-home .product-band > .section-shell { padding-top: 46px; }
  .workspace-story, .journey-heading { grid-template-columns: 1fr; gap: 10px; }
  .workspace-story .eyebrow, .journey-heading .eyebrow { grid-column: auto; }
  .workspace-preview { margin-bottom: 42px; }
  .workspace-preview > figcaption span { display: none; }
  .workspace-preview-window { position: relative; max-height: 600px; }
  .workspace-preview-window::after { position: absolute; right: 0; bottom: 0; left: 0; height: 72px; pointer-events: none; content: ""; background: linear-gradient(to bottom, rgba(245, 247, 248, 0), #f5f7f8 90%); }
  .workspace-preview-metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .workspace-preview-metrics dd { font-size: 1.25rem; }
  .workspace-preview-records { grid-template-columns: 1fr; }
  .workspace-preview-table { display: none; }
  .workspace-focus-panel { min-height: 285px; border-left: 0; }
  .workspace-focus-header strong { font-size: 1.05rem; }
  .workspace-focus-facts dd { font-size: 0.76rem; }
  .exception-rows article, .fit-columns { grid-template-columns: 1fr; }
  .journey-system { padding: 22px 18px 18px; }
  .journey-system .shipment-stages { grid-auto-columns: minmax(150px, 58%); grid-auto-flow: column; grid-template-columns: none; margin-right: -18px; padding: 2px 18px 24px 0; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-color: #5aa99f #173a36; scrollbar-width: thin; }
  .journey-system .shipment-stages li { scroll-snap-align: start; }
  .marketing-home .shipment-stages a { min-height: 112px; padding: 0 12px 0 0; }
  .network-pathways { margin: 0 -18px -18px; padding: 22px 18px; }
  .network-pathways > figcaption { margin-bottom: 20px; }
  .pathway-lane { gap: 14px; padding: 18px 0; }
  .pathway-label { padding-bottom: 12px; }
  .pathway-direct ol,
  .pathway-network ol { display: grid; grid-auto-columns: minmax(135px, 68%); grid-auto-flow: column; grid-template-columns: none; gap: 0; margin-right: -18px; padding: 0 18px 8px 0; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-color: #5aa99f #173a36; scrollbar-width: thin; }
  .pathway-lane li { scroll-snap-align: start; }
  .marketing-home .pathway-lane a { min-height: 80px; }
  .exception-rows article { gap: 8px; }
  .exception-rows h3 { margin: 0; }
  .fit-columns { gap: 24px; }
  .movement-figure .network-label { font-size: 0.6rem; padding: 2px 3px; }
  .movement-figure .network-mode-key { top: 8px; right: 8px; bottom: auto; gap: 0; font-size: 0.6rem; }
  .movement-figure .network-mode-key a { min-height: 28px; }
  .movement-figure .network-mode-key i { width: 12px; }
  .movement-figure .network-last-mile-callout { display: none; }
}
@media (max-width: 360px) {
  .workspace-focus-header { position: relative; display: block; }
  .workspace-focus-header > div { padding-right: 94px; }
  .workspace-focus-header > .workspace-status { position: absolute; top: 0; right: 0; }
  .workspace-focus-header strong { overflow-wrap: normal; white-space: nowrap; }
}
