:root {
  --ink: oklch(0.18 0.023 245);
  --muted: oklch(0.43 0.026 242);
  --blue-950: oklch(0.19 0.075 247);
  --blue-900: oklch(0.24 0.092 248);
  --blue-800: oklch(0.31 0.12 248);
  --blue-700: oklch(0.43 0.14 247);
  --blue-600: oklch(0.50 0.15 246);
  --green-700: oklch(0.48 0.12 156);
  --green-600: oklch(0.60 0.14 156);
  --green-500: oklch(0.66 0.15 155);
  --mist: oklch(0.96 0.012 230);
  --mist-2: oklch(0.92 0.018 232);
  --surface: oklch(1 0 0);
  --line: oklch(0.86 0.018 235);
  --line-strong: oklch(0.75 0.036 238);
  --focus: oklch(0.64 0.15 155);
  --white: oklch(1 0 0);
  --max: 1180px;
  --radius: 16px;
  --radius-sm: 12px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --shadow-sm: 0 6px 8px oklch(0.16 0.035 247 / 0.06);
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Aptos, "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.55;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

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

button {
  cursor: pointer;
}

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

::selection {
  background: oklch(0.83 0.09 158);
  color: var(--blue-950);
}

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: oklch(1 0 0 / 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background-color 180ms var(--ease-out), border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.site-header.is-compact {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 8px oklch(0.16 0.035 247 / 0.06);
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  min-width: 178px;
  text-decoration: none;
}

.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.logo-symbol {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  object-fit: contain;
}

.logo-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
  line-height: 1;
}

.logo-name {
  color: var(--blue-950);
  font-size: 1.18rem;
  font-weight: 850;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.logo-subtitle {
  color: oklch(0.42 0.03 244);
  font-size: 0.53rem;
  font-weight: 780;
  letter-spacing: 0.15em;
  white-space: nowrap;
}

.brand-link .logo-lockup {
  transform-origin: left center;
  transition: transform 180ms var(--ease-out);
}

.site-header.is-compact .brand-link .logo-lockup {
  transform: scale(0.92);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  margin-left: auto;
}

.desktop-nav a,
.mobile-menu a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 650;
  transition: color 160ms var(--ease-out);
}

.desktop-nav a[aria-current="page"],
.desktop-nav a:hover,
.mobile-menu a[aria-current="page"],
.mobile-menu a:hover {
  color: var(--blue-900);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--blue-950);
  place-items: center;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  display: block;
  transition: transform 180ms var(--ease-out), opacity 180ms var(--ease-out);
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  transform: translateY(-6px);
}

