:root {
  --ink: #0a0b0d;
  --ink-soft: #111317;
  --paper: #ece9df;
  --paper-warm: #ded9cc;
  --muted: #9ca0a7;
  --line: rgba(236, 233, 223, 0.18);
  --line-dark: rgba(10, 11, 13, 0.16);
  --orange: #ff6338;
  --orange-hot: #ff4e24;
  --yellow: #ffd34e;
  --cyan: #51f2df;
  --teal: #20cfc5;
  --steel: #8cb8bc;
  --green: #51f2df;
  --display: "Archivo Black", sans-serif;
  --body: "DM Sans", sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --page: min(1540px, calc(100vw - 80px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

html[lang="zh-CN"] body {
  font-family: "Noto Sans SC", var(--body);
}

html[lang="zh-CN"] .hero-title,
html[lang="zh-CN"] .manifesto-title,
html[lang="zh-CN"] .section-title,
html[lang="zh-CN"] .service-name h3,
html[lang="zh-CN"] .process-step h3,
html[lang="zh-CN"] .tech-feature h3,
html[lang="zh-CN"] .contact-title {
  font-family: "Noto Sans SC", sans-serif;
  font-weight: 900;
  letter-spacing: -0.065em;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--ink);
  background: var(--orange);
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.section-shell {
  width: var(--page);
  margin-inline: auto;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 2px;
  z-index: 120;
  background: rgba(255, 255, 255, 0.04);
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  z-index: 90;
  top: 18px;
  left: 50%;
  width: min(1500px, calc(100vw - 40px));
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 16px 0 20px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(10, 11, 13, 0.72);
  backdrop-filter: blur(22px) saturate(130%);
  transition: top 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.site-header.scrolled {
  top: 8px;
  border-color: rgba(255, 255, 255, 0.19);
  background: rgba(10, 11, 13, 0.9);
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  width: max-content;
}

.brand-logo-image {
  display: block;
  width: 124px;
  height: auto;
  filter: drop-shadow(0 0 16px rgba(90, 160, 209, .08));
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a,
.footer-links a {
  position: relative;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c8c6c0;
}

.desktop-nav a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.desktop-nav a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.language-toggle,
.menu-toggle {
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--paper);
  background: transparent;
  cursor: pointer;
}

.language-toggle {
  width: 48px;
  font-family: var(--mono);
  font-size: 10px;
}

.language-toggle:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.wms-login {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-inline: 12px;
  border: 1px solid rgba(81, 242, 223, .32);
  color: #d9f5f1;
  background: rgba(22, 77, 76, .12);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: border-color .25s ease, background .25s ease, color .25s ease, transform .25s ease;
}

.wms-login i {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 11px rgba(81, 242, 223, .78);
}

.wms-login b {
  margin-left: 3px;
  font-size: 10px;
  font-weight: 400;
}

.wms-login:hover {
  border-color: rgba(81, 242, 223, .78);
  color: var(--cyan);
  background: rgba(35, 139, 133, .14);
  transform: translateY(-2px);
}

.header-cta {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding-inline: 17px 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper);
  transition: background 0.25s ease, transform 0.25s ease;
}

.header-cta:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

.header-cta i,
.button i,
.text-link i {
  font-style: normal;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(520px, 0.82fr);
  align-items: center;
  gap: 1vw;
  padding: 150px max(40px, calc((100vw - 1540px) / 2)) 72px;
  overflow: hidden;
  background: #070a0c;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -2%;
  z-index: 0;
  pointer-events: none;
  background: url("assets/hero-warehouse-teal-v2.png") 56% center / cover no-repeat;
  filter: saturate(.82) contrast(1.06);
  transform: scale(1.015);
  animation: heroImageIn 1.6s cubic-bezier(.16,1,.3,1) both;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5,7,9,.98) 0%, rgba(5,8,10,.88) 32%, rgba(5,10,12,.46) 55%, rgba(5,9,11,.13) 78%),
    linear-gradient(180deg, rgba(5,7,9,.42) 0%, transparent 30%, rgba(5,7,9,.54) 100%),
    radial-gradient(circle at 72% 48%, rgba(34,214,202,.08), transparent 30%);
}

.hero-grid,
.contact-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.034) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 88%);
}

