:root {
  --ink: #08111c;
  --muted: #596978;
  --line: rgba(14, 23, 32, 0.12);
  --paper: #f3f6f8;
  --white: #ffffff;
  --blue: #1267e8;
  --cyan: #00bde3;
  --green: #2f9d73;
  --steel: #23384d;
  --amber: #ffbd4a;
  --violet: #6c5ce7;
  --shadow: 0 24px 70px rgba(15, 30, 45, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

img,
canvas {
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
.brand strong,
.station strong,
.loader-copy strong {
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
}

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

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 260px;
  height: 260px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 86, 217, 0.16), transparent 68%);
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  transition: opacity 180ms ease;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  color: white;
  background:
    radial-gradient(circle at 50% 38%, rgba(0, 189, 227, 0.16), transparent 34%),
    linear-gradient(145deg, #050a11, #0b1724);
  animation: loaderExit 600ms ease 1.05s forwards;
  pointer-events: none;
}

body.loaded .loader {
  opacity: 0;
  visibility: hidden;
}

.loader-rig {
  position: relative;
  width: min(520px, 72vw);
  height: 190px;
  border-top: 5px solid rgba(255, 255, 255, 0.22);
}

.loader-rig::before,
.loader-rig::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: rgba(255, 255, 255, 0.2);
}

.loader-rig::before { left: 8%; }
.loader-rig::after { right: 8%; }

.loader-crane {
  position: absolute;
  left: 12%;
  top: -16px;
  width: 84px;
  height: 28px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--amber), #ff7b3d);
  animation: craneSlide 1.7s ease-in-out infinite;
}

.loader-hook {
  position: absolute;
  left: calc(12% + 40px);
  top: 12px;
  width: 2px;
  height: 82px;
  background: rgba(255, 255, 255, 0.65);
  animation: hookSlide 1.7s ease-in-out infinite;
}

.loader-block {
  position: absolute;
  left: calc(12% + 18px);
  top: 91px;
  width: 50px;
  height: 50px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 0 36px rgba(0, 189, 227, 0.35);
  animation: blockSlide 1.7s ease-in-out infinite;
}

.loader-copy {
  position: absolute;
  left: 50%;
  bottom: 16%;
  display: grid;
  gap: 8px;
  width: min(420px, 80vw);
  text-align: center;
  transform: translateX(-50%);
}

.loader-copy strong {
  font-size: 1.9rem;
  letter-spacing: 0.08em;
}

.loader-copy span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

@keyframes craneSlide {
  50% { transform: translateX(250%); }
}

@keyframes hookSlide {
  50% { transform: translateX(1040%); }
}

@keyframes blockSlide {
  50% { transform: translateX(420%); }
}

@keyframes loaderExit {
  to { opacity: 0; visibility: hidden; }
}

.site-shell {
  position: relative;
  z-index: 2;
}

.site-header {
  position: fixed;
  inset: 18px 24px auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 14px;
  border: 1px solid rgba(8, 17, 28, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(22, 40, 55, 0.12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 182px;
}

.brand-logo,
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  object-fit: contain;
  box-sizing: border-box;
  padding: 3px;
  border: 1px solid rgba(8, 17, 28, 0.08);
  background: #f8fbfd;
  box-shadow: 0 10px 24px rgba(20, 86, 217, 0.14);
}

.brand-mark {
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  color: var(--muted);
  font-size: 0.7rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  padding: 9px 11px;
  border-radius: 7px;
  color: #314050;
  font-size: 0.82rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.main-nav a:hover {
  color: var(--blue);
  background: rgba(20, 86, 217, 0.08);
}

.main-nav a.active {
  color: var(--blue);
  background: rgba(18, 103, 232, 0.12);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: var(--ink);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: white;
}

.section-band {
  padding: 86px 24px;
}

.hero {
  position: relative;
  min-height: 94svh;
  padding-top: 138px;
  background:
    linear-gradient(120deg, rgba(8, 17, 28, 0.95), rgba(15, 42, 62, 0.9)),
    radial-gradient(circle at 80% 20%, rgba(12, 166, 201, 0.44), transparent 35%),
    #08111c;
  color: white;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 18, 29, 0.86), rgba(8, 18, 29, 0.46)),
    url("assets/pdf-images/page-23-02.jpg") center / cover;
  opacity: 0.38;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.65;
}

.hero-grid,
.metrics-strip,
.section-heading,
.intro-copy,
.capability-grid,
.process-stage,
.product-layout,
.rd-grid,
.ecosystem-grid,
.team-grid,
.contact-panel {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
}

.hero-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1.22fr);
  gap: 56px;
  align-items: center;
  overflow: visible;
}

.hero-copy,
.hero-panel,
.factory-stage {
  min-width: 0;
  max-width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading > .eyebrow,
.control-copy > .eyebrow,
.story-copy > .eyebrow {
  font-size: clamp(0.82rem, 0.9vw, 1rem);
  line-height: 1.16;
}

.section-heading > .eyebrow::before,
.control-copy > .eyebrow::before,
.story-copy > .eyebrow::before {
  width: 46px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.contact h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.04;
}

.hero h1 {
  max-width: 560px;
  color: #ffffff;
  font-size: clamp(2.25rem, 3.1vw, 3.35rem);
  font-weight: 700;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.hero h1 span {
  display: block;
}

.hero p {
  max-width: min(610px, 100%);
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
  line-height: 1.62;
  overflow-wrap: break-word;
}

.factory-stage {
  position: relative;
  min-height: 560px;
  perspective: 1200px;
}

.factory-perspective {
  position: absolute;
  inset: 18px 0 0;
  transform: rotateX(58deg) rotateZ(-38deg);
  transform-style: preserve-3d;
}

.factory-floor {
  position: absolute;
  left: 4%;
  top: 5%;
  width: 720px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(23, 51, 73, 0.95), rgba(9, 20, 34, 0.94)),
    #132133;
  box-shadow: 0 54px 120px rgba(0, 0, 0, 0.4);
  transform-style: preserve-3d;
  overflow: hidden;
}

.capability-floor {
  position: absolute;
  left: 2%;
  top: 1%;
  width: 760px;
  height: 550px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 46%, rgba(0, 189, 227, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(19, 53, 76, 0.98), rgba(8, 18, 31, 0.96));
  box-shadow: 0 54px 120px rgba(0, 0, 0, 0.42);
  transform-style: preserve-3d;
  overflow: hidden;
}

.capability-floor::before {
  content: "";
  position: absolute;
  inset: 42px;
  border: 1px dashed rgba(255, 255, 255, 0.13);
  border-radius: 12px;
}

.floor-zone {
  position: absolute;
  display: grid;
  align-content: start;
  gap: 4px;
  width: 166px;
  min-height: 106px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 10px;
  color: white;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(5, 13, 23, 0.74);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
  transform: translateZ(54px);
  overflow: hidden;
  animation: zonePulse 4.6s ease-in-out infinite;
}

.floor-zone::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--amber));
}