.menu-toggle span::after {
  transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::before {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span::after {
  transform: rotate(90deg);
}

.mobile-menu {
  position: fixed;
  inset: 78px 20px auto 20px;
  z-index: 45;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: oklch(1 0 0 / 0.98);
  box-shadow: var(--shadow-sm);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu nav {
  display: grid;
  gap: 6px;
}

.mobile-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 46px;
  border-radius: 10px;
  padding: 0 12px;
}

.mobile-menu .button {
  margin-top: 12px;
  width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--blue-900);
  color: var(--white);
  text-decoration: none;
  font-weight: 760;
  line-height: 1;
  transition: background-color 160ms var(--ease-out), color 160ms var(--ease-out), border-color 160ms var(--ease-out), transform 160ms var(--ease-out);
}

.button:hover {
  background: var(--blue-800);
}

.button:active {
  transform: scale(0.97);
}

.button.secondary {
  background: var(--surface);
  border-color: oklch(0.79 0.04 240);
  color: var(--blue-900);
}

.button.secondary:hover {
  border-color: var(--blue-600);
  background: oklch(0.97 0.014 238);
}

.button.green {
  background: var(--green-600);
  color: var(--white);
}

.button.green:hover {
  background: var(--green-700);
}

.button.small {
  min-height: 38px;
  padding-inline: 14px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 20%, oklch(0.66 0.15 155 / 0.26), transparent 28%),
    radial-gradient(circle at 62% 8%, oklch(0.48 0.15 246 / 0.20), transparent 30%),
    linear-gradient(135deg, var(--blue-950), var(--blue-900) 58%, oklch(0.16 0.055 247));
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(oklch(1 0 0 / 0.045) 1px, transparent 1px),
    linear-gradient(90deg, oklch(1 0 0 / 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, oklch(0 0 0 / 0.9), transparent 86%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: calc(88svh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  padding: clamp(42px, 5vw, 70px) 0 clamp(34px, 4vw, 54px);
}

.hero-copy {
  max-width: 720px;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(2.45rem, 5.4vw, 4.35rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 780px;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 6.2vw, 5rem);
}

.hero-lede,
.page-lede,
.section-lede {
  max-width: 70ch;
  color: oklch(0.90 0.018 234);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  line-height: 1.72;
  text-wrap: pretty;
}

.hero-lede {
  margin: 24px 0 0;
}

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

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  padding: 0;
  list-style: none;
}

.hero-badges li,
.chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  padding: 0 12px;
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-badges li {
  border: 1px solid oklch(1 0 0 / 0.18);
  background: oklch(1 0 0 / 0.08);
  color: oklch(0.94 0.014 235);
}

.route-visual {
  position: relative;
  min-height: min(480px, 54vh);
  border: 1px solid oklch(1 0 0 / 0.14);
  border-radius: var(--radius);
  background: linear-gradient(145deg, oklch(1 0 0 / 0.08), oklch(1 0 0 / 0.025));
  box-shadow: inset 0 0 0 1px oklch(1 0 0 / 0.05);
  overflow: hidden;
}

.route-visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.route-line-hero {
  stroke-dasharray: 720;
  stroke-dashoffset: 720;
  animation: route-draw 2.8s var(--ease-out) 180ms forwards;
}

@keyframes route-draw {
  to {
    stroke-dashoffset: 0;
  }
}

.route-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: min(320px, calc(100% - 48px));
  border: 1px solid oklch(1 0 0 / 0.16);
  border-radius: var(--radius-sm);
  background: oklch(0.18 0.054 247 / 0.82);
  padding: 18px;
  backdrop-filter: blur(12px);
}

.route-card strong {
  display: block;
  font-size: 1rem;
}

.route-card p {
  margin: 8px 0 0;
  color: oklch(0.88 0.018 235);
  font-size: 0.94rem;
}

.trust-strip {
  background: var(--blue-950);
  color: var(--white);
  border-top: 1px solid oklch(1 0 0 / 0.10);
}

.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
}

.trust-item {
  min-height: 86px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  border-left: 1px solid oklch(1 0 0 / 0.10);
  color: oklch(0.93 0.014 232);
  font-weight: 700;
}

.trust-item:first-child {
  border-left: 0;
}

main {
  overflow: hidden;
}

.section {
  padding: clamp(76px, 9vw, 132px) 0;
}

.section.mist {
  background: var(--mist);
}

.section.dark {
  background:
    radial-gradient(circle at 14% 18%, oklch(0.50 0.15 246 / 0.22), transparent 28%),
    linear-gradient(135deg, var(--blue-950), oklch(0.15 0.045 247));
  color: var(--white);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: end;
  margin-bottom: clamp(30px, 5vw, 58px);
}

.section-header.center {
  display: block;
  text-align: center;
  max-width: 840px;
  margin-inline: auto;
}

.section h2,
.page-section h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(2rem, 4.3vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.section-lede {
  margin: 0;
  color: var(--muted);
}

.dark .section-lede {
  color: oklch(0.88 0.018 235);
}

.route-journey {
  position: relative;
}

.route-track {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow-sm);
}

.route-rail {
  position: absolute;
  left: clamp(36px, 5vw, 70px);
  right: clamp(36px, 5vw, 70px);
  top: 84px;
  height: 2px;
  background: var(--line);
}

.route-progress {
  width: calc(var(--route-progress, 0) * 100%);
  height: 100%;
  background: linear-gradient(90deg, var(--blue-600), var(--green-500));
  transform-origin: left;
}

.route-points {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.route-point {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.route-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 3px solid var(--surface);
  background: linear-gradient(135deg, var(--blue-600), var(--green-500));
  box-shadow: 0 0 0 1px var(--line-strong);
}

.route-point strong {
  display: block;
  font-size: 1.04rem;
  line-height: 1.2;
}

.route-point p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

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

.service-card,
.network-card,
.office-card,
.category-block,
.process-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.service-card {
  min-height: 252px;
  padding: 24px;
  transition: transform 180ms var(--ease-out), border-color 180ms var(--ease-out), background-color 180ms var(--ease-out);
}

.service-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid oklch(0.80 0.046 238);
  display: grid;
  place-items: center;
  color: var(--blue-700);
  margin-bottom: 28px;
}

