:root {
  --paper: #f2eadb;
  --paper-deep: #e9ddca;
  --ink: #142433;
  --ink-soft: #526a78;
  --line: rgba(24, 75, 105, 0.2);
  --glass: rgba(255, 252, 244, 0.7);
  --acid: #007fa7;
  --mint: #0a8a67;
  --cyan: #007fa7;
  --blue: #087d9e;
  --violet: #0f766e;
  --accent: var(--acid);
  --shadow: 0 24px 72px rgba(35, 73, 98, 0.14);
  --display: "Bahnschrift", "Arial Narrow", "HarmonyOS Sans SC", "Microsoft YaHei", sans-serif;
  --body: "HarmonyOS Sans SC", "MiSans", "Source Han Sans SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font: inherit;
}

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

button {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

::selection {
  color: #071723;
  background: rgba(0, 127, 167, 0.22);
}

:focus-visible {
  outline: 3px solid #0c6b5e;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 99px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.cursor-aura {
  position: fixed;
  z-index: 80;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(0, 127, 167, 0.13), rgba(10, 138, 103, 0.08) 34%, transparent 72%);
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 300ms ease;
  mix-blend-mode: multiply;
}

@media (pointer: fine) {
  body:hover .cursor-aura {
    opacity: 1;
  }
}

.hero-scroll {
  position: relative;
  height: 430vh;
  min-height: 2800px;
}

.banner {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: 100%;
  height: 100svh;
  min-height: 720px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(242, 234, 219, 0.98) 0%, rgba(242, 234, 219, 0.93) 36%, rgba(242, 234, 219, 0.42) 67%, rgba(242, 234, 219, 0.76) 100%);
}

#organism,
#bannerParticles,
.fallback-field,
.grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#organism {
  z-index: -4;
  opacity: 0.62;
  transition: opacity 620ms ease;
}

#bannerParticles {
  z-index: -1;
  opacity: .82;
  mix-blend-mode: multiply;
  filter: saturate(1.18) contrast(1.06);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.22) 24%, #000 52%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.22) 24%, #000 52%, #000 100%);
}

.banner[data-stage="1"] #organism { opacity: .38; }
.banner[data-stage="2"] #organism { opacity: .26; }
.banner[data-stage="3"] #organism { opacity: .34; }
.banner[data-stage="4"] #organism { opacity: .46; }
.banner[data-stage="1"] #bannerParticles,
.banner[data-stage="2"] #bannerParticles,
.banner[data-stage="3"] #bannerParticles { opacity: .92; }

.fallback-field {
  z-index: -5;
  background:
    radial-gradient(circle at 76% 40%, rgba(10, 138, 103, 0.2), transparent 23%),
    radial-gradient(circle at 87% 65%, rgba(0, 127, 167, 0.16), transparent 22%),
    radial-gradient(circle at 56% 72%, rgba(0, 127, 167, 0.1), transparent 20%),
    linear-gradient(140deg, #fbf7ee 4%, #e9ddca 100%);
}

.webgl-ready .fallback-field {
  opacity: 0;
}

.grain {
  z-index: -2;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.36'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.site-header {
  z-index: 10;
  display: grid;
  grid-template-columns: 278px 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(100% - 64px, 1560px);
  margin: 0 auto;
  min-height: 92px;
  border-bottom: 1px solid var(--line);
}

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

.formal-brand-logo {
  display: block;
  width: 244px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 2.4vw, 44px);
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  color: #244b45;
  font-size: 14px;
  font-weight: 650;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.sound-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(9, 45, 40, 0.23);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
}

.sound-bars {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 12px;
}

.sound-bars i {
  width: 2px;
  height: 4px;
  border-radius: 3px;
  background: currentColor;
  transition: height 180ms ease;
}

.sound-toggle[aria-pressed="true"] .sound-bars i:nth-child(1) { height: 8px; animation: soundbar 900ms ease-in-out infinite alternate; }
.sound-toggle[aria-pressed="true"] .sound-bars i:nth-child(2) { height: 12px; animation: soundbar 700ms ease-in-out infinite alternate-reverse; }
.sound-toggle[aria-pressed="true"] .sound-bars i:nth-child(3) { height: 7px; animation: soundbar 820ms ease-in-out infinite alternate; }

@keyframes soundbar {
  to { height: 3px; }
}

.sound-label {
  font-size: 12px;
  font-weight: 700;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 42px;
  padding: 0 17px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 760;
  box-shadow: 0 10px 28px rgba(9, 45, 40, 0.16);
  transition: background 220ms ease, transform 220ms ease;
}

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

.hero-grid {
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(560px, 1fr);
  align-items: center;
  gap: clamp(18px, 3.2vw, 64px);
  width: min(100% - 64px, 1560px);
  min-height: 0;
  margin: 0 auto;
  padding: 24px 0 18px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 740px;
  padding-left: clamp(0px, 3vw, 46px);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: rise 760ms cubic-bezier(.2, .75, .22, 1) forwards;
}

.reveal[data-reveal="1"] { animation-delay: 80ms; }
.reveal[data-reveal="2"] { animation-delay: 160ms; }
.reveal[data-reveal="3"] { animation-delay: 260ms; }
.reveal[data-reveal="4"] { animation-delay: 360ms; }
.reveal[data-reveal="5"] { animation-delay: 460ms; }

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.18em;
}

.live-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(10, 138, 103, 0.12);
}

.live-dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(10, 138, 103, 0.36);
  border-radius: 50%;
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
  0% { transform: scale(0.5); opacity: 0; }
  25% { opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 4.65vw, 78px);
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

@media (min-width: 1181px) {
  h1 em {
    white-space: normal;
  }
}

h1 em {
  display: block;
  margin-top: 10px;
  color: transparent;
  font-style: normal;
  font-size: .9em;
  font-weight: 430;
  line-height: 1.08;
  letter-spacing: -.035em;
  background: linear-gradient(92deg, #145468 0%, #007fa7 48%, #0a8a67 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-intro {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: clamp(14px, .95vw, 16px);
  font-weight: 410;
  line-height: 1.72;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 55px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 780;
  letter-spacing: 0.02em;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.button b {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  font-size: 15px;
}

.button-primary {
  min-width: 220px;
  color: #fff;
  background: linear-gradient(135deg, #007fa7, #0a8a67);
  box-shadow: 0 17px 38px rgba(24, 75, 105, 0.18);
}

.button-primary b {
  color: #fff;
  background: rgba(7, 23, 35, 0.72);
}

.button-primary:hover {
  background: linear-gradient(135deg, #087d9e, #16745f);
  box-shadow: 0 20px 50px rgba(24, 75, 105, 0.24);
}

.button-quiet {
  min-width: 195px;
  border-color: rgba(24, 75, 105, 0.24);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
}

.button-quiet b {
  border: 1px solid rgba(9, 45, 40, 0.22);
}

.button-quiet:hover {
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 35px rgba(6, 52, 45, 0.1);
}

.route-pulses {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 25px;
}

.route-pulses a {
  position: relative;
  padding-left: 13px;
  color: #49655f;
  font-size: 12px;
  font-weight: 660;
}

.route-pulses a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #679a00;
  transform: translateY(-50%);
}

.route-pulses a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.system-view {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  justify-self: end;
}

.system-kicker {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding-right: 9%;
  color: rgba(9, 45, 40, 0.62);
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.system-kicker b {
  padding: 2px 7px;
  border-radius: 999px;
  color: #18423b;
  color: #fff;
  background: rgba(0, 127, 167, 0.88);
  font-size: 11px;
}

.orbit-scene {
  position: relative;
  width: min(69vh, 680px);
  max-width: 100%;
  aspect-ratio: 1;
  margin: -1.2vh auto -2vh;
}

.orbit-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 8px 20px rgba(9, 45, 40, 0.06));
}

.orbit-lines circle,
.orbit-lines path {
  fill: none;
  stroke: rgba(9, 45, 40, 0.18);
  stroke-width: 1;
  stroke-dasharray: 3 8;
}

.orbit-lines circle:first-child {
  animation: orbit-spin 44s linear infinite;
  transform-origin: 50% 50%;
}

.orbit-lines circle:nth-child(2) {
  stroke-dasharray: 1 7;
  animation: orbit-spin 32s linear infinite reverse;
  transform-origin: 50% 50%;
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

.system-core {
  --core-accent: var(--acid);
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 48%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 50%;
  background: rgba(241, 246, 238, 0.56);
  box-shadow: inset 0 0 50px rgba(255, 255, 255, 0.52), 0 38px 90px rgba(15, 71, 62, 0.18);
  backdrop-filter: blur(24px) saturate(1.3);
  transform: translate(-50%, -50%);
  transition: box-shadow 500ms ease, background 500ms ease;
}

.system-core[data-accent="1"] { --core-accent: var(--mint); }
.system-core[data-accent="2"] { --core-accent: var(--cyan); }
.system-core[data-accent="3"] { --core-accent: var(--blue); }
.system-core[data-accent="4"] { --core-accent: var(--violet); }

.core-halo {
  position: absolute;
  inset: -15%;
  border-radius: 50%;
  opacity: 0.45;
  background: radial-gradient(circle, color-mix(in srgb, var(--core-accent) 42%, transparent), transparent 68%);
  filter: blur(16px);
  animation: core-breathe 4.8s ease-in-out infinite;
}

.core-ring {
  position: absolute;
  inset: 7%;
  border: 1px solid color-mix(in srgb, var(--core-accent) 55%, transparent);
  border-radius: 50%;
  box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.5);
}

.core-ring::before,
.core-ring::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--core-accent);
  box-shadow: 0 0 18px color-mix(in srgb, var(--core-accent) 70%, transparent);
}

.core-ring::before {
  top: 3%;
  left: 27%;
  width: 7px;
  height: 7px;
}

.core-ring::after {
  right: 10%;
  bottom: 20%;
  width: 4px;
  height: 4px;
}

@keyframes core-breathe {
  0%, 100% { transform: scale(0.88); opacity: 0.32; }
  50% { transform: scale(1.11); opacity: 0.55; }
}

.core-content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: 78%;
  text-align: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.core-content.is-changing {
  opacity: 0;
  transform: translateY(8px) scale(0.98);
}

.core-step {
  color: #4d6b65;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.15em;
}

.core-content strong {
  margin-top: 9px;
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 31px);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.core-content p {
  max-width: 210px;
  margin: 12px 0 0;
  color: #4d6b65;
  font-size: 11px;
  line-height: 1.65;
}

