/* Professor's Transport — Hi-fi prototype */

:root {
  /* Default palette: deep navy + white + amber accent */
  --ink: oklch(0.18 0.045 260);
  --ink-2: oklch(0.32 0.04 260);
  --muted: oklch(0.52 0.018 260);
  --muted-2: oklch(0.72 0.012 260);
  --surface: #ffffff;
  --surface-2: #ffffff;
  --surface-3: oklch(0.94 0.005 260);
  --border: oklch(0.90 0.008 260);
  --border-strong: oklch(0.80 0.012 260);
  --accent: oklch(0.74 0.158 62);    /* warm amber */
  --accent-ink: oklch(0.28 0.09 60);
  --navy: oklch(0.22 0.06 260);
  --navy-deep: oklch(0.14 0.05 260);

  --font-sans: "Geist", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  --font-serif: "Instrument Serif", ui-serif, Georgia, serif;

  --density: 1;       /* tweakable */
  --radius: 4px;
  --radius-lg: 10px;

  --maxw: 1320px;
  --pad-x: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
  color: var(--ink);
  background: var(--surface);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img, svg { display: block; max-width: 100%; }

/* ---- typography ---- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 8px;
  margin-bottom: 2px;
}
.h-display {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(44px, 6.4vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0;
}
.h-display em { font-style: normal; font-weight: 500; }
.h-section {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(32px, 3.6vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
}
.h-section em { font-style: normal; font-weight: 500; }
.h-card {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.012em;
  margin: 0;
}
.lead {
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 56ch;
  text-wrap: pretty;
}
.body-small {
  font-size: 14px;
  color: var(--muted);
}
.mono { font-family: var(--font-mono); }
.num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

/* ---- layout ---- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.section {
  padding-top: calc(96px * var(--density));
  padding-bottom: calc(96px * var(--density));
}
.section--tight { padding-top: calc(56px * var(--density)); padding-bottom: calc(56px * var(--density)); }

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform 120ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--ink);
  color: var(--surface);
}
.btn--primary:hover { background: var(--navy-deep); }
.btn--accent {
  background: var(--accent);
  color: var(--accent-ink);
}
.btn--accent:hover { filter: brightness(0.95); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn--ghost:hover { background: var(--surface-2); }
.btn--inverse {
  background: var(--surface);
  color: var(--ink);
}
.btn .arr { width: 14px; height: 14px; }

/* ---- utility bar ---- */
.utility {
  background: var(--ink);
  color: var(--surface);
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.utility__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
  gap: 24px;
}
.utility__left { display: flex; gap: 24px; align-items: center; }
.utility__left .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: oklch(0.78 0.18 145);
  box-shadow: 0 0 0 0 oklch(0.78 0.18 145 / 0.7);
  animation: pulse 2.2s infinite;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 oklch(0.78 0.18 145 / 0.6); }
  70% { box-shadow: 0 0 0 8px oklch(0.78 0.18 145 / 0); }
  100% { box-shadow: 0 0 0 0 oklch(0.78 0.18 145 / 0); }
}
.utility__right { display: flex; gap: 20px; align-items: center; color: var(--muted-2); }
.utility__right a:hover { color: var(--surface); }
.utility__right .sep { opacity: 0.4; }

/* ---- nav ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.015em;
}
.logo__mark {
  width: 36px; height: 36px;
  background: var(--ink);
  color: var(--surface);
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.logo__name { line-height: 1; }
.logo__name small {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 400;
}
.nav__links {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 14px;
  color: var(--ink-2);
  white-space: nowrap;
}
.nav__links a { padding: 6px 0; position: relative; }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--accent);
}
.nav__links a.is-current { color: var(--ink); font-weight: 500; }
.nav__links a.is-current::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--ink);
}
.nav__cta { display: flex; gap: 10px; align-items: center; }

/* ---- hero ---- */
.hero {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.hero__inner {
  padding-top: calc(80px * var(--density));
  padding-bottom: calc(40px * var(--density));
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: end;
}
.hero__copy { max-width: 720px; }
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}
.hero__eyebrow .rule {
  flex: 0 0 36px;
  height: 1px;
  background: var(--border-strong);
}
.hero__sub {
  margin-top: 32px;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 52ch;
  text-wrap: pretty;
}
.hero__cta {
  margin-top: 40px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.hero__cta .since {
  margin-left: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.hero__visual {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--ink);
  color: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__visual::after {
  /* Subtle bottom gradient so overlay text stays legible */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, oklch(0.14 0.05 260 / 0.55) 100%);
  pointer-events: none;
}
.hero__placeholder {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg,
      oklch(0.24 0.05 260) 0px, oklch(0.24 0.05 260) 14px,
      oklch(0.20 0.05 260) 14px, oklch(0.20 0.05 260) 28px);
  display: grid;
  place-items: center;
}
.hero__placeholder span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: oklch(0.78 0.02 260);
  background: var(--ink);
  padding: 6px 10px;
  border-radius: 4px;
}
.hero__visual__corner {
  position: absolute;
  top: 18px; left: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: oklch(0.92 0.01 260);
  background: oklch(0.14 0.05 260 / 0.7);
  padding: 6px 10px;
  border-radius: 4px;
  backdrop-filter: blur(8px);
  z-index: 2;
}
.hero__visual__meta {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: oklch(0.95 0.01 260);
  z-index: 2;
  text-shadow: 0 1px 4px oklch(0.14 0.05 260 / 0.5);
}
.hero__visual__meta b {
  display: block;
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--surface);
  margin-bottom: 4px;
}
.hero__visual__pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--accent);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 6px 20px oklch(0.14 0.05 260 / 0.35), 0 0 0 6px oklch(1 0 0 / 0.15);
  z-index: 2;
}

