.engine-mobile {
  display: none;
}

/* Premium cinematic motion layer */

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body.has-custom-cursor,
body.has-custom-cursor a,
body.has-custom-cursor button {
  cursor: none;
}

/* Page transition */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--navy);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.page-transition.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.page-transition__line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
}

.page-transition.is-active .page-transition__line {
  animation: scanLine 0.5s var(--ease) forwards;
}

.page-transition__status {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

@keyframes scanLine {
  0% { transform: scaleX(0); top: 35%; }
  50% { transform: scaleX(1); top: 50%; }
  100% { transform: scaleX(0); transform-origin: right; top: 65%; }
}

/* Custom cursor */
.cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: difference;
}

.cursor.is-ready { opacity: 1; }

.cursor__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
  transform: translate(-50%, -50%);
}

.cursor__ring {
  position: absolute;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.35);
  opacity: 0;
  transition: transform 0.25s var(--ease), opacity 0.25s ease, width 0.25s ease, height 0.25s ease;
}

.cursor.is-hover .cursor__ring {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  width: 56px;
  height: 56px;
}

.cursor__label {
  position: absolute;
  left: 0;
  top: 28px;
  transform: translateX(-50%);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  opacity: 0;
}

.cursor.is-hover .cursor__label { opacity: 1; }

.nav-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent));
}

/* Hero computational layer */
.hero {
  position: relative;
  isolation: isolate;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.85;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent 75%);
  pointer-events: none;
}

.hero__inner,
.hero-meta {
  position: relative;
  z-index: 1;
}

.hero-boot {
  opacity: 0;
  transform: translateY(18px);
}

.hero.is-booted .hero-boot {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.hero.is-booted .hero-boot[data-boot="1"] { transition-delay: 0.15s; }
.hero.is-booted .hero-boot[data-boot="2"] { transition-delay: 0.35s; }
.hero.is-booted .hero-boot[data-boot="3"] { transition-delay: 0.5s; }
.hero.is-booted .hero-boot[data-boot="4"] { transition-delay: 0.65s; }
.hero.is-booted .hero-boot[data-boot="5"] { transition-delay: 0.8s; }
.hero.is-booted .hero-boot[data-boot="6"] { transition-delay: 0.95s; }

.tech-meta {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.7);
}

.hero-meta {
  position: absolute;
  left: max(4%, calc((100% - var(--container)) / 2));
  bottom: 1.25rem;
}

/* Cinematic intro */
.cinematic-intro {
  position: relative;
  min-height: 120vh;
  padding: 6rem 0;
  overflow: hidden;
}

.cinematic-intro__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34, 211, 238, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  animation: gridDrift 28s linear infinite;
  opacity: 0.7;
  pointer-events: none;
}

@keyframes gridDrift {
  from { background-position: 0 0; }
  to { background-position: 56px 56px; }
}

.sys-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sys-labels span {
  position: absolute;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(148, 163, 184, 0.35);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.sys-labels span:nth-child(1) { top: 12%; left: 8%; }
.sys-labels span:nth-child(2) { top: 28%; right: 10%; }
.sys-labels span:nth-child(3) { bottom: 30%; left: 12%; }
.sys-labels span:nth-child(4) { bottom: 14%; right: 14%; }

.cinematic-intro__inner {
  position: relative;
  width: min(92%, var(--container));
  margin: 0 auto;
  z-index: 1;
}

.statement-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35em 0.45em;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 1.2rem 0 2.5rem;
  max-width: 16ch;
}

.statement-word {
  display: inline-block;
  opacity: 0.18;
  transform: translateY(40px) rotate(-2deg);
  filter: blur(2px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), filter 0.5s ease;
}

.statement-word.is-aligned {
  opacity: 1;
  transform: none;
  filter: none;
}

.intro-body {
  max-width: 38rem;
}

.intro-body p {
  margin-bottom: 1rem;
}

/* Engine / services */
.engine-section {
  position: relative;
  height: 500vh;
}

.engine-sticky {
  position: sticky;
  top: var(--header-h);
  height: calc(100vh - var(--header-h));
  width: min(92%, var(--container));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  overflow: hidden;
}