.hero-grid {
  z-index: 1;
  opacity: .58;
  mix-blend-mode: screen;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero-glow-one {
  top: 13%;
  left: 52%;
  width: 300px;
  height: 300px;
  background: rgba(33, 214, 203, 0.13);
}

.hero-glow-two {
  right: 4%;
  bottom: 5%;
  width: 240px;
  height: 240px;
  background: rgba(81, 242, 223, 0.08);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 920px;
}

.eyebrow,
.section-marker {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 30px;
  color: #b6b5af;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(81, 242, 223, 0.1), 0 0 22px var(--cyan);
  animation: statusPulse 2.2s ease-out infinite;
}

.hero-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(60px, 7.15vw, 128px);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.title-line {
  display: block;
  overflow: hidden;
}

.title-line > span {
  display: block;
  transform: translateY(110%);
  animation: titleReveal 0.95s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.title-line:nth-child(2) > span {
  animation-delay: 0.1s;
}

.title-line:nth-child(3) > span {
  animation-delay: 0.2s;
}

.title-line.accent {
  width: max-content;
  padding: 0.04em 0.08em 0.085em 0.02em;
  color: var(--orange);
}

html[lang="zh-CN"] .hero-title {
  line-height: .94;
  letter-spacing: -.055em;
  text-transform: none;
}

html[lang="zh-CN"] .hero-title .title-line {
  padding: .12em .06em .13em;
  margin: -.12em -.06em -.13em;
}

.hero-bottom {
  max-width: 670px;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto;
  align-items: end;
  gap: 40px;
  margin-top: 42px;
}

.hero-bottom p {
  margin: 0;
  max-width: 450px;
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.56;
  color: #b7b7b2;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 0 18px 0 22px;
  border: 0;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button-primary {
  color: var(--ink);
  background: var(--orange);
  box-shadow: 0 13px 34px rgba(255, 99, 56, 0.15);
}

.button-primary:hover {
  transform: translateY(-3px);
  background: var(--yellow);
  box-shadow: 0 18px 40px rgba(255, 99, 56, 0.23);
}

.text-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: #bab9b3;
}

.text-link i {
  color: var(--orange);
  transition: transform 0.25s ease;
}

.text-link:hover i {
  transform: translateY(4px);
}

.hero-visual {
  --rx: 0deg;
  --ry: 0deg;
  position: relative;
  z-index: 1;
  height: min(72vw, 760px);
  max-height: 760px;
  min-height: 570px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.warehouse-hud {
  position: relative;
  z-index: 3;
  width: min(94%, 690px);
  aspect-ratio: 1.34;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(169, 230, 228, .38);
  border-radius: 22px;
  background:
    linear-gradient(140deg, rgba(12, 22, 26, .83), rgba(7, 17, 20, .52)),
    radial-gradient(circle at 70% 40%, rgba(81, 242, 223, .06), transparent 46%);
  backdrop-filter: blur(17px) saturate(125%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.035),
    inset 0 -80px 120px rgba(3, 9, 11, .24),
    0 40px 90px rgba(0, 0, 0, .36),
    0 0 60px rgba(33, 214, 203, .05);
  transform: rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .18s ease-out;
}

.warehouse-hud::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 34%, rgba(255,255,255,.055) 47%, transparent 57%);
  transform: translateX(-110%);
  animation: hudSheen 7s ease-in-out infinite 1.8s;
}

.hud-corner {
  position: absolute;
  z-index: 4;
  width: 24px;
  height: 24px;
  border-color: var(--cyan);
  opacity: .78;
}

.hud-corner-tl { top: 9px; left: 9px; border-top: 1px solid; border-left: 1px solid; border-color: var(--cyan); }
.hud-corner-tr { top: 9px; right: 9px; border-top: 1px solid; border-right: 1px solid; border-color: var(--cyan); }
.hud-corner-bl { bottom: 9px; left: 9px; border-bottom: 1px solid; border-left: 1px solid; border-color: var(--cyan); }
.hud-corner-br { right: 9px; bottom: 9px; border-right: 1px solid; border-bottom: 1px solid; border-color: var(--cyan); }

.hud-topline {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 6px 12px;
  border-bottom: 1px solid rgba(170, 218, 219, .15);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .1em;
}

.hud-topline div {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #d7e4e2;
}

.hud-topline i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  animation: cyanPulse 2s ease-out infinite;
}

.hud-topline small {
  font-size: 7px;
  color: rgba(121, 167, 169, .74);
}

.hud-map-media {
  position: relative;
  z-index: 1;
  width: 100%;
  height: calc(100% - 75px);
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid rgba(119, 210, 211, .2);
  border-radius: 12px;
  background: #081013;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, .36);
}

.hud-map-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2, 9, 12, .04) 45%, rgba(2, 8, 10, .42) 100%),
    radial-gradient(circle at 43% 51%, transparent 30%, rgba(2, 8, 10, .12) 100%);
}

.hud-map-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.84) contrast(1.06) brightness(.92);
  transform: scale(1.012);
}