/* Lane ticker */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  position: relative;
}
.ticker__row {
  display: flex;
  gap: 48px;
  align-items: center;
  padding: 18px 0;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  white-space: nowrap;
  animation: tickerScroll 60s linear infinite;
  width: max-content;
}
.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.ticker__item .arr {
  color: var(--accent);
  font-weight: 700;
}
.ticker__item .muted { color: var(--muted); }
.ticker__item .status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--ink-2);
  border: 1px solid var(--border);
  font-size: 11px;
}
.ticker__item .status::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: oklch(0.7 0.18 145);
}
.ticker__item .status.delivered::before { background: oklch(0.62 0.16 260); }
.ticker__item .status.transit::before { background: oklch(0.74 0.158 62); }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- trust strip ---- */
.trust {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.trust__inner {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  align-items: center;
  padding: 32px 0;
}
.trust__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.trust__logos {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}
.trust__logo {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  color: var(--muted);
  letter-spacing: -0.015em;
  opacity: 0.85;
}
.trust__logo.sans {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.015em;
}
.trust__logo.mono {
  font-family: var(--font-mono);
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---- stats ---- */
.stats {
  background: var(--ink);
  color: var(--surface);
}
.stats__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0;
  padding: 64px 0;
}
.stat {
  padding: 16px 32px 16px 0;
  border-left: 1px solid oklch(0.32 0.04 260);
}
.stat:first-child { border-left: none; padding-left: 0; }
.stat:not(:first-child) { padding-left: 32px; }
.stat__num {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(48px, 5.5vw, 80px);
  letter-spacing: -0.04em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.stat__num small {
  font-size: 0.4em;
  font-weight: 500;
  color: oklch(0.78 0.02 260);
}
.stat__num em { font-style: normal; font-weight: 400; color: var(--accent); }
.stat__label {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: oklch(0.78 0.02 260);
}
.stat__caption {
  margin-top: 8px;
  font-size: 13px;
  color: oklch(0.85 0.02 260);
  max-width: 28ch;
  line-height: 1.4;
}

/* ---- section header pattern ---- */
.sec-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.sec-head__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.sec-head__lead {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 52ch;
}

/* ---- capabilities ---- */
.caps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.caps__grid--4 { grid-template-columns: repeat(4, 1fr); }
.cap {
  background: var(--surface);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  position: relative;
  transition: background 200ms ease;
  cursor: pointer;
}
.cap:hover { background: var(--surface-2); }
.cap__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.cap__icon {
  width: 56px; height: 56px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--ink);
}
.cap h3 { margin: 0; font-weight: 500; font-size: 22px; letter-spacing: -0.015em; }
.cap p { margin: 0; color: var(--ink-2); font-size: 14px; line-height: 1.5; }
.cap__tags {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
}
.cap__tags span {
  padding: 3px 8px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--muted);
  text-transform: uppercase;
}
.cap__arrow {
  position: absolute;
  top: 32px; right: 32px;
  opacity: 0;
  transition: opacity 200ms ease, transform 200ms ease;
  transform: translateX(-4px);
  color: var(--ink);
}
.cap:hover .cap__arrow { opacity: 1; transform: translateX(0); }

/* ---- coverage map ---- */
.coverage {
  background: var(--surface-2);
  position: relative;
}
.map-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: stretch;
}
.map-canvas {
  position: relative;
  aspect-ratio: 16/10;
  background:
    linear-gradient(var(--surface-3) 1px, transparent 1px) 0 0 / 32px 32px,
    linear-gradient(90deg, var(--surface-3) 1px, transparent 1px) 0 0 / 32px 32px,
    var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
}
.map-canvas svg { width: 100%; height: 100%; }
.map-side h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px 0;
  font-weight: 500;
}
.map-side__hubs {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}
.hub-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  cursor: pointer;
  transition: padding 180ms ease;
}
.hub-row:hover { padding-left: 6px; }
.hub-row:last-child { border-bottom: none; }
.hub-row .idx {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}
.hub-row .name { font-weight: 500; letter-spacing: -0.01em; }
.hub-row .prov {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.12em;
}

/* ---- why us ---- */
.why {
  background: var(--surface);
}
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why__item {
  background: var(--surface);
  padding: 40px 32px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
}
.why__item .num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
  padding-top: 4px;
}
.why__item h3 {
  margin: 0 0 8px 0;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.015em;
}
.why__item h3 em { font-style: normal; font-weight: 500; color: var(--accent-ink); }
.why__item p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.55;
  max-width: 44ch;
}

/* ---- quote form ---- */
.quote {
  background: var(--navy-deep);
  color: var(--surface);
  position: relative;
  overflow: hidden;
}
.quote::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, oklch(0.32 0.07 260 / 0.6), transparent 50%);
  pointer-events: none;
}
.quote__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.quote__copy h2 em { font-style: normal; font-weight: 500; color: var(--accent); }
.quote__copy p {
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.55;
  color: oklch(0.85 0.02 260);
  max-width: 44ch;
}
.quote__copy .details {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid oklch(0.32 0.04 260);
}
.quote__copy .details h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: oklch(0.78 0.02 260);
  margin: 0 0 8px 0;
  font-weight: 500;
}
.quote__copy .details p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--surface);
  line-height: 1.4;
}

.form {
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form__row { display: grid; gap: 16px; }
.form__row.two { grid-template-columns: 1fr 1fr; }
.form__row.three { grid-template-columns: 1.4fr 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field select, .field textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--surface);
  border: none;
  border-bottom: 1px solid var(--border-strong);
  padding: 10px 0;
  outline: none;
  transition: border-color 180ms ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent);
}
.field select { appearance: none; background-image: none; cursor: pointer; }
.field textarea { resize: vertical; min-height: 60px; }
.form__submit {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.form__submit .meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
}

/* equipment selector inside form */
.eq-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.eq-chip {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 10px 8px;
  text-align: center;
  font-size: 12px;
  color: var(--ink-2);
  cursor: pointer;
  background: var(--surface);
  font-family: var(--font-sans);
  letter-spacing: -0.005em;
  transition: all 180ms ease;
  user-select: none;
}
.eq-chip:hover { border-color: var(--ink); color: var(--ink); }
.eq-chip.on {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}

