:root {
  --bg: #050505;
  --surface: #0d0d0c;
  --surface-2: #121210;
  --line: #242420;
  --line-soft: rgba(255, 255, 255, 0.09);
  --ink: #f2f2ed;
  --muted: #92928a;
  --gold: #f3a83b;
  --gold-dim: #ce9138;
  --display: "Oswald", sans-serif;
  --team-display: "Space Grotesk", sans-serif;
  --body: "Inter", sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --header-h: 68px;
  --page-gutter: clamp(20px, 3.1vw, 52px);
  --scene-width: min(1504px, calc(100% - (var(--page-gutter) * 2)));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
button, a { color: inherit; }
a { text-decoration: none; }
img, svg, canvas { display: block; }
::selection { color: #050505; background: var(--gold); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #050505;
  background: var(--gold);
  font: 500 12px var(--mono);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.mono-label {
  margin: 0;
  color: var(--muted);
  font: 500 11px/1.4 var(--mono);
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.gold { color: var(--gold); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--page-gutter);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.66));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(calc(-100% - 1px));
  transition: transform 320ms cubic-bezier(.22, 1, .36, 1), opacity 220ms ease, visibility 0s linear 320ms;
  will-change: transform;
}
.site-header.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}
.brand {
  display: inline-flex;
  justify-self: start;
  align-items: center;
  color: var(--ink);
  font: 600 clamp(14px, 1.2vw, 16px)/1 var(--team-display);
  letter-spacing: -.015em;
  white-space: nowrap;
}
.site-header nav { display: flex; align-items: stretch; height: 100%; }
.site-header nav a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 clamp(10px, 1.35vw, 22px);
  color: #b8b8b1;
  font: 500 11px var(--mono);
  letter-spacing: 0.04em;
  transition: color 180ms ease;
}
.site-header nav a span { color: #65655f; font-size: 9px; }
.site-header nav a::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: -1px;
  left: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 180ms ease;
}
.site-header nav a:hover,
.site-header nav a.active { color: var(--ink); }
.site-header nav a.active::after { transform: scaleX(1); }
.header-status {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font: 400 10px var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.header-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 9px rgba(243, 168, 59, 0.8);
  animation: status-pulse 2s ease-in-out infinite;
}
.header-status span { color: #494944; }
@keyframes status-pulse { 50% { opacity: 0.45; } }

.hero-section {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 38%, rgba(243, 168, 59, 0.035), transparent 28%),
    var(--bg);
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.016) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.016) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 70%, transparent);
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  touch-action: none;
}
.content-wrap { width: min(1180px, calc(100% - 64px)); margin: 0 auto; }