.core-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 13px;
}

.core-tags span {
  padding: 3px 8px;
  border: 1px solid rgba(9, 45, 40, 0.16);
  border-radius: 999px;
  color: #31554f;
  background: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  font-weight: 700;
}

.product-node {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  transition: transform 380ms cubic-bezier(.2, .75, .22, 1), opacity 300ms ease;
}

.node-image {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(48px, 4.6vw, 68px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 34px rgba(7, 53, 46, 0.14);
  backdrop-filter: blur(12px);
}

.node-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: 50%;
  transition: border-color 250ms ease, box-shadow 250ms ease;
}

.node-image img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  filter: saturate(0.72) contrast(1.04);
  transition: filter 260ms ease, transform 400ms ease;
}

.node-label {
  display: grid;
  line-height: 1.1;
  text-align: left;
  white-space: nowrap;
}

.node-label b {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: -0.01em;
}

.node-label small {
  margin-top: 4px;
  color: #54706a;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.product-node:hover,
.product-node.is-active {
  transform: scale(1.1);
}

.product-node:hover .node-image::after,
.product-node.is-active .node-image::after {
  border-color: var(--node-color, var(--acid));
  box-shadow: inset 0 0 0 3px color-mix(in srgb, var(--node-color, var(--acid)) 20%, transparent), 0 0 30px color-mix(in srgb, var(--node-color, var(--acid)) 34%, transparent);
}

.product-node:hover img,
.product-node.is-active img {
  filter: saturate(1) contrast(1.05);
  transform: scale(1.08);
}

.node-auto { --node-color: var(--mint); top: 7%; left: 20%; }
.node-easypept { --node-color: var(--mint); top: 32%; right: 1%; flex-direction: row-reverse; }
.node-easypept .node-label,
.node-cloud .node-label { text-align: right; }
.node-lcms { --node-color: var(--cyan); right: 5%; bottom: 13%; flex-direction: row-reverse; }
.node-spectronaut { --node-color: var(--blue); bottom: 1%; left: 24%; }
.node-cloud { --node-color: var(--violet); top: 51%; left: 0; flex-direction: row-reverse; }

.stage-brief {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  width: min(68%, 460px);
  min-height: 75px;
  margin: 0 auto;
  padding: 13px 17px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 16px;
  background: rgba(247, 250, 245, 0.5);
  box-shadow: 0 18px 55px rgba(13, 66, 57, 0.1);
  backdrop-filter: blur(16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.stage-brief.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.brief-index {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #113a33;
  background: var(--accent);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 750;
}

.stage-brief strong {
  display: block;
  font-size: 13px;
}

.stage-brief p {
  margin: 4px 0 0;
  color: #55716b;
  font-size: 10px;
  line-height: 1.5;
}

.workflow-dock {
  z-index: 8;
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr) 48px;
  align-items: stretch;
  width: min(100% - 64px, 1560px);
  margin: 0 auto 22px;
  border: 1px solid rgba(9, 45, 40, 0.16);
  border-radius: 18px;
  background: rgba(246, 249, 243, 0.64);
  box-shadow: 0 16px 50px rgba(9, 45, 40, 0.09);
  backdrop-filter: blur(22px) saturate(1.15);
}

.dock-label {
  display: grid;
  align-content: center;
  padding-left: 20px;
  border-right: 1px solid var(--line);
  line-height: 1.1;
}

.dock-label span {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.16em;
}

.dock-label b {
  margin-top: 7px;
  color: #5b746f;
  font-size: 14px;
}

.dock-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-width: 0;
}

.dock-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  align-content: center;
  min-width: 0;
  min-height: 108px;
  padding: 10px 14px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.dock-step::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--step-color, var(--acid));
  transform: scaleX(0);
  transition: transform 280ms ease;
}

.dock-step:nth-child(1) { --step-color: var(--acid); }
.dock-step:nth-child(2) { --step-color: var(--mint); }
.dock-step:nth-child(3) { --step-color: var(--cyan); }
.dock-step:nth-child(4) { --step-color: var(--blue); }
.dock-step:nth-child(5) { --step-color: var(--violet); }

.dock-step:hover,
.dock-step.is-active {
  background: rgba(255, 255, 255, 0.42);
}

.dock-step:hover::before,
.dock-step.is-active::before {
  transform: scaleX(1);
}

.dock-step > span {
  grid-row: 1 / 3;
  align-self: center;
  color: #74908a;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
}

.dock-step b {
  min-width: 0;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 680;
  line-height: 1.18;
  overflow-wrap: anywhere;
  white-space: normal;
}

.dock-step small {
  min-width: 0;
  margin-top: 3px;
  color: #69817c;
  font-size: 12px;
  line-height: 1.28;
  overflow-wrap: anywhere;
  white-space: normal;
}

.scroll-cue {
  display: grid;
  place-items: center;
}

.scroll-cue i {
  position: relative;
  width: 17px;
  height: 30px;
  border: 1px solid rgba(9, 45, 40, 0.35);
  border-radius: 999px;
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  width: 3px;
  height: 6px;
  border-radius: 3px;
  background: var(--ink);
  transform: translateX(-50%);
  animation: scroll-dot 1.8s ease-in-out infinite;
}

@keyframes scroll-dot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 10px); }
}

.routes-section {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding: clamp(86px, 10vw, 150px) max(32px, calc((100vw - 1496px) / 2)) 90px;
  color: #eaf3ee;
  background:
    radial-gradient(circle at 84% 8%, rgba(60, 113, 104, 0.42), transparent 28%),
    linear-gradient(155deg, #082f29 0%, #061f1c 58%, #0a2824 100%);
}

.routes-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

.routes-heading,
.route-grid,
.proof-strip {
  position: relative;
  z-index: 1;
  width: min(100%, 1496px);
  margin-right: auto;
  margin-left: auto;
}

.routes-heading {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 54px;
}

.section-kicker {
  color: var(--acid);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.23em;
}

.routes-heading h2 {
  max-width: 920px;
  margin: 16px 0 0;
  font-family: var(--display);
  font-size: clamp(36px, 4.6vw, 76px);
  font-weight: 420;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.routes-heading > p {
  margin: 0 0 8px;
  color: #a9c0b9;
  font-size: 14px;
  line-height: 1.85;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(231, 243, 237, 0.2);
  border-left: 1px solid rgba(231, 243, 237, 0.2);
}

.route-card {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 18px;
  min-height: 225px;
  padding: 27px;
  border-right: 1px solid rgba(231, 243, 237, 0.2);
  border-bottom: 1px solid rgba(231, 243, 237, 0.2);
  overflow: hidden;
  transition: color 260ms ease, background 260ms ease;
}

.route-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -90px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(199, 242, 56, 0.25);
  border-radius: 50%;
  transform: scale(0.7);
  transition: transform 420ms ease, background 420ms ease;
}

.route-card:hover {
  color: var(--ink);
  background: var(--acid);
}

.route-card:hover::after {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.4);
}

.route-wide {
  grid-column: span 2;
}

.route-accent {
  background: rgba(199, 242, 56, 0.08);
}

.route-number {
  color: #8aa49d;
  font-family: var(--display);
  font-size: 11px;
}