/* ---- industries ---- */
.industries {
  background: var(--surface);
}
.ind-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ind {
  background: var(--surface);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  min-height: 180px;
  cursor: pointer;
  transition: background 180ms ease;
}
.ind:hover { background: var(--surface-2); }
.ind__icon {
  width: 32px; height: 32px;
  color: var(--ink);
}
.ind__name {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.012em;
}
.ind__loads {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* ---- drive for us ---- */
.drive {
  background: var(--ink);
  color: var(--surface);
}
.drive__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.drive__visual {
  aspect-ratio: 4/3;
  background:
    repeating-linear-gradient(135deg,
      oklch(0.24 0.05 260) 0px, oklch(0.24 0.05 260) 14px,
      oklch(0.20 0.05 260) 14px, oklch(0.20 0.05 260) 28px);
  border-radius: var(--radius-lg);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.drive__visual .ph {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: oklch(0.78 0.02 260);
  background: var(--ink);
  padding: 6px 10px;
  border-radius: 4px;
}
.drive__visual .corner {
  position: absolute;
  top: 18px; left: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: oklch(0.78 0.02 260);
}
.drive__visual .badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.drive h2 em { font-style: normal; font-weight: 500; color: var(--accent); }
.drive__perks {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}
.perk {
  border-top: 1px solid oklch(0.32 0.04 260);
  padding-top: 14px;
}
.perk h5 {
  margin: 0 0 4px 0;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.perk p {
  margin: 0;
  font-size: 13px;
  color: oklch(0.78 0.02 260);
  line-height: 1.45;
}

/* ---- footer ---- */
.footer {
  background: var(--navy-deep);
  color: var(--surface);
  padding-top: 80px;
  padding-bottom: 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid oklch(0.32 0.04 260);
}
.footer__brand h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: 0 0 12px 0;
  max-width: 18ch;
  line-height: 1.1;
}
.footer__brand h4 em { font-style: normal; font-weight: 500; color: var(--accent); }
.footer__brand p {
  margin: 0 0 24px 0;
  font-size: 14px;
  color: oklch(0.78 0.02 260);
  max-width: 36ch;
  line-height: 1.55;
}
.footer__col h5 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: oklch(0.78 0.02 260);
  margin: 0 0 16px 0;
  font-weight: 500;
}
.footer__col ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col ul a {
  font-size: 14px;
  color: var(--surface);
  letter-spacing: -0.005em;
  transition: color 180ms ease;
}
.footer__col ul a:hover { color: var(--accent); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: oklch(0.65 0.02 260);
  flex-wrap: wrap;
  gap: 16px;
}

/* ---- responsive ---- */
@media (max-width: 1180px) {
  .nav__links { display: none; }
}
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { aspect-ratio: 16/10; }
  .stats__inner { grid-template-columns: 1fr 1fr; }
  .stat { border-left: none !important; padding-left: 0 !important; }
  .caps__grid, .caps__grid--4 { grid-template-columns: 1fr 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .map-wrap { grid-template-columns: 1fr; }
  .quote__inner { grid-template-columns: 1fr; gap: 48px; }
  .drive__inner { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .sec-head { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav__links { display: none; }
  .utility__left .hide-sm, .utility__right .hide-sm { display: none; }
  .caps__grid, .caps__grid--4 { grid-template-columns: 1fr; }
  .stats__inner { grid-template-columns: 1fr; padding: 40px 0; }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .form { padding: 24px; }
  .form__row.two, .form__row.three { grid-template-columns: 1fr; }
  .eq-row { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .trust__inner { grid-template-columns: 1fr; gap: 16px; padding: 24px 0; }
}


/* ---- warehousing ---- */
.wh { background: var(--surface-2); }
.wh__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 64px;
}
.wh__item {
  background: var(--surface);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 200px;
  transition: background 200ms ease;
}
.wh__item:hover { background: var(--surface-2); }
.wh__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 4px;
}
.wh__item h3 {
  margin: 0;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.015em;
}
.wh__item p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.5;
}

.wh__rentals {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}
.wh__rentals__head h3 { margin-top: 14px; }
.wh__rentals__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}
.wh__rental {
  background: var(--surface);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.wh__rental strong {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.wh__rental span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

/* ---- reviews ---- */
.reviews { background: var(--surface); }
.reviews__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.review {
  margin: 0;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}
.review__mark {
  font-family: var(--font-sans);
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: -12px;
}
.review blockquote {
  margin: 0;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-wrap: pretty;
  max-width: 52ch;
}
.review figcaption {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  gap: 16px;
  flex-wrap: wrap;
}
.review__who strong {
  display: block;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.review__who span {
  color: var(--muted);
  font-size: 13px;
}
.review__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.reviews__logos {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 36px;
}
.reviews__logos__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.reviews__logos__row {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: center;
}
.reviews__logo {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  color: var(--muted);
  letter-spacing: -0.015em;
}
.reviews__logo:nth-child(3n) {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.reviews__logo:nth-child(3n+1) {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.015em;
}

/* ---- news ---- */
.news { background: var(--surface-2); }
.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.news-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px oklch(0.22 0.06 260 / 0.08);
}
.news-card__media {
  aspect-ratio: 16/9;
  background:
    repeating-linear-gradient(135deg,
      var(--surface-2) 0px, var(--surface-2) 14px,
      var(--surface-3) 14px, var(--surface-3) 28px);
  position: relative;
  display: grid;
  place-items: center;
}
.news-card__date {
  background: var(--ink);
  color: var(--surface);
  padding: 12px 16px;
  border-radius: var(--radius);
  text-align: center;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.news-card__date .d {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.news-card__date .m {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: oklch(0.78 0.02 260);
  margin-top: 4px;
}
.news-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--surface);
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.news-card h3 {
  margin: 0 24px;
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.015em;
  line-height: 1.25;
  text-wrap: pretty;
}
.news-card p {
  margin: 0 24px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
  text-wrap: pretty;
  flex: 1;
}
.news-card__link {
  margin: 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.news-card__link:hover { color: var(--accent-ink); }

@media (max-width: 1100px) {
  .wh__grid { grid-template-columns: 1fr 1fr; }
  .wh__rentals { grid-template-columns: 1fr; gap: 24px; }
  .reviews__grid { grid-template-columns: 1fr; }
  .news__grid { grid-template-columns: 1fr 1fr; }
  .reviews__logos { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 720px) {
  .wh__grid { grid-template-columns: 1fr; }
  .wh__rentals__list { grid-template-columns: 1fr; }
  .news__grid { grid-template-columns: 1fr; }
  .review { padding: 28px 24px 24px; }
  .review blockquote { font-size: 17px; }
}


/* ===== Inner page shared styles ===== */

/* Page hero (slim, for inner pages) */
.phero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding-top: calc(56px * var(--density));
  padding-bottom: calc(72px * var(--density));
}
.phero__crumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 56px;
}
.phero__crumb a { color: var(--muted); }
.phero__crumb a:hover { color: var(--ink); }
.phero__crumb .sep { opacity: 0.5; }

.phero__body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
}
.phero__copy { max-width: 760px; }
.phero__h { margin: 0; }
.phero__lede {
  margin-top: 28px;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 56ch;
  text-wrap: pretty;
}
.phero__side {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-left: 32px;
  border-left: 1px solid var(--border);
}
.phero__accent {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  line-height: 1.5;
}
.phero__accent strong {
  display: block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 4px;
}
.phero__meta {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  row-gap: 14px;
  column-gap: 24px;
}
.phero__meta dt {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  align-self: center;
}
.phero__meta dd {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  text-align: right;
}

@media (max-width: 1100px) {
  .phero__body { grid-template-columns: 1fr; gap: 32px; }
  .phero__side { padding-left: 0; border-left: none; border-top: 1px solid var(--border); padding-top: 24px; }
}

/* CTA banner (bottom of every inner page) */
.cta-banner {
  background: var(--navy-deep);
  color: var(--surface);
  padding: calc(72px * var(--density)) 0;
}
.cta-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.cta-banner h2 em { font-style: normal; font-weight: 500; color: var(--accent); }
.cta-banner p {
  margin: 16px 0 0;
  color: oklch(0.85 0.02 260);
  max-width: 52ch;
  font-size: 17px;
  line-height: 1.5;
}
.cta-banner__btns { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 1100px) {
  .cta-banner__inner { grid-template-columns: 1fr; }
}

/* Service-detail rows used on services.html */
.svc-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 48px;
  padding: 56px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.svc-row:last-child { border-bottom: 1px solid var(--border); }
.svc-row__n {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--muted);
  padding-top: 6px;
}
.svc-row__head h3 {
  margin: 0 0 12px 0;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.svc-row__head h3 em { font-style: normal; font-weight: 500; }
.svc-row__head p {
  margin: 0;
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.5;
  max-width: 42ch;
}
.svc-row__detail {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.svc-row__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.svc-row__feature {
  background: var(--surface);
  padding: 14px 16px;
}
.svc-row__feature h5 {
  margin: 0 0 2px 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.svc-row__feature span {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}
.svc-row__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.svc-row__tags span {
  padding: 4px 10px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 1100px) {
  .svc-row { grid-template-columns: 1fr; gap: 24px; padding: 40px 0; }
}

/* Industry detail rows */
.ind-row {
  display: grid;
  grid-template-columns: 56px 1.4fr 1fr auto;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  align-items: center;
}
.ind-row:last-child { border-bottom: 1px solid var(--border); }
.ind-row__icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--ink);
}
.ind-row__name {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.ind-row__desc {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
  max-width: 44ch;
}
.ind-row__num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
@media (max-width: 1100px) {
  .ind-row { grid-template-columns: 56px 1fr; gap: 16px; }
  .ind-row__desc, .ind-row__num { grid-column: 2; }
}

/* Office card (coverage + contact) */
.office {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.office__badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--surface);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.office__city {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}
.office__city em { font-style: normal; font-weight: 500; }
.office__addr {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0;
}
.office__rows {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.office__rows dt {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.office__rows dd {
  margin: 0;
  font-size: 14px;
  color: var(--ink);
}

/* Career path detail card */
.path {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.path__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent);
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
}
.path__h {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}
.path__h em { font-style: normal; font-weight: 500; }
.path__body {
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.5;
}
.path__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.path__list li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.45;
}
.path__list li::before {
  content: "—";
  color: var(--accent);
  font-weight: 500;
}
.path__cta { margin-top: auto; padding-top: 12px; }

/* Compact lanes table on coverage page */
.lanes-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.lanes-table__head, .lanes-table__row {
  display: grid;
  grid-template-columns: 60px 1.4fr 1.4fr 1fr 1fr 100px;
  gap: 16px;
  padding: 14px 24px;
  align-items: center;
  font-size: 14px;
}
.lanes-table__head {
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.lanes-table__row {
  border-bottom: 1px solid var(--border);
}
.lanes-table__row:last-child { border-bottom: none; }
.lanes-table__row .km { font-family: var(--font-mono); color: var(--muted); }
.lanes-table__row .lane { font-family: var(--font-mono); color: var(--muted); font-size: 12px; }
.lanes-table__row .status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 10px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  font-size: 11px;
  color: var(--ink-2);
  justify-self: end;
}
.lanes-table__row .status::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: oklch(0.74 0.158 62);
}
@media (max-width: 1100px) {
  .lanes-table__head, .lanes-table__row { grid-template-columns: 1fr 1fr; }
  .lanes-table__head .hide-md, .lanes-table__row .hide-md { display: none; }
}


/* ===== Fleet showcase ===== */
.fleet { background: var(--surface); }
.fleet__grid {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1fr 1.3fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
}
.fleet__card {
  position: relative;
  background: var(--surface);
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
}
.fleet__card--wide {
  aspect-ratio: 4/5;
}
.fleet__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.3,1);
  display: block;
}
.fleet__card:hover img { transform: scale(1.04); }

.fleet__card::after {
  /* dark bottom gradient — kept faint for visual depth even without overlay text */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    oklch(0.10 0.04 260 / 0.20) 0%,
    transparent 30%);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 320ms ease;
}
.fleet__card:hover::after { opacity: 1; }
.fleet__overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px 22px 22px;
  z-index: 2;
  color: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fleet__unit {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  background: var(--accent);
  color: var(--accent-ink);
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 6px;
}
.fleet__make {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0;
}
.fleet__desc {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: oklch(0.92 0.01 260);
  max-width: 38ch;
  /* Fade in on hover for cleaner look */
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 280ms ease, max-height 320ms ease, margin-top 280ms ease;
}
.fleet__card:hover .fleet__desc {
  opacity: 1;
  max-height: 120px;
  margin-top: 4px;
}
.fleet__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.fleet__tags span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: oklch(0.95 0.01 260);
  border: 1px solid oklch(1 0 0 / 0.25);
  background: oklch(1 0 0 / 0.06);
  padding: 3px 8px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.fleet__stat-row {
  display: grid;
  grid-template-columns: repeat(4, auto) 1fr;
  gap: 32px;
  align-items: center;
  padding: 28px 0 0;
  border-top: 1px solid var(--border);
}
.fleet__stat-row > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fleet__stat-row > div b {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
}
.fleet__stat-row > div span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.fleet__stat-row > a {
  justify-self: end;
}