.service-mark svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.service-card h3,
.network-card h3,
.office-card h3,
.category-block h3,
.process-card h3 {
  margin: 0;
  font-size: 1.17rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.service-card p,
.network-card p,
.office-card p,
.category-block p,
.process-card p {
  color: var(--muted);
  margin: 12px 0 0;
}

.materials-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}

.material-board {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 34px);
  background:
    linear-gradient(135deg, oklch(1 0 0), oklch(0.96 0.012 230)),
    var(--surface);
  box-shadow: var(--shadow-sm);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.chip {
  border: 1px solid oklch(0.77 0.045 238);
  background: oklch(0.98 0.012 232);
  color: var(--blue-900);
}

.supplier-note {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
}

.timeline {
  position: relative;
  display: grid;
  gap: 14px;
  max-width: 890px;
  margin-inline: auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: oklch(1 0 0 / 0.14);
}

.timeline-fill {
  position: absolute;
  left: 24px;
  top: 24px;
  width: 2px;
  height: calc(var(--timeline-progress, 0) * (100% - 48px));
  background: linear-gradient(var(--green-500), var(--blue-600));
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.timeline-number {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--green-500);
  color: var(--blue-950);
  font-weight: 850;
}

.process-card {
  padding: 20px 22px;
  background: oklch(1 0 0 / 0.08);
  border-color: oklch(1 0 0 / 0.14);
}

.process-card p {
  color: oklch(0.88 0.018 235);
}

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

.network-card,
.office-card,
.category-block {
  padding: 24px;
}

.network-card .place,
.office-card .place {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 0 10px;
  margin-bottom: 18px;
  background: oklch(0.93 0.03 235);
  color: var(--blue-900);
  font-size: 0.82rem;
  font-weight: 800;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto;
  gap: 28px;
  align-items: center;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 10%, oklch(0.66 0.15 155 / 0.26), transparent 26%),
    linear-gradient(135deg, var(--blue-950), var(--blue-800));
  color: var(--white);
  padding: clamp(28px, 5vw, 52px);
}

.cta-panel h2 {
  max-width: 800px;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.cta-panel p {
  color: oklch(0.89 0.018 235);
  margin: 18px 0 0;
  max-width: 70ch;
}

.page-hero {
  background:
    radial-gradient(circle at 82% 18%, oklch(0.66 0.15 155 / 0.18), transparent 28%),
    linear-gradient(135deg, var(--blue-950), var(--blue-900));
  color: var(--white);
  padding: clamp(72px, 9vw, 122px) 0 clamp(56px, 7vw, 92px);
}

.page-hero h1 {
  max-width: 860px;
}

.page-lede {
  margin: 22px 0 0;
}

.page-section {
  padding: clamp(62px, 8vw, 112px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
}

.prose {
  max-width: 76ch;
}

.prose p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.8;
  text-wrap: pretty;
}

.fact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--mist);
}

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

.fact-list li {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
  color: var(--muted);
}

.fact-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green-600);
}

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

.quote-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.quote-aside {
  position: sticky;
  top: 108px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--mist);
}

.quote-aside img {
  width: 210px;
  margin-bottom: 24px;
}

.quote-wizard {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: clamp(22px, 4vw, 34px);
}

.wizard-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 28px;
}

.wizard-progress span {
  height: 5px;
  border-radius: 999px;
  background: var(--line);
  overflow: hidden;
}

.wizard-progress span::before {
  content: "";
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue-600), var(--green-500));
  transition: width 180ms var(--ease-out);
}

.wizard-progress span.is-active::before,
.wizard-progress span.is-complete::before {
  width: 100%;
}

.wizard-step[hidden],
.quote-success[hidden] {
  display: none;
}