.hud-route-overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hud-photo-route-glow,
.hud-photo-route-flow {
  fill: none;
  stroke: url(#photoRouteGradient);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hud-photo-route-glow {
  stroke-width: 24;
  opacity: .16;
  filter: url(#photoRouteGlow);
}

.hud-photo-route-flow {
  stroke-width: 7;
  stroke-dasharray: 22 28;
  opacity: .94;
  filter: url(#photoRouteGlow);
  animation: photoRouteFlow 1.05s linear infinite;
}

.hud-route-packets circle {
  fill: #eaffff;
  stroke: #34e5dc;
  stroke-width: 4;
}

.hud-map-scan {
  position: absolute;
  z-index: 2;
  top: -14%;
  right: 0;
  left: 0;
  height: 18%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(81, 242, 223, .11), transparent);
  mix-blend-mode: screen;
  animation: hudMapScan 6.5s ease-in-out infinite 1.2s;
}

.hud-map-fallback {
  display: none;
}

.hud-racks rect {
  fill: rgba(47, 91, 97, .12);
  stroke: rgba(107, 187, 188, .44);
  stroke-width: 1;
}

.hud-racks path {
  fill: none;
  stroke: rgba(104, 197, 197, .34);
  stroke-width: 1;
}

.hud-racks g:nth-child(2),
.hud-racks g:nth-child(7) {
  filter: drop-shadow(0 0 6px rgba(81,242,223,.35));
}

.hud-racks g:nth-child(2) rect,
.hud-racks g:nth-child(7) rect {
  fill: rgba(43, 210, 199, .12);
  stroke: rgba(81, 242, 223, .75);
}

.hud-route-base,
.hud-route-active {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hud-route-base {
  stroke: rgba(169, 215, 216, .23);
  stroke-width: 2;
}

.hud-route-active {
  stroke: var(--cyan);
  stroke-width: 4;
  stroke-dasharray: 11 13;
  animation: routeMove 1.2s linear infinite;
}

.hud-nodes circle {
  fill: var(--cyan);
  stroke: #effffc;
  stroke-width: 1.5;
}

.hud-map-labels text {
  fill: rgba(202, 229, 227, .72);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
}

.hud-status-strip {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(170,218,219,.16);
}

.hud-status-strip span {
  display: grid;
  gap: 4px;
  padding: 11px 8px 0;
  border-right: 1px solid rgba(170,218,219,.11);
  font-family: var(--mono);
}

.hud-status-strip span:last-child { border-right: 0; }
.hud-status-strip small { font-size: 6px; color: rgba(120,160,163,.66); }
.hud-status-strip b { font-size: 7px; font-weight: 500; color: var(--cyan); }

.stack-illustration {
  position: relative;
  z-index: 2;
  width: min(100%, 750px);
  overflow: visible;
  transform: rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform 0.18s ease-out;
  filter: drop-shadow(0 44px 50px rgba(0, 0, 0, 0.48));
}

.stack-top {
  animation: stackFloat 4s ease-in-out infinite;
  transform-origin: center;
}

.cube-a,
.cube-b,
.cube-c {
  animation: cubeBreath 5s ease-in-out infinite;
  transform-origin: center;
}

.cube-b {
  animation-delay: -1.7s;
}

.cube-c {
  animation-delay: -3.1s;
}

.scan-beam path {
  animation: routeMove 1.4s linear infinite;
}

.scan-beam circle {
  animation: nodeBlink 1.8s ease-in-out infinite alternate;
}

.stage-label text {
  fill: #94979e;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.visual-orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: orbitTurn 18s linear infinite;
}

.visual-orbit::before,
.visual-orbit::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px var(--orange);
}

.visual-orbit::before {
  top: 12%;
  left: 20%;
}

.visual-orbit::after {
  right: 8%;
  bottom: 22%;
  background: var(--yellow);
}

.orbit-one {
  width: 88%;
  aspect-ratio: 1;
  border-left-color: rgba(81, 242, 223, 0.4);
}

.orbit-two {
  width: 67%;
  aspect-ratio: 1;
  animation-direction: reverse;
  animation-duration: 13s;
  border-right-color: rgba(255, 99, 56, 0.3);
}

.visual-label {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 2px;
  font-family: var(--mono);
  padding-left: 12px;
  border-left: 2px solid var(--cyan);
}

.visual-label small {
  color: #74777e;
  font-size: 8px;
  letter-spacing: 0.15em;
}

.visual-label strong {
  color: #d8d6cf;
  font-size: 10px;
  letter-spacing: 0.07em;
}

.label-top {
  top: 9%;
  left: 21%;
}

.label-right {
  top: 9%;
  right: 2%;
}

.telemetry-card {
  position: absolute;
  z-index: 5;
  right: 2%;
  bottom: 6%;
  width: min(310px, 47%);
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(7, 16, 19, 0.79);
  backdrop-filter: blur(14px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.telemetry-head,
.telemetry-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
}

.telemetry-head span {
  font-size: 9px;
  letter-spacing: 0.12em;
  color: #a0a2a8;
}

.telemetry-head b {
  font-size: 8px;
  color: var(--green);
}

.telemetry-route {
  display: grid;
  grid-template-columns: 20px 1fr 20px 1fr 20px 1fr 20px;
  align-items: center;
  gap: 5px;
  margin: 14px 0;
}

.telemetry-route span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1px solid #44474e;
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 7px;
  color: #777a80;
}

.telemetry-route span.active {
  border-color: var(--cyan);
  color: var(--paper);
  background: rgba(81, 242, 223, 0.1);
}

.telemetry-route i {
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), #383b40);
}

.telemetry-copy {
  align-items: flex-end;
}

.telemetry-copy strong {
  font-size: 8px;
  color: #d3d2cc;
}

.telemetry-copy small {
  font-size: 6px;
  color: #6c6f75;
}

.hero-index {
  position: absolute;
  right: 42px;
  bottom: 28px;
  font-family: var(--display);
  font-size: 54px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.07);
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: max(40px, calc((100vw - 1540px) / 2));
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.13em;
  color: #696c72;
  writing-mode: vertical-lr;
}

.scroll-cue i {
  display: block;
  width: 1px;
  height: 42px;
  background: linear-gradient(var(--orange), transparent);
  animation: scrollCue 1.8s ease-in-out infinite;
}

.ticker {
  position: relative;
  z-index: 3;
  padding-block: 17px;
  overflow: hidden;
  color: var(--ink);
  background: var(--cyan);
  transform: rotate(-1deg) scale(1.02);
  transform-origin: center;
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 32px;
  animation: tickerMove 32s linear infinite;
}

.ticker-track span {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -0.03em;
}

.ticker-track i {
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  background: var(--ink);
}

.manifesto {
  padding-block: 150px 175px;
}

.section-marker {
  color: #878a91;
}

.section-marker span {
  color: var(--orange);
}

.section-marker p {
  margin: 0;
}

.section-marker::after {
  content: "";
  width: 74px;
  height: 1px;
  margin-left: 8px;
  background: rgba(255, 255, 255, 0.2);
}

.section-marker.dark::after {
  background: rgba(10, 11, 13, 0.22);
}

.section-marker.light {
  color: #999c9f;
}

.manifesto-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(330px, 0.55fr);
  align-items: end;
  gap: 9vw;
  margin-top: 70px;
}