@media (max-width: 1200px) {
  .fleet__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .fleet__card, .fleet__card--wide { aspect-ratio: 4/3; }
}
@media (max-width: 720px) {
  .fleet__grid { grid-template-columns: 1fr; }
  .fleet__stat-row {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .fleet__stat-row > a { grid-column: 1 / -1; justify-self: stretch; }
  /* On mobile always show descriptions since no hover */
  .fleet__desc {
    opacity: 1;
    max-height: 120px;
    margin-top: 4px;
  }
}

/* ===== Drive section real image ===== */
.drive__visual {
  aspect-ratio: 4/3;
  background: var(--ink);
  border-radius: var(--radius-lg);
  position: relative;
  display: block;
  overflow: hidden;
}
.drive__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.drive__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(0.14 0.05 260 / 0.45) 0%, transparent 45%);
  pointer-events: none;
  z-index: 1;
}
.drive__visual .corner,
.drive__visual .badge {
  z-index: 2;
  backdrop-filter: blur(8px);
}
.drive__visual .corner {
  background: oklch(0.14 0.05 260 / 0.7);
  padding: 6px 10px;
  border-radius: 4px;
  color: oklch(0.92 0.01 260);
}


/* ===== Mobile menu (hamburger + drawer) ===== */
.nav__burger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: var(--surface);
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav__burger span {
  display: block;
  position: absolute;
  left: 12px; right: 12px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 200ms ease, opacity 180ms ease, top 200ms ease;
}
.nav__burger span:nth-child(1) { top: 15px; }
.nav__burger span:nth-child(2) { top: 21px; }
.nav__burger span:nth-child(3) { top: 27px; }
.nav--open .nav__burger span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav--open .nav__burger span:nth-child(2) { opacity: 0; }
.nav--open .nav__burger span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.nav__drawer {
  position: fixed;
  top: 76px;
  left: 0; right: 0; bottom: 0;
  background: var(--surface);
  z-index: 40;
  padding: 24px var(--pad-x);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 220ms ease, transform 240ms ease, visibility 0s linear 240ms;
}
.nav--open .nav__drawer {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 220ms ease, transform 240ms ease, visibility 0s;
}
.nav__drawer-links {
  display: flex;
  flex-direction: column;
}
.nav__drawer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
}
.nav__drawer-links a:first-child { border-top: 1px solid var(--border); }
.nav__drawer-links a.is-current {
  color: var(--accent-ink);
}
.nav__drawer-links a.is-current::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 12px;
}
.nav__drawer-foot {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 32px;
}
.nav__drawer-foot .btn { justify-content: center; height: 52px; font-size: 15px; }
.nav__drawer-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.nav__drawer-meta span:first-child { color: var(--ink); font-size: 16px; font-weight: 500; letter-spacing: -0.01em; }