.floor-zone span {
  color: var(--amber);
  font-weight: 900;
}

.floor-zone strong {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.05rem;
}

.floor-zone small {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
  line-height: 1.35;
}

.zone-design { left: 48px; top: 54px; }
.zone-embedded { left: 296px; top: 38px; animation-delay: 0.25s; }
.zone-prototype { right: 48px; top: 72px; animation-delay: 0.5s; }
.zone-manufacture { left: 72px; bottom: 68px; animation-delay: 0.75s; }
.zone-quality { left: 312px; bottom: 52px; animation-delay: 1s; }
.zone-launch { right: 62px; bottom: 92px; animation-delay: 1.25s; }

.capability-rail {
  position: absolute;
  height: 86px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0 20px, transparent 20px 40px),
    linear-gradient(90deg, rgba(0, 189, 227, 0.18), rgba(18, 103, 232, 0.15));
  transform: translateZ(28px);
  animation: beltMove 1.2s linear infinite;
}

.rail-a {
  left: 182px;
  top: 226px;
  width: 392px;
}

.rail-b {
  left: 268px;
  top: 216px;
  width: 242px;
  transform: translateZ(29px) rotate(90deg);
}

.build-shuttle {
  position: absolute;
  left: 314px;
  top: 224px;
  display: grid;
  place-items: center;
  width: 120px;
  height: 82px;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 0 46px rgba(0, 189, 227, 0.3);
  transform: translateZ(92px);
  animation: shuttleMove 5.8s ease-in-out infinite;
}

.build-shuttle strong {
  font-size: 0.96rem;
}

.build-shuttle small {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.smart-crane {
  position: absolute;
  left: 222px;
  top: 142px;
  width: 270px;
  height: 8px;
  border-radius: 999px;
  background: #c9d7df;
  transform: translateZ(118px);
}

.smart-crane::before,
.smart-crane::after {
  content: "";
  position: absolute;
  top: 0;
  width: 8px;
  height: 160px;
  background: #8198a8;
}

.smart-crane::before { left: 18px; }
.smart-crane::after { right: 18px; }

.smart-crane span {
  position: absolute;
  left: 28px;
  top: -13px;
  width: 78px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--amber), #ff7a3d);
  box-shadow: 0 0 34px rgba(255, 189, 74, 0.32);
  animation: gantryRun 4.8s ease-in-out infinite;
}

.qa-scanner {
  position: absolute;
  right: 208px;
  top: 190px;
  width: 16px;
  height: 205px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(0, 189, 227, 0.72), transparent);
  transform: translateZ(126px);
  animation: scanSweep 3.2s ease-in-out infinite;
}

.assembly-dots span {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: var(--amber);
  transform: translateZ(74px);
  animation: dotTravel 4.8s linear infinite;
}

.assembly-dots span:nth-child(1) { left: 178px; top: 254px; }
.assembly-dots span:nth-child(2) { left: 230px; top: 254px; animation-delay: 0.7s; }
.assembly-dots span:nth-child(3) { left: 282px; top: 254px; animation-delay: 1.4s; }
.assembly-dots span:nth-child(4) { left: 334px; top: 254px; animation-delay: 2.1s; }

.floor-product {
  position: absolute;
  object-fit: contain;
  padding: 9px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.26);
  transform: translateZ(104px);
}

.product-drone {
  left: 300px;
  top: 124px;
  width: 118px;
  height: 86px;
  animation: productFloat 4.6s ease-in-out infinite;
}

.product-lift {
  right: 180px;
  bottom: 132px;
  width: 148px;
  height: 82px;
  animation: productFloat 5s ease-in-out infinite;
}

.product-agbot {
  left: 190px;
  bottom: 148px;
  width: 128px;
  height: 78px;
  object-fit: cover;
  animation: productFloat 5.4s ease-in-out infinite;
}

.factory-dashboard {
  position: absolute;
  right: 214px;
  top: 292px;
  display: grid;
  gap: 4px;
  width: 252px;
  padding: 15px;
  border-radius: 10px;
  color: white;
  background: rgba(4, 11, 19, 0.82);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
  transform: translateZ(132px);
}

.factory-dashboard span {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.factory-dashboard strong {
  font-size: 0.98rem;
}

.floor-caption {
  position: absolute;
  right: 0;
  bottom: 28px;
  z-index: 2;
  display: grid;
  gap: 4px;
  width: min(420px, 68%);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  color: white;
  background: rgba(7, 17, 28, 0.78);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.floor-caption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.45;
}

.isometric-factory {
  position: relative;
  min-height: 560px;
  perspective: 1400px;
  transform-style: preserve-3d;
  --factory-scale: 0.74;
}

.factory-model {
  position: absolute;
  left: 26px;
  top: 72px;
  width: 760px;
  height: 520px;
  transform: rotateX(58deg) rotateZ(-36deg) scale(var(--factory-scale));
  transform-origin: center top;
  transform-style: preserve-3d;
  transition: transform 320ms ease;
}

.factory-base {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

.base-top {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(0, 189, 227, 0.18) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 189, 227, 0.14) 1px, transparent 1px),
    linear-gradient(135deg, #d8e1e7 0 8%, #f8fbfd 8% 18%, #e8eef2 18% 100%);
  background-size: 44px 44px, 44px 44px, auto;
  box-shadow: 0 48px 110px rgba(0, 0, 0, 0.34);
}

.base-front,
.base-side {
  position: absolute;
  background: linear-gradient(135deg, #0d8fbd, #075b88);
}

.base-front {
  left: 18px;
  right: 18px;
  bottom: -34px;
  height: 34px;
  transform: skewX(45deg);
  transform-origin: top;
  border-radius: 0 0 14px 14px;
}

.base-side {
  top: 18px;
  right: -34px;
  width: 34px;
  bottom: 18px;
  transform: skewY(45deg);
  transform-origin: left;
  border-radius: 0 14px 14px 0;
}

.factory-lane {
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber), rgba(255, 189, 74, 0.28));
  transform: translateZ(4px);
}

.lane-main {
  left: 118px;
  top: 246px;
  width: 480px;
  height: 18px;
}

.lane-side {
  right: 124px;
  top: 92px;
  width: 18px;
  height: 330px;
}

.factory-glow {
  position: absolute;
  border-radius: 999px;
  background: rgba(0, 189, 227, 0.78);
  box-shadow: 0 0 34px rgba(0, 189, 227, 0.62);
  transform: translateZ(7px);
  animation: glowRun 4.8s linear infinite;
}