.team-section {
  position: relative;
  padding: clamp(140px, 13vw, 210px) 0 clamp(100px, 9vw, 150px);
  background: var(--bg);
}
.team-intro { padding: 0 0 clamp(80px, 8vw, 112px); }
.team-intro h2 {
  max-width: 25ch;
  margin: 0;
  color: var(--ink);
  font: 600 clamp(34px, 4.4vw, 52px)/1.19 var(--team-display);
  letter-spacing: -0.02em;
}
.team-intro h2 em { color: var(--gold); font-style: normal; }
.team-intro h2 .muted { color: #5f5f5a; }
.type-char { opacity: 0; }
.type-char.on { opacity: 1; }
.type-char.caret {
  padding-right: .18em;
  margin-right: calc(-.18em - 2px);
  border-right: 2px solid var(--gold);
  animation: caret-blink .85s step-end infinite;
}
@keyframes caret-blink { 50% { border-color: transparent; } }

.engineering-team { padding: clamp(28px, 3vw, 48px) 0 0; }
.team-wrap { width: min(1120px, calc(100% - 64px)); margin: 0 auto; }
.team-section-head {
  margin: 0;
  font: 600 clamp(24px, 3vw, 34px)/1.2 var(--team-display);
  letter-spacing: -.02em;
}
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 36px;
}
.pcard {
  position: relative;
  min-width: 210px;
  max-width: 258px;
  display: flex;
  flex: 1 1 230px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #262626;
  border-radius: 4px;
  background: #141414;
  transition: transform .2s ease;
}
.pcard:hover { transform: translateY(-3px); }
.bbox {
  position: absolute;
  z-index: 4;
  inset: 6px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  overflow: visible;
  pointer-events: none;
}
.bbox path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
}
.pcard:hover .photo .bbox path,
.pcard:focus-visible .photo .bbox path {
  stroke-dashoffset: 0 !important;
  transition: stroke-dashoffset .6s ease;
}
.photo { position: relative; aspect-ratio: 1; overflow: hidden; background: #cdd0c6; }
.photo img { position: relative; z-index: 1; display: block; width: 100%; height: 100%; object-fit: cover; }
.photo .bbox { z-index: 2; }
.photo .tag { z-index: 3; }
.pbody { min-height: 250px; display: flex; flex: 1; flex-direction: column; padding: 18px; }
.pbody h4 { margin: 0; font: 600 18px/1.3 var(--team-display); letter-spacing: -.01em; }
.crole {
  margin-top: 4px;
  color: var(--gold);
  font: italic 500 15px/1.35 "Newsreader", serif;
}
.pbody > p { margin: 12px 0 0; color: var(--muted); font-size: 13.5px; line-height: 1.55; }
.prev { margin-top: auto; padding-top: 14px; }
.prev-cap { color: var(--muted); font: 400 10px var(--mono); letter-spacing: .16em; text-transform: uppercase; }
.prev-logos { min-height: 18px; display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; margin-top: 8px; color: var(--muted); }
.prev-logos svg { width: auto; height: 14px; fill: currentColor; transition: color .2s ease; }
.prev-logos .mask {
  display: inline-block;
  background: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.prev-logos .txt { font: 600 13px var(--team-display); letter-spacing: -.01em; }
.pcard:hover .prev-logos,
.pcard:focus-visible .prev-logos { color: var(--ink); }
.lg { position: relative; display: inline-flex; align-items: center; }
.lg::after {
  content: attr(data-name);
  position: absolute;
  z-index: 5;
  bottom: calc(100% + 7px);
  left: 50%;
  padding: 4px 7px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ink);
  background: #000;
  font: 400 10px var(--mono);
  letter-spacing: .04em;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%);
  transition: opacity .15s ease;
  white-space: nowrap;
}
.lg:hover::after { opacity: 1; }

.foundation-statement {
  min-height: min(72svh, 780px);
  display: grid;
  place-items: center;
  padding: clamp(90px, 12vw, 180px) var(--page-gutter);
  background: var(--bg);
}
.foundation-statement h2 {
  max-width: 17ch;
  margin: 0;
  color: var(--ink);
  font: 600 clamp(52px, 6.6vw, 78px)/1.08 var(--team-display);
  letter-spacing: -0.035em;
  text-align: center;
}
.foundation-statement h2 > span { display: block; }
.foundation-statement h2 em { color: var(--gold); font-style: normal; }
.foundation-statement h2 b {
  display: inline-block;
  margin-left: 0.12em;
  color: var(--ink);
  font-weight: inherit;
}