/* show burger / hide desktop CTAs below 1180px */
@media (max-width: 1180px) {
  .nav__cta-quote { display: none; }
  .nav__burger { display: block; }
}

/* ===== Comprehensive mobile pass (=720px and below) ===== */
@media (max-width: 720px) {
  :root {
    --pad-x: 18px;
  }
  body { font-size: 15px; }

  /* tighter section spacing */
  .section {
    padding-top: calc(56px * var(--density));
    padding-bottom: calc(56px * var(--density));
  }
  .section--tight {
    padding-top: calc(36px * var(--density));
    padding-bottom: calc(36px * var(--density));
  }

  /* Nav */
  .nav__inner { height: 64px; }
  .nav__drawer { top: 64px; padding-top: 16px; }
  .logo__name { font-size: 15px; }
  .logo__name small { font-size: 8px; }
  .logo__mark { width: 32px; height: 32px; font-size: 16px; }

  /* Utility bar — single line, simplified */
  .utility { font-size: 11px; }
  .utility__inner { height: 32px; gap: 12px; }
  .utility__left { gap: 12px; }
  .utility__right { gap: 10px; }

  /* Hero */
  .hero__inner {
    padding-top: 36px;
    padding-bottom: 24px;
    gap: 32px;
  }
  .hero__eyebrow { margin-bottom: 20px; }
  .hero__eyebrow .rule { flex: 0 0 20px; }
  .h-display { font-size: clamp(34px, 9vw, 48px); line-height: 1.0; }
  .hero__sub { font-size: 16px; margin-top: 20px; }
  .hero__cta { margin-top: 28px; gap: 10px; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .hero__cta .since { width: 100%; text-align: center; margin-left: 0; margin-top: 4px; font-size: 10px; }
  .hero__visual { aspect-ratio: 4/3; }
  .hero__visual__pin { width: 76px; height: 76px; font-size: 9px; }

  /* Lane ticker */
  .ticker__row { gap: 28px; padding: 14px 0; font-size: 11px; }

  /* Trust strip */
  .trust__logos { gap: 24px; }
  .trust__logo { font-size: 15px !important; }
  .trust__logo.mono { font-size: 12px !important; }

  /* Stats */
  .stats__inner {
    grid-template-columns: 1fr 1fr;
    padding: 36px 0;
    gap: 24px;
  }
  .stat {
    padding: 12px 0 !important;
    border-left: none !important;
    border-top: 1px solid oklch(0.32 0.04 260);
  }
  .stat:nth-child(-n+2) { border-top: none; }
  .stat__num { font-size: clamp(36px, 11vw, 52px); }
  .stat__caption { font-size: 12px; max-width: 100%; }

  /* Fleet */
  .fleet__grid { grid-template-columns: 1fr; }
  .fleet__card, .fleet__card--wide, .fleet__card--tall { aspect-ratio: 16/10; }
  .fleet__stat-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-top: 20px;
  }
  .fleet__stat-row > a {
    grid-column: 1 / -1;
    justify-self: stretch;
  }
  .fleet__stat-row > a.btn { justify-content: center; }
  .fleet__stat-row > div b { font-size: 28px; }

  /* Section headers */
  .sec-head { margin-bottom: 32px; }
  .h-section { font-size: clamp(28px, 7.5vw, 40px) !important; }
  .h-card { font-size: 18px; }

  /* Capabilities & general grids */
  .caps__grid, .caps__grid--4 { grid-template-columns: 1fr; }
  .cap { min-height: 220px; padding: 28px 24px; }
  .cap__arrow { display: none; }

  /* Why us */
  .why__grid { grid-template-columns: 1fr; }
  .why__item {
    grid-template-columns: 60px 1fr;
    padding: 28px 0;
    gap: 16px;
  }
  .why__item h3 { font-size: 18px; }
  .why__item p { font-size: 14px; }

  /* Reviews */
  .reviews__grid { grid-template-columns: 1fr; gap: 20px; }
  .review { padding: 28px 22px 24px; gap: 20px; }
  .review__mark { font-size: 48px; margin-bottom: -8px; }
  .review blockquote { font-size: 16px; }
  .reviews__logos { grid-template-columns: 1fr; gap: 16px; padding-top: 28px; }
  .reviews__logos__row { gap: 20px; }
  .reviews__logo { font-size: 14px !important; }

  /* Quote form */
  .quote__inner { gap: 32px; }
  .quote__copy .details { grid-template-columns: 1fr; gap: 20px; padding-top: 24px; margin-top: 28px; }
  .form { padding: 22px; gap: 14px; }
  .form__row.two, .form__row.three { grid-template-columns: 1fr; }
  .eq-row { grid-template-columns: 1fr 1fr; }
  .form__submit { flex-direction: column-reverse; align-items: stretch; }
  .form__submit .btn { width: 100%; justify-content: center; }

  /* Industries */
  .ind-grid { grid-template-columns: 1fr 1fr; }
  .ind { min-height: 140px; padding: 20px 16px; }
  .ind__name { font-size: 14px; }
  .ind__loads { font-size: 9px; }

  /* Drive */
  .drive__inner { gap: 32px; }
  .drive__visual { aspect-ratio: 4/3; }
  .drive__perks { grid-template-columns: 1fr; gap: 14px 0; margin-top: 24px; }
  .perk { padding-top: 16px; }
  .drive__visual .badge { font-size: 9px; padding: 4px 8px; }

  /* News */
  .news__grid { grid-template-columns: 1fr; gap: 20px; }
  .news-card { padding-bottom: 24px; }
  .news-card h3 { font-size: 17px; }
  .news-card__media { aspect-ratio: 16/10; }

  /* Footer */
  .footer { padding-top: 48px; padding-bottom: 24px; }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }
  .footer__brand h4 { font-size: 22px; }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    font-size: 10px;
    gap: 8px;
  }

  /* CTA banner */
  .cta-banner { padding: 48px 0; }
  .cta-banner__inner { gap: 24px; }
  .cta-banner__btns { width: 100%; }
  .cta-banner__btns .btn { width: 100%; justify-content: center; }
  .cta-banner h2 + p { font-size: 15px; }

  /* Page hero (inner pages) */
  .phero {
    padding-top: 32px;
    padding-bottom: 44px;
  }
  .phero__crumb { margin-bottom: 28px; }
  .phero__lede { font-size: 16px; margin-top: 20px; }
  .phero__meta { grid-template-columns: 1fr auto; row-gap: 12px; }
  .phero__side { padding-top: 20px; gap: 20px; }

  /* Inner page service rows */
  .svc-row { padding: 32px 0; }
  .svc-row__head h3 { font-size: 26px; }
  .svc-row__features { grid-template-columns: 1fr; }

  /* Industries detail rows */
  .ind-row {
    grid-template-columns: 44px 1fr;
    gap: 12px 16px;
    padding: 22px 0;
  }
  .ind-row__icon { width: 36px; height: 36px; }
  .ind-row__name { font-size: 18px; }
  .ind-row__desc, .ind-row__num { grid-column: 1 / -1; }
  .ind-row__num { justify-self: start; padding-top: 4px; }

  /* Career paths */
  .path { padding: 28px 24px; gap: 14px; }
  .path__h { font-size: 22px; }

  /* Offices (contact + coverage) */
  .offices-grid { grid-template-columns: 1fr !important; }
  .office { padding: 28px 24px; }
  .office__city { font-size: 26px; }
  .office__rows { grid-template-columns: 1fr; gap: 6px 0; }
  .office__rows dt { padding-top: 8px; }
  .office__rows dt:first-child { padding-top: 0; }
}