.engine-stage {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .engine-stage {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }
}

.engine-num {
  display: block;
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(34, 211, 238, 0.65);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.engine-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.engine-subtitle {
  color: var(--accent-strong);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.engine-desc {
  color: var(--muted);
  margin-bottom: 1rem;
  max-width: 34rem;
}

.engine-visual {
  position: relative;
  min-height: 280px;
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 30% 20%, rgba(14, 165, 233, 0.12), transparent 45%),
    var(--navy-elevated);
  overflow: hidden;
}

.viz {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.45s ease, transform 0.45s var(--ease);
  pointer-events: none;
}

.viz.is-active {
  opacity: 1;
  transform: none;
}

.arch-node {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 8px;
  background: rgba(7, 11, 20, 0.75);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-strong);
}

.arch-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  stroke: rgba(34, 211, 238, 0.35);
  stroke-width: 0.4;
  fill: none;
}

.device-frame {
  width: min(70%, 220px);
  aspect-ratio: 10 / 16;
  margin: 8% auto 0;
  border: 1px solid rgba(56, 189, 248, 0.4);
  border-radius: 18px;
  padding: 0.6rem;
  background: rgba(0, 0, 0, 0.35);
}

.device-screen {
  height: 100%;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, rgba(14, 165, 233, 0.2), rgba(7, 11, 20, 0.9));
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
}

.device-labels {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.viz-agents {
  display: grid;
  place-items: center;
}

.mini-core {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 700;
  box-shadow: 0 0 30px rgba(34, 211, 238, 0.2);
}

.mini-agent {
  position: absolute;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--muted-strong);
  padding: 0.35rem 0.55rem;
  border: 1px solid var(--navy-border);
  border-radius: 999px;
  background: rgba(7, 11, 20, 0.8);
  opacity: 0.35;
  transition: opacity 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}

.mini-agent.is-on {
  opacity: 1;
  color: var(--white);
  border-color: rgba(34, 211, 238, 0.5);
}

.mini-agent[data-a="0"] { top: 14%; left: 50%; transform: translateX(-50%); }
.mini-agent[data-a="1"] { top: 38%; right: 10%; }
.mini-agent[data-a="2"] { bottom: 18%; right: 22%; }
.mini-agent[data-a="3"] { bottom: 18%; left: 22%; }
.mini-agent[data-a="4"] { top: 38%; left: 10%; }

.intel-flow {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1.5rem;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  color: var(--white);
}

.intel-arrow { color: var(--accent); }

.aisys-parts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
  align-items: center;
  padding: 2rem 1.25rem 1rem;
  font-size: 0.85rem;
  color: var(--muted-strong);
}

.aisys-eq {
  text-align: center;
  color: var(--accent);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}

.engine-dots {
  display: flex;
  gap: 0.45rem;
  justify-content: center;
}

.engine-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--muted);
  opacity: 0.35;
  transition: width 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}

.engine-dots button.is-active {
  width: 24px;
  opacity: 1;
  background: var(--accent);
}

/* Pipeline */
.pipeline-section {
  height: 280vh;
  position: relative;
}

.pipeline-sticky {
  position: sticky;
  top: var(--header-h);
  height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(92%, var(--container));
  margin: 0 auto;
  gap: 2rem;
  overflow: hidden;
}

.pipeline-viewport {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 0 0.5rem;
}

.pipeline-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 2.1rem;
  height: 1px;
  background: rgba(148, 163, 184, 0.2);
}

.pipeline-signal {
  position: absolute;
  top: -3px;
  left: 0;
  width: 10px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.7);
  will-change: transform;
}

.pipeline-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  will-change: transform;
}

.pipeline-stage {
  width: min(72vw, 280px);
  padding: 1.4rem;
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  background: var(--navy-elevated);
  opacity: 0.4;
  transition: opacity 0.35s ease, border-color 0.35s ease;
}

.pipeline-stage.is-active {
  opacity: 1;
  border-color: rgba(34, 211, 238, 0.4);
}