.route-card small {
  color: #90aaa3;
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.route-card h3 {
  max-width: 600px;
  margin: 14px 0 0;
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 450;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.route-card p {
  max-width: 580px;
  margin: 15px 0 0;
  color: #a9c0b9;
  font-size: 12px;
}

.route-card > b {
  align-self: end;
  font-size: 24px;
  font-weight: 300;
}

.route-card:hover small,
.route-card:hover p,
.route-card:hover .route-number {
  color: rgba(9, 45, 40, 0.7);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 64px;
}

.proof-strip div {
  display: grid;
  gap: 6px;
  padding: 10px 24px;
  border-left: 1px solid rgba(231, 243, 237, 0.2);
}

.proof-strip div:last-child {
  border-right: 1px solid rgba(231, 243, 237, 0.2);
}

.proof-strip strong {
  color: var(--acid);
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 50px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.proof-strip span {
  color: #a9c0b9;
  font-size: 11px;
}

@media (max-width: 1180px) {
  .site-header,
  .hero-grid,
  .workflow-dock {
    width: min(100% - 40px, 1100px);
  }

  .site-header {
    grid-template-columns: 226px 1fr auto;
  }

  .formal-brand-logo { width: 210px; }

  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 12px;
  }

  .sound-label {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(385px, 0.82fr) minmax(480px, 1.18fr);
  }

  .hero-copy {
    padding-left: 0;
  }

  .node-label {
    display: none;
  }

  .stage-brief {
    width: 74%;
  }
}

@media (max-width: 900px) {
  .hero-scroll {
    height: 360vh;
    min-height: 2350px;
  }

  .banner {
    min-height: 680px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 76px;
  }

  .main-nav,
  .sound-toggle {
    display: none;
  }

  .header-cta {
    min-height: 38px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 0;
    padding-bottom: 102px;
  }

  .hero-copy {
    width: min(100%, 640px);
  }

  h1 {
    font-size: clamp(47px, 9vw, 74px);
  }

  .hero-intro {
    max-width: 590px;
  }

  .system-view {
    position: absolute;
    z-index: -1;
    top: 13%;
    right: -18%;
    width: 68%;
    opacity: 0.5;
    filter: blur(0.2px);
  }

  .system-kicker,
  .stage-brief,
  .product-node,
  .system-core {
    display: none;
  }

  .orbit-scene {
    width: 100%;
  }

  .workflow-dock {
    grid-template-columns: 1fr 38px;
    overflow: hidden;
  }

  .dock-label {
    display: none;
  }

  .dock-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .dock-track::-webkit-scrollbar {
    display: none;
  }

  .dock-step {
    flex: 0 0 180px;
    scroll-snap-align: start;
  }

  .routes-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .routes-heading > p {
    max-width: 620px;
  }

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

  .route-wide {
    grid-column: span 2;
  }
}

@media (max-width: 620px) {
  .site-header,
  .hero-grid,
  .workflow-dock {
    width: calc(100% - 28px);
  }

  .site-header {
    min-height: 70px;
  }

  .formal-brand-logo { width: 164px; }

  .header-cta {
    padding: 0 13px;
    font-size: 11px;
  }

  .hero-grid {
    padding-top: 6px;
    padding-bottom: 92px;
  }

  .eyebrow {
    max-width: 310px;
    margin-bottom: 17px;
    font-size: 10px;
    line-height: 1.5;
  }

  h1 {
    font-size: clamp(38px, 9.8vw, 44px);
    line-height: 1.01;
  }

  h1 em {
    white-space: normal;
  }

  .hero-intro {
    margin-top: 21px;
    font-size: 13px;
    line-height: 1.76;
  }

  .hero-actions {
    margin-top: 23px;
  }

  .button {
    min-width: 0;
    min-height: 49px;
    padding: 0 17px;
    gap: 17px;
    font-size: 12px;
  }

  .button-primary {
    flex: 1 1 188px;
  }

  .button-quiet {
    flex: 1 1 154px;
  }

  .route-pulses {
    display: none;
  }

  .system-view {
    top: 17%;
    right: -39%;
    width: 100%;
    opacity: 0.32;
  }

  .workflow-dock {
    margin-bottom: 12px;
    border-radius: 14px;
  }

  .dock-step {
    flex-basis: 200px;
    min-height: 98px;
    padding: 10px 14px;
  }

  .routes-section {
    padding: 82px 14px 70px;
  }

  .routes-heading {
    margin-bottom: 36px;
  }

  .routes-heading h2 {
    font-size: clamp(34px, 11vw, 50px);
  }

  .routes-heading > p {
    font-size: 13px;
  }

  .route-grid {
    grid-template-columns: 1fr;
  }

  .route-wide {
    grid-column: span 1;
  }

  .route-card {
    min-height: 196px;
    padding: 22px 18px;
  }

  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 28px;
    margin-top: 46px;
  }

  .proof-strip div:nth-child(3) {
    border-left: 1px solid rgba(231, 243, 237, 0.2);
  }

  .proof-strip div:last-child {
    border-right: 0;
  }
}

@media (max-height: 760px) and (min-width: 901px) {
  .banner {
    min-height: 650px;
  }

  .site-header {
    min-height: 72px;
  }

  .hero-grid {
    padding-top: 10px;
    padding-bottom: 8px;
  }

  h1 {
    font-size: clamp(47px, 4.7vw, 72px);
  }

  .hero-intro {
    margin-top: 18px;
    line-height: 1.7;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .route-pulses {
    margin-top: 16px;
  }

  .orbit-scene {
    width: min(60vh, 560px);
  }

  .stage-brief {
    min-height: 64px;
    padding: 10px 14px;
  }

  .workflow-dock {
    margin-bottom: 12px;
  }

  .dock-step {
    min-height: 78px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .cursor-aura {
    display: none;
  }
}

/* V2: the product and service chain is the animation, not decoration. */
.banner {
  --scene-soft: rgba(0, 127, 167, 0.15);
  --scene-deep: #006f91;
  transition: background-color 800ms ease;
}

.banner[data-stage="1"] { --scene-soft: rgba(10, 138, 103, 0.16); --scene-deep: #0a7458; }
.banner[data-stage="2"] { --scene-soft: rgba(0, 127, 167, 0.17); --scene-deep: #006f91; }
.banner[data-stage="3"] { --scene-soft: rgba(8, 125, 158, 0.16); --scene-deep: #087d9e; }
.banner[data-stage="4"] { --scene-soft: rgba(15, 118, 110, 0.16); --scene-deep: #0f766e; }

.hero-copy {
  transition: filter 260ms ease;
}

.hero-copy.is-changing .eyebrow-text,
.hero-copy.is-changing .headline-lead,
.hero-copy.is-changing .headline-accent,
.hero-copy.is-changing .hero-intro,
.hero-copy.is-changing .stage-signal {
  opacity: 0;
  transform: translateY(12px);
}

.eyebrow-text,
.headline-lead,
.headline-accent,
.hero-intro,
.stage-signal {
  transition: opacity 220ms ease, transform 300ms cubic-bezier(.2,.75,.22,1);
}

.headline-lead {
  display: block;
  font-weight: 760;
}

.stage-signal {
  display: grid;
  grid-template-columns: auto 36px 1fr;
  align-items: center;
  width: min(100%, 560px);
  margin-top: 19px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-index {
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.15em;
}

.signal-pulse {
  position: relative;
  display: block;
  width: 7px;
  height: 7px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent) 18%, transparent), 0 0 24px color-mix(in srgb, var(--accent) 56%, transparent);
}

.signal-pulse::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid color-mix(in srgb, var(--accent) 60%, transparent);
  border-radius: 50%;
  animation: signal-ring 1.7s ease-out infinite;
}

@keyframes signal-ring {
  to { opacity: 0; transform: scale(1.8); }
}

.stage-signal > span:last-child {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.signal-title {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
}

.signal-path {
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: .04em;
}

.system-view {
  position: relative;
  width: min(100%, 820px);
  height: min(72vh, 710px, calc(100svh - 250px));
  min-height: min(560px, calc(100svh - 250px));
  isolation: isolate;
}

.system-kicker {
  position: absolute;
  z-index: 12;
  top: 0;
  right: 2%;
  left: 2%;
  justify-content: space-between;
  padding: 0;
}

.scene-number {
  color: var(--ink);
  background: var(--accent) !important;
  transition: background 500ms ease;
}

.scene-deck {
  position: absolute;
  inset: 24px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 42px 42px 110px 42px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.56), rgba(238,245,239,.18)),
    radial-gradient(circle at 64% 45%, var(--scene-soft), transparent 53%);
  box-shadow: inset 0 0 80px rgba(255,255,255,.45), 0 40px 100px rgba(9,45,40,.14);
  backdrop-filter: blur(18px) saturate(1.15);
  transition: background 700ms ease, border-radius 700ms cubic-bezier(.2,.75,.22,1);
}

.banner[data-stage="1"] .scene-deck { border-radius: 110px 42px 42px 42px; }
.banner[data-stage="2"] .scene-deck { border-radius: 42px 110px 42px 42px; }
.banner[data-stage="3"] .scene-deck { border-radius: 42px 42px 42px 110px; }
.banner[data-stage="4"] .scene-deck { border-radius: 110px 42px 110px 42px; }

.handoff-rail {
  position: absolute;
  z-index: 8;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.handoff-track,
.handoff-progress {
  fill: none;
  stroke-linecap: round;
  stroke-width: 2;
}

.handoff-track {
  stroke: rgba(9, 45, 40, 0.11);
  stroke-dasharray: 3 12;
}

.handoff-progress {
  stroke: var(--accent);
  filter: drop-shadow(0 0 8px color-mix(in srgb, var(--accent) 64%, transparent));
  transition: stroke 500ms ease;
}

.handoff-orb {
  fill: var(--accent);
  stroke: rgba(255,255,255,.9);
  stroke-width: 5;
  filter: drop-shadow(0 0 12px color-mix(in srgb, var(--accent) 74%, transparent));
  transition: fill 500ms ease;
}

.handoff-label {
  position: absolute;
  z-index: 11;
  top: 70%;
  left: 8%;
  pointer-events: none;
  transform: translate(-50%, -38px);
}

.handoff-label span {
  display: block;
  min-width: 50px;
  padding: 5px 9px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 8px 24px rgba(8,41,36,.18);
  font-size: 11px;
  font-weight: 760;
  text-align: center;
  white-space: nowrap;
}

.business-scene {
  --entry-x: 50%;
  --entry-y: 50%;
  position: absolute;
  z-index: 3;
  inset: 25px;
  opacity: 0;
  visibility: hidden;
  clip-path: none;
  transform: translate3d(0, 30px, 0) scale(.96);
  transition: opacity 260ms ease, visibility 0s linear 520ms, transform 520ms cubic-bezier(.16,.82,.18,1);
}

.business-scene.is-active {
  z-index: 5;
  opacity: 1;
  visibility: visible;
  clip-path: none;
  transform: translate3d(0, var(--scene-shift, 0px), 0) scale(1);
  transition-delay: 80ms, 0s, 0s, 0s;
}

.scene-design { --entry-x: 48%; --entry-y: 52%; }
.scene-prep { --entry-x: 28%; --entry-y: 72%; }
.scene-lcms { --entry-x: 78%; --entry-y: 46%; }
.scene-analysis { --entry-x: 48%; --entry-y: 48%; }
.scene-delivery { --entry-x: 72%; --entry-y: 24%; }

.scene-caption {
  position: absolute;
  z-index: 9;
  right: 15px;
  bottom: 8px;
  left: 15px;
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 58px;
  padding: 10px 15px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 18px;
  background: rgba(247,250,245,.68);
  box-shadow: 0 14px 34px rgba(9,45,40,.1);
  backdrop-filter: blur(14px);
}

.scene-caption > span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 780;
}

.scene-caption div {
  display: grid;
  line-height: 1.25;
}

.scene-caption small {
  color: #68817b;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: .15em;
}

.scene-caption b {
  margin-top: 4px;
  font-size: 17px;
  font-weight: 680;
}

.tilt-layer {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transform-style: preserve-3d;
}

.banner-product-card {
  --product-scale: 1;
  cursor: pointer;
  transition: opacity 420ms ease, filter 420ms ease, transform 650ms cubic-bezier(.16,.82,.18,1), box-shadow 420ms ease;
}

.banner-product-card::after {
  content: "";
  position: absolute;
  z-index: 14;
  inset: -7px;
  border: 1px solid color-mix(in srgb, var(--accent) 65%, transparent);
  border-radius: 28px;
  opacity: 0;
  pointer-events: none;
  transform: scale(.96);
  transition: opacity 320ms ease, transform 520ms cubic-bezier(.16,.82,.18,1);
}

.banner-product-card.is-product-featured {
  --product-scale: 1.08;
  z-index: 13 !important;
  opacity: 1;
  filter: saturate(1.05) drop-shadow(0 24px 28px rgba(24,75,105,.16));
}

.banner-product-card.is-product-featured::after {
  opacity: .75;
  transform: scale(1);
  animation: featured-product-ring 2.4s ease-in-out infinite;
}

.banner-product-card.is-product-muted {
  --product-scale: .92;
  opacity: .58;
  filter: saturate(.72);
}

.prep-machine.is-product-featured,
.lcms-platform.is-product-featured {
  --product-scale: 1.045;
}

.prep-kit.is-product-featured,
.aurora-column.is-product-featured {
  --product-scale: 1.18;
}

.cloud-hub.banner-product-card::after {
  border-radius: 50%;
}

@keyframes featured-product-ring {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 0%, transparent); }
  50% { box-shadow: 0 0 0 9px color-mix(in srgb, var(--accent) 10%, transparent); }
}

/* Research design scene */
.design-radar {
  position: absolute;
  inset: 2% 7% 10%;
}

.research-core {
  position: absolute;
  z-index: 4;
  top: 48%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 42%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 50%;
  background: rgba(247,250,244,.62);
  box-shadow: inset 0 0 55px #fff, 0 30px 74px rgba(9,45,40,.14);
  text-align: center;
  transform: translate(-50%,-50%) perspective(900px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
  backdrop-filter: blur(16px);
}

.research-core::before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px dashed color-mix(in srgb, var(--accent) 65%, transparent);
  border-radius: 50%;
  animation: orbit-spin 22s linear infinite;
}

.research-core small {
  color: #678078;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: .16em;
}

.research-core strong {
  font-family: var(--display);
  font-size: clamp(22px,2.1vw,34px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.research-core span {
  color: #4d6c65;
  font-size: 12px;
}

.radar-ring {
  position: absolute;
  top: 48%;
  left: 50%;
  border: 1px solid rgba(9,45,40,.14);
  border-radius: 50%;
  transform: translate(-50%,-50%);
}

.ring-one { width: 66%; aspect-ratio: 1; border-style: dashed; animation: orbit-spin 36s linear infinite; }
.ring-two { width: 90%; aspect-ratio: 1; animation: orbit-spin 46s linear infinite reverse; }

.service-orbit {
  --service-radius: 215px;
  position: absolute;
  z-index: 6;
  inset: 0;
  transform-origin: 50% 50%;
  animation: service-orbit-spin 34s linear infinite;
}

.service-orbit-slot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  pointer-events: none;
  transform: rotate(var(--orbit-angle)) translateX(var(--service-radius));
  transform-origin: 0 0;
}

.research-node {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  min-width: 150px;
  padding: 12px 17px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  color: #31564f;
  background: rgba(248,251,246,.74);
  box-shadow: 0 12px 30px rgba(9,45,40,.1);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 680;
  text-align: center;
  backdrop-filter: blur(10px);
  pointer-events: auto;
  transform-origin: center;
  animation: service-card-counterspin 34s linear infinite;
  transform-origin: center;
}

.research-node.is-product-featured {
  min-width: 210px;
  padding: 16px 22px;
  font-size: 17px;
  background: rgba(255,252,244,.94);
  box-shadow: 0 20px 48px rgba(24,75,105,.18);
}

.service-orbit:hover,
.service-orbit:focus-within,
.service-orbit:hover .research-node,
.service-orbit:focus-within .research-node {
  animation-play-state: paused;
}

@keyframes service-orbit-spin {
  to { transform: rotate(360deg); }
}

@keyframes service-card-counterspin {
  from { transform: translate(-50%,-50%) rotate(var(--counter-angle)) scale(var(--product-scale,1)); }
  to { transform: translate(-50%,-50%) rotate(calc(var(--counter-angle) - 360deg)) scale(var(--product-scale,1)); }
}

@keyframes node-float {
  to { transform: translateY(-9px); }
}

/* Preparation scene */
.prep-machine {
  position: absolute;
  z-index: 5;
  right: 1%;
  bottom: 9%;
  width: 66%;
  transform: perspective(1000px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) scale(var(--product-scale, 1));
}

.prep-machine img {
  position: relative;
  z-index: 2;
  width: 100%;
  filter: drop-shadow(0 28px 28px rgba(6,44,38,.2));
  transform: translateY(25px) scale(.9);
  transition: transform 900ms cubic-bezier(.16,.82,.18,1);
}

.scene-prep.is-active .prep-machine img {
  transform: translateY(0) scale(1);
}

.machine-glow {
  position: absolute;
  z-index: 1;
  right: 9%;
  bottom: 3%;
  width: 74%;
  height: 30%;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 43%, transparent);
  filter: blur(28px);
}

.product-tag {
  position: absolute;
  z-index: 6;
  top: 7%;
  right: 7%;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .14em;
}

.prep-kit {
  position: absolute;
  z-index: 7;
  bottom: 22%;
  left: 1%;
  width: 29%;
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: transparent;
  box-shadow: none;
  transform: perspective(900px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) rotate(-6deg) scale(var(--product-scale, 1));
  backdrop-filter: none;
}

.prep-kit img { width: 100%; height: auto; border-radius: 14px; object-fit: contain; filter: drop-shadow(0 22px 24px rgba(24,75,105,.17)); mix-blend-mode: multiply; }
.prep-kit > span { display: grid; margin-top: 7px; padding: 0 8px; line-height: 1.2; text-align: center; }
.prep-kit b { font-family: var(--display); font-size: 16px; font-weight: 680; }
.prep-kit small { margin-top: 4px; color: var(--ink-soft); font-size: 12px; overflow-wrap: anywhere; white-space: normal; }

.prep-kit-protein {
  bottom: 13%;
  left: 3%;
  width: 27%;
}

.prep-kit-modification {
  top: 22%;
  bottom: auto;
  left: 2%;
  width: 24%;
  transform: perspective(900px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) rotate(5deg) scale(var(--product-scale, 1));
}

.prep-kit-modification img {
  filter: drop-shadow(0 20px 22px rgba(24,75,105,.16));
  mix-blend-mode: normal;
}

.process-chain {
  position: absolute;
  z-index: 8;
  top: 9%;
  left: 2%;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  width: 50%;
}

.process-chain span,
.acquisition-modes span,
.delivery-services span {
  padding: 6px 10px;
  border: 1px solid rgba(9,45,40,.15);
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.prep-flow {
  position: absolute;
  z-index: 4;
  top: 26%;
  left: 21%;
  width: 42%;
  height: 8px;
  border-top: 1px dashed var(--accent);
  transform: rotate(15deg);
}

.prep-flow i {
  position: absolute;
  top: -4px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: reagent-flow 2.7s linear infinite;
}

.prep-flow i:nth-child(2) { animation-delay: -.5s; }
.prep-flow i:nth-child(3) { animation-delay: -1s; }
.prep-flow i:nth-child(4) { animation-delay: -1.5s; }
.prep-flow i:nth-child(5) { animation-delay: -2s; }

@keyframes reagent-flow {
  to { left: 100%; transform: scale(.35); opacity: .15; }
}

/* LC-MS scene */
.chromatogram {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 13%;
  left: 0;
  width: 100%;
  height: 48%;
  overflow: visible;
}

.chromatogram path {
  fill: none;
  stroke: color-mix(in srgb, var(--accent) 76%, var(--ink));
  stroke-width: 2;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  filter: drop-shadow(0 0 7px color-mix(in srgb, var(--accent) 55%, transparent));
}

.chromatogram path:nth-child(2) { stroke-width: 1; opacity: .45; }
.scene-lcms.is-active .chromatogram path { animation: draw-chrom 1.7s ease forwards; }
.scene-lcms.is-active .chromatogram path:nth-child(2) { animation-delay: .35s; }

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

.lcms-platform {
  position: absolute;
  z-index: 5;
  top: 8%;
  right: -3%;
  width: 69%;
  transform: perspective(1000px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) scale(var(--product-scale, 1));
}

.lcms-platform img {
  width: 100%;
  height: auto;
  filter: saturate(.88) contrast(1.06) drop-shadow(0 28px 30px rgba(6,43,38,.16));
  mix-blend-mode: multiply;
}

.lcms-platform .product-tag { top: 4%; right: 3%; }

.aurora-column {
  position: absolute;
  z-index: 7;
  right: 3%;
  bottom: 17%;
  width: 46%;
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: transparent;
  box-shadow: none;
  transform: perspective(900px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) rotate(-4deg) scale(var(--product-scale, 1));
  backdrop-filter: none;
}

.aurora-column img { width: 100%; height: 118px; object-fit: contain; filter: contrast(1.12) drop-shadow(0 18px 18px rgba(9,45,40,.18)); mix-blend-mode: multiply; }
.has-alpha-cutout { mix-blend-mode: normal !important; }
.aurora-column > span { display: grid; justify-items: center; gap: 2px; padding: 2px 8px 0; text-align: center; }
.aurora-column b { font-family: var(--display); font-size: 15px; font-weight: 680; line-height: 1.18; overflow-wrap: anywhere; }
.aurora-column small { color: var(--ink-soft); font-size: 12px; line-height: 1.2; overflow-wrap: anywhere; white-space: normal; }

.lcms-consumables {
  position: absolute;
  z-index: 8;
  bottom: 13%;
  left: 4%;
  display: grid;
  gap: 7px;
  width: 40%;
  min-height: 170px;
  padding: 14px 16px 12px;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 26px;
  background: rgba(247,250,245,.58);
  box-shadow: 0 18px 42px rgba(9,45,40,.1);
  backdrop-filter: blur(12px) saturate(1.08);
  transform: perspective(900px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) rotate(2deg) scale(var(--product-scale, 1));
}

.lcms-consumables .product-tag {
  top: 8px;
  right: 10px;
  padding: 5px 8px;
  font-size: 8px;
}

.consumables-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  padding-top: 24px;
}

.consumables-showcase > span {
  display: grid;
  place-items: center;
  gap: 3px;
  min-width: 0;
}

.consumables-showcase img {
  width: 58px;
  height: 54px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 10px 12px rgba(24,75,105,.14));
}

.consumables-showcase b,
.lcms-consumables > small {
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.25;
  text-align: center;
}

.lcms-consumables > strong {
  font-family: var(--display);
  font-size: 15px;
  line-height: 1.2;
  text-align: center;
}

.acquisition-modes {
  position: absolute;
  z-index: 8;
  top: 10%;
  left: 5%;
  display: grid;
  gap: 7px;
}

.acquisition-modes span { width: max-content; }
.acquisition-modes span { padding: 8px 12px; font-size: 12px; }

/* Analysis scene */
.software-carousel {
  position: absolute;
  z-index: 10;
  inset: 1% 1% 11%;
  height: auto;
}

.analysis-software-slot {
  position: absolute;
  inset: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  offset-path: ellipse(42% 36% at 50% 50%);
  offset-distance: var(--software-distance);
  offset-rotate: 0deg;
  animation: analysis-software-slot-orbit 30s linear infinite;
}

.software-logo-card {
  --product-scale: 1;
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  grid-template-rows: 64px auto;
  align-items: start;
  justify-items: center;
  gap: 7px;
  width: 112px;
  min-height: 98px;
  padding: 0 5px 5px;
  border: 0;
  border-radius: 28px;
  overflow: visible;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  transform: translate(-50%,-50%) scale(var(--product-scale, 1));
  transform-origin: center;
  backdrop-filter: none;
  transition: opacity 360ms ease, filter 420ms ease;
  pointer-events: auto;
}

.software-logo-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 14px 16px rgba(24,75,105,.18));
  mix-blend-mode: multiply;
  transition: width 520ms cubic-bezier(.16,.82,.18,1), height 520ms cubic-bezier(.16,.82,.18,1);
}