.wizard-step h2 {
  font-size: clamp(1.65rem, 3vw, 2.5rem);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label,
.check-field span {
  color: var(--ink);
  font-weight: 750;
  font-size: 0.94rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid oklch(0.77 0.035 238);
  border-radius: 12px;
  min-height: 48px;
  padding: 11px 13px;
  background: var(--surface);
  color: var(--ink);
  transition: border-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out);
}

.field textarea {
  min-height: 128px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px oklch(0.66 0.15 155 / 0.16);
  outline: 0;
}

.check-grid {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.check-field {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
}

.check-field input {
  width: 18px;
  height: 18px;
  accent-color: var(--green-600);
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 28px;
}

.quote-success {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--mist);
}

.lead-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, oklch(0.17 0.062 248) 0 52%, oklch(0.985 0.005 235) 52% 100%);
}

.lead-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(oklch(1 0 0 / 0.06) 1px, transparent 1px),
    linear-gradient(90deg, oklch(1 0 0 / 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, oklch(0 0 0 / 0.85), transparent 68%);
  pointer-events: none;
}

.lead-hero .container {
  position: relative;
  min-height: clamp(330px, 44vw, 520px);
  display: grid;
  align-content: center;
}

.lead-hero .container::after {
  content: "";
  position: absolute;
  right: clamp(12px, 4vw, 78px);
  top: 50%;
  width: clamp(170px, 31vw, 390px);
  aspect-ratio: 1;
  background: url("assets/ben-jubail-symbol.png") center / contain no-repeat;
  transform: translateY(-48%);
  filter: drop-shadow(0 18px 18px oklch(0.16 0.05 247 / 0.13));
}

.lead-hero h1,
.lead-hero .page-lede {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.lead-hero .page-lede {
  color: oklch(0.91 0.02 235);
}

.lead-section {
  background:
    linear-gradient(180deg, oklch(0.985 0.005 235), var(--surface) 46%),
    var(--surface);
}

.lead-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.lead-aside {
  position: sticky;
  top: 108px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px);
  background: oklch(0.985 0.005 235);
}

.lead-aside .lead-logo {
  margin-bottom: clamp(28px, 4vw, 48px);
}