.pipeline-stage span {
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.pipeline-stage h3 {
  color: var(--white);
  margin: 0.55rem 0 0.45rem;
  font-size: 1.25rem;
}

/* Orbit workforce */
.orbit-section {
  width: min(92%, var(--container));
  margin: 0 auto;
  padding: 5.5rem 0;
}

.orbit-system {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1;
  margin: 2.5rem auto 1.5rem;
}

.orbit-core {
  position: absolute;
  inset: 38%;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(34, 211, 238, 0.45);
  background: rgba(7, 11, 20, 0.85);
  box-shadow: 0 0 40px rgba(14, 165, 233, 0.18);
  z-index: 2;
}

.orbit-core span {
  font-family: var(--font-serif);
  font-size: clamp(0.85rem, 2.2vw, 1.05rem);
  color: var(--white);
  padding: 0.4rem;
}

.orbit-rings {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  stroke: rgba(148, 163, 184, 0.18);
  stroke-width: 0.3;
}

.orbit-agent {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 108px;
  padding: 0.7rem 0.55rem;
  border-radius: 14px;
  border: 1px solid var(--navy-border);
  background: rgba(13, 19, 32, 0.92);
  color: var(--white);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  transition: opacity 0.45s ease, transform 0.45s var(--ease), border-color 0.25s ease, box-shadow 0.25s ease;
  z-index: 3;
}

.orbit-agent.is-connected {
  opacity: 1;
}

.orbit-agent.is-active {
  border-color: rgba(34, 211, 238, 0.55);
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.2);
}

.orbit-agent__name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}

.orbit-agent__role {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  line-height: 1.3;
}

.agent-panel {
  max-width: 420px;
  margin: 0 auto;
  padding: 1.35rem 1.4rem;
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  background: var(--navy-elevated);
}

.agent-panel[hidden] { display: none; }

.workforce-moment {
  text-align: center;
  margin-top: 2rem;
  min-height: 2rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--accent-strong);
}

.workforce-moment span {
  display: none;
}

.workforce-moment span.is-on {
  display: inline;
}

/* Collaboration */
.collab-section {
  width: min(92%, var(--container));
  margin: 0 auto;
  padding: 5rem 0;
}

.collab-split {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .collab-split {
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
  }
}

.collab-side {
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  background: var(--navy-elevated);
  transition: transform 0.6s var(--ease);
}

.collab-side h3 {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.collab-side ul {
  list-style: none;
}

.collab-side li {
  color: var(--white);
  font-size: 1.2rem;
  font-family: var(--font-serif);
  margin-bottom: 0.65rem;
}

.collab-center {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s ease, transform 0.5s var(--ease);
}

.collab-split.is-merged .collab-center {
  opacity: 1;
  transform: none;
}

.collab-brand {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
}

.collab-formula {
  margin-top: 0.5rem;
  color: var(--accent-strong);
  font-size: 0.9rem;
}

/* Gallery */
.gallery-section {
  padding: 4rem 0 2rem;
}

.gallery-intro {
  width: min(92%, var(--container));
  margin: 0 auto 1.5rem;
}

.gallery-pin {
  overflow: hidden;
  width: 100%;
}

.gallery-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  padding: 1rem max(4%, calc((100% - var(--container)) / 2));
  will-change: transform;
}

.gallery-panel {
  width: min(82vw, 720px);
  min-height: 420px;
  padding: 2rem;
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(14, 165, 233, 0.1), transparent 40%),
    var(--navy-elevated);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.4s var(--ease), border-color 0.3s ease;
}

.gallery-panel:hover {
  transform: scale(1.015);
  border-color: rgba(34, 211, 238, 0.35);
}

.gallery-panel h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin: 0.5rem 0 0.75rem;
}

.gallery-cta {
  margin-top: 1.25rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-panel:hover .gallery-cta {
  opacity: 1;
  transform: none;
}

/* Research lab */
.lab-section {
  width: min(92%, var(--container));
  margin: 0 auto;
  padding: 4rem 0;
}

.lab-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 4vw, 3rem);
  background:
    radial-gradient(ellipse 50% 60% at 80% 20%, rgba(14, 165, 233, 0.12), transparent 55%),
    var(--navy-elevated);
}