.glow-a {
  left: 142px;
  top: 248px;
  width: 42px;
  height: 14px;
}

.glow-b {
  right: 126px;
  top: 128px;
  width: 14px;
  height: 42px;
  animation-delay: 1.7s;
}

.machine {
  position: absolute;
  transform-style: preserve-3d;
  transform: translateZ(28px);
}

.machine::before,
.machine::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.design-lab {
  left: 78px;
  top: 76px;
  width: 158px;
  height: 126px;
}

.design-lab .desk {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 0;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, #263f53, #102235);
  box-shadow: 0 14px 0 #091522;
}

.design-lab .screen {
  position: absolute;
  left: 20px;
  top: 0;
  width: 96px;
  height: 70px;
  border: 8px solid #f3f7fa;
  border-radius: 9px;
  background:
    linear-gradient(135deg, rgba(0, 189, 227, 0.88), rgba(18, 103, 232, 0.76)),
    #0d2740;
  box-shadow: 0 16px 0 #b3c2cb;
  transform: translateZ(42px);
}

.design-lab .tower {
  position: absolute;
  right: 8px;
  bottom: 42px;
  width: 34px;
  height: 70px;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffbd4a, #ef792c);
  box-shadow: 0 14px 0 #b4521f;
  transform: translateZ(34px);
}

.robot-cell {
  left: 118px;
  bottom: 92px;
  width: 168px;
  height: 168px;
}

.robot-base {
  position: absolute;
  left: 32px;
  bottom: 16px;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #eef4f8 0 28%, #f48b32 29% 48%, #6f8493 49% 100%);
  box-shadow: 0 15px 0 #405768;
}

.robot-arm-main,
.robot-arm-fore {
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(90deg, #f4f8fb, #9aacb8);
  transform-origin: left center;
}

.robot-arm-main {
  left: 76px;
  bottom: 86px;
  width: 104px;
  height: 26px;
  transform: rotate(-26deg) translateZ(72px);
  animation: robotMain 3.2s ease-in-out infinite;
}

.robot-arm-fore {
  left: 148px;
  bottom: 118px;
  width: 82px;
  height: 22px;
  transform: rotate(40deg) translateZ(82px);
  animation: robotFore 3.2s ease-in-out infinite;
}

.robot-head {
  position: absolute;
  left: 204px;
  bottom: 142px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--amber);
  box-shadow: 0 0 26px rgba(255, 189, 74, 0.4);
  transform: translateZ(90px);
}

.conveyor-cell {
  left: 272px;
  top: 214px;
  width: 292px;
  height: 96px;
}

.conveyor-cell .belt {
  position: absolute;
  inset: 16px 0;
  border-radius: 16px;
  background:
    repeating-linear-gradient(90deg, #0d1e2d 0 22px, #18384e 22px 44px),
    #102437;
  box-shadow: 0 14px 0 #071521;
  transform: translateZ(34px);
  animation: beltMove 1s linear infinite;
}

.conveyor-cell .roller {
  position: absolute;
  top: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #dce8ee;
  box-shadow: inset 0 0 0 9px #718997;
  transform: translateZ(44px);
}

.conveyor-cell .r1 { left: -16px; }
.conveyor-cell .r2 { right: -16px; }

.conveyor-cell .part {
  position: absolute;
  top: 34px;
  width: 36px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--amber), #ff7a3d);
  transform: translateZ(64px);
  animation: partRun 3.4s linear infinite;
}

.conveyor-cell .p1 { left: 40px; }
.conveyor-cell .p2 { left: -60px; animation-delay: 1.5s; }

.gantry-cell {
  right: 62px;
  top: 78px;
  width: 250px;
  height: 254px;
}

.gantry-rail,
.gantry-cross {
  position: absolute;
  background: linear-gradient(180deg, #ffb94c, #ee792d);
  box-shadow: 0 12px 0 #b95a26;
  transform: translateZ(70px);
}

.gantry-rail {
  top: 24px;
  width: 24px;
  height: 210px;
  border-radius: 8px;
}

.rail-left { left: 10px; }
.rail-right { right: 10px; }

.gantry-cross {
  left: 10px;
  right: 10px;
  top: 24px;
  height: 24px;
  border-radius: 8px;
}

.gantry-head {
  position: absolute;
  left: 76px;
  top: 8px;
  width: 70px;
  height: 58px;
  border-radius: 9px;
  background: linear-gradient(135deg, #edf5f8, #98aeba);
  box-shadow: 0 12px 0 #607582;
  transform: translateZ(92px);
  animation: gantryHead 4s ease-in-out infinite;
}

.qa-cell {
  right: 232px;
  bottom: 68px;
  width: 146px;
  height: 138px;
}

.scanner-frame {
  position: absolute;
  inset: 6px 18px;
  border: 14px solid #f0f6f9;
  border-bottom-width: 20px;
  border-radius: 12px;
  box-shadow: 0 14px 0 #9fb0ba;
  transform: translateZ(72px);
}

.scanner-beam {
  position: absolute;
  left: 50%;
  top: 28px;
  width: 12px;
  height: 92px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(0, 189, 227, 0.86), transparent);
  transform: translateX(-50%) translateZ(96px);
  animation: qaBeam 2.7s ease-in-out infinite;
}

.qa-console {
  position: absolute;
  left: 34px;
  bottom: 0;
  width: 78px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #263f53, #0c2032);
  box-shadow: 0 10px 0 #071421;
  transform: translateZ(54px);
}

.launch-cell {
  right: 78px;
  bottom: 70px;
  width: 152px;
  height: 124px;
}

.dock {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 138px;
  height: 72px;
  border-radius: 12px;
  background: linear-gradient(135deg, #dfe8ed, #9eb2bf);
  box-shadow: 0 14px 0 #697f8c;
  transform: translateZ(38px);
}

.crate {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 7px;
  background: linear-gradient(135deg, #ffbd4a, #ff7a3d);
  box-shadow: 0 10px 0 #bd5c27;
  transform: translateZ(76px);
}

.c1 { left: 22px; bottom: 62px; }
.c2 { left: 74px; bottom: 42px; }

.dispatch-line {
  position: absolute;
  right: 0;
  bottom: 36px;
  width: 98px;
  height: 10px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 22px rgba(0, 189, 227, 0.42);
  transform: translateZ(82px);
}

.factory-callouts {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.callout {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: white;
  background: rgba(7, 17, 28, 0.78);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  font-size: 0.84rem;
  font-weight: 900;
}

.callout b {
  color: var(--amber);
}

.callout::after {
  content: "";
  position: absolute;
  width: 82px;
  height: 1px;
  background: rgba(0, 189, 227, 0.6);
}

.callout-design {
  left: 28px;
  top: 168px;
}

.callout-design::after {
  left: 100%;
  top: 50%;
}

.callout-prototype {
  right: 22px;
  top: 112px;
}

.callout-prototype::after {
  right: 100%;
  top: 50%;
}

.callout-build {
  left: 52px;
  bottom: 166px;
}

.callout-build::after {
  left: 100%;
  top: 50%;
}

.callout-quality {
  right: 20px;
  bottom: 190px;
}

.callout-quality::after {
  right: 100%;
  top: 50%;
}

.factory-message {
  position: absolute;
  right: 8px;
  bottom: 34px;
  z-index: 2;
  display: grid;
  gap: 6px;
  width: min(390px, 64%);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  color: white;
  background: rgba(7, 17, 28, 0.84);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.factory-message span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  line-height: 1.45;
}

.digital-twin-hero {
  min-height: 610px;
}

.twin-visual {
  position: absolute;
  left: -28px;
  right: -16px;
  top: 20px;
  bottom: 96px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 42% 48%, rgba(0, 189, 227, 0.13), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(224, 235, 241, 0.94));
  box-shadow:
    0 38px 120px rgba(0, 0, 0, 0.32),
    inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
  transform-origin: center;
  transition: transform 320ms ease;
}

.twin-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  border: 1px solid rgba(0, 189, 227, 0.14);
  border-radius: 14px;
  pointer-events: none;
}

.twin-visual img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 108%;
  max-width: none;
  height: 108%;
  object-fit: contain;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 18px 28px rgba(20, 40, 58, 0.2));
}