.software-logo-card > span {
  display: grid;
  width: 100%;
  min-width: 0;
  line-height: 1.16;
  text-align: center;
}

.software-logo-card b {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 720;
  overflow-wrap: anywhere;
  white-space: normal;
}

.software-logo-card small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.22;
  overflow-wrap: anywhere;
  white-space: normal;
}

.software-logo-card.is-product-featured {
  --product-scale: 1.12;
  grid-template-rows: 82px auto;
  min-height: 116px;
  opacity: 1;
  filter: saturate(1.12) drop-shadow(0 20px 24px rgba(0,127,167,.18));
}

.software-logo-card.is-product-featured img {
  width: 82px;
  height: 82px;
}

.software-logo-card.is-product-featured b {
  font-size: 17px;
}

.software-logo-card.banner-product-card::after {
  inset: 4px 14px 42px;
  border-radius: 50%;
}

.analysis-software-orbit:hover,
.analysis-software-orbit:focus-within,
.analysis-software-orbit:hover .analysis-software-slot,
.analysis-software-orbit:focus-within .analysis-software-slot {
  animation-play-state: paused;
}

@keyframes analysis-software-slot-orbit {
  to { offset-distance: calc(var(--software-distance) + 100%); }
}

.analysis-console {
  position: absolute;
  z-index: 6;
  inset: 36% 27% 37%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 30px;
  color: var(--ink);
  background: linear-gradient(145deg,rgba(244,248,246,.95),rgba(211,230,232,.94));
  box-shadow: 0 30px 80px rgba(35,73,98,.18);
  transform: perspective(1200px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) scale(var(--product-scale, 1));
}