.lead-aside h2 {
  max-width: 12ch;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.lead-aside p,
.lead-form-header p,
.lead-privacy {
  color: var(--muted);
  text-wrap: pretty;
}

.lead-aside p {
  max-width: 42rem;
  margin: 18px 0 0;
  font-size: 1.04rem;
  line-height: 1.75;
}

.quick-contact {
  display: grid;
  gap: 10px;
  margin-top: clamp(24px, 4vw, 42px);
}

.quick-contact-link {
  display: grid;
  gap: 4px;
  min-height: 74px;
  justify-content: start;
  border: 1px solid oklch(0.78 0.036 238);
  border-radius: 14px;
  padding: 14px 16px;
  background: var(--surface);
  color: inherit;
  text-decoration: none;
  transition: border-color 180ms var(--ease-out), background-color 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.quick-contact-link span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.quick-contact-link strong {
  color: var(--blue-900);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.lead-card {
  position: relative;
  border: 1px solid oklch(0.76 0.036 238);
  border-radius: var(--radius);
  background: var(--surface);
  padding: clamp(22px, 4vw, 42px);
}

.lead-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, var(--blue-600), var(--green-500));
}

.lead-form-header {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: start;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.lead-form-header h2 {
  max-width: 14ch;
  font-size: clamp(1.75rem, 3.2vw, 3rem);
  line-height: 1;
}

.lead-form-header p {
  max-width: 18rem;
  margin: 5px 0 0;
  font-weight: 700;
}

.form-grid.compact {
  gap: 14px;
  margin-top: 22px;
}

.field label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.field label span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.priority-field input {
  min-height: 58px;
  border-color: var(--blue-700);
  font-size: 1.08rem;
}

.lead-card textarea {
  min-height: 104px;
}

.lead-submit {
  width: 100%;
  margin-top: 20px;
}

.lead-privacy {
  margin: 12px 0 0;
  font-size: 0.9rem;
}

.lead-success {
  background:
    radial-gradient(circle at 92% 0%, oklch(0.66 0.15 155 / 0.18), transparent 34%),
    var(--mist);
}

.lead-success h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.lead-success p {
  color: var(--muted);
  max-width: 42rem;
  line-height: 1.75;
}

@media (hover: hover) and (pointer: fine) {
  .quick-contact-link:hover {
    border-color: var(--green-600);
    background: oklch(0.975 0.014 158);
    transform: translateY(-2px);
  }
}

@media (max-width: 1040px) {
  .lead-hero {
    background:
      linear-gradient(180deg, oklch(0.17 0.062 248) 0 62%, oklch(0.985 0.005 235) 62% 100%);
  }

  .lead-shell {
    grid-template-columns: 1fr;
  }

  .lead-aside {
    position: static;
  }

  .lead-aside h2 {
    max-width: 16ch;
  }
}

@media (max-width: 760px) {
  .lead-hero {
    background: linear-gradient(135deg, var(--blue-950), var(--blue-900));
  }

  .lead-hero .container {
    min-height: 360px;
  }

  .lead-hero .container::after {
    right: -66px;
    width: 245px;
    opacity: 0.2;
    filter: drop-shadow(0 16px 16px oklch(0.08 0.04 247 / 0.18));
  }

  .lead-form-header {
    display: grid;
    gap: 8px;
  }

  .lead-form-header h2,
  .lead-form-header p,
  .lead-aside h2 {
    max-width: none;
  }

  .lead-card,
  .lead-aside {
    padding: 22px;
  }

  .priority-field input {
    min-height: 54px;
  }

  .lead-submit {
    min-height: 50px;
  }
}

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

.office-card address {
  font-style: normal;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 12px;
}

.contact-links {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.contact-links a {
  color: var(--blue-700);
  font-weight: 760;
  text-decoration: none;
}

.site-footer {
  background: var(--blue-950);
  color: var(--white);
  padding: 54px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 62px);
}

.footer-brand .logo-lockup {
  padding: 7px 10px;
  border-radius: 12px;
  background: var(--white);
}

.footer-brand p,
.footer-col a,
.footer-col p {
  color: oklch(0.86 0.018 235);
}

.footer-brand p {
  margin: 22px 0 0;
  max-width: 42ch;
}

.footer-col h2,
.footer-col h3 {
  margin: 0 0 14px;
  font-size: 0.98rem;
}

.footer-col nav {
  display: grid;
  gap: 10px;
}

.footer-col a {
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid oklch(1 0 0 / 0.12);
  color: oklch(0.82 0.016 235);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0.98;
  transform: translateY(10px);
  transition: opacity 240ms var(--ease-out), transform 240ms var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover,
  .network-card:hover,
  .category-block:hover {
    transform: translateY(-4px);
    border-color: oklch(0.72 0.06 238);
    background: oklch(0.99 0.006 232);
  }

  .network-card,
  .category-block {
    transition: transform 180ms var(--ease-out), border-color 180ms var(--ease-out), background-color 180ms var(--ease-out);
  }
}

@media (max-width: 1040px) {
  .desktop-nav,
  .nav-actions .button {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero-grid,
  .section-header,
  .materials-layout,
  .split,
  .quote-shell {
    grid-template-columns: 1fr;
  }

  .quote-aside {
    position: static;
  }

  .hero-grid {
    min-height: calc(88svh - 78px);
  }

  .route-visual {
    min-height: min(420px, 48vh);
  }

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

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

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .nav-shell {
    min-height: 70px;
  }

  .brand-link {
    min-width: 142px;
  }

  .brand-link .logo-symbol {
    width: 50px;
    height: 50px;
  }

  .brand-link .logo-name {
    font-size: 1.02rem;
  }

  .brand-link .logo-subtitle {
    font-size: 0.47rem;
    letter-spacing: 0.13em;
  }

  .mobile-menu {
    inset: 70px 14px auto 14px;
  }

  .hero h1 {
    font-size: clamp(2rem, 8.4vw, 2.7rem);
    line-height: 1.02;
  }

  .page-hero h1 {
    font-size: clamp(2.15rem, 12vw, 3.8rem);
    line-height: 1;
  }

  .hero-grid {
    display: block;
    min-height: calc(94svh - 70px);
    padding: 42px 0 58px;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  .route-visual {
    position: absolute;
    right: -34px;
    bottom: 12px;
    width: 74%;
    min-height: 232px;
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    opacity: 0.38;
    pointer-events: none;
  }

  .route-card {
    display: none;
  }

  .hero-lede {
    font-size: 1rem;
    line-height: 1.62;
    max-width: 35rem;
  }

  .hero-badges {
    gap: 8px;
    margin-top: 22px;
  }

  .hero-badges li {
    min-height: 30px;
    font-size: 0.78rem;
    padding-inline: 10px;
  }

  .trust-strip .container,
  .route-points,
  .services-grid,
  .network-grid,
  .contact-grid,
  .category-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 64px;
    border-left: 0;
    border-top: 1px solid oklch(1 0 0 / 0.10);
  }

  .trust-item:first-child {
    border-top: 0;
  }

  .route-rail {
    left: 34px;
    right: auto;
    top: 48px;
    bottom: 42px;
    width: 2px;
    height: auto;
  }

  .route-progress {
    width: 100%;
    height: calc(var(--route-progress, 0) * 100%);
  }

  .route-points {
    gap: 24px;
  }

  .route-point {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
  }

  .route-dot {
    margin-top: 2px;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .wizard-actions {
    flex-direction: column-reverse;
  }

  .wizard-actions .button {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    transform: none;
  }
}

/* Premium trade-corridor homepage redesign */
.home-page {
  background: oklch(0.985 0.004 232);
}

.home-page .site-header {
  background: oklch(0.985 0.004 232 / 0.92);
}

.brand-link .logo-symbol {
  width: 60px;
  height: 60px;
}

.site-header.is-compact .brand-link .logo-lockup {
  transform: scale(0.9);
}

.corridor-hero {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, oklch(0.985 0.004 232) 0 58%, oklch(0.17 0.065 248) 58% 100%),
    oklch(0.985 0.004 232);
}

.corridor-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, oklch(0.18 0.03 245 / 0.055) 1px, transparent 1px),
    linear-gradient(oklch(0.18 0.03 245 / 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, oklch(0 0 0 / .55), transparent 74%);
  pointer-events: none;
}

.corridor-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(500px, 1.04fr);
  gap: clamp(30px, 4vw, 56px);
  align-items: center;
  min-height: calc(78svh - 78px);
  padding: clamp(38px, 4vw, 58px) 0 clamp(28px, 3vw, 40px);
}

.corridor-copy {
  max-width: 710px;
}

.corridor-kicker,
.section-code {
  margin: 0 0 18px;
  color: var(--blue-700);
  font-size: clamp(0.92rem, 1.1vw, 1rem);
  font-weight: 760;
  letter-spacing: 0;
}

.corridor-copy h1 {
  margin: 0;
  font-size: clamp(3rem, 5.3vw, 4.7rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  max-width: 790px;
  text-wrap: balance;
}

.corridor-lede {
  margin: 28px 0 0;
  max-width: 64ch;
  color: oklch(0.31 0.028 245);
  font-size: clamp(1.06rem, 1.45vw, 1.25rem);
  line-height: 1.72;
  text-wrap: pretty;
}

.corridor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.corridor-board {
  position: relative;
  min-height: min(480px, 52vh);
  border-radius: 10px;
  background:
    radial-gradient(circle at 74% 21%, oklch(0.62 0.15 152 / .20), transparent 22%),
    linear-gradient(135deg, oklch(0.20 0.078 247), oklch(0.12 0.045 248));
  color: var(--white);
  overflow: hidden;
  box-shadow: 0 26px 60px oklch(0.14 0.05 248 / .24);
}

.corridor-board::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid oklch(1 0 0 / .13);
  border-radius: 6px;
  pointer-events: none;
}

.board-topline {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: 30px;
  right: 30px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: oklch(0.90 0.018 235);
  font-size: 0.93rem;
  font-weight: 750;
}

.board-topline span {
  color: oklch(0.76 0.12 152);
}

.corridor-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.corridor-line {
  stroke-dasharray: 980;
  stroke-dashoffset: calc(980 - (var(--route-progress, 0.9) * 980));
  transition: stroke-dashoffset 160ms linear;
}

.route-node circle {
  fill: oklch(1 0 0);
  stroke: oklch(0.67 0.16 153);
  stroke-width: 4;
}

.route-node text {
  fill: oklch(0.92 0.016 235);
  font-family: Aptos, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  font-weight: 760;
}

.cargo-stack rect {
  fill: oklch(1 0 0 / .10);
  stroke: oklch(1 0 0 / .18);
}

.board-manifest {
  position: absolute;
  z-index: 2;
  left: 30px;
  right: 30px;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid oklch(1 0 0 / .14);
}

.board-manifest div {
  padding: 18px 16px 2px 0;
}

.board-manifest span,
.network-table span,
.route-ledger span,
.safe-note {
  color: var(--muted);
}

.board-manifest span {
  display: block;
  color: oklch(0.72 0.06 238);
  font-size: 0.82rem;
  font-weight: 760;
}

.board-manifest strong {
  display: block;
  margin-top: 5px;
  font-size: 0.95rem;
  line-height: 1.25;
}

.corridor-proof {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid oklch(0.78 0.025 238);
  background: oklch(0.985 0.004 232);
}

.corridor-proof span {
  min-height: 86px;
  display: flex;
  align-items: center;
  border-right: 1px solid oklch(0.78 0.025 238);
  padding: 18px 22px;
  color: oklch(0.26 0.026 245);
  font-weight: 780;
  line-height: 1.28;
}

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

.route-statement {
  background: oklch(0.985 0.004 232);
  border-top: 1px solid oklch(0.83 0.018 238);
}

.route-statement-grid,
.manifest-grid,
.material-split,
.ops-grid,
.network-slab-grid,
.final-quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(460px, 1fr);
  gap: clamp(34px, 7vw, 100px);
  align-items: start;
}