.twin-scan {
  display: none;
}

.hotspot {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 11px;
  border: 1px solid rgba(8, 17, 28, 0.1);
  border-radius: 999px;
  color: #0b1724;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(14, 30, 45, 0.13);
  backdrop-filter: blur(12px);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
  animation: hotspotPulse 3.4s ease-in-out infinite;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.hotspot b {
  color: var(--blue);
}

.hotspot:hover,
.hotspot.active {
  border-color: rgba(0, 189, 227, 0.5);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(0, 189, 227, 0.2);
}

.h-design {
  left: 8%;
  bottom: 18%;
}

.h-prototype {
  left: 32%;
  top: 18%;
  animation-delay: 0.4s;
}

.h-manufacture {
  right: 19%;
  top: 17%;
  animation-delay: 0.8s;
}

.h-quality {
  right: 8%;
  top: 45%;
  animation-delay: 1.2s;
}

.h-dispatch {
  right: 8%;
  bottom: 18%;
  animation-delay: 1.6s;
}

.twin-message {
  position: absolute;
  right: 0;
  bottom: 18px;
  z-index: 4;
  display: grid;
  gap: 5px;
  width: min(470px, 72%);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  color: white;
  background: rgba(7, 17, 28, 0.88);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.twin-message span {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.twin-message strong {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.28rem;
}

.twin-message p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  line-height: 1.45;
}

@keyframes twinScan {
  50% { transform: translateX(520px); opacity: 0.42; }
}

@keyframes hotspotPulse {
  50% { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(0, 189, 227, 0.18); }
}

@keyframes glowRun {
  50% { transform: translateZ(7px) translateX(300px); opacity: 0.55; }
}

@keyframes robotMain {
  50% { transform: rotate(10deg) translateZ(72px); }
}

@keyframes robotFore {
  50% { transform: rotate(-24deg) translateZ(82px); }
}

@keyframes partRun {
  to { transform: translateZ(64px) translateX(290px) rotate(180deg); opacity: 0; }
}

@keyframes gantryHead {
  50% { transform: translateZ(92px) translateX(104px); }
}

@keyframes qaBeam {
  50% { transform: translateX(-50%) translateZ(96px) translateY(18px); opacity: 0.5; }
}

@keyframes zonePulse {
  50% { border-color: rgba(0, 189, 227, 0.46); box-shadow: 0 20px 50px rgba(0, 189, 227, 0.18); }
}

@keyframes shuttleMove {
  0%, 100% { transform: translateZ(92px) translateX(-120px); }
  50% { transform: translateZ(92px) translateX(128px); }
}

@keyframes gantryRun {
  50% { transform: translateX(164px); }
}

@keyframes scanSweep {
  50% { transform: translateZ(126px) translateX(-118px); opacity: 0.55; }
}

@keyframes dotTravel {
  to { transform: translateZ(74px) translateX(250px) rotate(180deg); opacity: 0; }
}

.floor-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 189, 227, 0.13) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 189, 227, 0.11) 1px, transparent 1px);
  background-size: 48px 48px;
}

.station {
  position: absolute;
  display: grid;
  align-content: start;
  gap: 4px;
  width: 170px;
  height: 120px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: white;
  background: linear-gradient(145deg, rgba(13, 31, 48, 0.94), rgba(17, 59, 85, 0.86));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
  transform: translateZ(42px);
  animation: stationGlow 3.8s ease-in-out infinite;
}

.station::after {
  content: "";
  position: absolute;
  inset: auto 12px 12px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--amber));
  animation: scanLine 2.6s linear infinite;
}

.station span {
  color: var(--amber);
  font-weight: 900;
}

.station strong {
  font-size: 1rem;
  line-height: 1.1;
}

.station small {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.station-design { left: 54px; top: 54px; }
.station-rd { right: 78px; top: 42px; animation-delay: 0.3s; }
.station-build { left: 84px; bottom: 54px; animation-delay: 0.6s; }
.station-oem { right: 66px; bottom: 72px; animation-delay: 0.9s; }

.conveyor {
  position: absolute;
  left: 228px;
  top: 232px;
  width: 282px;
  height: 78px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 18px, transparent 18px 36px),
    linear-gradient(90deg, rgba(0, 189, 227, 0.22), rgba(18, 103, 232, 0.2));
  transform: translateZ(26px);
  animation: beltMove 1.1s linear infinite;
}

.conveyor span {
  position: absolute;
  top: 24px;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--amber), #ff7b3d);
  box-shadow: 0 0 28px rgba(255, 189, 74, 0.3);
  animation: partsMove 4s linear infinite;
}

.conveyor span:nth-child(1) { left: -40px; }
.conveyor span:nth-child(2) { left: -120px; animation-delay: 1s; }
.conveyor span:nth-child(3) { left: -200px; animation-delay: 2s; }
.conveyor span:nth-child(4) { left: -280px; animation-delay: 3s; }

.robot-arm {
  position: absolute;
  width: 104px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #dce7ee, #7f95a8);
  transform: translateZ(64px) rotate(28deg);
  transform-origin: 16px center;
  animation: robotSweep 3s ease-in-out infinite;
}

.robot-arm::before,
.robot-arm::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #e9f2f6;
}

.robot-arm::before {
  left: -12px;
  top: -11px;
  width: 40px;
  height: 40px;
}