.manifesto-title {
  margin: 0;
  max-width: 1180px;
  font-family: var(--display);
  font-size: clamp(48px, 5.8vw, 102px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.manifesto-copy {
  padding-bottom: 8px;
}

.manifesto-copy > p {
  margin: 0 0 55px;
  font-size: 17px;
  line-height: 1.65;
  color: #a8a9a6;
}

.manifesto-location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  color: #74777d;
}

.manifesto-location strong {
  grid-column: 1 / -1;
  font-size: 12px;
  color: var(--orange);
}

.services {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 8vw;
  padding-block: 130px 150px;
  border-top: 1px solid var(--line);
}

.services-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.section-title {
  margin: 42px 0 25px;
  font-family: var(--display);
  font-size: clamp(46px, 5.1vw, 88px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.section-title.dark {
  color: var(--ink);
}

.section-lede {
  max-width: 460px;
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: #94969b;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1.25fr 1fr;
  gap: 24px;
  padding: 34px 48px 34px 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  transition: padding-left 0.35s ease, border-color 0.35s ease;
}

.service-row::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255, 99, 56, 0.15), transparent 70%);
  transform: translateX(-105%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-row:hover {
  padding-left: 18px;
  border-color: rgba(255, 99, 56, 0.54);
}

.service-row:hover::before {
  transform: translateX(0);
}

.service-number,
.process-step > span,
.tech-feature > span {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--orange);
}

.service-name small,
.process-step small {
  display: block;
  margin-bottom: 7px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  color: #74777d;
}

.service-name h3,
.process-step h3,
.tech-feature h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(22px, 1.8vw, 31px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.service-row > p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #999b9e;
}

.service-tags {
  grid-column: 2 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.service-tags span {
  padding: 4px 8px;
  border: 1px solid #34363b;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6f7278;
}

.service-arrow {
  position: absolute;
  top: 32px;
  right: 0;
  color: #484b50;
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-row:hover .service-arrow {
  color: var(--orange);
  transform: rotate(45deg);
}

.technology {
  position: relative;
  padding-block: 140px 150px;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}

.technology::before {
  content: "";
  position: absolute;
  top: 0;
  right: -8%;
  width: 45%;
  aspect-ratio: 1;
  border: 1px solid rgba(10, 11, 13, 0.09);
  border-radius: 50%;
  transform: translateY(-45%);
  box-shadow: 0 0 0 70px rgba(10, 11, 13, 0.018), 0 0 0 140px rgba(10, 11, 13, 0.018);
}

.technology-title-row {
  display: grid;
  grid-template-columns: 1.5fr 0.55fr;
  align-items: end;
  gap: 8vw;
}

.technology-summary {
  padding-bottom: 9px;
}

.technology-summary > p {
  margin: 0 0 30px;
  font-size: 17px;
  line-height: 1.65;
  color: #52545a;
}

.technology-summary > span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  color: #6b6d71;
}

.technology-summary > span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 99, 56, 0.13);
}

.control-room {
  position: relative;
  margin-top: 85px;
  border: 1px solid #3b3e44;
  color: var(--paper);
  background: #0e1013;
  box-shadow: 0 48px 90px rgba(10, 11, 13, 0.23);
  overflow: hidden;
}

.control-room::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 45%, rgba(255, 255, 255, 0.025), transparent 60%);
}

.control-topbar {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-bottom: 1px solid #2e3136;
}

.control-brand,
.control-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.mini-mark {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 10px;
  color: var(--ink);
  background: var(--orange);
}

.control-meta {
  color: #71747b;
}

.control-meta .live {
  color: var(--green);
}

.control-meta .live i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 5px;
  border-radius: 50%;
  background: currentColor;
}

.control-meta b {
  color: #b9b9b5;
}

.control-body {
  min-height: 600px;
  display: grid;
  grid-template-columns: 205px 1fr;
}

.control-sidebar {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 28px 14px;
  border-right: 1px solid #292c30;
}

.control-sidebar > span {
  min-height: 43px;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  padding-inline: 10px;
  font-family: var(--mono);
  font-size: 8px;
  color: #54575d;
}

.control-sidebar b {
  color: #8f9298;
  font-weight: 400;
}

.control-sidebar > span.active {
  color: var(--orange);
  background: #1a1c20;
}

.control-sidebar > span.active b {
  color: #ebe8de;
}

.control-dashboard {
  padding: 35px;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 38px 38px;
}

.dashboard-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 25px;
}

.dashboard-heading small,
.panel-label,
.dashboard-actions {
  font-family: var(--mono);
  letter-spacing: 0.08em;
}

.dashboard-heading small {
  color: #62656b;
  font-size: 8px;
}

.dashboard-heading h3 {
  margin: 7px 0 0;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.dashboard-actions {
  display: flex;
  gap: 8px;
}

.dashboard-actions span {
  padding: 8px 10px;
  border: 1px solid #32353b;
  font-size: 7px;
  color: #8a8d93;
}

.dashboard-actions span:last-child {
  color: var(--ink);
  border-color: var(--orange);
  background: var(--orange);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 14px;
}

.flow-panel,
.inventory-panel,
.event-panel {
  position: relative;
  border: 1px solid #2d3035;
  background: rgba(19, 21, 25, 0.9);
}

.flow-panel,
.inventory-panel {
  min-height: 330px;
}

.event-panel {
  grid-column: 1 / -1;
  min-height: 145px;
}

.panel-label {
  display: flex;
  justify-content: space-between;
  padding: 13px 15px;
  border-bottom: 1px solid #2b2e33;
  font-size: 8px;
  color: #a8aaae;
}

.panel-label small {
  color: #52555b;
  font-size: 7px;
}

.flow-steps {
  padding: 17px 18px;
}

.flow-steps > div {
  position: relative;
  min-height: 50px;
  display: grid;
  grid-template-columns: 35px 1fr 20px;
  align-items: center;
}

.flow-steps > div:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 37px;
  width: 1px;
  height: 30px;
  background: #383b41;
}

.flow-steps > div.complete:not(:last-child)::after {
  background: var(--orange);
}

.flow-steps > div > span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid #3b3e44;
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 7px;
  color: #666970;
}

.flow-steps > div.complete > span,
.flow-steps > div.active > span {
  border-color: var(--orange);
  color: var(--orange);
}

.flow-steps p {
  display: grid;
  margin: 0;
}