.route-statement h2,
.manifest-title h2,
.materials-corridor h2,
.ops-section h2,
.network-slab h2,
.final-quote h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5.6vw, 5.2rem);
  line-height: 0.93;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.route-copy,
.manifest-title p,
.materials-corridor p,
.final-quote p {
  margin: 0;
  color: oklch(0.33 0.028 245);
  font-size: clamp(1.02rem, 1.3vw, 1.16rem);
  line-height: 1.78;
  text-wrap: pretty;
}

.route-ledger {
  margin-top: 34px;
  display: grid;
  border-top: 1px solid var(--line);
}

.route-ledger span {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 52px;
  border-bottom: 1px solid var(--line);
  color: oklch(0.26 0.026 245);
  font-weight: 750;
}

.route-ledger span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-600);
}

.manifest-section {
  color: var(--white);
  background:
    linear-gradient(90deg, oklch(0.13 0.045 248), oklch(0.21 0.078 247));
}

.manifest-title {
  position: sticky;
  top: 116px;
}

.manifest-title .section-code {
  color: oklch(0.72 0.13 153);
}

.manifest-title p {
  color: oklch(0.86 0.018 235);
  margin-top: 26px;
}

.manifest-title .button {
  margin-top: 32px;
}

.service-manifest {
  display: grid;
  border-top: 1px solid oklch(1 0 0 / .16);
}