/* Very small screens — squeeze a bit more */
@media (max-width: 380px) {
  .nav__cta { gap: 6px; }
  .logo__name small { display: none; }
  .stats__inner { grid-template-columns: 1fr; }
  .stat { border-top: 1px solid oklch(0.32 0.04 260) !important; }
  .stat:first-child { border-top: none !important; }
  .ind-grid { grid-template-columns: 1fr; }
  .eq-row { grid-template-columns: 1fr; }
}

/* Tablet refinements (721-1100px) */
@media (min-width: 721px) and (max-width: 1100px) {
  .offices-grid { grid-template-columns: 1fr 1fr !important; }
  .section {
    padding-top: calc(72px * var(--density));
    padding-bottom: calc(72px * var(--density));
  }
  .hero__cta .since { font-size: 11px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: 1 / -1; }
}


/* ===== Refinement pass ===== */

/* Accent-colored emphasis span used in headlines via *asterisk* markup */
.hl-accent {
  color: var(--accent-ink);
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.hl-accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0.04em;
  height: 0.32em;
  background: var(--accent);
  z-index: -1;
  opacity: 0.85;
}

/* Tighter hero — less aggressive bottom whitespace, taller visual */
.hero__inner {
  padding-top: calc(72px * var(--density));
  padding-bottom: calc(48px * var(--density));
  align-items: stretch;
}
.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 24px;
}
.hero__visual {
  aspect-ratio: 4/5;
}
@media (min-width: 1101px) {
  .hero__visual { aspect-ratio: 4/5.2; }
}