.flow-steps strong {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  color: #c7c7c2;
}

.flow-steps small {
  margin-top: 3px;
  font-family: var(--mono);
  font-size: 7px;
  color: #575a60;
}

.flow-steps > div > i {
  font-family: var(--mono);
  font-size: 8px;
  font-style: normal;
  color: #4f5258;
}

.flow-steps > div.complete > i {
  color: var(--green);
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 99, 56, 0.11);
  animation: statusPulse 1.6s infinite;
}

.inventory-ring {
  width: 170px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 22px auto 18px;
  border-radius: 50%;
  background: conic-gradient(var(--orange) 0 52%, var(--yellow) 52% 72%, #393c42 72% 100%);
  transform: rotate(-38deg);
}

.inventory-ring::before {
  content: "";
  width: 128px;
  aspect-ratio: 1;
  grid-area: 1 / 1;
  border-radius: 50%;
  background: #131519;
}

.inventory-ring > div {
  z-index: 1;
  display: grid;
  text-align: center;
  transform: rotate(38deg);
}

.inventory-ring strong,
.inventory-ring small {
  font-family: var(--mono);
  font-size: 7px;
  color: #666970;
}

.inventory-ring b {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: -0.05em;
}

.inventory-legend {
  display: flex;
  justify-content: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 6px;
  color: #64676d;
}

.inventory-legend i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 4px;
  border-radius: 50%;
}

.inventory-legend .onhand { background: var(--orange); }
.inventory-legend .allocated { background: var(--yellow); }
.inventory-legend .picked { background: #4c4f55; }

.event-row {
  display: grid;
  grid-template-columns: 72px 10px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 27px;
  padding-inline: 16px;
  border-bottom: 1px solid rgba(255,255,255,.035);
  font-family: var(--mono);
  font-size: 7px;
}

.event-row time {
  color: #4f5258;
}

.event-row > i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4f5258;
}

.event-row > i.green { background: var(--green); }
.event-row > i.orange { background: var(--orange); }
.event-row span { color: #8d9095; }
.event-row b { color: #bdbdb7; font-weight: 400; }
.event-row.muted { opacity: .5; }

.scanner-line {
  position: absolute;
  z-index: 3;
  top: 62px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(transparent, var(--orange), transparent);
  box-shadow: 0 0 12px var(--orange);
  opacity: .23;
  animation: scannerSweep 6s ease-in-out infinite;
}

.technology-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line-dark);
}

.tech-feature {
  min-height: 260px;
  padding: 26px 24px 25px 0;
  border-right: 1px solid var(--line-dark);
}

.tech-feature + .tech-feature {
  padding-left: 25px;
}

.tech-feature:last-child {
  border-right: 0;
}

.tech-feature h3 {
  min-height: 62px;
  margin-top: 55px;
  font-size: 24px;
}

.tech-feature p {
  margin: 22px 0 0;
  color: #62646a;
  font-size: 14px;
  line-height: 1.6;
}

.location {
  padding-block: 145px 160px;
}

.location-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 7vw;
  margin-top: 70px;
}

.location-kicker {
  margin: 0 0 -25px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.11em;
  color: var(--orange);
}

.location-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 58px;
  border-top: 1px solid var(--line);
}

.location-facts > div {
  min-height: 132px;
  padding: 17px 15px 0 0;
  border-right: 1px solid var(--line);
}

.location-facts > div + div {
  padding-left: 15px;
}

.location-facts > div:last-child {
  border-right: 0;
}

.location-facts span {
  font-family: var(--display);
  font-size: 33px;
  color: var(--orange);
}

.location-facts p {
  margin: 17px 0 0;
  font-family: var(--mono);
  font-size: 7px;
  line-height: 1.6;
  letter-spacing: 0.07em;
  color: #7c7f84;
}

.route-map {
  position: relative;
  aspect-ratio: 1.25;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid #2c2f34;
  background:
    radial-gradient(circle at 80% 34%, rgba(255, 99, 56, 0.12), transparent 21%),
    #101216;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
}

.route-map svg {
  position: absolute;
  inset: 4%;
  width: 92%;
  height: 92%;
}

.county-line {
  fill: none;
  stroke: #575a61;
  stroke-width: 1;
  stroke-dasharray: 3 9;
  opacity: .62;
}

.route-line {
  fill: none;
  stroke: var(--orange);
  stroke-width: 3;
  stroke-dasharray: 11 12;
  animation: routeMove 1.3s linear infinite;
}

.route-shadow {
  stroke-width: 12;
  opacity: .28;
}

.map-node {
  fill: var(--yellow);
  filter: drop-shadow(0 0 7px var(--orange));
}

.map-node.minor {
  fill: var(--orange);
}

.map-node.destination {
  fill: var(--orange);
  stroke: #ffcc73;
  stroke-width: 2;
}

.map-pulse {
  fill: none;
  stroke: var(--orange);
  stroke-width: 1;
  transform-origin: 673px 248px;
  animation: mapPulse 2s ease-out infinite;
}

.freeway {
  fill: none;
  stroke: #35383e;
  stroke-width: 1;
  stroke-dasharray: 2 4;
}

.map-label,
.freeway-label,
.map-scale {
  position: absolute;
  font-family: var(--mono);
}

.map-label {
  font-size: 8px;
  letter-spacing: .09em;
}

.port-label {
  bottom: 16%;
  left: 7%;
  color: #a7a8a5;
}

.ont-label {
  top: 27%;
  right: 4%;
  display: grid;
  padding-left: 11px;
  border-left: 2px solid var(--orange);
}

.ont-label b {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -.03em;
}

.ont-label small {
  margin-top: 2px;
  color: var(--orange);
  font-size: 7px;
}