.robot-arm::after {
  right: -10px;
  top: -7px;
  width: 28px;
  height: 28px;
  background: var(--cyan);
}

.arm-a { left: 206px; top: 162px; }
.arm-b { right: 168px; bottom: 166px; animation-delay: 1.2s; }

.factory-product {
  position: absolute;
  object-fit: contain;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.24);
  transform: translateZ(74px);
}

.factory-sculpture {
  position: absolute;
  transform: translateZ(96px);
  pointer-events: none;
}

.sculpture-ring {
  right: 126px;
  top: 176px;
  width: 74px;
  height: 74px;
  border: 13px solid rgba(0, 189, 227, 0.78);
  border-left-color: rgba(255, 189, 74, 0.9);
  border-radius: 50%;
  box-shadow: 0 0 34px rgba(0, 189, 227, 0.22);
  animation: sculptureSpin 5.5s linear infinite;
}

.sculpture-pillar {
  left: 388px;
  bottom: 108px;
  width: 32px;
  height: 96px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f7fbff, #8cb1c5 58%, #244057);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.2);
  animation: productFloat 4.2s ease-in-out infinite;
}

.sculpture-chip {
  left: 172px;
  top: 236px;
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  box-shadow: 0 0 42px rgba(108, 92, 231, 0.28);
  animation: chipPulse 2.8s ease-in-out infinite;
}

@keyframes sculptureSpin {
  to { transform: translateZ(96px) rotate(360deg); }
}

@keyframes chipPulse {
  50% { transform: translateZ(116px) scale(0.82); }
}

.drone-part {
  left: 298px;
  top: 66px;
  width: 134px;
  height: 104px;
  animation: productFloat 4.8s ease-in-out infinite;
}

.lift-part {
  right: 220px;
  bottom: 58px;
  width: 150px;
  height: 86px;
  animation: productFloat 5.5s ease-in-out infinite;
}

.status-board {
  position: absolute;
  left: 245px;
  top: 336px;
  display: grid;
  gap: 5px;
  width: 230px;
  padding: 14px;
  border-radius: 8px;
  color: white;
  background: rgba(5, 12, 20, 0.82);
  transform: translateZ(86px);
}

.status-board span {
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.status-board strong {
  font-size: 0.98rem;
}

.hero-image-stack {
  position: absolute;
  right: 0;
  bottom: 4px;
  display: grid;
  grid-template-columns: 1fr 0.66fr;
  gap: 12px;
  width: 64%;
  transform: translateZ(0);
}

.hero-image-stack img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.24);
}

.hero-image-stack img:last-child {
  object-fit: contain;
  padding: 10px;
  background: rgba(255, 255, 255, 0.94);
}

@keyframes stationGlow {
  50% { box-shadow: 0 18px 48px rgba(0, 189, 227, 0.24); }
}

@keyframes scanLine {
  from { filter: hue-rotate(0deg); }
  to { filter: hue-rotate(90deg); }
}

@keyframes beltMove {
  to { background-position: 36px 0, 0 0; }
}

@keyframes partsMove {
  from { transform: translateX(0) rotate(0deg); opacity: 0; }
  10%, 90% { opacity: 1; }
  to { transform: translateX(360px) rotate(180deg); opacity: 0; }
}

@keyframes robotSweep {
  50% { transform: translateZ(64px) rotate(-22deg); }
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.9rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 18px 34px rgba(12, 166, 201, 0.24);
}

.button.secondary {
  color: inherit;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.hero-media {
  position: relative;
  min-height: 560px;
}

.hero-photo {
  position: absolute;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.hero-photo.main {
  inset: 48px 70px 30px 0;
  width: calc(100% - 70px);
  height: 480px;
}

.hero-photo.top {
  right: 0;
  top: 0;
  width: 38%;
  height: 210px;
  padding: 18px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.94);
  animation: productFloat 5s ease-in-out infinite;
}

.hero-photo.bottom {
  right: 22px;
  bottom: 0;
  width: 48%;
  height: 190px;
  padding: 12px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.94);
  animation: productFloat 5.4s ease-in-out infinite;
}

.hero-badge {
  position: absolute;
  left: 28px;
  bottom: 58px;
  width: min(310px, 56%);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(8, 18, 29, 0.78);
  backdrop-filter: blur(12px);
}

.hero-badge strong,
.hero-badge span {
  display: block;
}

.hero-badge strong {
  font-size: 1.3rem;
}

.hero-badge span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  line-height: 1.45;
}

.metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 48px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
}

.metrics-strip article {
  padding: 18px;
  background: rgba(10, 26, 42, 0.46);
}

.metrics-strip strong {
  display: block;
  font-size: clamp(1.45rem, 2vw, 2.1rem);
}

.metrics-strip span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 700;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 34px;
  align-items: end;
  margin-bottom: 32px;
}

.section-heading h2,
.contact h2 {
  font-size: clamp(1.62rem, 2.3vw, 2.55rem);
  font-weight: 800;
}

.intro {
  background: white;
}

.intro-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.intro-copy p,
.capability-card p,
.process-copy p,
.product-showcase p,
.rd-card p,
.story-copy p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.image-story {
  background: white;
  padding-top: 0;
}

.studio-reel {
  color: white;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 189, 74, 0.16), transparent 24%),
    radial-gradient(circle at 82% 28%, rgba(0, 189, 227, 0.18), transparent 26%),
    linear-gradient(145deg, #07111c, #0d1c2b);
}

.control-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: 38px;
  align-items: stretch;
  max-width: var(--max);
  margin: 0 auto;
}

.control-copy {
  display: grid;
  align-content: center;
}

.control-copy h2 {
  margin: 0;
  color: white;
  font-size: clamp(1.65rem, 2.45vw, 2.65rem);
  line-height: 1.08;
}

.control-copy p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.62;
}

.control-metrics {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.control-metrics span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.control-metrics strong {
  color: var(--amber);
}

.control-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  grid-auto-rows: 1fr;
}

.control-board article,
.control-board figure {
  min-height: 198px;
  margin: 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: white;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

.control-board article {
  display: grid;
  align-content: end;
  position: relative;
  overflow: hidden;
}

.control-board article::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 22px;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 42px rgba(0, 189, 227, 0.28);
}

.control-board article:nth-child(2)::before {
  background: linear-gradient(135deg, var(--violet), var(--cyan));
}

.control-board article:nth-child(3)::before {
  background: linear-gradient(135deg, var(--amber), #ff7a3d);
}

.control-board span {
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.control-board h3 {
  margin: 10px 0 0;
  font-size: 1.16rem;
  line-height: 1.22;
}

.control-board figure {
  overflow: hidden;
  padding: 0;
}

.control-board img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-heading {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 38px;
  align-items: end;
  max-width: var(--max);
  margin: 0 auto 38px;
}

.reel-heading h2 {
  grid-column: 1 / 2;
  margin: 0;
  font-size: clamp(1.65rem, 2.45vw, 2.65rem);
  line-height: 1.06;
}

.reel-heading p {
  grid-column: 2 / 3;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.62;
}

.reel-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1.05fr;
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}

.reel-card {
  position: relative;
  min-height: 480px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.22);
}

