:root {
  --font-display: "Archivo", "Arial Narrow", sans-serif;
  --font-body: "Newsreader", Georgia, serif;
  --font-mono: "IBM Plex Mono", monospace;
  --ink: #111615;
  --muted: #59615f;
  --line: rgba(17, 22, 21, .16);
  --paper: #f3f1e9;
  --white: #fffaf0;
  --steel: #717b80;
  --safety: #ffb000;
  --signal: #00a878;
  --oxide: #b54a2f;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.48;
}
a { color: inherit; }
button, input, textarea { font: inherit; }
select { font: inherit; }
.topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 56px);
  font-family: var(--font-mono);
  font-size: 13px;
  background: color-mix(in srgb, var(--paper) 84%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
}
.brand-lockup {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.brand-lockup > span:last-child {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.design-one .brand-lockup > span:last-child { color: rgba(247,242,232,.58); }
.topbar nav { display: flex; gap: 18px; flex-wrap: wrap; justify-content: flex-end; }
.topbar nav a { text-decoration: none; color: var(--muted); }
.topbar nav a:hover { color: var(--ink); }
.kicker {
  margin: 0 0 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--oxide);
}
h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: .98;
  letter-spacing: 0;
}
h1 { font-size: clamp(44px, 8vw, 118px); max-width: 11ch; }
h2 { font-size: clamp(28px, 4vw, 58px); }
h3 { font-size: 24px; }
p { margin: 18px 0 0; color: var(--muted); max-width: 64ch; }
.solid, .ghost {
  min-height: 44px;
  border: 1px solid var(--ink);
  padding: 12px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.solid { background: var(--ink); color: var(--white); }
.ghost { background: rgba(255,255,255,.12); color: var(--ink); }
.link-button { display: inline-flex; align-items: center; justify-content: center; }
.section { padding: clamp(72px, 10vw, 130px) clamp(18px, 5vw, 72px); }
.split {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(280px, 1.2fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}
.lane-list { display: grid; gap: 12px; }
.lane-list article {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding: 18px;
  background: rgba(255,255,255,.52);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.lane-list b, .lane-list span { font-family: var(--font-mono); font-size: 13px; }
.lane-list span { color: var(--muted); }
.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.12);
  padding: 1px;
}
.proof-strip article {
  background: #111817;
  color: #fff7e8;
  padding: clamp(22px, 4vw, 48px);
}
.proof-strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 54px;
  line-height: 1;
}
.proof-strip span { color: rgba(247,242,232,.68); }
.contact { text-align: center; }
.contact h2 { max-width: 900px; margin: 0 auto 28px; }
.about-block,
.contact-detail {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(300px, 1.15fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}
.about-copy p { margin-top: 0; }
.about-copy p + p { margin-top: 18px; }
.about-copy dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 28px 0 0;
  background: rgba(255,255,255,.12);
}
.about-copy dl div {
  min-height: 112px;
  padding: 18px;
  background: rgba(255,255,255,.06);
}
.about-copy dt,
.footer-grid h3,
.contact-form label span {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.about-copy dd {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.05;
}
.contact-detail { text-align: left; background: #111817; }
.contact-detail h2 { margin: 0; }
.contact-copy address {
  margin-top: 24px;
  font-style: normal;
  line-height: 1.9;
  color: rgba(247,242,232,.72);
}
.contact-copy a { text-decoration-color: rgba(255,190,46,.55); text-underline-offset: 4px; }
.contact-stack {
  display: grid;
  gap: 14px;
}
.contact-callout {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,190,46,.1), transparent 46%),
    rgba(255,255,255,.06);
}
.contact-callout .kicker { margin: 0; }
.contact-callout p:not(.kicker) {
  margin: 0;
  color: rgba(247,242,232,.72);
}
.contact-callout .link-button {
  justify-self: start;
}
.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
}
.contact-form label { display: grid; gap: 8px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 6px;
  padding: 11px 12px;
  background: rgba(8,13,12,.72);
  color: #fff7e8;
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.cookie-note button:focus-visible {
  outline: 3px solid rgba(255,190,46,.7);
  outline-offset: 2px;
}
.contact-form button { justify-self: start; }
.form-note {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(247,242,232,.62) !important;
}
.site-footer {
  padding: clamp(42px, 6vw, 72px) clamp(18px, 5vw, 72px) 28px;
  background: #080d0c;
  color: #fff7e8;
  border-top: 1px solid rgba(255,255,255,.12);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(150px, 1fr));
  gap: clamp(22px, 4vw, 52px);
}
.footer-grid p,
.footer-grid li,
.footer-base { color: rgba(247,242,232,.66); }
.footer-grid h3 { margin: 0 0 14px; font-size: 12px; line-height: 1.2; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-grid a { text-decoration-color: rgba(255,190,46,.45); text-underline-offset: 4px; }
.footer-base {
  margin: 42px 0 0;
  max-width: none;
  font-family: var(--font-mono);
  font-size: 12px;
}
.cookie-note {
  position: fixed;
  z-index: 30;
  right: 16px;
  bottom: 16px;
  width: min(330px, calc(100vw - 32px));
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 6px;
  background: rgba(8,13,12,.9);
  box-shadow: 0 16px 42px rgba(0,0,0,.34);
  font-family: var(--font-mono);
  color: #fff7e8;
}
.cookie-note p {
  margin: 0;
  color: rgba(247,242,232,.74);
  font-size: 12px;
  line-height: 1.45;
}
.cookie-note button {
  justify-self: start;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 6px;
  background: rgba(8,13,12,.84);
  color: #fff7e8;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
}
.cookie-note button:hover { border-color: #ffbe2e; }

.hub {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 90px 0;
}
.hub h1 { max-width: 920px; }
.hub-lede { font-size: 24px; max-width: 780px; }
.variant-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.variant-grid a {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform .2s ease, border-color .2s ease;
}
.variant-grid a:hover { transform: translateY(-5px); border-color: var(--ink); }
.variant-grid span { font-family: var(--font-mono); color: var(--oxide); }
.variant-grid strong { font-family: var(--font-display); font-size: 24px; line-height: 1; }
.variant-grid small { color: var(--muted); font-size: 14px; line-height: 1.35; }

.design-one { --paper: #e8ece7; background: #0c1110; color: #f7f2e8; }
.design-one .topbar {
  background: rgba(9, 14, 13, .68);
  border-color: rgba(255,255,255,.12);
  color: #f7f2e8;
}
.design-one .topbar nav a, .design-one p { color: rgba(247,242,232,.72); }
.design-one .lane-list article { background: #111817; border-color: rgba(255,255,255,.12); }
.design-one .lane-list span { color: rgba(247,242,232,.78); }
.hero-3d {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 108px clamp(18px, 5vw, 72px) 52px;
}
.hero-3d:after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 82px 18px 18px;
  pointer-events: none;
  background:
    linear-gradient(#ffbe2e, #ffbe2e) left top / 56px 2px no-repeat,
    linear-gradient(#ffbe2e, #ffbe2e) left top / 2px 56px no-repeat,
    linear-gradient(#ffbe2e, #ffbe2e) right top / 56px 2px no-repeat,
    linear-gradient(#ffbe2e, #ffbe2e) right top / 2px 56px no-repeat,
    linear-gradient(#ffbe2e, #ffbe2e) left bottom / 56px 2px no-repeat,
    linear-gradient(#ffbe2e, #ffbe2e) left bottom / 2px 56px no-repeat,
    linear-gradient(#ffbe2e, #ffbe2e) right bottom / 56px 2px no-repeat,
    linear-gradient(#ffbe2e, #ffbe2e) right bottom / 2px 56px no-repeat,
    linear-gradient(to bottom, transparent 76%, rgba(8,13,12,.34) 100%);
  opacity: .62;
}
.hero-3d:not(.is-3d-active) .hero-actions,
.hero-3d:not(.is-3d-active) .stage-panel,
.hero-3d:not(.is-3d-active) .scene-label-layer,
.hero-3d:not(.is-3d-active) .fallback-scene,
.hero-3d:not(.is-3d-active) .accel-notice {
  display: none;
}
#processScene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: none;
  touch-action: pan-y;
  background: radial-gradient(circle at 70% 20%, #263833, #0b1110 60%);
}
.is-3d-active #processScene { display: block; }
.process-poster {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(0,168,120,.18), transparent 34%),
    linear-gradient(180deg, #17261f 0%, #0b1110 42%, #d1d4c8 42%, #bdc3bc 100%);
  transition: opacity .45s ease, visibility .45s ease;
}
.is-3d-active .process-poster {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.poster-map {
  position: absolute;
  left: 48%;
  top: 34%;
  width: min(1320px, 108vw);
  height: 620px;
  transform: translate(-50%, -38%) perspective(900px) rotateX(58deg) rotateZ(-14deg);
  transform-origin: center;
}
.poster-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.poster-svg-stage line,
.poster-merge {
  stroke: rgba(255,190,46,.72);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}
.poster-svg-stage text,
.poster-svg-lane text {
  fill: rgba(255,250,240,.84);
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .12em;
  text-anchor: middle;
  text-shadow: 0 4px 14px rgba(0,0,0,.5);
}
.poster-svg-lane text {
  fill: #ffdf8a;
  font-size: 20px;
  text-anchor: start;
}
.poster-svg-lane rect {
  fill: url(#posterBelt);
  stroke: rgba(255,190,46,.56);
  stroke-width: 2;
}
.poster-svg-lane:before { content: none; }
.poster-svg-lane {
  stroke-linecap: round;
}
.poster-svg-lane rect + text { paint-order: stroke; stroke: rgba(0,0,0,.24); stroke-width: 2px; }
.poster-svg-replicator,
.poster-svg-arms,
.poster-flow {
  transform-box: view-box;
  transform-origin: 0 0;
}
.poster-beam path {
  fill: rgba(95,180,255,.24);
  stroke: rgba(150,220,255,.38);
  stroke-width: 2;
  animation: poster-beam 2.2s ease-in-out infinite;
}
.poster-nozzle path {
  fill: #d4d4c9;
  stroke: #46504e;
  stroke-width: 4;
}
.poster-package {
  filter: drop-shadow(0 8px 10px rgba(0,0,0,.34));
}
.poster-package.bulb circle {
  fill: #ffbe2e;
  stroke: #fff4a7;
  stroke-width: 5;
  animation: poster-bulb 2.2s ease-in-out infinite;
}
.poster-package.bulb rect {
  fill: #46504e;
}
.poster-package.bulb path,
.poster-package.paper path,
.poster-package.pcb path {
  stroke: #111817;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.poster-package.paper rect {
  fill: #f5eddc;
  stroke: #d0c1a7;
  stroke-width: 3;
}
.poster-package.pcb rect {
  fill: #0a8f57;
  stroke: #075f41;
  stroke-width: 3;
}
.poster-package.pcb path,
.poster-package.pcb circle {
  stroke: #ffbe2e;
  fill: none;
}
.poster-package.pcb circle {
  stroke-width: 4;
}
.poster-package.rover rect {
  fill: #f3f1e6;
  stroke: #9aa0a2;
  stroke-width: 3;
}
.poster-package.rover circle {
  fill: #111817;
}
.poster-package.rover path {
  fill: none;
  stroke: #46504e;
  stroke-width: 5;
  stroke-linecap: round;
}
.poster-package.floppy rect:first-child {
  fill: #3159b7;
  stroke: #223f7a;
  stroke-width: 3;
}
.poster-package.floppy rect:nth-child(2) {
  fill: #c4c9cd;
}
.poster-package.floppy rect:nth-child(3) {
  fill: #f5eddc;
}
.poster-pulse {
  fill: none;
  stroke: #ffbe2e;
  stroke-width: 4;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}
.poster-pulse.intake {
  animation: poster-pulse 8s ease-out infinite;
}
.poster-pulse.integration {
  animation: poster-pulse 8s ease-out infinite;
  animation-delay: 4s;
}
.poster-merge {
  fill: none;
  stroke-dasharray: 16 16;
  animation: poster-dash 1.8s linear infinite;
}
.poster-arm-swing {
  transform-box: view-box;
  transform-origin: 0px 78px;
}
.poster-arm-unit.arm-a .poster-arm-swing {
  animation: poster-arm-a 4s ease-in-out infinite;
}
.poster-arm-unit.arm-b .poster-arm-swing {
  animation: poster-arm-b 4s ease-in-out infinite;
  animation-delay: 1.1s;
}
.poster-floor {
  position: absolute;
  inset: -16% -10%;
  background:
    linear-gradient(90deg, rgba(72,80,76,.3) 1px, transparent 1px) 0 0 / 52px 52px,
    linear-gradient(rgba(72,80,76,.26) 1px, transparent 1px) 0 0 / 52px 52px,
    linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.02));
}
.poster-lane {
  position: absolute;
  left: 8%;
  right: 7%;
  height: 54px;
  border: 1px solid rgba(255,190,46,.5);
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 38px, transparent 38px 76px),
    linear-gradient(180deg, #1f2a28, #111817);
  box-shadow: 0 22px 48px rgba(0,0,0,.38);
}
.poster-lane:before,
.poster-lane:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background: #ffbe2e;
  opacity: .92;
}
.poster-lane:before { top: -12px; }
.poster-lane:after { bottom: -12px; }
.poster-lane b {
  position: absolute;
  left: 2%;
  top: -38px;
  color: #ffdf8a;
  font-family: var(--font-mono);
  font-size: 18px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-shadow: 0 3px 12px rgba(0,0,0,.45);
}
.poster-lane.project { top: 64%; }
.poster-lane.electronics { top: 20%; left: 26%; }
.poster-lane.hardware { top: 34.5%; left: 26%; }
.poster-lane.software { top: 49%; left: 26%; }
.poster-stage {
  position: absolute;
  top: 11%;
  bottom: 20%;
  width: 2px;
  background: rgba(255,190,46,.75);
  box-shadow: 0 0 0 1px rgba(255,190,46,.18), 0 0 24px rgba(255,190,46,.2);
}
.poster-stage span {
  position: absolute;
  top: -34px;
  left: -48px;
  width: 96px;
  color: rgba(255,250,240,.82);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 3px 12px rgba(0,0,0,.5);
}
.poster-stage.s0 { left: 11%; }
.poster-stage.s1 { left: 26%; }
.poster-stage.s2 { left: 38%; }
.poster-stage.s3 { left: 52%; }
.poster-stage.s4 { left: 66%; }
.poster-stage.s5 { left: 80%; }
.poster-stage.s6 { left: 92%; }
.poster-lane i {
  position: absolute;
  top: 11px;
  left: 0;
  width: 34px;
  height: 28px;
  border-radius: 4px;
  animation: poster-package 8.8s linear infinite;
  box-shadow: 0 9px 18px rgba(0,0,0,.34);
}
.poster-lane .bulb {
  width: 28px;
  height: 28px;
  border-radius: 50% 50% 44% 44%;
  background: radial-gradient(circle at 40% 35%, #fff8ba, #ffbe2e 55%, #8a6700 100%);
  box-shadow: 0 0 20px rgba(255,190,46,.75), 0 9px 18px rgba(0,0,0,.34);
}
.poster-lane .paper {
  animation-delay: -4.4s;
  background:
    linear-gradient(#111817 0 0) 9px 8px / 14px 2px no-repeat,
    linear-gradient(#111817 0 0) 9px 15px / 18px 2px no-repeat,
    linear-gradient(#f5eddc, #d6cab4);
}
.poster-lane .pcb {
  animation-delay: -1.2s;
  background:
    radial-gradient(circle, #ffbe2e 0 2px, transparent 2px) 7px 8px / 10px 10px,
    linear-gradient(#ffbe2e 0 0) 8px 14px / 18px 2px no-repeat,
    linear-gradient(#0a8f57, #075f41);
}
.poster-lane .rover {
  animation-delay: -2.3s;
  background:
    radial-gradient(circle, #090b0a 0 5px, transparent 6px) 2px 20px / 12px 10px repeat-x,
    linear-gradient(#f3f1e6, #cdd4d4);
}
.poster-lane .floppy {
  animation-delay: -3.4s;
  background:
    linear-gradient(#c4c9cd 0 0) 8px 4px / 18px 8px no-repeat,
    linear-gradient(#f5eddc 0 0) 7px 18px / 20px 6px no-repeat,
    linear-gradient(#3159b7, #223f7a);
}
.poster-cta {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 5vw, 72px);
  bottom: 52px;
  width: min(410px, calc(100vw - 36px));
  padding: 22px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(8,13,12,.76);
  box-shadow: 0 24px 80px rgba(0,0,0,.42);
  backdrop-filter: blur(18px);
}
.poster-cta h2 {
  color: #fff7e8;
  font-size: clamp(24px, 3vw, 38px);
}
.poster-cta p:not(.kicker) {
  color: rgba(247,242,232,.76);
}
.poster-cta .solid {
  margin-top: 18px;
}
.poster-cta span {
  display: block;
  margin-top: 10px;
  color: rgba(247,242,232,.58);
  font-family: var(--font-mono);
  font-size: 12px;
}
.scroll-cue {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 99px;
  background: rgba(8,13,12,.52);
  color: rgba(255,250,240,.78);
  box-shadow: 0 12px 34px rgba(0,0,0,.24);
  backdrop-filter: blur(12px);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transform: translateX(-50%);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.scroll-cue:after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}
.scroll-cue:hover {
  color: #ffdf8a;
  border-color: rgba(255,190,46,.45);
}
.has-scrolled .scroll-cue {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  pointer-events: none;
}
@keyframes poster-package {
  from { transform: translateX(0); }
  to { transform: translateX(760px); }
}
@keyframes poster-bulb {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(255,190,46,.45)); }
  50% { filter: drop-shadow(0 0 18px rgba(255,190,46,.95)); }
}
@keyframes poster-beam {
  0%, 100% { opacity: .25; }
  50% { opacity: .78; }
}
@keyframes poster-pulse {
  0%, 20% { opacity: 0; transform: scale(.55); }
  24% { opacity: .85; transform: scale(.75); }
  38%, 100% { opacity: 0; transform: scale(1.65); }
}
@keyframes poster-dash {
  to { stroke-dashoffset: -32; }
}
@keyframes poster-arm-a {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(13deg); }
}
@keyframes poster-arm-b {
  0%, 100% { transform: rotate(8deg); }
  50% { transform: rotate(-12deg); }
}
@media (prefers-reduced-motion: reduce) {
  .poster-lane i,
  .poster-beam path,
  .poster-pulse,
  .poster-merge,
  .poster-arm-swing,
  .fallback-belt {
    animation: none;
  }
  .process-poster,
  .hero-copy {
    transition: none;
  }
}
.scene-label-layer {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}
.scene-label {
  position: absolute;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 6px;
  background: rgba(8, 13, 12, .76);
  color: #fff7e8;
  box-shadow: 0 12px 34px rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}
.scene-label.stage-label {
  display: none;
  cursor: pointer;
  pointer-events: auto;
}
.is-overview .scene-label.stage-label { display: inline-flex; }
.scene-label.stage-label:hover,
.scene-label.stage-label:focus {
  border-color: #ffbe2e;
  outline: 0;
  color: #ffbe2e;
}
.scene-label.lane-label {
  border-color: rgba(255, 190, 46, .52);
  color: #ffdf8a;
}
.fallback-scene {
  position: absolute;
  inset: 82px -6% 0 50%;
  z-index: 1;
  display: none;
  opacity: .84;
  transform: perspective(900px) rotateX(58deg) rotateZ(-18deg);
  transform-origin: center;
}
.webgl-fallback .fallback-scene { display: block; }
.webgl-fallback #processScene { display: none; }
.accel-notice {
  position: absolute;
  inset: 82px 6% auto auto;
  z-index: 2;
  display: none;
  max-width: 360px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 190, 46, .5);
  border-radius: 12px;
  background: rgba(8, 13, 12, .82);
  color: #fff7e8;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.5;
}
.accel-notice .accel-title {
  margin: 0 0 8px;
  color: #ffdf8a;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.accel-notice p { margin: 0; }
.webgl-unaccelerated #processScene { display: none; }
.webgl-unaccelerated .accel-notice { display: block; }
.fallback-belt {
  position: absolute;
  left: 0;
  right: 8%;
  height: 34px;
  border-radius: 99px;
  background: repeating-linear-gradient(90deg, #ffb000 0 28px, #263330 28px 56px);
  box-shadow: 0 18px 50px rgba(0,0,0,.5);
  animation: belt 1.6s linear infinite;
}
.fallback-belt:after {
  content: "";
  position: absolute;
  inset: -14px 12%;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 99px;
}
.fallback-scene .b1 { top: 10%; }
.fallback-scene .b2 { top: 30%; background-image: repeating-linear-gradient(90deg, #00d390 0 28px, #263330 28px 56px); }
.fallback-scene .b3 { top: 50%; background-image: repeating-linear-gradient(90deg, #b96b45 0 28px, #263330 28px 56px); }
.fallback-scene .b4 { top: 70%; background-image: repeating-linear-gradient(90deg, #fff1c8 0 28px, #263330 28px 56px); }
.fallback-scene span {
  position: relative;
  top: 45%;
  display: inline-flex;
  margin-right: 32px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 6px;
  background: rgba(8,13,12,.82);
  color: #fff7e8;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-bottom: 50px;
  transition: opacity .3s ease;
}
.is-overview .hero-copy { opacity: 1; }
.is-overview .hero-copy > :not(.hero-actions) {
  opacity: .74;
  text-shadow:
    0 2px 4px rgba(0,0,0,.75),
    0 10px 34px rgba(0,0,0,.85),
    0 0 2px rgba(0,0,0,.9);
}
.hero-copy:before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -22px -18px -10px;
  width: min(760px, calc(100vw - 36px));
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(8,13,12,.56), rgba(8,13,12,.18) 68%, transparent);
  pointer-events: none;
}
.is-overview .hero-actions {
  opacity: 1;
  filter: none;
}
.is-overview .hero-actions .solid,
.is-overview .hero-actions [data-free-look] {
  box-shadow: 0 12px 34px rgba(0,0,0,.32);
}
.is-free-look #processScene { cursor: grab; }
.is-free-look #processScene { touch-action: none; }
.is-free-look.is-dragging #processScene { cursor: grabbing; }
.hero-copy h1 { color: #fff7e8; text-shadow: 0 8px 40px rgba(0,0,0,.45); }
.hero-copy > p {
  color: rgba(255, 250, 240, .9) !important;
  text-shadow:
    0 2px 5px rgba(0,0,0,.82),
    0 10px 32px rgba(0,0,0,.74);
}
.is-overview .hero-copy > p { opacity: .94; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.hero-actions .solid,
.hero-actions .ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.hero-actions .btn-icon {
  width: 11px;
  height: 11px;
  flex: none;
  fill: currentColor;
}
.next-control {
  display: inline-grid;
  gap: 5px;
  align-self: start;
}
.next-control .solid { width: 100%; }
.stage-progress {
  display: block;
  height: 2px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255,255,255,.22);
}
.stage-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(var(--stage-progress, 0));
  transform-origin: left center;
  background: #ffbe2e;
  box-shadow: 0 0 14px rgba(255,190,46,.74);
}
.design-one .solid { border-color: #ffbe2e; background: #ffbe2e; color: #13120d; }
.design-one .ghost { border-color: rgba(255,255,255,.4); color: #fff7e8; background: rgba(255,255,255,.1); }
.stage-panel {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 5vw, 72px);
  bottom: 52px;
  width: min(410px, calc(100vw - 36px));
  padding: 22px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(8, 13, 12, .72);
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
  backdrop-filter: blur(18px);
}
.stage-panel h2 { color: #fff7e8; font-size: clamp(24px, 3vw, 40px); }
.stage-panel p { color: rgba(247,242,232,.76); }
.stage-count { font-family: var(--font-mono); margin: 0 0 8px; color: #ffbe2e !important; }

.design-two {
  --paper: #e7e3d8;
  background:
    linear-gradient(90deg, rgba(17,22,21,.05) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(#eee9dc, #d6d1c4);
}
.console-hero {
  padding: 120px clamp(18px, 5vw, 72px) 48px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 36px;
  align-items: end;
}
.console-hero h1 { max-width: 12ch; }
.status-board {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--ink);
  background: #151a18;
  color: #dff6d2;
  font-family: var(--font-mono);
  font-size: 13px;
  box-shadow: 10px 10px 0 #ffb000;
}
.status-board span { border-bottom: 1px solid rgba(223,246,210,.2); padding: 10px; }
.conveyor-dashboard {
  margin: 0 clamp(18px, 5vw, 72px);
  padding: 18px;
  background: #181d1b;
  color: #f5f1e6;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0,0,0,.24);
}
.belt-row {
  display: grid;
  grid-template-columns: 120px 1fr repeat(5, minmax(90px, 1fr));
  gap: 8px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-family: var(--font-mono);
  font-size: 12px;
}
.belt-row:last-child { border-bottom: 0; }
.belt-row i {
  height: 12px;
  background: repeating-linear-gradient(90deg, #ffb000 0 18px, #5c6462 18px 34px);
  border-radius: 99px;
  animation: belt 1.4s linear infinite;
}
.belt-row span { padding: 9px; background: rgba(255,255,255,.08); border-radius: 4px; text-align: center; }
@keyframes belt { to { background-position: 34px 0; } }
.metric-grid, .cards, .spec-grid, .system-grid, .editorial-grid {
  display: grid;
  gap: 12px;
  padding: clamp(40px, 6vw, 72px) clamp(18px, 5vw, 72px);
}
.metric-grid { grid-template-columns: repeat(4, 1fr); }
.metric-grid article, .cards article, .spec-grid article, .system-grid article, .editorial-grid article {
  padding: 22px;
  background: rgba(255,250,240,.68);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.metric-grid strong { display: block; font-family: var(--font-display); font-size: 44px; }
.metric-grid span, .system-grid p { color: var(--muted); }
.cards { grid-template-columns: repeat(3, 1fr); }
.cards h2 { font-size: 32px; }

.design-three {
  --paper: #eaf2ee;
  --ink: #103c4a;
  --muted: #426c75;
  background:
    linear-gradient(rgba(16,60,74,.12) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(90deg, rgba(16,60,74,.12) 1px, transparent 1px) 0 0 / 24px 24px,
    #eaf2ee;
}
.blueprint-hero { padding: 126px clamp(18px, 5vw, 72px) 42px; }
.blueprint-hero h1 { max-width: 13ch; }
.blueprint {
  position: relative;
  height: 620px;
  margin: 0 clamp(18px, 5vw, 72px);
  border: 2px solid rgba(16,60,74,.35);
  overflow: hidden;
}
.blueprint:before, .blueprint:after {
  content: "";
  position: absolute;
  inset: 40px;
  border: 1px dashed rgba(16,60,74,.28);
}
.blueprint:after { inset: 95px; }
.node {
  position: absolute;
  z-index: 2;
  min-width: 126px;
  padding: 13px 16px;
  font-family: var(--font-mono);
  color: #eaf2ee;
  background: var(--ink);
  border-radius: 3px;
}
.n1 { left: 6%; top: 44%; } .n2 { left: 25%; top: 20%; } .n3 { left: 46%; top: 44%; } .n4 { left: 68%; top: 28%; } .n5 { right: 5%; top: 54%; }
.track {
  position: absolute;
  left: 6%;
  right: 7%;
  height: 10px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 18px, transparent 18px 30px);
}
.track span {
  position: absolute;
  left: 0;
  top: -28px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}
.t1 { top: 28%; transform: rotate(-7deg); } .t2 { top: 45%; } .t3 { top: 62%; transform: rotate(6deg); } .t4 { top: 79%; }
.spec-grid { grid-template-columns: repeat(4, 1fr); }
.spec-grid h2 { font-size: 30px; }

.design-four {
  --paper: #111918;
  --ink: #f1eee1;
  --muted: #b3beb6;
  --line: rgba(241,238,225,.16);
  background: #111918;
  color: var(--ink);
  overflow-x: hidden;
}
.design-four .topbar { background: rgba(17,25,24,.78); border-color: var(--line); }
.design-four p { color: var(--muted); }
.mission-hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: center;
  padding: 110px clamp(18px, 5vw, 72px) 52px;
  background: radial-gradient(circle at 25% 52%, rgba(0,168,120,.18), transparent 35%);
  overflow: hidden;
}
.radar {
  aspect-ratio: 1;
  width: min(100%, 520px);
  justify-self: center;
  border-radius: 50%;
  border: 1px solid rgba(0,168,120,.5);
  background:
    radial-gradient(circle, transparent 0 22%, rgba(0,168,120,.18) 23% 24%, transparent 25% 45%, rgba(0,168,120,.18) 46% 47%, transparent 48%),
    conic-gradient(from 0deg, rgba(0,168,120,.65), transparent 55deg, transparent);
  animation: sweep 6s linear infinite;
}
@keyframes sweep { to { transform: rotate(360deg); } }
.mission-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  padding: 1px;
}
.mission-line article { background: #111918; padding: 28px; min-height: 280px; }
.mission-line b, .system-grid span { color: #00d390; font-family: var(--font-mono); }
.mission-line h2 { font-size: 34px; margin-top: 20px; }
.system-grid { grid-template-columns: repeat(3, 1fr); }
.system-grid article { background: rgba(255,255,255,.04); border-color: var(--line); }
.system-grid span { display: block; font-size: 28px; }
.design-four .solid { background: #00d390; border-color: #00d390; color: #07100e; }

.design-five {
  --paper: #f4efe6;
  background: #f4efe6;
}
.passport-hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1.1fr .7fr;
  gap: 40px;
  align-items: center;
  padding: 116px clamp(18px, 5vw, 72px) 52px;
}
.passport-hero h1 { max-width: 10ch; }
.passport-card {
  min-height: 430px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fffaf0;
  border: 1px solid #111615;
  border-radius: 8px;
  box-shadow: 12px 12px 0 #b54a2f;
}
.passport-card span, .passport-card p { font-family: var(--font-mono); }
.passport-card strong { font-family: var(--font-display); font-size: 60px; line-height: .92; }
.passport-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0 clamp(18px, 5vw, 72px);
  border: 1px solid var(--ink);
}
.passport-timeline article {
  min-height: 210px;
  padding: 20px;
  border-right: 1px solid var(--ink);
}
.passport-timeline article:last-child { border-right: 0; }
.passport-timeline b { display: block; font-family: var(--font-display); font-size: 28px; }
.passport-timeline span { color: var(--muted); }
.editorial-grid { grid-template-columns: 1.6fr 1fr 1fr; }
.editorial-grid .large { grid-row: span 2; }
.editorial-grid h2 { font-size: 48px; }
.editorial-grid h3 { margin-bottom: 12px; }

@media (max-width: 980px) {
  .variant-grid, .metric-grid, .cards, .spec-grid, .mission-line, .system-grid, .editorial-grid, .proof-strip { grid-template-columns: 1fr 1fr; }
  .console-hero, .mission-hero, .passport-hero, .split, .about-block, .contact-detail, .footer-grid { grid-template-columns: 1fr; }
  .belt-row { grid-template-columns: 1fr; }
  .belt-row i { width: 100%; }
  .blueprint { height: 520px; }
  .passport-timeline { grid-template-columns: 1fr; }
  .passport-timeline article { border-right: 0; border-bottom: 1px solid var(--ink); min-height: auto; }
  .passport-timeline article:last-child { border-bottom: 0; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .topbar { position: sticky; padding: 14px 18px; align-items: flex-start; }
  .brand-lockup { flex-direction: column; gap: 2px; align-items: flex-start; }
  .brand-lockup > span:last-child { max-width: 170px; white-space: normal; line-height: 1.25; }
  .topbar nav { gap: 10px; font-size: 11px; }
  .variant-grid, .metric-grid, .cards, .spec-grid, .mission-line, .system-grid, .editorial-grid, .proof-strip, .about-copy dl { grid-template-columns: 1fr; }
  .hero-3d { min-height: 760px; padding: 66px 12px 18px; align-items: start; }
  .hero-3d:after { display: none; }
  .scroll-cue { display: none; }
  .poster-map {
    left: 50%;
    top: 43%;
    width: 720px;
    height: 430px;
    transform: translate(-50%, -48%) perspective(760px) rotateX(58deg) rotateZ(-18deg) scale(.72);
  }
  .poster-stage span {
    font-size: 11px;
  }
  .poster-lane b {
    font-size: 14px;
  }
  .poster-cta {
    left: 12px;
    right: 12px;
    bottom: 18px;
    width: auto;
    padding: 12px;
  }
  .poster-beam path,
  .poster-pulse,
  .poster-merge,
  .poster-arm-swing,
  .poster-arm-unit.arm-a .poster-arm-swing,
  .poster-arm-unit.arm-b .poster-arm-swing,
  .poster-package.bulb circle {
    animation: none;
  }
  .poster-pulse { opacity: .28; transform: scale(1); }
  .poster-cta h2 {
    font-size: 24px;
  }
  .poster-cta p:not(.kicker) {
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.32;
  }
  .poster-cta .solid {
    min-height: 34px;
    margin-top: 12px;
    padding: 8px 10px;
    font-size: 11px;
  }
  .hero-copy {
    width: 100%;
    max-width: none;
    padding-top: 10px;
    padding-bottom: 0;
  }
  .hero-copy:before { inset: -12px -10px -8px; width: calc(100vw - 24px); }
  .hero-copy h1,
  .hero-copy > p {
    display: none;
  }
  .is-overview .hero-copy h1,
  .is-overview .hero-copy > p,
  .hero-3d:not(.is-3d-active) .hero-copy h1,
  .hero-3d:not(.is-3d-active) .hero-copy > p {
    display: block;
  }
  .hero-copy h1 { font-size: clamp(38px, 13vw, 58px); max-width: 10ch; }
  .hero-copy > p { margin-top: 12px; font-size: 16px; max-width: 32ch; }
  .hero-actions {
    gap: 6px;
    margin-top: 8px;
  }
  .hero-actions .solid,
  .hero-actions .ghost {
    min-height: 34px;
    padding: 8px 9px;
    border-radius: 5px;
    gap: 5px;
    font-size: 11px;
  }
  .hero-actions .btn-icon { width: 9px; height: 9px; }
  .next-control { gap: 3px; }
  .stage-panel {
    left: 12px;
    right: 12px;
    bottom: 18px;
    width: auto;
    max-height: 172px;
    padding: 12px;
    overflow: hidden;
    border-radius: 7px;
  }
  .stage-count {
    margin-bottom: 5px;
    font-size: 11px;
  }
  .stage-panel h2 {
    font-size: 24px;
    line-height: 1;
  }
  .stage-panel p {
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.32;
  }
  .cookie-note { display: none; }
  .accel-notice { inset: 70px 12px auto 12px; max-width: none; padding: 16px; font-size: 12px; }
  .fallback-scene { inset: 280px -190px 130px 22%; transform: perspective(760px) rotateX(58deg) rotateZ(-25deg) scale(.72); }
  .radar { width: min(78vw, 310px); }
  .lane-list article { grid-template-columns: 1fr; }
  .blueprint { height: 720px; margin: 0 18px; }
  .node { left: 50% !important; right: auto !important; transform: translateX(-50%); }
  .n1 { top: 8%; } .n2 { top: 24%; } .n3 { top: 42%; } .n4 { top: 60%; } .n5 { top: 78%; }
  .track { left: 18%; right: 18%; transform: rotate(90deg) !important; }
  .t1 { top: 24%; } .t2 { top: 42%; } .t3 { top: 60%; } .t4 { top: 78%; }
}