.freeway-label {
  padding: 3px 5px;
  color: #676a70;
  border: 1px solid #34373d;
  background: #111317;
  font-size: 7px;
}

.f10 { top: 48%; left: 40%; }
.f15 { top: 22%; left: 50%; }
.f60 { top: 52%; right: 14%; }

.map-scale {
  right: 18px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #53565c;
  font-size: 6px;
  letter-spacing: .08em;
}

.map-scale i {
  width: 65px;
  height: 4px;
  border-right: 1px solid #55585e;
  border-bottom: 1px solid #55585e;
  border-left: 1px solid #55585e;
}

.process {
  color: var(--ink);
  background: var(--orange);
}

.process-inner {
  padding-block: 130px 145px;
}

.process .section-marker,
.process .section-marker span {
  color: rgba(10, 11, 13, .62);
}

.process .section-marker::after {
  background: rgba(10, 11, 13, .24);
}

.process-heading {
  display: grid;
  grid-template-columns: 1.3fr .55fr;
  align-items: end;
  gap: 10vw;
  margin-top: 25px;
}

.process-heading .section-lede {
  padding-bottom: 8px;
  color: rgba(10, 11, 13, .67);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 90px;
  border-top: 1px solid rgba(10, 11, 13, .27);
}

.process-step {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 21px 24px 24px 0;
  border-right: 1px solid rgba(10, 11, 13, .27);
}

.process-step + .process-step {
  padding-left: 24px;
}

.process-step:last-child {
  border-right: 0;
}

.process-step > span {
  color: var(--ink);
}

.process-step small {
  color: rgba(10, 11, 13, .5);
}

.process-step h3 {
  max-width: 250px;
  font-size: 27px;
}

.process-step p {
  max-width: 270px;
  margin: 20px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(10, 11, 13, .66);
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 8vw;
  padding-block: 150px 155px;
  overflow: hidden;
}

.contact-grid {
  opacity: .45;
  mask-image: radial-gradient(circle at 10% 70%, black, transparent 72%);
}

.contact-copy,
.rfq-form {
  position: relative;
  z-index: 1;
}

.contact-title {
  margin: 48px 0 30px;
  font-family: var(--display);
  font-size: clamp(54px, 6.1vw, 105px);
  font-weight: 400;
  line-height: .89;
  letter-spacing: -.06em;
}

.contact-copy > p {
  max-width: 510px;
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: #8f9297;
}

.rfq-form {
  align-self: end;
  padding: 35px;
  border: 1px solid #303339;
  background: rgba(17, 19, 23, .82);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.rfq-form label {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.rfq-form label > span {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .1em;
  color: #72757a;
}

.rfq-form input,
.rfq-form textarea {
  width: 100%;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid #40434a;
  border-radius: 0;
  outline: 0;
  color: var(--paper);
  background: transparent;
  transition: border-color .25s ease;
}

.rfq-form textarea {
  resize: vertical;
  min-height: 90px;
}

.rfq-form input::placeholder,
.rfq-form textarea::placeholder {
  color: #4e5157;
}

.rfq-form input:focus,
.rfq-form textarea:focus {
  border-color: var(--orange);
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 5px;
}

.form-submit-row p {
  max-width: 240px;
  margin: 0;
  font-family: var(--mono);
  font-size: 8px;
  line-height: 1.6;
  color: #65686e;
}

.form-status {
  min-height: 18px;
  margin: 16px 0 0;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--green);
}

.site-footer {
  width: var(--page);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 70px;
  margin-inline: auto;
  padding: 44px 0 30px;
  border-top: 1px solid var(--line);
}

.footer-logo-image {
  display: block;
  width: 176px;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(90, 160, 209, .08));
}

.footer-location {
  display: grid;
  font-family: var(--mono);
  text-align: right;
}

.footer-location small {
  font-size: 7px;
  letter-spacing: .1em;
  color: #5f6268;
}

.footer-location strong {
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: .07em;
  color: #aaa9a4;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.07);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .09em;
  color: #505359;
}

.footer-bottom a {
  color: #81848a;
}

.toast {
  position: fixed;
  z-index: 140;
  right: 20px;
  bottom: 20px;
  max-width: 380px;
  padding: 15px 18px;
  border: 1px solid rgba(255,255,255,.18);
  color: var(--paper);
  background: rgba(16,18,21,.94);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.5;
  transform: translateY(140%);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}

.toast.visible {
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.16,1,.3,1);
}

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

@keyframes titleReveal {
  to { transform: translateY(0); }
}

@keyframes heroImageIn {
  from { opacity: 0; transform: scale(1.07); }
  to { opacity: 1; transform: scale(1.015); }
}

@keyframes hudSheen {
  0%, 58%, 100% { transform: translateX(-110%); }
  78% { transform: translateX(110%); }
}

@keyframes hudMapScan {
  0%, 16% { transform: translateY(0); opacity: 0; }
  28% { opacity: .8; }
  72% { opacity: .5; }
  84%, 100% { transform: translateY(650%); opacity: 0; }
}

@keyframes photoRouteFlow {
  to { stroke-dashoffset: -50; }
}

@keyframes cyanPulse {
  0% { box-shadow: 0 0 0 0 rgba(81,242,223,.34), 0 0 12px var(--cyan); }
  70% { box-shadow: 0 0 0 8px rgba(81,242,223,0), 0 0 12px var(--cyan); }
  100% { box-shadow: 0 0 0 0 rgba(81,242,223,0), 0 0 12px var(--cyan); }
}

@keyframes statusPulse {
  0% { box-shadow: 0 0 0 0 rgba(81,242,223,.34); }
  70% { box-shadow: 0 0 0 9px rgba(81,242,223,0); }
  100% { box-shadow: 0 0 0 0 rgba(81,242,223,0); }
}