.service-manifest article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid oklch(1 0 0 / .16);
}

.service-manifest article > span {
  color: oklch(0.71 0.12 153);
  font-weight: 850;
}

.service-manifest h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 2.1rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.service-manifest p {
  margin: 10px 0 0;
  color: oklch(0.85 0.018 235);
  max-width: 62ch;
}

.materials-corridor {
  background:
    radial-gradient(circle at 12% 22%, oklch(0.67 0.16 153 / .14), transparent 28%),
    oklch(0.95 0.012 232);
}

.material-cloud {
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.material-cloud li {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-radius: 999px;
  padding: 0 16px;
  background: oklch(1 0 0);
  border: 1px solid oklch(0.76 0.035 238);
  color: var(--blue-900);
  font-weight: 790;
}

.safe-note {
  margin-top: 26px !important;
  color: oklch(0.43 0.026 242) !important;
  font-size: 0.95rem !important;
}

.ops-section {
  background: oklch(0.985 0.004 232);
}

.ops-list {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: ops;
  border-top: 1px solid var(--line);
}

.ops-list::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  width: 2px;
  height: calc(var(--timeline-progress, 0) * 100%);
  background: linear-gradient(var(--blue-600), var(--green-600));
}

.ops-list li {
  counter-increment: ops;
  position: relative;
  min-height: 78px;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: oklch(0.23 0.024 245);
  font-size: clamp(1.08rem, 2vw, 1.44rem);
  font-weight: 760;
}