.visual-section {
  position: relative;
  min-height: 100svh;
  padding: clamp(72px, 6vw, 96px) 0 clamp(80px, 7vw, 112px);
  overflow: hidden;
  background: var(--bg);
}
.visual-section.has-open-dialog {
  z-index: 20;
  overflow: visible;
}
#transit {
  z-index: 2;
  padding-bottom: clamp(12px, 1.4vw, 22px);
  overflow: visible;
}
#warehouse {
  padding-top: clamp(12px, 1.4vw, 22px);
  padding-bottom: clamp(34px, 3.5vw, 56px);
}
#analytics {
  min-height: 0;
  padding-top: clamp(34px, 3.5vw, 56px);
  padding-bottom: clamp(40px, 3.5vw, 56px);
}
@media (min-width: 901px) {
  #transit { min-height: 90svh; }
  #warehouse { min-height: 85svh; }
}
.scene-shell {
  position: relative;
  width: var(--scene-width);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  overflow: hidden;
}
.scene-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
  inset: 0;
  background: linear-gradient(to right, var(--bg), transparent 5%, transparent 95%, var(--bg));
}
.scene-shell svg { width: 100%; height: 100%; }
.svg-subtitle { fill: #fff; font: 400 28px var(--body); letter-spacing: .4px; opacity: .96; }
.svg-subtitle.small { font-size: 25px; letter-spacing: .25px; }
.svg-cursor { fill: var(--gold); animation: cursor-blink .9s steps(1) infinite; }
@keyframes cursor-blink { 50%, 100% { opacity: 0; } }

#transit .scene-shell,
#warehouse .scene-shell,
#analytics .scene-shell { overflow: visible; }
#transit-cursor,
#warehouse-cursor,
#analytics-cursor { display: none; }
.transit-more {
  position: absolute;
  z-index: 10;
  top: 20.5%;
  left: 42%;
  opacity: 0;
  pointer-events: none;
  transform: translateY(5px);
  line-height: 0;
  transition: opacity 220ms ease, transform 220ms ease;
}
.transit-more.is-ready {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.transit-more-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 0 2px;
  border: 0;
  border-bottom: 1px solid rgba(158, 181, 200, .45);
  color: #9eb5c8;
  background: transparent;
  font: 400 clamp(7px, 1.6vw, 24px)/1.2 var(--body);
  letter-spacing: .01em;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease;
}
.transit-more-trigger span:last-child { font-size: .8em; transition: transform 180ms ease; }
.transit-more-trigger:hover,
.transit-more-trigger[aria-expanded="true"] { color: #c0d2df; border-color: currentColor; }
.transit-more-trigger:hover span:last-child { transform: translate(2px, -2px); }
.transit-more-dialog {
  position: absolute;
  top: -12px;
  left: calc(100% + 16px);
  width: min(460px, 55vw);
  max-height: min(680px, calc(100vh - 120px));
  padding: 21px 42px 21px 22px;
  overflow-y: auto;
  border: 1px solid rgba(158, 181, 200, .32);
  border-radius: 5px;
  color: #c8c8c1;
  background: #0d0d0c;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .55);
}
.transit-more-dialog[hidden] { display: none; }
.transit-more-dialog p { margin: 0; font: 400 14px/1.62 var(--body); }
.transit-more-dialog p + p { margin-top: 10px; }
.warehouse-more .transit-more-dialog {
  top: calc(100% + 12px);
  right: 0;
  left: auto;
}
.transit-more-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  font: 400 21px/1 var(--body);
  cursor: pointer;
}
.transit-more-close:hover { color: var(--ink); }
.transit-dialog-vendors {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.transit-dialog-vendors h3 {
  margin: 0 0 11px;
  color: var(--ink);
  font: 600 15px/1.3 var(--team-display);
  letter-spacing: -.01em;
}
.transit-dialog-vendor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.transit-dialog-vendor-grid .vendor-logo {
  min-height: 62px;
  padding: 9px;
}
.transit-dialog-vendor-grid .vendor-logo img { height: 28px; }
.transit-dialog-vendor-grid .vendor-logo-images { height: 28px; }
.transit-dialog-vendor-grid .vendor-logo span { font-size: 10px; }
.transit-dialog-vendor-grid > :last-child:nth-child(odd) { grid-column: 1 / -1; }

.vendors-section {
  padding: clamp(35px, 4vw, 60px) 0 clamp(90px, 10vw, 150px);
  background: var(--bg);
}
.vendors-wrap { width: min(1120px, calc(100% - 64px)); margin: 0 auto; }
.vendor-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 36px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.vendor-column {
  min-width: 0;
  padding: 32px 24px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .012);
}
.vendor-column h3 {
  min-height: 2.4em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 32px;
  color: var(--gold);
  font: 600 clamp(20px, 1.8vw, 24px)/1.2 var(--team-display);
  letter-spacing: -.02em;
  text-align: center;
}
.vendor-logos { display: grid; grid-template-columns: 1fr; gap: 10px; }
.vendor-logo {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 12px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .018);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}
.vendor-logo:hover {
  border-color: rgba(243, 168, 59, .55);
  background: rgba(243, 168, 59, .04);
  transform: translateY(-2px);
}
.vendor-logo img {
  max-width: 100%;
  width: auto;
  height: 42px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.45);
  opacity: .78;
  transition: filter 180ms ease, opacity 180ms ease;
}
.vendor-logo:hover img { filter: none; opacity: 1; }
.vendor-logo-images {
  position: relative;
  width: min(100%, 120px);
  height: 42px;
  display: block;
}
.vendor-logo-images img { position: absolute; inset: 0; width: 100%; height: 100%; }
.vendor-logo-images .logo-color { filter: none; opacity: 0; }
.power-bi-logo:hover .logo-default { opacity: 0; }
.power-bi-logo:hover .logo-color { opacity: 1; }
.vendor-logo span {
  color: #b8b8b1;
  font: 600 12px var(--team-display);
  white-space: nowrap;
}
.vendor-logo:hover span { color: var(--ink); }
.vendor-logo[href*="airbyte"] img,
.vendor-logo[href*="looker"] img { width: 25px; }
.vendor-logo[href*="tableau"] img { height: 34px; }
.outcomes-section {
  padding: clamp(60px, 7vw, 110px) 0 clamp(90px, 10vw, 160px);
  overflow: hidden;
  background: var(--bg);
}
.outcomes-grid {
  width: min(1120px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  gap: clamp(100px, 12vw, 180px);
}
.outcome-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(48px, 6vw, 88px);
  align-items: center;
}
.outcome-card:nth-child(2) h2 { grid-column: 2; grid-row: 1; }
.outcome-card:nth-child(2) .outcome-visual { grid-column: 1; grid-row: 1; }
.outcome-card h2 {
  min-width: 0;
  max-width: 18ch;
  margin: 0;
  color: var(--ink);
  font: 600 clamp(34px, 3.7vw, 58px)/1.14 var(--team-display);
  letter-spacing: -0.035em;
  text-align: center;
  justify-self: center;
}
.outcome-card h2 em { color: var(--gold); font-style: normal; }
.outcome-placeholder {
  min-height: clamp(250px, 30vw, 450px);
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
    rgba(255,255,255,.01);
  background-size: 32px 32px;
}
.outcome-placeholder span {
  color: var(--muted);
  font: 500 10px var(--mono);
  letter-spacing: .18em;
}
.outcome-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}
.outcome-visual iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}
.outcome-systems-record {
  height: 500px;
  aspect-ratio: auto;
  border-radius: 7px;
}
@media (min-width: 1200px) {
  .outcome-systems-record { height: 470px; }
}