/* Fleet: uniform 2x2 grid with consistent aspect, larger and calmer */
.fleet__grid {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  background: transparent;
  border: none;
  border-radius: 0;
}
.fleet__card,
.fleet__card--tall,
.fleet__card--wide {
  aspect-ratio: 16/10;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.fleet__card::after { display: none; }

@media (max-width: 720px) {
  .fleet__grid { grid-template-columns: 1fr; gap: 12px; }
}

/* Trust strip: a touch more breathing room */
.trust__inner { padding: 40px 0; }

/* Section header refinement — slightly tighter gap */
.sec-head { margin-bottom: 64px; align-items: end; gap: 64px; }

/* Stats: a little extra polish */
.stats__inner { padding: 72px 0; }

/* Why grid — add a touch of horizontal divider rhythm */
.why__grid {
  margin-top: 8px;
}

/* News + Industries section padding alignment */
.section { padding-top: calc(88px * var(--density)); padding-bottom: calc(88px * var(--density)); }

/* Tighter quote form section */
.quote { padding: calc(96px * var(--density)) 0; }

/* Lane ticker — calmer */
.ticker__row { padding: 16px 0; }

/* Make hero CTA "since" tag align cleaner */
.hero__cta .since {
  margin-left: auto;
  align-self: center;
}
@media (max-width: 720px) {
  .hero__cta .since { margin-left: 0; }
}

/* Ensure the inner pages' PageHero feels balanced */
.phero { padding-top: calc(48px * var(--density)); padding-bottom: calc(64px * var(--density)); }
.phero__crumb { margin-bottom: 48px; }


/* ===== Image logo (replaces text wordmark) ===== */

/* Nav logo */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo__img {
  display: block;
  height: 54px;
  width: 54px;
  object-fit: contain;
  object-position: center;
  /* Crop the slight white padding around the circular badge */
  transform: scale(1.18);
  transform-origin: center;
}

/* Make the nav slightly taller to accommodate the logo */
.nav__inner { height: 80px; }

/* Footer logo */
.footer__logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  text-decoration: none;
}
.footer__logo img {
  display: block;
  height: 96px;
  width: 96px;
  object-fit: contain;
  transform: scale(1.18);
  transform-origin: left center;
}

/* Mobile sizing */
@media (max-width: 720px) {
  .nav__inner { height: 64px; }
  .logo__img { height: 42px; width: 42px; }
  .nav__drawer { top: 64px; }
  .footer__logo img { height: 76px; width: 76px; }
}
@media (max-width: 380px) {
  .logo__img { height: 38px; width: 38px; }
}


/* Fully-white background pass — cards rely on borders, not bg, for separation */
.review {
  background: #ffffff;
  border-color: var(--border);
  box-shadow: 0 1px 0 var(--border);
}
.news-card { background: #ffffff; }

/* Card-style hover feedback now uses surface-3 (slightly grey) instead of surface-2 (which is now white) */
.cap:hover,
.ind:hover,
.wh__item:hover {
  background: var(--surface-3);
}
.btn--ghost:hover { background: var(--surface-3); }

/* lane table & ticker pill backgrounds restore a faint tone via surface-3 */
.lanes-table__head { background: var(--surface-3); }
.ticker__item .status { background: #ffffff; }


/* ===== Quote form success state ===== */
.form__success {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-height: 360px;
  justify-content: center;
}
.form__success-mark {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: grid;
  place-items: center;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 8px;
}
.form__success h3 {
  margin: 0;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.form__success p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 42ch;
}
.form__success .btn { margin-top: 12px; }
.btn:disabled { opacity: 0.6; cursor: progress; }
@media (max-width: 720px) {
  .form__success { padding: 32px 24px; min-height: 280px; }
}


/* ===== News card images ===== */
.news-card__media {
  position: relative;
  overflow: hidden;
}
.news-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms cubic-bezier(.2,.7,.3,1);
  z-index: 0;
}
.news-card:hover .news-card__img { transform: scale(1.05); }
/* date badge moves to bottom-left, sits above image */
.news-card__media .news-card__date {
  position: absolute;
  bottom: 14px;
  left: 14px;
  top: auto;
  z-index: 2;
  box-shadow: 0 4px 14px oklch(0.14 0.05 260 / 0.35);
}
.news-card__tag { z-index: 2; }
/* subtle gradient so the tag chip + date read cleanly over any photo */
.news-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, oklch(0.14 0.05 260 / 0.28) 0%, transparent 30%, transparent 65%, oklch(0.14 0.05 260 / 0.30) 100%);
  z-index: 1;
  pointer-events: none;
}


/* ===== Application modal ===== */
.amodal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
}
.amodal__backdrop {
  position: absolute;
  inset: 0;
  background: oklch(0.14 0.05 260 / 0.55);
  backdrop-filter: blur(4px);
  animation: amodalFade 200ms ease;
}
@keyframes amodalFade { from { opacity: 0; } to { opacity: 1; } }
.amodal__card {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px oklch(0.14 0.05 260 / 0.4);
  padding: 40px;
  animation: amodalRise 240ms cubic-bezier(.2,.7,.3,1);
}
@keyframes amodalRise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.amodal__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink-2);
  font-size: 14px;
  display: grid;
  place-items: center;
  transition: background 160ms ease, color 160ms ease;
}
.amodal__close:hover { background: var(--surface-3); color: var(--ink); }

.amodal__head { margin-bottom: 24px; padding-right: 36px; }
.amodal__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 10px;
}
.amodal__title {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.amodal__sub { margin: 0; font-size: 14px; color: var(--ink-2); line-height: 1.5; }

.amodal__form { display: flex; flex-direction: column; gap: 16px; }
.aform__row { display: grid; gap: 16px; }
.aform__row.two { grid-template-columns: 1fr 1fr; }
.afield { display: flex; flex-direction: column; gap: 6px; }
.afield label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.afield input, .afield select, .afield textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 11px 12px;
  outline: none;
  transition: border-color 160ms ease;
}
.afield input:focus, .afield select:focus, .afield textarea:focus { border-color: var(--accent); }
.afield textarea { resize: vertical; }
.afield__readonly { background: var(--surface-3); color: var(--ink-2); cursor: default; }

/* file drop zone */
.afile-drop {
  border: 1.5px dashed var(--border-strong);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}