.lab-fragments {
  position: relative;
  min-height: 120px;
  margin: 1.5rem 0;
}

.lab-fragments span {
  position: absolute;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: rgba(148, 163, 184, 0.55);
  transition: transform 0.8s var(--ease), opacity 0.8s ease, color 0.8s ease;
}

.lab-fragments span:nth-child(1) { left: 8%; top: 20%; }
.lab-fragments span:nth-child(2) { left: 35%; top: 5%; }
.lab-fragments span:nth-child(3) { left: 62%; top: 30%; }
.lab-fragments span:nth-child(4) { left: 18%; top: 65%; }
.lab-fragments span:nth-child(5) { left: 48%; top: 70%; }
.lab-fragments span:nth-child(6) { left: 75%; top: 55%; }

.lab-panel.is-converged .lab-fragments span {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.lab-insight {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--accent);
  letter-spacing: 0.08em;
  opacity: 0;
  transform: scale(0.9);
  margin-bottom: 1.5rem;
  transition: opacity 0.5s ease, transform 0.5s var(--ease);
}

.lab-panel.is-converged .lab-insight {
  opacity: 1;
  transform: none;
}

/* Artisans preview softens tech */
.artisans-preview {
  width: min(92%, var(--container));
  margin: 0 auto;
  padding: 5rem 0;
}

/* System ready CTA */
.system-ready {
  min-height: 85vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1.5rem;
  background:
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(14, 165, 233, 0.1), transparent 70%),
    var(--navy);
}

.system-status {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.system-status strong {
  color: var(--accent);
  margin-left: 0.5rem;
}

.system-ready__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.system-ready__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: var(--accent-strong);
  margin-bottom: 2rem;
}

.btn-cta-ready {
  min-width: 220px;
}

.footerCopyright--tech {
  flex-direction: column;
  gap: 0.35rem;
}

.sys-online {
  color: var(--accent);
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  font-weight: 600;
}

.sys-online::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 0.45rem;
  box-shadow: 0 0 8px var(--accent);
}

/* Micro interactions */
.text-link {
  position: relative;
}

.text-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}

.text-link:hover::after {
  width: 100%;
}