.process-section {
  padding: clamp(84px, 7vw, 110px) 0 clamp(100px, 9vw, 140px);
  background: var(--bg);
}
.process-wrap { width: min(1120px, calc(100% - 64px)); margin: 0 auto; }
.process-lede {
  max-width: 60ch;
  margin: 14px 0 0;
  color: var(--muted);
  font: 400 16px/1.55 var(--body);
}
.process-lede strong { color: var(--ink); font-weight: 500; }
.process-band {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 26px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface-2);
}
.process-band-key,
.process-band-detail,
.process-duration,
.process-phase-label {
  font-family: var(--mono);
}
.process-band-key {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.process-band-value {
  color: var(--gold);
  font: 500 italic 18px/1.4 "Newsreader", serif;
}
.process-band-separator { width: 1px; height: 20px; background: var(--line); }
.process-band-detail { color: var(--muted); font-size: 12px; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin: 52px 0 0;
  padding: 0;
  list-style: none;
}
.process-step { position: relative; min-width: 0; padding-right: 22px; }
.process-node {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  background: var(--surface-2);
  font: 400 14px var(--mono);
  transition: border-color .2s ease, background-color .2s ease;
}
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 22px;
  right: 0;
  left: 44px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--line));
  opacity: .5;
}
.process-step:hover .process-node { border-color: var(--gold); background: #1b1b18; }
.process-duration {
  margin-top: 16px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .04em;
}
.process-step h3 {
  margin: 6px 0 0;
  color: var(--ink);
  font: 600 16px/1.3 var(--team-display);
  letter-spacing: -.01em;
}
.process-step p {
  margin: 8px 0 0;
  padding-right: 8px;
  color: var(--muted);
  font: 400 13px/1.5 var(--body);
}
.process-iterative {
  display: inline-block;
  margin-top: 10px;
  padding: 3px 8px;
  border-radius: 2px;
  color: var(--bg);
  background: var(--gold);
  font: 500 10px var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.process-phases {
  display: grid;
  grid-template-columns: 2fr 4fr;
  gap: 16px;
  margin-top: 40px;
}
.process-phase { padding-top: 12px; border-top: 1px solid var(--line); }
.process-phase-label {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.process-phase-range {
  margin-top: 4px;
  color: var(--ink);
  font: 500 italic 16px/1.4 "Newsreader", serif;
}
.process-phase-build { border-top-color: var(--gold); }
.process-phase-build .process-phase-range { color: var(--gold); }

.schedule-section {
  display: flex;
  justify-content: center;
  padding: 0 var(--page-gutter) clamp(110px, 10vw, 160px);
  background: var(--bg);
}
.schedule-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: min(100%, 280px);
  padding: 18px 28px;
  border: 1px solid var(--gold);
  border-radius: 3px;
  color: var(--bg);
  background: var(--gold);
  font: 600 22px/1.2 var(--team-display);
  letter-spacing: -.02em;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}
.schedule-cta span:last-child { font-size: .8em; transition: transform 180ms ease; }
.schedule-cta:hover {
  color: var(--gold);
  background: transparent;
  transform: translateY(-2px);
}
.schedule-cta:hover span:last-child { transform: translate(2px, -2px); }

.site-footer {
  color: #f9fafb;
  background: #111827;
  font-family: var(--body);
}
.site-footer-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 72px 32px 28px;
}
.site-footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) repeat(4, minmax(110px, .65fr));
  gap: 52px;
}
.site-footer-brand { max-width: 280px; }
.site-footer-wordmark {
  display: inline-block;
  margin: 0 0 18px;
  color: #fff;
  font: 500 31px/1 "Newsreader", Georgia, serif;
  letter-spacing: -.01em;
  transition: color 150ms ease;
}
.site-footer-tagline,
.site-footer-address {
  margin: 0;
  color: #aeb7c4;
  font: 400 13px/1.6 var(--body);
}
.site-footer-address {
  display: grid;
  justify-items: start;
  gap: 10px;
  margin-top: 18px;
  font-style: normal;
}
.site-footer-email {
  color: #dde4ee;
  transition: color 150ms ease;
}
.site-footer-column-title {
  margin: 0 0 16px;
  color: #fff;
  font: 700 13px/1.4 var(--body);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.site-footer-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer-link,
.site-footer-bottom-link {
  color: #aeb7c4;
  font: 400 13.5px/1.5 var(--body);
  transition: color 150ms ease;
}
.site-footer-wordmark:hover,
.site-footer-wordmark:focus-visible,
.site-footer-email:hover,
.site-footer-email:focus-visible,
.site-footer-link:hover,
.site-footer-link:focus-visible,
.site-footer-bottom-link:hover,
.site-footer-bottom-link:focus-visible { color: #fff; }
.site-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.site-footer-copyright {
  margin: 0;
  color: #aeb7c4;
  font: 400 13px/1.5 var(--body);
}
.site-footer-bottom-link span {
  display: inline-block;
  margin-left: 4px;
  transition: transform 150ms ease;
}
.site-footer-bottom-link:hover span { transform: translateY(-2px); }

@media (max-width: 992px) {
  .site-footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer-brand {
    grid-column: 1 / -1;
    max-width: 420px;
  }
}
@media (max-width: 640px) {
  .site-footer-shell { padding: 60px 32px 26px; }
  .site-footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .site-footer-brand { grid-column: auto; }
  .site-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 48px;
  }
}

:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

@media (max-width: 900px) {
  :root { --header-h: 60px; --page-gutter: 20px; }
  .site-header { grid-template-columns: auto 1fr; }
  .site-header nav { justify-self: end; }
  .site-header nav a { padding: 0 9px; }
  .site-header nav a span, .header-status { display: none; }
  .content-wrap { width: min(100% - 40px, 680px); }
  .visual-section { min-height: 0; }
  .foundation-statement { min-height: 58svh; }
  .team-intro h2 { max-width: 19ch; }
  .vendor-column { padding-inline: 16px; }
  .vendor-logos { grid-template-columns: 1fr; }
  .transit-more-dialog {
    top: calc(100% + 10px);
    left: 50%;
    width: min(460px, calc(100vw - 64px));
    transform: translateX(-50%);
  }
  .warehouse-more .transit-more-dialog {
    right: 0;
    left: auto;
    transform: none;
  }
  .outcomes-grid { gap: 96px; }
  .outcome-card { gap: 40px; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { padding: 0 0 30px 62px; }
  .process-node { position: absolute; top: 0; left: 0; }
  .process-step:not(:last-child)::after {
    top: 44px;
    right: auto;
    bottom: 0;
    left: 22px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, var(--gold), var(--line));
  }
  .process-duration { margin-top: 2px; }
  .process-phases { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .transit-more.is-ready { transform: none; }
  .site-header nav a { font-size: 0; }
  .site-header nav a::before { content: attr(href); font: 500 9px var(--mono); text-transform: uppercase; }
  .site-header nav a:nth-child(1)::before { content: "01"; }
  .site-header nav a:nth-child(2)::before { content: "02"; }
  .site-header nav a:nth-child(3)::before { content: "03"; }
  .site-header nav a:nth-child(4)::before { content: "04"; }
  .team-section { padding-top: 124px; }
  .foundation-statement {
    min-height: 52svh;
    padding-block: 88px;
  }
  .foundation-statement h2 {
    max-width: 11ch;
    font-size: clamp(44px, 14vw, 58px);
  }
  .team-intro { padding: 0 0 80px; }
  .team-intro h2 { max-width: none; }
  .team-intro h2 { font-size: clamp(32px, 10.3vw, 48px); }
  .team-wrap { width: calc(100% - 40px); }
  .pcard { max-width: none; }
  .pbody { min-height: 228px; }
  .vendors-wrap { width: calc(100% - 40px); }
  .transit-more .transit-more-dialog {
    position: fixed;
    top: 80px;
    right: 20px;
    left: 20px;
    width: auto;
    max-height: calc(100vh - 100px);
    padding: 18px 38px 18px 18px;
    transform: none;
  }
  .transit-more-dialog p { font-size: 12px; line-height: 1.55; }
  .vendor-columns { grid-template-columns: 1fr; }
  .vendor-column { padding: 30px 20px 26px; }
  .vendor-column h3 { min-height: 0; margin-bottom: 30px; }
  .outcomes-section { padding-top: 54px; }
  .outcomes-grid { width: calc(100% - 40px); gap: 92px; }
  .outcome-card { grid-template-columns: 1fr; gap: 34px; }
  .outcome-card:nth-child(2) h2,
  .outcome-card:nth-child(2) .outcome-visual { grid-column: auto; grid-row: auto; }
  .outcome-card h2 {
    max-width: 16ch;
    font-size: clamp(34px, 10.5vw, 46px);
  }
  .outcome-placeholder { min-height: 260px; }
  .process-wrap { width: calc(100% - 40px); }
  .process-band { align-items: flex-start; }
  .process-band-separator { display: none; }
  .process-band-detail { flex-basis: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .type-char, .reveal-item { opacity: 1; transform: none; }
}