.reel-card:nth-child(2) {
  margin-top: 62px;
}

.reel-card:nth-child(3) {
  margin-top: 28px;
}

.reel-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transform: scale(1.02);
  transition: transform 900ms ease, opacity 600ms ease;
}

.reel-card:first-child img,
.reel-card:nth-child(2) img {
  object-fit: contain;
  padding: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(228, 236, 241, 0.92));
  opacity: 0.9;
}

.reel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(7, 17, 28, 0.88));
}

.reel-card span,
.reel-card h3 {
  position: relative;
  z-index: 1;
}

.reel-card span {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 7px;
  color: #06111c;
  background: var(--amber);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reel-card h3 {
  max-width: 330px;
  margin: 300px 0 0;
  font-size: 1.38rem;
  line-height: 1.16;
}

.reel-card:hover img {
  opacity: 0.76;
  transform: scale(1.07);
}

.factory-journey {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(18, 103, 232, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(18, 103, 232, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #eef3f8 100%);
  background-size: 76px 76px, 76px 76px, auto;
  overflow: hidden;
}

.factory-journey .section-heading h2 {
  color: var(--ink);
}

.journey-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}

.journey-track::before {
  display: none;
}

.journey-station {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 246px;
  padding: 22px;
  border: 1px solid rgba(14, 23, 32, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 253, 0.92)),
    white;
  box-shadow: 0 24px 70px rgba(14, 30, 45, 0.1);
  overflow: hidden;
}

.journey-station::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--amber));
  animation: none;
}

.journey-station:nth-child(2)::before { animation-delay: 0.4s; }
.journey-station:nth-child(3)::before { animation-delay: 0.8s; }
.journey-station:nth-child(4)::before { animation-delay: 1.2s; }

.journey-station span {
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-station h3 {
  margin: 24px 0 10px;
  font-size: 1.12rem;
  line-height: 1.22;
}

.journey-station p {
  margin: 0;
  color: #5d6c7b;
  font-size: 0.9rem;
  line-height: 1.52;
}

.journey-station.active,
.journey-station:hover {
  border-color: rgba(0, 189, 227, 0.34);
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(14, 30, 45, 0.16);
}

@keyframes blockBreathe {
  50% { transform: translateY(-10px); filter: brightness(1.2); }
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 42px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.story-image {
  margin: 0;
  height: 460px;
  padding: 18px;
  overflow: hidden;
  border-radius: 8px;
  background: #f8fbfd;
  box-shadow: var(--shadow);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 900ms ease;
}

.story-image:hover img {
  transform: scale(1.04);
}

.story-copy h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.25vw, 2.45rem);
  line-height: 1.08;
}

.story-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 26px;
}

.story-points span {
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #2b3b4d;
  background: #f8fbfd;
  font-size: 0.84rem;
  font-weight: 800;
}

.services,
.capabilities,
.products,
.team {
  background: #eef3f8;
}

.services {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f7fafc 0%, #eef3f8 56%, #f8fbfd 100%);
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 103, 232, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(18, 103, 232, 0.04) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 78%, transparent);
  pointer-events: none;
}

.service-lab {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}

.lab-visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(8, 17, 28, 0.1);
  border-radius: 10px;
  background:
    radial-gradient(circle at 52% 42%, rgba(0, 189, 227, 0.18), transparent 32%),
    linear-gradient(145deg, #0a1420, #14273a);
  box-shadow: 0 30px 90px rgba(14, 30, 45, 0.16);
}

.lab-visual::before,
.lab-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.lab-visual::before {
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

.lab-visual::after {
  display: none;
}

.lab-visual img {
  position: absolute;
  left: 50%;
  bottom: 86px;
  z-index: 1;
  width: 108%;
  max-width: none;
  height: 78%;
  object-fit: contain;
  transform: translateX(-50%);
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.28));
}

.lab-title,
.lab-hud,
.lab-thread {
  position: absolute;
  z-index: 6;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: white;
  background: rgba(5, 12, 21, 0.78);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.lab-title {
  left: 24px;
  right: 24px;
  top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border-radius: 8px;
}

.lab-title span,
.lab-hud span {
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lab-title strong {
  max-width: 420px;
  font-size: 0.96rem;
  line-height: 1.24;
  text-align: right;
}

.lab-hud {
  display: grid;
  gap: 6px;
  width: 210px;
  padding: 13px;
  border-radius: 8px;
  animation: hudFloat 4.8s ease-in-out infinite;
}

.lab-hud strong {
  font-size: 0.86rem;
  line-height: 1.25;
}

.hud-design {
  left: 30px;
  top: 144px;
}

.hud-build {
  right: 28px;
  top: 144px;
  animation-delay: 0.5s;
}

.hud-proof {
  left: 36px;
  bottom: 174px;
  animation-delay: 1s;
}

.lab-thread {
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 18px 16px;
  border-radius: 10px;
  overflow: hidden;
  isolation: isolate;
}

.thread-line,
.thread-pulse {
  position: absolute;
  top: 50%;
  z-index: 0;
  height: 3px;
  border-radius: 999px;
  transform: translateY(-50%);
}

.thread-line {
  left: 9%;
  right: 9%;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--amber));
  opacity: 0.28;
}

.thread-pulse {
  left: 9%;
  width: 64px;
  background: white;
  opacity: 0.78;
  box-shadow: 0 0 22px rgba(0, 189, 227, 0.72);
  animation: threadPulse 4.2s linear infinite;
}

.lab-thread span {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(10, 22, 34, 0.96);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  font-size: 0.76rem;
  font-weight: 900;
}

.service-panel-stack {
  display: grid;
  gap: 14px;
}

.service-panel-stack .capability-card {
  min-height: auto;
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
}