@keyframes stackFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes cubeBreath {
  0%, 100% { opacity: .92; }
  50% { opacity: 1; }
}

@keyframes routeMove {
  to { stroke-dashoffset: -46; }
}

@keyframes nodeBlink {
  to { opacity: .48; }
}

@keyframes orbitTurn {
  to { transform: rotate(360deg); }
}

@keyframes scrollCue {
  0%, 100% { transform: scaleY(.35); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

@keyframes tickerMove {
  to { transform: translateX(-50%); }
}

@keyframes scannerSweep {
  0%, 100% { left: 0; opacity: 0; }
  10%, 90% { opacity: .23; }
  50% { left: 100%; }
}

@keyframes mapPulse {
  0% { transform: scale(.35); opacity: .9; }
  100% { transform: scale(1.8); opacity: 0; }
}

@media (max-width: 1240px) {
  :root { --page: calc(100vw - 48px); }

  .site-header { width: calc(100vw - 24px); }
  .desktop-nav { gap: 18px; }
  .header-cta { gap: 12px; }
  .hero { grid-template-columns: 1fr .82fr; padding-inline: 24px; }
  .hero-title { font-size: clamp(58px, 7.7vw, 94px); }
  .hero-bottom { grid-template-columns: 1fr; gap: 26px; }
  .hero-actions { flex-direction: row; align-items: center; }
  .hero-visual { min-height: 500px; }
  .telemetry-card { right: 0; bottom: 13%; width: 55%; }
  .manifesto-layout { gap: 5vw; }
  .services { gap: 5vw; }
  .control-body { grid-template-columns: 160px 1fr; }
  .technology-features { grid-template-columns: 1fr 1fr; }
  .tech-feature:nth-child(2) { border-right: 0; }
  .tech-feature:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
  .location-layout { gap: 4vw; }
  .location-facts { grid-template-columns: 1fr; }
  .location-facts > div { min-height: auto; display: grid; grid-template-columns: 58px 1fr; align-items: center; border-right: 0; border-bottom: 1px solid var(--line); padding: 12px 0; }
  .location-facts > div + div { padding-left: 0; }
  .location-facts p { margin: 0; }
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-cta { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .header-actions { grid-column: 2; }
  .menu-toggle { width: 42px; display: grid; place-content: center; gap: 6px; }
  .menu-toggle span { width: 17px; height: 1px; display: block; background: currentColor; transition: transform .3s ease; }
  .site-header.menu-open .menu-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .site-header.menu-open .menu-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-menu { position: fixed; top: 78px; right: 0; left: 0; display: flex; flex-direction: column; padding: 20px; border: 1px solid rgba(255,255,255,.14); background: rgba(10,11,13,.98); transform: translateY(-20px); opacity: 0; visibility: hidden; transition: opacity .3s ease, transform .3s ease, visibility .3s; }
  .site-header.menu-open .mobile-menu { transform: translateY(0); opacity: 1; visibility: visible; }
  .mobile-menu a { padding: 15px 4px; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 26px; }
  .mobile-menu a:last-child { color: var(--orange); }
  .mobile-menu .mobile-wms-link { color: var(--cyan); }

  .hero { grid-template-columns: 1fr; align-content: start; padding-top: 150px; }
  .hero-copy { max-width: 760px; }
  .hero-title { font-size: clamp(64px, 12vw, 108px); }
  .hero-bottom { max-width: 720px; grid-template-columns: 1fr auto; }
  .hero-visual { width: min(760px, 100%); height: 650px; margin: -35px auto -70px; }
  .hero-index { display: none; }
  .manifesto-layout { grid-template-columns: 1fr; }
  .manifesto-copy { display: grid; grid-template-columns: 1fr 280px; gap: 45px; }
  .manifesto-copy > p { margin: 0; }
  .services { grid-template-columns: 1fr; }
  .services-intro { position: static; }
  .service-row { grid-template-columns: 38px 1fr 1fr; }
  .technology-title-row { grid-template-columns: 1fr; }
  .technology-summary { max-width: 620px; }
  .control-body { grid-template-columns: 1fr; }
  .control-sidebar { display: grid; grid-template-columns: repeat(6, 1fr); border-right: 0; border-bottom: 1px solid #292c30; padding: 10px; overflow-x: auto; }
  .control-sidebar > span { min-width: 110px; }
  .control-dashboard { padding: 22px; }
  .location-layout { grid-template-columns: 1fr; }
  .location-copy { display: grid; grid-template-columns: 1fr .85fr; column-gap: 40px; }
  .location-kicker { grid-column: 1 / -1; }
  .location-copy .section-title { grid-column: 1; }
  .location-copy .section-lede { grid-column: 2; align-self: end; padding-bottom: 12px; }
  .location-facts { grid-column: 1 / -1; grid-template-columns: repeat(3, 1fr); }
  .location-facts > div { display: block; border-right: 1px solid var(--line); border-bottom: 0; padding: 17px 15px 0 0; }
  .location-facts > div + div { padding-left: 15px; }
  .location-facts p { margin-top: 15px; }
  .process-heading { grid-template-columns: 1fr .7fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(-n+2) { border-bottom: 1px solid rgba(10,11,13,.27); }
  .contact { grid-template-columns: 1fr; }
  .rfq-form { max-width: 760px; }
}

@media (max-width: 680px) {
  :root { --page: calc(100vw - 32px); }
  .grain { opacity: .035; }
  .site-header { top: 8px; width: calc(100vw - 16px); height: 62px; padding-left: 14px; }
  .brand-logo-image { width: 108px; }
  .language-toggle, .menu-toggle { height: 36px; }
  .wms-login-header { display: none; }
  .mobile-menu { top: 68px; }

  .hero { min-height: auto; padding: 118px 16px 48px; }
  .hero::before { background-position: 68% center; filter: saturate(.76) contrast(1.04); }
  .hero::after {
    background:
      linear-gradient(90deg, rgba(5,7,9,.94), rgba(5,8,10,.72)),
      linear-gradient(180deg, rgba(5,7,9,.35), transparent 30%, rgba(5,7,9,.7));
  }
  .eyebrow { max-width: 290px; align-items: flex-start; margin-bottom: 23px; font-size: 8px; }
  .status-dot { flex: 0 0 auto; margin-top: 4px; }
  .hero-title { font-size: clamp(48px, 15.6vw, 74px); line-height: .86; letter-spacing: -.07em; }
  .hero-bottom { grid-template-columns: 1fr; margin-top: 32px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-visual { min-height: 410px; height: 112vw; max-height: 510px; margin: -10px auto -30px; }
  .stack-illustration { width: 112%; }
  .warehouse-hud { width: 108%; aspect-ratio: 1.31; padding: 11px; border-radius: 16px; background: rgba(7,17,20,.68); }
  .hud-topline { padding: 3px 4px 8px; }
  .hud-topline small { display: none; }
  .hud-map-media { height: calc(100% - 48px); margin-top: 8px; border-radius: 9px; }
  .hud-map-media img { object-position: 47% center; }
  .hud-status-strip { right: 11px; bottom: 10px; left: 11px; }
  .hud-status-strip span { padding: 8px 4px 0; }
  .hud-status-strip span:nth-child(2), .hud-status-strip span:nth-child(3) { display: none; }
  .hud-status-strip { grid-template-columns: 1fr 1fr; }
  .orbit-one { width: 108%; }
  .orbit-two { width: 78%; }
  .label-top { left: 4%; }
  .label-right { right: -2%; }
  .telemetry-card { width: 72%; right: 0; bottom: 6%; padding: 11px; }
  .telemetry-copy small { display: none; }
  .scroll-cue { display: none; }

  .ticker { padding-block: 13px; }
  .ticker-track { gap: 22px; }
  .ticker-track span { font-size: 14px; }
  .manifesto { padding-block: 100px 110px; }
  .section-marker { font-size: 8px; }
  .section-marker::after { width: 45px; }
  .manifesto-layout { margin-top: 50px; }
  .manifesto-title { font-size: 12vw; }
  .manifesto-copy { grid-template-columns: 1fr; gap: 35px; }
  .manifesto-copy > p, .section-lede, .technology-summary > p, .contact-copy > p { font-size: 15px; }

  .services { gap: 70px; padding-block: 95px 105px; }
  .section-title { margin-top: 34px; font-size: clamp(44px, 13vw, 66px); }
  .service-row { grid-template-columns: 30px 1fr; padding: 27px 34px 27px 0; gap: 14px; }
  .service-row > p, .service-tags { grid-column: 2; }
  .service-row > p { font-size: 13px; }
  .service-name h3 { font-size: 24px; }
  .service-arrow { top: 25px; }

  .technology { padding-block: 95px 100px; }
  .technology-title-row { gap: 15px; }
  .control-room { width: calc(100vw - 16px); margin-top: 55px; }
  .control-topbar { min-height: 52px; padding-inline: 12px; }
  .control-meta span:first-child, .control-meta b { display: none; }
  .control-sidebar { grid-template-columns: repeat(6, 105px); }
  .control-dashboard { padding: 15px; }
  .dashboard-heading { align-items: center; }
  .dashboard-heading h3 { font-size: 22px; }
  .dashboard-actions span:first-child { display: none; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .flow-panel, .inventory-panel { min-height: 315px; }
  .inventory-panel { display: none; }
  .event-panel { grid-column: 1; }
  .event-row { grid-template-columns: 58px 8px 1fr; }
  .event-row b { display: none; }
  .technology-features { grid-template-columns: 1fr; }
  .tech-feature, .tech-feature + .tech-feature { min-height: auto; padding: 25px 0 32px; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .tech-feature h3 { min-height: auto; margin-top: 34px; }

  .location { padding-block: 100px 110px; }
  .location-layout { margin-top: 50px; }
  .location-copy { display: block; }
  .location-kicker { margin-bottom: -15px; }
  .location-copy .section-lede { padding: 0; }
  .location-facts { grid-template-columns: 1fr; margin-top: 38px; }
  .location-facts > div { min-height: auto; display: grid; grid-template-columns: 64px 1fr; align-items: center; border-right: 0; border-bottom: 1px solid var(--line); padding: 12px 0; }
  .location-facts > div + div { padding-left: 0; }
  .location-facts p { margin: 0; }
  .route-map { width: calc(100vw - 32px); min-height: 350px; }
  .ont-label b { font-size: 16px; }

  .process-inner { padding-block: 95px 105px; }
  .process-heading { grid-template-columns: 1fr; gap: 10px; }
  .process-steps { grid-template-columns: 1fr; margin-top: 55px; }
  .process-step, .process-step + .process-step { min-height: 235px; padding: 19px 0 25px; border-right: 0; border-bottom: 1px solid rgba(10,11,13,.27); }

  .contact { gap: 55px; padding-block: 100px 110px; }
  .contact-title { font-size: 15vw; }
  .rfq-form { padding: 23px 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-submit-row { align-items: flex-start; flex-direction: column; }

  .site-footer { grid-template-columns: 1fr; gap: 27px; padding-top: 35px; }
  .footer-location { text-align: left; }
  .footer-links { flex-wrap: wrap; }
  .footer-bottom { display: grid; gap: 12px; }
  .footer-bottom span:nth-child(2) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .title-line > span { transform: translateY(0); }
  .reveal { opacity: 1; transform: none; }
  .hud-route-packets { display: none; }
}