.console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(24,75,105,.14);
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: .1em;
}

.software-mark { display: flex; align-items: center; gap: 9px; color: var(--ink); }
.software-mark img { width: 46px; height: 46px; object-fit: contain; }
.software-mark b { font-size: 13px; font-weight: 700; }

.console-body {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-template-rows: 1fr auto;
  gap: 12px;
  height: calc(100% - 42px);
  padding: 8px;
}

.spectrum-strip {
  display: flex;
  align-items: end;
  gap: 5px;
  min-height: 68px;
  padding: 7px 9px 0;
  border: 1px solid rgba(24,75,105,.12);
  border-radius: 16px;
  background: linear-gradient(rgba(0,127,167,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(0,127,167,.08) 1px, transparent 1px);
  background-size: 24px 24px;
}

.spectrum-strip i {
  width: 5px;
  height: var(--h);
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top,#007fa7,#0a8a67);
  box-shadow: 0 0 9px rgba(0,127,167,.28);
  transform: scaleY(0);
  transform-origin: bottom;
}

.scene-analysis.is-active .spectrum-strip i { animation: spectrum-grow 620ms ease forwards; }
.scene-analysis.is-active .spectrum-strip i:nth-child(2n) { animation-delay: 120ms; }
.scene-analysis.is-active .spectrum-strip i:nth-child(3n) { animation-delay: 240ms; }

@keyframes spectrum-grow { to { transform: scaleY(1); } }

.quant-grid {
  display: grid;
  align-content: center;
  gap: 5px;
}

.quant-grid span { display: grid; gap: 6px; }
.quant-grid b { color: var(--ink-soft); font-size: 11px; font-weight: 620; }
.quant-grid i { position: relative; height: 5px; border-radius: 9px; background: rgba(24,75,105,.1); }
.quant-grid i::after { content:""; position:absolute; inset:0 auto 0 0; width:var(--w); border-radius:inherit; background:linear-gradient(90deg,#0a8a67,#007fa7); transform:scaleX(0); transform-origin:left; }
.scene-analysis.is-active .quant-grid i::after { animation: quant-grow 1s ease .28s forwards; }
@keyframes quant-grow { to { transform: scaleX(1); } }

.evidence-candidates {
  grid-column: 1 / 3;
  display: none;
  align-items: center;
  gap: 11px;
  padding: 8px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.58);
}

.evidence-candidates i { width: 10px; height: 10px; border-radius:50%; background:#0a8a67; box-shadow: 0 0 12px rgba(10,138,103,.32); }
.evidence-candidates i:nth-child(2n) { background:#007fa7; }

.analysis-branches { display: none; }

.analysis-branches span {
  display: grid;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 13px;
  background: rgba(245,249,246,.82);
  box-shadow: 0 10px 30px rgba(9,45,40,.12);
  line-height: 1.1;
}

.analysis-branches b { font-size: 9px; }
.analysis-branches small { margin-top:4px; color:#668079; font-size:7px; }

/* Delivery scene */
.cloud-hub {
  position: absolute;
  z-index: 7;
  top: 34%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 38%;
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  transform: translate(-50%,-50%) perspective(900px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) scale(var(--product-scale, 1));
  backdrop-filter: none;
}

.cloud-hub::before,
.cloud-hub::after {
  content:"";
  position:absolute;
  border:1px dashed color-mix(in srgb,var(--accent) 55%,transparent);
  border-radius:50%;
  animation:orbit-spin 30s linear infinite;
}
.cloud-hub::before { inset:-17%; }
.cloud-hub::after { inset:-35%; animation-direction:reverse; animation-duration:42s; }
.cloud-hub > span { color:var(--ink-soft); font-family:var(--display); font-size:12px; font-weight:700; letter-spacing:.14em; }
.cloud-hub img { width:84%; filter:drop-shadow(0 22px 24px rgba(24,75,105,.16)); mix-blend-mode:multiply; }
.cloud-hub small { color:var(--ink-soft); font-size:12px; }

.delivery-product-orbit {
  position: absolute;
  z-index: 9;
  inset: 3% 10% 8%;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.delivery-product-orbit::before,
.delivery-product-orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  aspect-ratio: 1;
  border: 1px dashed color-mix(in srgb,var(--accent) 50%,transparent);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  animation: delivery-product-orbit-spin 28s linear infinite;
}

.delivery-product-orbit::before { width: 62%; }
.delivery-product-orbit::after { width: 86%; opacity: .58; animation-duration: 42s; animation-direction: reverse; }

.delivery-product-card {
  --product-scale: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  gap: 8px;
  width: 52%;
  min-height: 210px;
  color: var(--ink);
  background: transparent;
  text-align: center;
  pointer-events: auto;
  transform: translate(-50%,-50%) perspective(900px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) scale(var(--product-scale,1));
  transition: opacity 460ms ease, visibility 0s linear 460ms, transform 680ms cubic-bezier(.16,.82,.18,1), filter 460ms ease;
}

.delivery-product-card img {
  width: 96%;
  max-height: 170px;
  object-fit: contain;
  filter: drop-shadow(0 22px 24px rgba(24,75,105,.18));
  mix-blend-mode: multiply;
}

.delivery-product-card > span {
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: .16em;
}

.delivery-product-card small {
  color: var(--ink-soft);
  font-size: 12px;
}

.delivery-product-card.is-product-featured {
  --product-scale: 1.08;
  opacity: 1;
  visibility: visible;
  filter: saturate(1.06) drop-shadow(0 26px 28px rgba(0,127,167,.14));
  transition-delay: 0s;
}

.delivery-product-card.is-product-muted {
  --product-scale: .82;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.delivery-product-card.banner-product-card::after {
  inset: 14% 4% 12%;
  border-radius: 50%;
}

.scene-delivery .delivery-card,
.scene-delivery .delivery-services {
  z-index: 6;
  opacity: .72;
}

@keyframes delivery-product-orbit-spin {
  to { transform: translate(-50%,-50%) rotate(360deg); }
}

.delivery-card {
  position:absolute;
  z-index:8;
  display:grid;
  min-width:35%;
  padding:14px;
  border:1px solid rgba(255,255,255,.72);
  border-radius:18px;
  background:rgba(249,251,248,.75);
  box-shadow:0 18px 46px rgba(32,20,75,.12);
  backdrop-filter:blur(14px);
  animation:node-float 4.2s ease-in-out infinite alternate;
}
.delivery-card small { color:#617a74; font-family:var(--display); font-size:10px; line-height:1.25; letter-spacing:.12em; overflow-wrap:anywhere; }
.delivery-card b { margin-top:5px; font-size:12px; line-height:1.35; overflow-wrap:anywhere; }
.card-report { top:6%; left:2%; }
.card-review { top:10%; right:0; animation-delay:-1.4s; }
.card-archive { right:4%; bottom:17%; animation-delay:-2.1s; }
.card-report i { width:74%; height:3px; margin-top:6px; border-radius:5px; background:#c8bee8; }
.card-report i:nth-of-type(2) { width:53%; }
.card-report i:nth-of-type(3) { width:86%; }
.card-review span,.card-archive span { margin-top:8px; color:#46645d; font-size:10px; letter-spacing:.2em; }
.delivery-card .delivery-card-meta { margin-top:8px; color:#46645d; font-size:9px; letter-spacing:.14em; }
.scene-delivery[data-delivery-product="悟空云"] .delivery-card { border-color:rgba(0,127,167,.26); background:rgba(244,250,249,.8); }
.scene-delivery[data-delivery-product="悟空云"] .card-report i { background:linear-gradient(90deg,rgba(0,127,167,.5),rgba(10,138,103,.38)); }
.scene-delivery.is-delivery-profile-entering .delivery-card { animation:delivery-profile-enter 560ms cubic-bezier(.16,.82,.18,1) both; }
.scene-delivery.is-delivery-profile-entering .delivery-card:nth-of-type(2) { animation-delay:70ms; }
.scene-delivery.is-delivery-profile-entering .delivery-card:nth-of-type(3) { animation-delay:140ms; }

@keyframes delivery-profile-enter {
  from { opacity:0; transform:translateY(12px) scale(.97); }
  to { opacity:.72; transform:translateY(0) scale(1); }
}

.delivery-services {
  position:absolute;
  z-index:8;
  bottom:17%;
  left:2%;
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  width:47%;
}

@media (max-width: 1180px) and (min-width: 901px) {
  .system-view { min-height: 510px; }
  .scene-deck { border-radius: 34px 34px 80px 34px; }
  .business-scene { inset: 18px; }
  .scene-caption { right: 7px; left: 7px; }
  .research-core { width: 52%; }
  .prep-machine { width: 71%; }
  .lcms-platform { width: 74%; }
}

@media (max-width: 900px) {
  .hero-grid {
    position: relative;
  }

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

  .stage-signal {
    width: min(100%, 520px);
  }

  .system-view {
    position: absolute;
    z-index: 2;
    top: 27%;
    right: -18%;
    display: block;
    width: 88%;
    height: 64%;
    min-height: 0;
    opacity: .4;
    pointer-events: auto;
    filter: none;
  }

  .scene-deck {
    inset: 0;
    border: 0;
    border-radius: 50% !important;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .system-kicker,
  .scene-caption,
  .handoff-label,
  .handoff-rail {
    display: none;
  }

  .business-scene {
    inset: 0;
  }

  .research-core,
  .process-chain,
  .acquisition-modes,
  .analysis-branches,
  .delivery-card,
  .delivery-services,
  .cloud-hub > span,
  .cloud-hub > small {
    display: none;
  }

  .design-radar { opacity: .78; }
  .service-orbit { --service-radius: 140px; }
  .research-node { display: block; min-width: 108px; padding: 7px 9px; font-size: 10px; }
  .research-node.is-product-featured { min-width: 148px; padding: 9px 12px; font-size: 12px; }
  .prep-machine { right: 0; bottom: 15%; width: 82%; }
  .prep-kit { bottom: 18%; left: 1%; width: 31%; padding: 8px; }
  .prep-kit-protein,
  .prep-kit-modification { top: auto; right: auto; bottom: 18%; left: 3%; width: 36%; }
  .lcms-platform { top: 19%; right: 0; width: 84%; }
  .aurora-column { right: 1%; bottom: 17%; width: 48%; padding: 7px 9px; }
  .lcms-consumables { right: auto; bottom: 15%; left: 3%; width: 54%; min-height: 150px; }
  .product-tag { padding: 6px 9px; font-size: 10px; }
  .analysis-software-slot { offset-path: ellipse(41% 34% at 50% 50%); }
  .analysis-console { inset: 36% 27% 37%; }
  .cloud-hub { width: 48%; }
  .delivery-product-orbit { inset: 3% 5% 4%; }
  .delivery-product-card { width: 66%; min-height: 170px; }
  .delivery-product-card img { max-height: 135px; }
}

@media (max-width: 620px) {
  .stage-signal {
    grid-template-columns: auto 28px 1fr;
    margin-top: 17px;
    padding: 9px 0;
  }

  .stage-signal > span:last-child {
    align-items: start;
    flex-direction: column;
    gap: 1px;
  }

  .signal-title { font-size: 13px; }
  .signal-path { font-size: 10px; }

  .system-view {
    top: 31%;
    right: -28%;
    width: 106%;
    height: 59%;
    opacity: .4;
  }

  .service-orbit { --service-radius: 118px; }
  .research-node { min-width: 100px; padding: 7px 9px; font-size: 10px; }
  .research-node.is-product-featured { min-width: 136px; padding: 9px 11px; font-size: 12px; }

  .prep-machine { width: 88%; }
  .analysis-console { inset: 19% 0 25%; }
  .console-body { padding: 12px; }
  .quant-grid { display: none; }
  .spectrum-strip { grid-column: 1 / 3; }
  .cloud-hub { width: 56%; }

  .banner[data-stage="3"] .system-view {
    top: 55%;
    right: -14%;
    width: 112%;
    height: 38%;
    opacity: .66;
  }

  .banner[data-stage="3"] .analysis-console {
    display: none;
  }

  .banner[data-stage="3"] .software-carousel {
    inset: 0;
    display: block;
    height: auto;
  }

  .banner[data-stage="3"] .analysis-software-slot {
    offset-path: ellipse(40% 34% at 50% 50%);
  }

  .banner[data-stage="3"] .software-logo-card,
  .banner[data-stage="3"] .software-logo-card.is-product-featured {
    width: 96px;
    min-height: 84px;
    grid-template-rows: 52px auto;
    padding: 0 4px 4px;
  }

  .banner[data-stage="3"] .software-logo-card img,
  .banner[data-stage="3"] .software-logo-card.is-product-featured img {
    width: 52px;
    height: 52px;
  }

  .banner[data-stage="3"] .software-logo-card.is-product-featured img {
    width: 68px;
    height: 68px;
  }

  .banner[data-stage="3"] .software-logo-card b,
  .banner[data-stage="3"] .software-logo-card.is-product-featured b {
    font-size: 12px;
  }

  .banner[data-stage="3"] .software-logo-card small {
    font-size: 10px;
  }

  .banner[data-stage="3"] .console-top {
    min-height: 38px;
    padding: 0 12px;
  }

  .banner[data-stage="3"] .software-mark img {
    width: 24px;
    height: 24px;
  }

  .banner[data-stage="3"] .console-body {
    height: calc(100% - 38px);
    padding: 8px 12px;
  }

  .banner[data-stage="3"] .spectrum-strip {
    min-height: 0;
    padding: 7px 10px 0;
  }

  .banner[data-stage="3"] .evidence-candidates {
    display: none;
  }

  .banner[data-stage="4"] .system-view {
    top: 58%;
    right: -10%;
    width: 100%;
    height: 29%;
    opacity: .72;
  }

  .banner[data-stage="4"] .cloud-hub {
    top: 50%;
    width: 50%;
  }
}

/* Full homepage continuation */
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 8vw;
  align-items: end;
  width: min(100%, 1496px);
  margin: 0 auto 58px;
}

.section-heading h2,
.role-intro h2,
.trust-copy h2,
.closing-cta h2 {
  margin: 15px 0 0;
  font-family: var(--display);
  font-size: clamp(40px, 4.6vw, 72px);
  font-weight: 520;
  line-height: 1.08;
  letter-spacing: -.038em;
}

.section-heading > p,
.role-intro > p,
.trust-copy > p {
  margin: 0;
  max-width: 540px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.72;
}

.product-system-section {
  position: relative;
  padding: clamp(100px, 10vw, 160px) max(32px, calc((100vw - 1496px) / 2));
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 17%, rgba(0,127,167,.1), transparent 22%),
    radial-gradient(circle at 92% 47%, rgba(10,138,103,.09), transparent 24%),
    #f2eadb;
}

.product-system-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 5%;
  width: 42vw;
  height: 42vw;
  border: 1px solid rgba(9,45,40,.08);
  border-radius: 50%;
  transform: translateY(-58%);
  pointer-events: none;
}

.product-particle-stage {
  position: absolute;
  z-index: 8;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

#productParticles {
  position: sticky;
  top: 0;
  display: block;
  width: 100%;
  height: 100vh;
  opacity: .72;
  mix-blend-mode: multiply;
  filter: saturate(1.2) contrast(1.05);
  transition: opacity 350ms ease;
}

.product-mosaic {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, 1496px);
  margin: 0 auto;
}

.product-panel {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  display: block;
  grid-column: span 5;
  min-height: 410px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 36px;
  overflow: hidden;
  background: rgba(247,250,245,.72);
  box-shadow: 0 25px 70px rgba(9,45,40,.1);
  transform: perspective(1400px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
  transform-style: preserve-3d;
  transition: box-shadow 380ms ease, border-radius 480ms ease, background 380ms ease;
  backdrop-filter: blur(18px);
}

.product-panel::before {
  content: "";
  position: absolute;
  inset: auto -10% -35% auto;
  width: 62%;
  aspect-ratio: 1;
  border: 1px solid rgba(9,45,40,.12);
  border-radius: 50%;
  transition: transform 600ms cubic-bezier(.16,.82,.18,1), background 500ms ease;
}

.product-panel:hover {
  border-radius: 72px 26px 72px 26px;
  box-shadow: 0 35px 90px rgba(9,45,40,.17);
}

.product-panel.is-particle-active {
  border-color: color-mix(in srgb, var(--panel-accent, var(--acid)) 58%, #fff);
  box-shadow: 0 35px 95px color-mix(in srgb, var(--panel-accent, var(--acid)) 17%, transparent);
}

.product-panel:hover::before {
  background: color-mix(in srgb, var(--panel-accent, var(--acid)) 22%, transparent);
  transform: scale(1.3);
}

.product-panel.panel-wide {
  grid-column: span 7;
}

.panel-auto { --panel-accent: var(--mint); background: linear-gradient(145deg,rgba(255,252,244,.88),rgba(219,237,230,.84)); }
.panel-easypept { --panel-accent: var(--cyan); background: linear-gradient(145deg,rgba(255,252,244,.9),rgba(219,233,235,.84)); }
.panel-software { --panel-accent: var(--blue); color: var(--ink); background: linear-gradient(145deg,rgba(244,248,246,.92),rgba(205,229,235,.88)); }
.panel-special { --panel-accent: var(--mint); background: linear-gradient(145deg,rgba(255,252,244,.9),rgba(218,236,229,.86)); }
.panel-lab { --panel-accent: var(--cyan); background: linear-gradient(145deg,rgba(247,248,241,.9),rgba(209,232,235,.86)); }
.panel-application { --panel-accent: var(--mint); background: linear-gradient(145deg,rgba(255,252,244,.9),rgba(217,236,226,.86)); }

.panel-index {
  position: absolute;
  z-index: 5;
  top: 28px;
  right: 28px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .62;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 720;
}

.panel-copy {
  position: relative;
  z-index: 6;
  width: min(54%, 530px);
  transform: translateZ(35px);
}

.panel-easypept .panel-copy,
.panel-software .panel-copy,
.panel-lab .panel-copy {
  width: 76%;
}

.panel-copy small {
  color: #5d7770;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: .18em;
}

.panel-software .panel-copy small,
.panel-software .panel-copy p {
  color: var(--ink-soft);
}

.panel-copy h3 {
  margin: 14px 0 0;
  font-family: var(--display);
  font-size: clamp(24px, 2.1vw, 34px);
  font-weight: 620;
  line-height: 1.12;
  letter-spacing: -.035em;
}

.panel-copy p {
  margin: 13px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.panel-copy b {
  display: inline-block;
  margin-top: 22px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
}

.product-panel > img {
  position: absolute;
  z-index: 3;
  right: -1%;
  bottom: -2%;
  width: 51%;
  height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 28px 30px rgba(9,45,40,.16));
  mix-blend-mode: multiply;
  transform: translateZ(26px) scale(.96);
  transition: transform 680ms cubic-bezier(.16,.82,.18,1), filter 400ms ease;
}

.product-panel:hover > img {
  filter: drop-shadow(0 35px 38px rgba(9,45,40,.23));
  transform: translateZ(45px) scale(1.04) translateY(-6px);
}

.panel-easypept > img,
.panel-lab > img {
  right: -4%;
  width: 64%;
  height: 63%;
}

.panel-special > img {
  right: 1%;
  width: 48%;
  height: 84%;
}

.panel-application > img {
  right: -2%;
  width: 55%;
}

.software-orbit {
  position: absolute;
  z-index: 4;
  right: 4%;
  bottom: 8%;
  width: 48%;
  aspect-ratio: 1;
  border: 1px dashed rgba(0,127,167,.3);
  border-radius: 50%;
  animation: orbit-spin 32s linear infinite;
}

.software-orbit::before {
  content: "";
  position: absolute;
  inset: 20%;
  border: 1px solid rgba(10,138,103,.22);
  border-radius: 50%;
}

.software-orbit span {
  position: absolute;
  display: grid;
  place-items: center;
  gap: 6px;
  width: 108px;
  min-height: 82px;
  padding: 4px;
  border: 0;
  border-radius: 22px;
  color: var(--ink);
  background: transparent;
  font-family: var(--display);
  font-size: 11px;
  line-height: 1.18;
  text-align: center;
  overflow-wrap: anywhere;
  animation: orbit-spin 32s linear infinite reverse;
  backdrop-filter: none;
}

.software-orbit span:first-child { top: 0; left: 50%; margin-left: -54px; }
.software-orbit span:nth-child(2) { top: 50%; right: 0; margin-top: -41px; }
.software-orbit span:nth-child(3) { bottom: 0; left: 50%; margin-left: -54px; }
.software-orbit span:nth-child(4) { top: 50%; left: 0; margin-top: -41px; }
.software-orbit img { width: 68px; height: 52px; object-fit: contain; filter:drop-shadow(0 12px 14px rgba(24,75,105,.17)); mix-blend-mode:multiply; }
.software-orbit i { position:absolute; top:50%; left:50%; width:11px; height:11px; border-radius:50%; background:#0a8a67; box-shadow:0 0 28px rgba(10,138,103,.55); transform:translate(-50%,-50%); }

.role-solutions-section {
  display: grid;
  grid-template-columns: minmax(350px, .72fr) minmax(600px, 1.28fr);
  gap: clamp(60px, 8vw, 140px);
  padding: clamp(100px, 10vw, 160px) max(32px, calc((100vw - 1496px) / 2));
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 18%, rgba(0,127,167,.11), transparent 28%),
    linear-gradient(145deg,#f6f0e4,#ece5d8 64%,#e7eee8);
}

.role-intro {
  position: sticky;
  top: 80px;
  align-self: start;
}

.role-intro h2 {
  font-size: clamp(42px, 4.7vw, 72px);
}

.role-intro > p {
  max-width: 520px;
  margin-top: 26px;
  color: var(--ink-soft);
}

.capability-chain {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 35px;
}

.capability-chain span {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255,255,255,.42);
  font-size: 11px;
}

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

.role-row {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 170px;
  padding: 28px 24px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  transition: color 320ms ease, padding 420ms cubic-bezier(.16,.82,.18,1);
}

.role-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,127,167,.12), rgba(10,138,103,.11));
  transform: translateX(-101%);
  transition: transform 520ms cubic-bezier(.16,.82,.18,1);
}

.role-row:hover {
  padding-right: 38px;
  padding-left: 38px;
  color: var(--ink);
}

.role-row:hover::before { transform: translateX(0); }
.role-row > * { position:relative; z-index:1; }
.role-row > span { color:#607681; font-family:var(--display); font-size:12px; }
.role-row small { color:#607681; font-family:var(--display); font-size:11px; letter-spacing:.16em; }
.role-row h3 { margin:8px 0 0; font-family:var(--display); font-size:clamp(24px,2.2vw,34px); font-weight:600; letter-spacing:-.025em; }
.role-row p { max-width:620px; margin:9px 0 0; color:var(--ink-soft); font-size:13px; line-height:1.62; }
.role-row > b { align-self:end; font-size:12px; white-space:nowrap; }
.role-row:hover p,.role-row:hover small,.role-row:hover > span { color:var(--ink-soft); }

.trust-section {
  display: grid;
  grid-template-columns: minmax(320px,.7fr) minmax(620px,1.3fr);
  gap: 8vw;
  padding: clamp(90px, 9vw, 140px) max(32px, calc((100vw - 1496px) / 2));
  background: linear-gradient(135deg,#dce9e5,#d9e7ec);
}

.trust-copy > p { max-width:560px; margin-top:25px; color:var(--ink-soft); }

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.trust-metrics div {
  display: grid;
  align-content: center;
  min-height: 190px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-metrics strong { font-family:var(--display); font-size:clamp(40px,4.5vw,70px); font-weight:420; letter-spacing:-.06em; }
.trust-metrics span { margin-top:8px; color:var(--ink-soft); font-size:12px; }

.customers-section {
  padding: clamp(100px, 10vw, 160px) max(32px, calc((100vw - 1496px) / 2));
  background:#f5efe4;
}

.customer-groups {
  display:grid;
  grid-template-columns:repeat(5,1fr);
  width:min(100%,1496px);
  margin:0 auto 110px;
  border-top:1px solid rgba(9,45,40,.18);
  border-left:1px solid rgba(9,45,40,.18);
}

.customer-groups article {
  min-height:280px;
  padding:25px 21px;
  border-right:1px solid rgba(9,45,40,.18);
  border-bottom:1px solid rgba(9,45,40,.18);
  transition:background 280ms ease,transform 350ms ease;
}

.customer-groups article:hover { background:#fff; transform:translateY(-8px); }
.customer-groups small { color:#6e8881; font-family:var(--display); font-size:11px; letter-spacing:.14em; }
.customer-groups h3 { margin:20px 0 0; font-family:var(--display); font-size:19px; font-weight:620; line-height:1.24; }
.customer-groups p { margin:15px 0 0; color:var(--ink-soft); font-size:12px; line-height:1.72; }

.case-heading {
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:40px;
  width:min(100%,1496px);
  margin:0 auto 30px;
  padding-bottom:18px;
  border-bottom:1px solid rgba(9,45,40,.18);
}
.case-heading span { font-family:var(--display); font-size:clamp(28px,3.2vw,48px); letter-spacing:-.04em; }
.case-heading p { max-width:560px; margin:0; color:#607a73; font-size:12px; }

.case-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  width:min(100%,1496px);
  margin:0 auto;
}

.case-card {
  position:relative;
  display:flex;
  flex-direction:column;
  min-height:430px;
  padding:14px 14px 20px;
  border:1px solid rgba(9,45,40,.14);
  border-radius:24px;
  overflow:hidden;
  background:rgba(255,255,255,.7);
  transition:transform 380ms cubic-bezier(.16,.82,.18,1),box-shadow 320ms ease,border-radius 420ms ease;
}
.case-card:hover { border-radius:50px 18px 50px 18px; box-shadow:0 25px 70px rgba(9,45,40,.13); transform:translateY(-10px); }
.case-card img { width:100%; height:170px; border-radius:15px; object-fit:cover; filter:saturate(.82); transition:transform 600ms ease,filter 320ms ease; }
.case-card:hover img { filter:saturate(1); transform:scale(1.035); }
.case-card small { margin-top:18px; color:#718b84; font-family:var(--display); font-size:11px; letter-spacing:.1em; }
.case-card h3 { margin:10px 0 0; font-family:var(--display); font-size:18px; font-weight:620; line-height:1.28; }
.case-card p { margin:10px 0 0; color:var(--ink-soft); font-size:12px; line-height:1.62; }
.case-card span { margin-top:auto; padding-top:18px; color:#46645d; font-size:11px; font-weight:720; }

.resources-section {
  padding:clamp(100px,10vw,150px) max(32px, calc((100vw - 1496px) / 2));
  color:var(--ink);
  background:
    radial-gradient(circle at 85% 15%,rgba(0,127,167,.1),transparent 26%),
    linear-gradient(145deg,#f1ebdf,#e6ece7);
}
.resources-heading > p { color:var(--ink-soft); }
.resource-links { width:min(100%,1496px); margin:0 auto; border-top:1px solid var(--line); }
.resource-links > a {
  display:grid;
  grid-template-columns:48px 1fr auto;
  gap:25px;
  align-items:center;
  min-height:145px;
  padding:22px 16px;
  border-bottom:1px solid var(--line);
  transition:padding 320ms ease,color 280ms ease,background 280ms ease;
}
.resource-links > a:hover { padding-right:30px; padding-left:30px; color:var(--ink); background:linear-gradient(90deg,rgba(0,127,167,.12),rgba(10,138,103,.1)); }
.resource-links > a > span { color:#79928b; font-family:var(--display); font-size:12px; }
.resource-links h3 { margin:0; font-family:var(--display); font-size:clamp(23px,2.4vw,36px); font-weight:460; }
.resource-links p { margin:7px 0 0; color:var(--ink-soft); font-size:13px; }
.resource-links b { font-size:12px; }
.resource-links > a:hover p,.resource-links > a:hover > span { color:var(--ink-soft); }

.closing-cta {
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:7vw;
  align-items:end;
  width:min(100%,1496px);
  margin:100px auto 0;
  padding:55px;
  border-radius:46px;
  color:var(--ink);
  background:linear-gradient(135deg,#d5e8e5,#d6e5ea);
}
.closing-cta h2 { font-size:clamp(38px,4.5vw,66px); }
.closing-cta small { font-family:var(--display); font-size:11px; letter-spacing:.15em; }
.closing-cta p { max-width:760px; margin:22px 0 0; color:var(--ink-soft); font-size:13px; line-height:1.8; }
.closing-actions { display:grid; justify-items:start; gap:14px; }
.closing-actions .button-primary { color:var(--ink); background:#fff; box-shadow:none; }
.closing-actions > a:not(.button) { font-family:var(--display); font-size:20px; font-weight:650; }
.closing-actions > span { color:var(--ink-soft); font-size:12px; }

.section-motion-ready .section-enter {
  opacity:0;
  transform:translateY(34px);
  transition:opacity 700ms ease,transform 850ms cubic-bezier(.16,.82,.18,1);
}
.section-motion-ready .section-enter.is-visible { opacity:1; transform:translateY(0); }

@media (max-width: 1050px) {
  .product-panel,.product-panel.panel-wide { grid-column:span 6; }
  .role-solutions-section { grid-template-columns:1fr; }
  .role-intro { position:static; }
  .trust-section { grid-template-columns:1fr; }
  .customer-groups { grid-template-columns:repeat(2,1fr); }
  .customer-groups article:last-child { grid-column:span 2; min-height:220px; }
  .case-grid { grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 700px) {
  .section-heading { grid-template-columns:1fr; gap:24px; margin-bottom:36px; }
  .section-heading h2,.role-intro h2,.trust-copy h2 { font-size:clamp(36px,11vw,50px); }
  .product-system-section,.role-solutions-section,.trust-section,.customers-section,.resources-section { padding-right:14px; padding-left:14px; }
  .product-mosaic { display:block; }
  .product-panel,.product-panel.panel-wide { min-height:500px; margin-bottom:14px; padding:22px; border-radius:26px; }
  .panel-copy,.panel-easypept .panel-copy,.panel-software .panel-copy,.panel-lab .panel-copy { width:100%; }
  .panel-copy p { max-width:94%; }
  .product-panel > img { right:0; bottom:1%; width:78%; height:58%; }
  .panel-easypept > img,.panel-lab > img { width:86%; height:52%; }
  .panel-special > img { width:72%; height:58%; }
  .panel-application > img { width:78%; height:52%; }
  .software-orbit { right:8%; bottom:5%; width:72%; }
  .role-solutions-section { gap:55px; }
  .role-row { grid-template-columns:32px 1fr; min-height:220px; padding:24px 8px; }
  .role-row > b { grid-column:2; justify-self:start; }
  .role-row:hover { padding-right:14px; padding-left:14px; }
  .trust-metrics { grid-template-columns:1fr; }
  .trust-metrics div { min-height:145px; }
  .customer-groups { grid-template-columns:1fr; margin-bottom:70px; }
  .customer-groups article,.customer-groups article:last-child { grid-column:auto; min-height:220px; }
  .case-heading { display:block; }
  .case-heading p { margin-top:15px; }
  .case-grid { grid-template-columns:1fr; }
  .case-card { min-height:440px; }
  .resource-links > a { grid-template-columns:32px 1fr; }
  .resource-links b { grid-column:2; }
  .closing-cta { grid-template-columns:1fr; gap:40px; margin-top:70px; padding:34px 22px; border-radius:28px; }
}

@media (max-width: 900px) {
  #bannerParticles {
    opacity: .42;
    mask-image: linear-gradient(180deg, transparent 0%, transparent 30%, #000 58%, #000 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, transparent 30%, #000 58%, #000 100%);
  }
}

/* Mobile composition: copy, product stage and navigation occupy separate zones. */
@media (max-width: 620px) {
  .banner {
    min-height: 700px;
  }

  .site-header {
    min-height: 64px;
  }

  .formal-brand-logo {
    width: 145px;
  }

  .header-cta {
    min-height: 36px;
    padding: 0 12px;
    font-size: 10px;
  }

  .hero-grid {
    position: relative;
    display: block;
    align-content: start;
    height: 100%;
    padding: 14px 0 0;
  }

  .hero-copy {
    position: relative;
    z-index: 6;
    width: 100%;
    max-width: none;
  }

  .eyebrow {
    max-width: none;
    margin-bottom: 8px;
    font-size: 9px;
    line-height: 1.35;
    letter-spacing: .11em;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(32px, 9.2vw, 38px);
    line-height: 1.01;
    letter-spacing: -.045em;
  }

  h1 em {
    margin-top: 5px;
  }

  .hero-intro {
    max-width: 100%;
    margin-top: 11px;
    font-size: 11.5px;
    line-height: 1.55;
  }

  .stage-signal {
    grid-template-columns: auto 24px 1fr;
    margin-top: 10px;
    padding: 7px 0;
  }

  .signal-index {
    font-size: 10px;
  }

  .signal-title {
    font-size: 12px;
  }

  .signal-path {
    font-size: 9px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;
    margin-top: 11px;
  }

  .button,
  .button-primary,
  .button-quiet {
    width: 100%;
    min-width: 0;
    min-height: 43px;
    padding: 0 10px 0 13px;
    gap: 7px;
    font-size: 10.5px;
    white-space: nowrap;
  }

  .button b {
    width: 23px;
    height: 23px;
    flex: 0 0 23px;
    font-size: 12px;
  }

  .system-view,
  .banner[data-stage="3"] .system-view,
  .banner[data-stage="4"] .system-view {
    position: absolute;
    z-index: 3;
    top: 315px;
    right: 0;
    left: 0;
    width: 100%;
    height: 300px;
    min-height: 0;
    opacity: 1;
    pointer-events: auto;
  }

  .scene-deck {
    inset: 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 28px !important;
    background:
      linear-gradient(145deg,rgba(255,255,255,.56),rgba(229,242,238,.23)),
      radial-gradient(circle at 68% 42%,var(--scene-soft),transparent 58%);
    box-shadow: inset 0 0 42px rgba(255,255,255,.38), 0 18px 48px rgba(24,75,105,.1);
    backdrop-filter: blur(12px) saturate(1.08);
  }

  .business-scene {
    inset: 8px;
  }

  .design-radar {
    inset: 0;
  }

  .service-orbit {
    --service-radius: 92px;
  }

  .research-node {
    min-width: 86px;
    max-width: 106px;
    padding: 6px 8px;
    font-size: 9px;
    line-height: 1.25;
    white-space: normal;
  }

  .research-node.is-product-featured {
    min-width: 112px;
    max-width: 128px;
    padding: 8px 10px;
    font-size: 11px;
  }

  .scene-prep .banner-product-card.is-product-muted,
  .scene-lcms .banner-product-card.is-product-muted {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .prep-machine {
    right: -2%;
    bottom: 2%;
    width: 78%;
  }

  .prep-kit {
    bottom: 12%;
    left: 8%;
    width: 38%;
    padding: 0;
  }

  .scene-prep .prep-kit.is-product-featured {
    top: auto;
    right: auto;
    bottom: 12%;
    left: 9%;
    width: 64%;
  }

  .lcms-platform {
    top: 4%;
    right: -2%;
    width: 78%;
  }

  .aurora-column {
    right: 7%;
    bottom: 9%;
    width: 63%;
    padding: 0;
  }

  .aurora-column img {
    height: 112px;
  }

  .banner[data-stage="2"] .lcms-consumables.is-product-featured {
    right: auto;
    bottom: 9%;
    left: 9%;
    width: 76%;
    min-height: 170px;
    padding: 12px 14px 10px;
  }

  .banner[data-stage="2"] .consumables-showcase img {
    width: 50px;
    height: 46px;
  }

  .product-tag {
    padding: 5px 8px;
    font-size: 8px;
  }

  .banner[data-stage="3"] .analysis-console {
    display: none;
  }

  .banner[data-stage="3"] .software-carousel {
    inset: 4% 3% 4%;
  }

  .banner[data-stage="3"] .analysis-software-slot {
    offset-path: ellipse(38% 31% at 50% 50%);
  }

  .banner[data-stage="3"] .software-logo-card,
  .banner[data-stage="3"] .software-logo-card.is-product-featured {
    width: 82px;
    min-height: 72px;
    grid-template-rows: 42px auto;
    padding: 0 3px 3px;
  }

  .banner[data-stage="3"] .software-logo-card img,
  .banner[data-stage="3"] .software-logo-card.is-product-featured img {
    width: 42px;
    height: 42px;
  }

  .banner[data-stage="3"] .software-logo-card.is-product-featured img {
    width: 56px;
    height: 56px;
  }

  .banner[data-stage="3"] .software-logo-card b,
  .banner[data-stage="3"] .software-logo-card.is-product-featured b {
    font-size: 11px;
  }

  .banner[data-stage="3"] .software-logo-card small {
    font-size: 8px;
    line-height: 1.15;
  }

  .cloud-hub {
    top: 50%;
    width: 48%;
  }

  .delivery-product-orbit {
    inset: 4% 2% 4%;
  }

  .delivery-product-card,
  .delivery-product-card.is-product-featured {
    width: 76%;
    min-height: 190px;
  }

  .delivery-product-card img {
    max-height: 126px;
  }

  .delivery-product-card > span {
    font-size: 10px;
  }

  .delivery-product-card small {
    font-size: 10px;
  }

  .scene-delivery .delivery-services {
    z-index: 11;
    bottom: 3%;
    left: 4%;
    display: flex;
    justify-content: center;
    gap: 4px;
    width: 92%;
    opacity: 1;
  }

  .scene-delivery .delivery-services span {
    padding: 4px 6px;
    font-size: 8px;
  }

  .workflow-dock {
    grid-template-columns: 1fr;
    margin-bottom: 8px;
    overflow: hidden;
    border-radius: 15px;
  }

  .dock-track {
    width: 100%;
  }

  .dock-step {
    flex: 0 0 128px;
    min-height: 80px;
    padding: 8px 9px;
    column-gap: 6px;
  }

  .dock-step > span {
    font-size: 9px;
  }

  .dock-step b {
    font-size: 14px;
  }

  .dock-step small {
    font-size: 10px;
  }

  .scroll-cue {
    display: none;
  }

  #organism {
    opacity: .24 !important;
  }

  #bannerParticles,
  .banner[data-stage="1"] #bannerParticles,
  .banner[data-stage="2"] #bannerParticles,
  .banner[data-stage="3"] #bannerParticles {
    opacity: .34;
    mask-image: linear-gradient(180deg,transparent 0%,transparent 42%,#000 58%,#000 100%);
    -webkit-mask-image: linear-gradient(180deg,transparent 0%,transparent 42%,#000 58%,#000 100%);
  }
}