.service-panel-stack .capability-card h3 {
  margin-top: 18px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.service-tags span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(18, 103, 232, 0.12);
  border-radius: 999px;
  color: #12345a;
  background: rgba(18, 103, 232, 0.07);
  font-size: 0.72rem;
  font-weight: 900;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.capability-card,
.product-showcase,
.rd-card,
.person,
.cert-stack article,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.capability-card {
  min-height: 420px;
  padding: 24px;
  transform-style: preserve-3d;
}

.card-index {
  color: var(--cyan);
  font-weight: 900;
}

.capability-card h3 {
  margin: 26px 0 12px;
  font-size: 1.13rem;
  line-height: 1.24;
}

.capability-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.capability-card li {
  position: relative;
  padding-left: 24px;
  color: #304052;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.38;
}

.capability-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.54em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

@keyframes labScanner {
  50% { transform: translateX(520px); opacity: 0.36; }
}

@keyframes hudFloat {
  50% { transform: translateY(-6px); }
}

@keyframes threadPulse {
  from { left: 9%; }
  to { left: calc(91% - 64px); }
}

.process {
  background: white;
}

.method-switch {
  max-width: 1180px;
  margin: -16px auto 24px;
  display: flex;
  gap: 8px;
}

.method-tab {
  min-width: 110px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}

.method-tab.active {
  color: white;
  border-color: var(--blue);
  background: var(--blue);
}

.process-stage {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 28px;
  align-items: stretch;
}

.process-copy {
  padding: 24px;
  color: white;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--steel), var(--ink));
}

.process-copy h3 {
  margin: 0 0 16px;
  font-size: 1.55rem;
}

.process-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.step {
  position: relative;
  min-height: 230px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  overflow: hidden;
}

.step::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.step span {
  color: var(--cyan);
  font-weight: 900;
}

.step h4 {
  margin: 32px 0 10px;
  font-size: 1rem;
}

.step p {
  color: var(--muted);
  line-height: 1.48;
  font-size: 0.84rem;
}

.product-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 22px;
}

.product-list {
  display: grid;
  gap: 8px;
  align-content: start;
}

.product-button {
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: #2d3a48;
  font-weight: 800;
  font-size: 0.88rem;
  text-align: left;
  cursor: pointer;
}

.product-button.active {
  color: white;
  border-color: var(--ink);
  background: var(--ink);
}

.product-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 22px;
  min-height: 0;
  padding: 22px;
  overflow: hidden;
}

.product-media {
  position: relative;
  display: grid;
  min-height: 390px;
  margin: 0;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(18, 103, 232, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(18, 103, 232, 0.05) 1px, transparent 1px),
    linear-gradient(145deg, #f8fbfd, #e9f1f6);
  background-size: 36px 36px, 36px 36px, auto;
}

.product-image {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
  padding: 18px;
  filter: drop-shadow(0 24px 34px rgba(14, 23, 32, 0.18));
  transform: translateZ(0);
  animation: productFloat 4.8s ease-in-out infinite;
}

@keyframes productFloat {
  50% { transform: translateY(-10px); }
}

.product-showcase > *:not(.product-visual) {
  position: relative;
}

.product-info {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
}

.product-showcase h3 {
  max-width: 600px;
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 2.15rem);
  line-height: 1.1;
}

.product-showcase p {
  max-width: 560px;
  margin: 0;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1.18fr);
  gap: 12px;
  align-items: stretch;
}