/* Mobile / reduced motion */
@media (max-width: 899px) {
  .cursor { display: none !important; }
  body.has-custom-cursor,
  body.has-custom-cursor a,
  body.has-custom-cursor button { cursor: auto; }

  .hero {
    min-height: auto;
    padding: 2rem 0 3rem;
  }

  .hero-brand {
    font-size: clamp(2rem, 9vw, 2.75rem);
    line-height: 1.08;
  }

  .hero .btnContainer {
    flex-direction: column;
    align-items: stretch;
  }

  .hero .btn {
    width: 100%;
    min-height: 48px;
  }

  .hero-visual {
    max-width: min(88vw, 360px);
    margin-inline: auto;
    width: 100%;
  }

  .hero-visual img,
  .hero-visual__img {
    max-width: 100%;
  }

  .hero-canvas {
    opacity: 0.35 !important;
  }

  .engine-section,
  .pipeline-section {
    height: auto !important;
  }

  .engine-sticky,
  .pipeline-sticky {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    padding: 3.5rem 0;
    overflow: visible;
  }

  .engine-stage,
  .engine-dots,
  .engine-header + .engine-stage {
    display: none !important;
  }

  .engine-header {
    margin-bottom: 1.5rem;
  }

  .engine-mobile {
    display: grid;
    gap: 1rem;
  }

  .engine-mobile-card {
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-lg);
    padding: 1.35rem 1.2rem;
    background: var(--navy-elevated);
  }

  .engine-mobile-card .engine-num {
    font-size: 2.4rem;
    margin-bottom: 0.25rem;
  }

  .engine-mobile-card .engine-title {
    font-size: 1.55rem;
  }

  .pipeline-viewport {
    overflow: visible;
    padding-top: 0;
  }

  .pipeline-track {
    display: grid !important;
    grid-template-columns: 1fr;
    width: 100% !important;
    transform: none !important;
    gap: 0;
    position: relative;
    padding-left: 1.4rem;
  }

  .pipeline-track::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 1px;
    background: linear-gradient(180deg, var(--accent), rgba(148, 163, 184, 0.2));
  }

  .pipeline-stage {
    width: 100%;
    opacity: 1;
    margin-bottom: 0.85rem;
    position: relative;
  }

  .pipeline-stage::before {
    content: '';
    position: absolute;
    left: -1.4rem;
    top: 1.5rem;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.15);
  }

  .pipeline-line { display: none; }

  .gallery-pin {
    overflow: visible;
  }

  .gallery-track {
    display: grid !important;
    grid-template-columns: 1fr;
    width: min(92%, var(--container)) !important;
    margin: 0 auto;
    padding: 0;
    gap: 1rem;
    transform: none !important;
  }

  .gallery-panel {
    width: 100%;
    min-height: 260px;
  }

  .gallery-cta {
    opacity: 1;
    transform: none;
  }

  .orbit-system {
    aspect-ratio: auto;
    height: auto;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: 0.5rem;
  }

  .orbit-core {
    position: relative !important;
    inset: auto !important;
    width: 100%;
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-bottom: 0.75rem;
  }

  .orbit-rings {
    display: none;
  }

  .orbit-agent {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100%;
    min-height: 56px;
    transform: none !important;
    opacity: 0;
    margin: 0 0 0.65rem 1.1rem;
    text-align: left;
  }

  .orbit-agent.is-connected {
    opacity: 1;
  }

  .orbit-agent::before {
    content: '';
    position: absolute;
    left: -1.1rem;
    top: -0.65rem;
    bottom: -0.65rem;
    width: 1px;
    background: rgba(34, 211, 238, 0.35);
  }

  .orbit-agent::after {
    content: '';
    position: absolute;
    left: calc(-1.1rem - 3px);
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    transform: translateY(-50%);
  }

  .lab-fragments span {
    position: static;
    display: inline-block;
    margin: 0.25rem;
  }

  .lab-fragments {
    display: flex;
    flex-wrap: wrap;
    min-height: auto;
  }

  .lab-panel.is-converged .lab-fragments span {
    opacity: 0.25;
    transform: none;
    left: auto;
    top: auto;
  }

  .nav.showNav {
    padding-top: 4.5rem;
  }

  .nav-link {
    margin-bottom: 0.35rem;
  }

  .nav-link a {
    display: flex;
    align-items: center;
    min-height: 44px;
  }

  .nav-cta .btn-nav {
    min-height: 48px;
  }

  .project-form .contactInput,
  .project-form select.contactInput,
  .btn,
  #barContainer {
    min-height: 48px;
  }

  .sociallink {
    width: 44px;
    height: 44px;
  }

  .project-form label {
    margin-bottom: 0.5rem;
  }

  .project-form .contactInput,
  .project-form select.contactInput {
    font-size: 16px;
    padding: 0.95rem 1rem;
  }

  .project-init__copy .sectionHeader {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .engine-mobile {
    display: grid;
  }
}

@media (min-width: 900px) {
  .engine-mobile {
    display: none !important;
  }
}

@media (max-width: 374px) {
  .hero-brand {
    font-size: 1.85rem;
  }

  .statement-line {
    font-size: 1.85rem;
  }

  .section {
    padding: 3.5rem 0;
  }
}

/* Content visibility for below-fold sections */
.pipeline-section,
.office-section,
.gallery-section,
.lab-section,
.system-ready {
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}

@media (prefers-reduced-motion: reduce) {
  .cinematic-intro__grid,
  .hero-canvas,
  .cursor,
  .page-transition__line {
    animation: none !important;
  }

  .hero-boot,
  .statement-word,
  .viz,
  .orbit-agent {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .engine-section,
  .pipeline-section {
    height: auto !important;
  }

  .engine-sticky,
  .pipeline-sticky {
    position: relative !important;
    height: auto !important;
  }
}