.afile-drop:hover, .afile-drop.is-over { border-color: var(--accent); background: var(--surface-3); }
.afile-drop__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface-3);
  color: var(--ink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.afile-drop__text { font-size: 14px; color: var(--ink-2); line-height: 1.4; }
.afile-drop__text strong { color: var(--ink); font-weight: 500; }
.afile-drop__text span { font-size: 12px; color: var(--muted); }

.afile-list { list-style: none; margin: 10px 0 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.afile-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: var(--surface-3);
  border-radius: var(--radius);
  font-size: 13px;
}
.afile-list__name { flex: 1; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.afile-list__size { font-family: var(--font-mono); font-size: 11px; color: var(--muted); }
.afile-list li button {
  border: none; background: none; color: var(--muted);
  cursor: pointer; font-size: 13px; padding: 2px 4px;
}
.afile-list li button:hover { color: oklch(0.6 0.2 25); }

.amodal__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.amodal__meta { font-family: var(--font-mono); font-size: 11px; color: var(--muted); letter-spacing: 0.02em; flex: 1; min-width: 180px; }

.amodal__success { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 24px 8px; }
.amodal__success-mark {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent); color: var(--accent-ink);
  display: grid; place-items: center; font-size: 26px; font-weight: 600;
}
.amodal__success h3 { margin: 0; font-size: 24px; font-weight: 500; letter-spacing: -0.02em; }
.amodal__success p { margin: 0; font-size: 14px; color: var(--ink-2); line-height: 1.55; max-width: 42ch; }
.amodal__success .btn { margin-top: 12px; }

@media (max-width: 620px) {
  .amodal { padding: 0; }
  .amodal__card { max-height: 100dvh; border-radius: 0; padding: 28px 20px; width: 100%; }
  .aform__row.two { grid-template-columns: 1fr; }
}


/* ===== Blog index — featured ===== */
.blog-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  transition: box-shadow 240ms ease, transform 240ms ease;
}
.blog-feature:hover { box-shadow: 0 18px 50px oklch(0.14 0.05 260 / 0.12); transform: translateY(-2px); }
.blog-feature__media { position: relative; min-height: 320px; overflow: hidden; }
.blog-feature__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 500ms cubic-bezier(.2,.7,.3,1); }
.blog-feature:hover .blog-feature__media img { transform: scale(1.04); }
.blog-feature__tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: var(--surface); color: var(--ink-2);
  padding: 5px 12px; border-radius: 999px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
}
.blog-feature__body { padding: 44px; display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.blog-feature__label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-ink);
}
.blog-feature__body h2 { margin: 0; font-size: clamp(26px, 2.6vw, 36px); font-weight: 500; letter-spacing: -0.02em; line-height: 1.1; }
.blog-feature__body p { margin: 0; font-size: 16px; color: var(--ink-2); line-height: 1.55; max-width: 46ch; }
.blog-feature__meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 8px; font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.blog-feature__cta { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 500; letter-spacing: -0.01em; font-family: var(--font-sans); font-size: 14px; }
@media (max-width: 860px) {
  .blog-feature { grid-template-columns: 1fr; }
  .blog-feature__media { min-height: 220px; }
  .blog-feature__body { padding: 28px 24px; }
}

/* news-card as anchor — keep look identical, kill underline */
a.news-card { text-decoration: none; color: inherit; }

/* ===== Single post ===== */
.post { background: var(--surface); }
.post__head { padding-top: calc(40px * var(--density)); padding-bottom: 28px; max-width: 820px; }
.post__head .phero__crumb { margin-bottom: 32px; }
.post__tag {
  display: inline-block;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-ink); background: var(--accent);
  padding: 4px 12px; border-radius: 999px; margin-bottom: 20px;
}
.post__title { margin: 0; font-size: clamp(32px, 4.4vw, 56px); font-weight: 500; letter-spacing: -0.025em; line-height: 1.05; max-width: 18ch; }
.post__meta { display: flex; align-items: center; gap: 10px; margin-top: 20px; font-family: var(--font-mono); font-size: 12px; color: var(--muted); letter-spacing: 0.02em; }
.post__meta .dot { opacity: 0.5; }

.post__hero { margin-top: 8px; margin-bottom: 48px; }
.post__hero img { width: 100%; aspect-ratio: 16/8; object-fit: cover; border-radius: var(--radius-lg); border: 1px solid var(--border); display: block; }

.post__body { max-width: 720px; padding-bottom: calc(72px * var(--density)); }
.post__body p { font-size: 18px; line-height: 1.7; color: var(--ink-2); margin: 0 0 24px; text-wrap: pretty; }
.post__body h2 { font-size: 26px; font-weight: 500; letter-spacing: -0.02em; margin: 40px 0 16px; color: var(--ink); }
.post__list { margin: 0 0 24px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.post__list li {
  display: grid; grid-template-columns: 20px 1fr; gap: 12px;
  font-size: 17px; line-height: 1.6; color: var(--ink-2);
}
.post__list li::before { content: "—"; color: var(--accent); font-weight: 600; }

.post__share {
  display: flex; align-items: center; gap: 14px;
  margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
}
.post__share a {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border-strong);
  display: grid; place-items: center; color: var(--ink-2); font-size: 13px;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}
.post__share a:hover { background: var(--ink); color: var(--surface); border-color: var(--ink); }
.post__share .post__back { width: auto; border-radius: 999px; padding: 0 16px; height: 34px; margin-left: auto; font-family: var(--font-sans); font-size: 13px; letter-spacing: -0.01em; text-transform: none; }
@media (max-width: 720px) {
  .post__body p { font-size: 16px; }
  .post__list li { font-size: 15px; }
  .post__share .post__back { margin-left: 0; width: 100%; justify-content: center; margin-top: 12px; }
  .post__share { flex-wrap: wrap; }
}


/* ===== About — team cards ===== */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.team-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.team-card__avatar {
  flex-shrink: 0;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--surface);
  display: grid;
  place-items: center;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -0.02em;
  border: 1px solid var(--border);
}
.team-card:nth-child(2) .team-card__avatar { background: var(--accent); color: var(--accent-ink); }
.team-card__role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.team-card__name {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.team-card__bio {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 42ch;
}
@media (max-width: 860px) {
  .team-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .team-card { flex-direction: column; align-items: flex-start; gap: 18px; padding: 24px; }
}

.team-card__avatar { overflow: hidden; }
.team-card__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