.product-usecases,
.product-highlights {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.product-usecases strong,
.product-highlights strong {
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-usecases ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-usecases li {
  position: relative;
  padding-left: 20px;
  color: #334151;
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.34;
}

.product-usecases li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 0;
  max-width: none;
}

.spec-grid span {
  min-height: 50px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: #354555;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.32;
}

.commercial {
  background: white;
}

.commercial-table {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.table-row {
  display: grid;
  grid-template-columns: 0.85fr 1.1fr 1.25fr 0.8fr;
  gap: 1px;
  background: var(--line);
}

.table-row span {
  min-height: 66px;
  display: flex;
  align-items: center;
  padding: 14px;
  background: white;
  color: #334151;
  font-size: 0.86rem;
  line-height: 1.32;
}

.table-row span:first-child {
  color: var(--ink);
  font-weight: 900;
}

.table-head span {
  min-height: 50px;
  color: white;
  background: linear-gradient(135deg, var(--ink), var(--steel));
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.table-head span:first-child {
  color: white;
}

.rd {
  color: white;
  background:
    linear-gradient(135deg, rgba(14, 23, 32, 0.96), rgba(34, 62, 82, 0.94)),
    #0e1720;
}

.rd .section-heading h2,
.rd .rd-card {
  color: white;
}

.rd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.rd-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.rd-card strong {
  display: block;
}

.rd-card span {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  margin: 20px 0 16px;
  padding: 0 12px;
  border: 1px solid rgba(255, 189, 74, 0.24);
  border-radius: 999px;
  color: var(--amber);
  background: rgba(255, 189, 74, 0.1);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.ecosystem {
  background: white;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.facility-map {
  position: relative;
  min-height: 460px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 32% 50%, rgba(47, 157, 115, 0.28), transparent 13%),
    radial-gradient(circle at 66% 62%, rgba(20, 86, 217, 0.22), transparent 12%),
    linear-gradient(135deg, #dbe8ef, #f8fbfd);
  border: 1px solid var(--line);
  overflow: hidden;
}

.facility-map::before {
  content: "";
  position: absolute;
  inset: 46px;
  border: 1px dashed rgba(14, 23, 32, 0.18);
  border-radius: 8px;
}

.pin {
  position: absolute;
  padding: 10px 12px;
  border-radius: 8px;
  color: white;
  background: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(14, 23, 32, 0.22);
}

.pin::before {
  content: "";
  position: absolute;
  left: 16px;
  bottom: -7px;
  width: 14px;
  height: 14px;
  background: inherit;
  transform: rotate(45deg);
}

.pin-india {
  left: 28%;
  top: 43%;
}

.pin-vietnam {
  right: 16%;
  bottom: 28%;
  background: var(--blue);
}

.cert-stack {
  display: grid;
  gap: 14px;
}

.cert-stack article {
  padding: 22px;
}

.cert-stack strong {
  display: block;
  color: var(--blue);
  font-size: 1.35rem;
}

.cert-stack span {
  color: var(--muted);
  font-weight: 700;
}

.facility-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 12px;
  max-width: 1180px;
  margin: 24px auto 0;
}

.facility-gallery img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(15, 30, 45, 0.1);
}

.facility-gallery img:nth-child(2),
.facility-gallery img:nth-child(3) {
  height: 190px;
  margin-top: 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.person {
  padding: 24px;
}

.person span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--steel), var(--blue));
  font-weight: 900;
}

.person h3 {
  margin: 50px 0 8px;
  font-size: 1.2rem;
}

.person p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.contact {
  padding-bottom: 36px;
  background: #0e1720;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
  padding: 30px;
  color: white;
  background:
    linear-gradient(135deg, rgba(20, 86, 217, 0.88), rgba(12, 166, 201, 0.76)),
    #1456d9;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form .field-full,
.contact-form button,
.form-status {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
  background: rgba(255, 255, 255, 0.12);
  font: inherit;
  font-size: 0.9rem;
  outline: none;
}

.contact-form input {
  min-height: 44px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 118px;
  padding: 12px 13px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.contact-form .button {
  width: 100%;
  border-color: rgba(255, 255, 255, 0.18);
}

.contact-form .button:disabled {
  cursor: progress;
  opacity: 0.66;
}

.form-status {
  min-height: 18px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  line-height: 1.45;
}

.form-status[data-type="success"] {
  color: #c9ffe5;
}

.form-status[data-type="error"] {
  color: #ffe0d6;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--delay, 0ms);
}

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

.hero .reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .site-header {
    inset: 12px 12px auto;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    display: none;
    grid-template-columns: 1fr;
    padding: 10px;
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
  }

  .site-header.open .main-nav {
    display: grid;
  }

  .hero-grid,
  .section-heading,
  .reel-heading,
  .control-layout,
  .service-lab,
  .intro-copy,
  .process-stage,
  .product-layout,
  .ecosystem-grid,
  .contact-panel,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .capability-grid,
  .rd-grid,
  .team-grid,
  .facility-gallery,
  .journey-track,
  .reel-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reel-heading h2,
  .reel-heading p {
    grid-column: auto;
  }

  .reel-card:nth-child(2),
  .reel-card:nth-child(3) {
    margin-top: 0;
  }

  .metrics-strip,
  .timeline,
  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-showcase {
    grid-template-columns: 1fr;
  }

  .factory-stage {
    min-height: 560px;
  }

  .digital-twin-hero {
    min-height: 560px;
  }

  .twin-visual {
    left: 0;
    right: 0;
    top: 34px;
    bottom: 108px;
  }

  .factory-perspective {
    left: 50%;
    width: 720px;
    transform: translateX(-50%) rotateX(58deg) rotateZ(-38deg) scale(0.82);
    transform-origin: top center;
  }

  .factory-model {
    left: 50%;
    top: 54px;
    transform: translateX(-50%) rotateX(58deg) rotateZ(-36deg) scale(0.62);
    transform-origin: center top;
  }

  .hero-image-stack {
    width: 72%;
  }

  .table-row {
    grid-template-columns: 1fr 1fr;
  }

  .control-board {
    grid-template-columns: 1fr 1fr;
  }

  .lab-visual {
    min-height: 600px;
  }

  .table-head {
    display: none;
  }
}

@media (max-width: 640px) {
  .loader {
    display: none;
  }

  .section-band {
    padding: 74px 16px;
  }

  .hero {
    padding-top: 104px;
  }

  .hero-grid {
    gap: 26px;
  }

  .hero h1 {
    max-width: 358px;
    font-size: 1.72rem;
    line-height: 1.08;
  }

  .hero p {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.48;
  }

  .hero-copy,
  .factory-stage {
    width: 100%;
    max-width: min(358px, calc(100vw - 32px));
  }

  .hero-copy p {
    width: 100%;
    max-width: 342px;
    overflow-wrap: normal;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 20px;
  }

  .hero-actions .button {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.84rem;
    white-space: nowrap;
  }

  .factory-stage {
    min-height: 520px;
    overflow: hidden;
  }

  .digital-twin-hero {
    min-height: 500px;
  }

  .service-lab {
    gap: 16px;
  }

  .lab-visual {
    min-height: 520px;
    border-radius: 8px;
  }

  .lab-visual img {
    bottom: 120px;
    width: 148%;
    height: 68%;
  }

  .lab-title {
    left: 14px;
    right: 14px;
    top: 14px;
    display: grid;
    padding: 14px;
  }

  .lab-title strong {
    max-width: none;
    font-size: 0.84rem;
    text-align: left;
  }

  .lab-hud {
    display: none;
  }

  .lab-thread {
    left: 14px;
    right: 14px;
    bottom: 14px;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 12px;
  }

  .thread-line,
  .thread-pulse {
    display: none;
  }

  .lab-thread span {
    min-height: 36px;
    font-size: 0.7rem;
  }

  .twin-visual {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    left: 0;
    right: 0;
    top: 24px;
    bottom: 122px;
    padding: 12px 10px 0;
    border-radius: 12px;
    transform: none;
  }

  .twin-visual img {
    width: 136%;
    height: 116%;
  }

  .hotspot {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    flex: 1 1 calc(50% - 6px);
    min-height: 30px;
    justify-content: center;
    padding: 0 7px;
    font-size: 0.68rem;
    animation: none;
  }

  .hotspot b {
    display: none;
  }

  .twin-scan {
    width: 10px;
  }

  .twin-message {
    left: 0;
    right: auto;
    bottom: 8px;
    width: 100%;
    padding: 14px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form label,
  .contact-form button {
    grid-column: 1;
  }

  .factory-perspective {
    left: 36%;
    top: -4px;
    width: 720px;
    transform: translateX(-50%) rotateX(58deg) rotateZ(-38deg) scale(0.46);
    transform-origin: top center;
  }

  .isometric-factory {
    min-height: 520px;
    --factory-scale: 0.42;
  }

  .factory-model {
    left: 36%;
    top: 42px;
    width: 760px;
    transform: translateX(-50%) rotateX(58deg) rotateZ(-36deg) scale(0.42);
    transform-origin: top center;
  }

  .factory-callouts {
    display: none;
  }

  .floor-caption,
  .factory-message {
    left: 0;
    right: auto;
    bottom: 6px;
    width: min(358px, 100%);
  }

  .loader-rig {
    width: 82vw;
  }

  .loader-copy strong {
    font-size: 1.45rem;
  }

  .hero-panel,
  .capability-card,
  .product-showcase,
  .contact-panel {
    padding: 20px;
  }

  .product-image {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-height: 220px;
    margin-bottom: 0;
  }

  .product-media {
    min-height: 260px;
  }

  .metrics-strip,
  .capability-grid,
  .timeline,
  .product-detail-grid,
  .spec-grid,
  .rd-grid,
  .team-grid,
  .facility-gallery,
  .story-points,
  .journey-track,
  .reel-grid,
  .reel-heading,
  .control-board {
    grid-template-columns: 1fr;
  }

  .reel-card {
    min-height: 360px;
  }

  .reel-card h3 {
    margin-top: 220px;
    font-size: 1.18rem;
  }

  .journey-track::before {
    display: none;
  }

  .journey-station {
    min-height: 210px;
  }

  .table-row {
    grid-template-columns: 1fr;
  }

  .table-row span {
    min-height: auto;
    padding: 13px 14px;
  }

  .story-image {
    height: 360px;
  }

  .facility-gallery img,
  .facility-gallery img:nth-child(2),
  .facility-gallery img:nth-child(3) {
    height: 220px;
    margin-top: 0;
  }

  .node {
    min-height: 80px;
  }

  .product-list {
    grid-template-columns: 1fr 1fr;
  }

  .product-button {
    font-size: 0.76rem;
    text-align: center;
  }
}