.ops-list li::before {
  content: counter(ops);
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: oklch(0.985 0.004 232);
  border: 1px solid var(--line-strong);
  color: var(--blue-700);
  font-size: 0.94rem;
  font-weight: 850;
}

.network-slab {
  background: var(--blue-950);
  color: var(--white);
}

.network-slab .section-code {
  color: oklch(0.74 0.13 153);
}

.network-table {
  display: grid;
  border-top: 1px solid oklch(1 0 0 / .16);
}

.network-table article {
  display: grid;
  grid-template-columns: minmax(120px, 0.35fr) minmax(0, 1fr);
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid oklch(1 0 0 / .16);
}

.network-table strong {
  font-size: 1.08rem;
}

.network-table span {
  color: oklch(0.86 0.018 235);
}

.final-quote {
  background: oklch(0.985 0.004 232);
}

.final-quote-grid {
  border-top: 2px solid var(--blue-950);
  padding-top: clamp(30px, 5vw, 56px);
}

.final-quote .button {
  margin-top: 30px;
}

.home-page .footer-brand .logo-lockup {
  padding-right: 12px;
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (hover: hover) and (pointer: fine) {
  .service-manifest article,
  .network-table article,
  .material-cloud li {
    transition: transform 180ms var(--ease-out), color 180ms var(--ease-out), border-color 180ms var(--ease-out);
  }

  .service-manifest article:hover,
  .network-table article:hover {
    transform: translateX(6px);
  }

  .material-cloud li:hover {
    transform: translateY(-3px);
    border-color: var(--green-600);
  }
}

@media (max-width: 1120px) {
  .corridor-hero {
    background:
      linear-gradient(180deg, oklch(0.985 0.004 232) 0 58%, oklch(0.17 0.065 248) 58% 100%),
      oklch(0.985 0.004 232);
  }

  .corridor-shell,
  .route-statement-grid,
  .manifest-grid,
  .material-split,
  .ops-grid,
  .network-slab-grid,
  .final-quote-grid {
    grid-template-columns: 1fr;
  }

  .corridor-shell {
    min-height: auto;
  }

  .corridor-board {
    min-height: 500px;
  }

  .manifest-title {
    position: static;
  }

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

  .corridor-proof span:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  .brand-link .logo-symbol,
  .home-page .footer-brand .logo-symbol {
    width: 48px;
    height: 48px;
  }

  .corridor-shell {
    padding: 32px 0 18px;
    gap: 14px;
  }

  .corridor-copy h1 {
    font-size: clamp(2.08rem, 10.4vw, 3.15rem);
    line-height: 0.95;
  }

  .corridor-lede {
    margin-top: 14px;
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .corridor-actions .button {
    width: 100%;
  }

  .corridor-actions {
    margin-top: 18px;
  }

  .corridor-board {
    min-height: 220px;
    margin-inline: -4px;
  }

  .board-topline {
    left: 20px;
    right: 20px;
    top: 16px;
    font-size: 0.8rem;
  }

  .board-manifest {
    left: 20px;
    right: 20px;
    bottom: 14px;
    grid-template-columns: repeat(3, 1fr);
  }

  .board-manifest div {
    padding: 10px 8px 0 0;
  }

  .board-manifest span {
    font-size: 0.68rem;
  }

  .board-manifest strong {
    font-size: 0.72rem;
  }

  .route-node text {
    font-size: 15px;
  }

  .corridor-proof {
    grid-template-columns: 1fr;
  }

  .corridor-proof span {
    min-height: 62px;
    border-right: 0;
    border-bottom: 1px solid oklch(0.78 0.025 238);
    padding-inline: 0;
  }

  .route-statement h2,
  .manifest-title h2,
  .materials-corridor h2,
  .ops-section h2,
  .network-slab h2,
  .final-quote h2 {
    font-size: clamp(2.25rem, 12vw, 3.8rem);
  }

  .service-manifest article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 22px 0;
  }

  .network-table article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .ops-list li {
    grid-template-columns: 54px minmax(0, 1fr);
    min-height: 72px;
    font-size: 1.02rem;
  }

  .ops-list::before {
    left: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .corridor-line,
  .ops-list::before {
    transition: none;
  }
}
