:root {
  --ink: #050609;
  --ink-soft: #0b0d11;
  --white: #f4f5f2;
  --silver: #a8abb1;
  --muted: #787d86;
  --lime: #baff19;
  --lime-hot: #caff36;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --header-h: 100px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overscroll-behavior-y: none;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  overflow-x: hidden;
}

.mobile-energy-field { display: none; }

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

.site-header {
  position: fixed;
  z-index: 30;
  inset: 0 0 auto;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 42px;
  padding: 0 clamp(28px, 3.05vw, 52px);
  background: linear-gradient(180deg, rgba(4,5,8,.82), rgba(4,5,8,0));
  transition: background .45s ease, height .45s var(--ease), border-color .45s ease, transform .45s var(--ease);
}

.site-header.is-scrolled {
  height: 76px;
  background: rgba(5,6,9,.74);
  border-bottom: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(18px);
}

.brand { justify-self: start; width: clamp(176px, 13.3vw, 222px); line-height: 0; }
.brand img { display: block; width: 100%; height: auto; }

.site-nav { display: flex; align-items: center; gap: clamp(34px, 4vw, 72px); }
.site-nav a {
  color: #b3b5bb;
  font-size: 15px;
  letter-spacing: -.035em;
  transition: color .25s ease;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--white); }

.header-cta {
  justify-self: end;
  display: grid;
  place-items: center;
  min-width: 191px;
  height: 43px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 3px;
  font-size: 14px;
  transition: color .3s ease, border-color .3s ease, background .3s ease, transform .3s var(--ease);
}
.header-cta:hover { color: var(--ink); background: var(--white); border-color: var(--white); }
.header-cta span, .button > span { pointer-events: none; }

.menu-toggle { display: none; }

.hero-scroll { position: relative; height: 200vh; min-height: 1040px; }
.hero-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #040508;
}

.ambient-layer {
  position: absolute;
  z-index: -4;
  inset: -4%;
  transform: translate3d(var(--ambient-x, 0), var(--ambient-y, 0), 0);
  background:
    radial-gradient(ellipse 40% 62% at 70% 45%, rgba(121,129,119,.18), transparent 68%),
    radial-gradient(ellipse 33% 58% at 83% 48%, rgba(54,60,70,.17), transparent 72%),
    radial-gradient(ellipse 25% 43% at 59% 52%, rgba(186,255,25,.035), transparent 70%),
    linear-gradient(103deg, #030407 0%, #050609 48%, #0a0c10 78%, #050609 100%);
  transition: transform .12s linear;
}

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

.cursor-glow {
  position: absolute;
  z-index: -1;
  width: 390px;
  aspect-ratio: 1;
  left: var(--glow-x, 75%);
  top: var(--glow-y, 48%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(186,255,25,.055), transparent 69%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.hero-stage.is-pointer-active .cursor-glow { opacity: 1; }

.hero-layout {
  position: relative;
  z-index: 4;
  width: min(100%, 1680px);
  height: 100%;
  margin: auto;
  padding: var(--header-h) clamp(42px, 4.85vw, 82px) 58px;
}

.hero-copy {
  position: absolute;
  z-index: 7;
  top: 50%;
  left: clamp(42px, 4.85vw, 82px);
  width: min(630px, 42vw);
  transform: translate3d(0, calc(-44% + var(--copy-y, 0px)), 0);
  opacity: var(--copy-opacity, 1);
  will-change: transform, opacity;
}

.eyebrow {
  margin: 0 0 27px;
  color: #aeb1b7;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: .055em;
  text-transform: uppercase;
}

h1, h2, h3 { margin: 0; font-family: "Chakra Petch", sans-serif; font-weight: 500; }
h1 {
  max-width: 620px;
  font-size: clamp(62px, 5.55vw, 94px);
  line-height: .98;
  letter-spacing: -.045em;
  text-shadow: 0 2px 10px rgba(255,255,255,.1);
}

.title-mask { display: block; overflow: hidden; padding-bottom: .04em; }
.title-mask > span {
  display: block;
  transform: translateY(112%);
  animation: title-in .9s var(--ease) forwards;
}
.title-mask:nth-child(2) > span { animation-delay: .11s; }

.hero-description {
  margin: 28px 0 0;
  color: #aeb1b8;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.48;
  letter-spacing: .015em;
  opacity: 0;
  animation: fade-up .9s .34s var(--ease) forwards;
}

.hero-actions {
  display: flex;
  gap: 25px;
  margin-top: 39px;
  opacity: 0;
  animation: fade-up .9s .45s var(--ease) forwards;
}

.button {
  position: relative;
  height: 58px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 35px;
  border-radius: 100px;
  white-space: nowrap;
  cursor: pointer;
  font-size: 15px;
  letter-spacing: -.055em;
  transition: transform .28s var(--ease), background .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.button-primary { min-width: 286px; color: #060704; background: var(--lime); }
.button-primary:hover { background: var(--lime-hot); box-shadow: 0 0 30px rgba(186,255,25,.16); }
.button-secondary { min-width: 295px; color: var(--white); background: rgba(4,5,8,.08); border-color: rgba(255,255,255,.7); }
.button-secondary:hover { border-color: rgba(255,255,255,1); }
.button:active { transform: scale(.98); }

.play-icon {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid var(--white);
  filter: drop-shadow(0 0 0 rgba(186,255,25,0));
  transition: transform .28s var(--ease), filter .28s ease;
}
.button-secondary:hover .play-icon { transform: translateX(3px); filter: drop-shadow(0 0 7px rgba(186,255,25,.42)); }

.feature-line {
  display: flex;
  align-items: center;
  gap: 19px;
  margin: 36px 0 0;
  color: #969aa2;
  font-size: 14px;
  letter-spacing: -.04em;
  opacity: 0;
  animation: fade-up .9s .55s var(--ease) forwards;
}
.feature-line i { display: block; width: 4px; height: 4px; border-radius: 50%; background: var(--lime); }

.energy-layer {
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: var(--energy-opacity, 1);
  pointer-events: none;
  transform: translate3d(var(--line-x, 0), var(--line-y, 0), 0);
  will-change: transform, opacity;
}
.energy-layer svg { width: 100%; height: 100%; overflow: visible; }
.energy-base {
  fill: none;
  stroke: url(#base-line);
  stroke-width: 1.3;
  stroke-linecap: round;
  opacity: .54;
}
.energy-pulse {
  fill: none;
  stroke: var(--lime);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-dasharray: .14 .86;
  filter: url(#line-glow);
  opacity: 0;
  animation: energy-flow 3.6s linear infinite;
}
.pulse-two { animation-delay: -1.2s; }
.pulse-three { animation-delay: -2.4s; }
.port-dot {
  fill: var(--lime);
  stroke: rgba(225, 255, 154, .9);
  stroke-width: .8;
  filter: url(#line-glow);
  opacity: .82;
  transform-box: fill-box;
  transform-origin: center;
  animation: port-beacon 3.6s ease-in-out infinite;
}
.port-two { animation-delay: -1.2s; }
.port-three { animation-delay: -2.4s; }

.product-zone {
  position: absolute;
  z-index: 5;
  top: 14.3%;
  right: clamp(40px, 6.5vw, 110px);
  width: clamp(470px, 36vw, 600px);
  height: 70%;
  perspective: 1400px;
  transform: translate3d(var(--product-scroll-x, 0), var(--product-scroll-y, 0), 0) scale(var(--product-scale, 1));
  transform-origin: 47% 50%;
  will-change: transform;
}

.product-glow {
  position: absolute;
  inset: 8% 2% 5%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(192,201,181,.13), rgba(186,255,25,.035) 35%, transparent 69%);
  filter: blur(20px);
  transform: translate3d(var(--glow-lag-x, 0), var(--glow-lag-y, 0), 0);
  will-change: transform, opacity;
}

.product-float {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform: translate3d(var(--product-x, 0), var(--product-y, 0), 0) rotateX(var(--product-rx, 0deg)) rotateY(var(--product-ry, -2deg));
  transition: transform .82s var(--ease);
  animation: product-breathe 10s ease-in-out infinite;
  will-change: transform;
}
.hero-stage.is-pointer-active .product-float { transition-duration: .08s; transition-timing-function: linear; animation-play-state: paused; }

.product-image {
  position: absolute;
  z-index: 2;
  top: 3%;
  left: 10%;
  width: 74%;
  height: 94%;
  object-fit: contain;
  object-position: left center;
  border: 0;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(28px 34px 26px rgba(0,0,0,.72));
}

.scroll-cue {
  position: absolute;
  z-index: 9;
  left: 50%;
  bottom: 30px;
  width: 32px;
  height: 58px;
  transform: translateX(-50%);
}
.scroll-cue span { position: absolute; top: 0; left: 50%; width: 1px; height: 44px; background: rgba(255,255,255,.82); }
.scroll-cue i { position: absolute; left: calc(50% - 3px); top: 42px; width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 9px rgba(186,255,25,.6); animation: scroll-dot 2s ease-in-out infinite; }

.core-section {
  position: relative;
  z-index: 8;
  min-height: 100svh;
  padding: 19vh clamp(32px, 7vw, 118px) 100px;
  background:
    radial-gradient(circle at 50% 8%, rgba(186,255,25,.055), transparent 26%),
    linear-gradient(180deg, #080a0e, #050609);
  border-top: 1px solid rgba(255,255,255,.06);
}
.core-section > .eyebrow { text-align: center; }
.core-section h2 { text-align: center; font-size: clamp(52px, 7vw, 108px); line-height: .92; letter-spacing: -.05em; }
.core-grid { width: min(1120px, 100%); margin: 12vh auto 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.16); }
.core-grid article {
  min-height: 220px;
  padding-block: 40px;
  padding-inline: 30px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.core-grid article:last-child { border-right: 0; }
.core-grid span { color: var(--lime); font-size: 11px; }
.core-grid h3 { margin-top: 43px; font-size: 28px; }
.core-grid p { color: #858a92; font-family: Arial, sans-serif; line-height: 1.5; }

.flow-section {
  position: relative;
  z-index: 8;
  height: 300vh;
  min-height: 2100px;
  border-top: 1px solid rgba(255,255,255,.06);
  background: #050609;
}

.flow-stage {
  --flow-device-y: 18px;
  --flow-device-scale: .96;
  --flow-device-rotate: -1.2deg;
  --flow-focus-rotate: 0deg;
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 31% 61% at 55% 55%, rgba(128,136,142,.13), transparent 72%),
    radial-gradient(ellipse 22% 45% at 52% 58%, rgba(186,255,25,.028), transparent 72%),
    linear-gradient(105deg, #030407 0%, #07080c 47%, #090b10 69%, #040508 100%);
}

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

.flow-copy {
  position: absolute;
  z-index: 5;
  top: 5.7%;
  left: clamp(42px, 3.4vw, 58px);
  max-width: 620px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .9s var(--ease);
}
.flow-stage.is-entered .flow-copy { opacity: 1; transform: translateY(0); }
.flow-kicker {
  margin: 0 0 22px;
  color: #aeb1b9;
  font-size: 16px;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.flow-copy h2 {
  font-size: clamp(56px, 4.45vw, 76px);
  line-height: 1.06;
  letter-spacing: -.045em;
}
.flow-copy h2 span {
  display: block;
  opacity: 0;
  transform: translateY(32px);
  clip-path: inset(100% 0 0);
  transition: opacity .75s ease, transform .85s var(--ease), clip-path .85s var(--ease);
}
.flow-stage.is-entered .flow-copy h2 span { opacity: 1; transform: translateY(0); clip-path: inset(0); }
.flow-stage.is-entered .flow-copy h2 span:nth-child(2) { transition-delay: .1s; }
.flow-copy > p:last-child {
  margin: 24px 0 0;
  color: #9ba0aa;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.55;
}

.flow-system { position: absolute; z-index: 2; inset: 0; }
.flow-device-aura {
  position: absolute;
  z-index: 0;
  left: 53.4%;
  top: 57%;
  width: min(38vw, 610px);
  aspect-ratio: .95;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(207,213,211,.11), rgba(186,255,25,.026) 39%, transparent 71%);
  filter: blur(22px);
}
.flow-device {
  position: absolute;
  z-index: 3;
  top: 28%;
  left: 53.4%;
  width: clamp(300px, 23.2vw, 390px);
  transform: translate3d(-50%, var(--flow-device-y), 0) scale(var(--flow-device-scale)) rotateY(calc(var(--flow-device-rotate) + var(--flow-focus-rotate)));
  transform-origin: 50% 56%;
  transition: transform .16s linear;
  will-change: transform;
}
.flow-device img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(27px 36px 32px rgba(0,0,0,.66));
  animation: flow-device-float 12s ease-in-out infinite;
}
.flow-core-glow {
  position: absolute;
  z-index: 4;
  left: 41.5%;
  top: 53.2%;
  width: 20%;
  height: 38%;
  transform: translate(-50%, -50%);
  border-radius: 44%;
  box-shadow: 0 0 22px rgba(186,255,25,.1), inset 0 0 17px rgba(221,255,135,.08);
  opacity: .55;
  animation: flow-core-breathe 10s ease-in-out infinite;
  pointer-events: none;
}
.flow-stage.has-solar .flow-core-glow,
.flow-stage.has-battery .flow-core-glow,
.flow-stage.has-ev .flow-core-glow { box-shadow: 0 0 28px rgba(186,255,25,.25), inset 0 0 20px rgba(221,255,135,.18); }
.flow-leds {
  position: absolute;
  z-index: 5;
  left: 41.4%;
  top: 57.2%;
  display: grid;
  gap: 7px;
  transform: translateX(-50%);
  pointer-events: none;
}
.flow-leds i { width: 3px; height: 3px; border-radius: 50%; background: #f4f5f2; opacity: .3; transition: opacity .3s ease, box-shadow .3s ease; }
.flow-stage.has-ev .flow-leds i { opacity: 1; box-shadow: 0 0 7px rgba(220,255,140,.75); }
.flow-stage.has-ev .flow-leds i:nth-child(2) { transition-delay: .15s; }
.flow-stage.has-ev .flow-leds i:nth-child(3) { transition-delay: .3s; }

.flow-network { position: absolute; z-index: 2; inset: 0; width: 100%; height: 100%; overflow: visible; }
.flow-route { opacity: 1; transition: opacity .35s ease; }
.flow-path-base,
.flow-path-trace,
.flow-path-pulse { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.flow-path-base { stroke: rgba(200,213,138,.2); stroke-width: 1.1; opacity: 0; transition: opacity .5s ease; }
.flow-path-trace { stroke: rgba(208,224,137,.58); stroke-width: 1.2; stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 1.15s var(--ease); }
.flow-path-pulse {
  stroke: var(--lime-hot);
  stroke-width: 2.3;
  stroke-dasharray: .105 .895;
  filter: url(#flow-glow);
  opacity: 0;
  animation: flow-route-pulse 3.5s linear infinite;
  animation-play-state: paused;
}
.flow-route-battery .flow-path-pulse { animation-delay: -1.15s; }
.flow-route-ev .flow-path-pulse { animation-delay: -2.3s; }
.flow-node-ring,
.flow-node-dot,
.flow-device-node { opacity: 0; transition: opacity .45s ease, transform .45s var(--ease); transform-box: fill-box; transform-origin: center; }
.flow-node-ring { fill: rgba(5,6,9,.9); stroke: rgba(203,216,139,.28); stroke-width: 1.1; }
.flow-node-dot { fill: var(--lime-hot); stroke: rgba(236,255,191,.82); stroke-width: 1; filter: url(#flow-glow); transform: scale(.55); }
.flow-device-node { fill: rgba(186,255,25,.48); stroke: rgba(238,255,199,.55); stroke-width: 1; }

.flow-stage.has-solar .flow-route-solar .flow-path-base,
.flow-stage.has-battery .flow-route-battery .flow-path-base,
.flow-stage.has-ev .flow-route-ev .flow-path-base { opacity: 1; }
.flow-stage.has-solar .flow-route-solar .flow-path-trace,
.flow-stage.has-battery .flow-route-battery .flow-path-trace,
.flow-stage.has-ev .flow-route-ev .flow-path-trace { stroke-dashoffset: 0; }
.flow-stage.has-solar .flow-route-solar .flow-path-pulse,
.flow-stage.has-battery .flow-route-battery .flow-path-pulse,
.flow-stage.has-ev .flow-route-ev .flow-path-pulse { opacity: 1; animation-play-state: running; }
.flow-stage.has-solar .flow-route-solar :is(.flow-node-ring,.flow-node-dot,.flow-device-node),
.flow-stage.has-battery .flow-route-battery :is(.flow-node-ring,.flow-node-dot,.flow-device-node),
.flow-stage.has-ev .flow-route-ev :is(.flow-node-ring,.flow-node-dot,.flow-device-node) { opacity: 1; transform: scale(1); }

.flow-label {
  position: absolute;
  z-index: 6;
  color: #7f848d;
  font-size: clamp(15px, 1.25vw, 20px);
  letter-spacing: .025em;
  opacity: .18;
  transform: translateY(10px);
  transition: color .4s ease, opacity .4s ease, transform .55s var(--ease), text-shadow .4s ease;
  cursor: default;
  outline: 0;
}
.flow-label-solar { left: 14.4%; top: 43.4%; }
.flow-label-battery { left: 80.6%; top: 31.5%; }
.flow-label-ev { left: 80.6%; top: 81%; }
.flow-stage.has-solar .flow-label-solar,
.flow-stage.has-battery .flow-label-battery,
.flow-stage.has-ev .flow-label-ev { color: #d5d7d5; opacity: 1; transform: translateY(0); }

.flow-stage[data-focus] .flow-route,
.flow-stage[data-focus] .flow-label { opacity: .1; }
.flow-stage[data-focus="solar"] .flow-route-solar,
.flow-stage[data-focus="battery"] .flow-route-battery,
.flow-stage[data-focus="ev"] .flow-route-ev,
.flow-stage[data-focus="solar"] .flow-label-solar,
.flow-stage[data-focus="battery"] .flow-label-battery,
.flow-stage[data-focus="ev"] .flow-label-ev { opacity: 1; }
.flow-stage[data-focus] .flow-path-trace { stroke: rgba(215,240,129,.9); }
.flow-stage[data-focus="solar"] { --flow-focus-rotate: -1.4deg; }
.flow-stage[data-focus="battery"] { --flow-focus-rotate: 1.4deg; }
.flow-stage[data-focus="ev"] { --flow-focus-rotate: 1deg; }
.flow-stage[data-focus] .flow-label:focus,
.flow-label:hover { color: var(--white); text-shadow: 0 0 18px rgba(186,255,25,.22); }

.flow-status {
  position: absolute;
  z-index: 6;
  left: clamp(42px, 3.4vw, 58px);
  bottom: 5.2%;
  display: grid;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.flow-status strong { color: var(--lime); font-size: 14px; font-weight: 400; }
.flow-status span { color: #a8abb3; font-size: 14px; }


.precision-section {
  position: relative;
  z-index: 9;
  height: 230vh;
  min-height: 1680px;
  border-top: 1px solid rgba(255,255,255,.06);
  background: #050609;
}

.precision-stage {
  --precision-copy-opacity: 0;
  --precision-copy-y: 30px;
  --precision-complete-opacity: 0;
  --precision-parts-opacity: 0;
  --precision-callout-opacity: 0;
  --precision-callout-y: 18px;
  --precision-bg-y: 0px;
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 43% 62% at 72% 47%, rgba(123,130,137,.11), transparent 72%),
    radial-gradient(ellipse 18% 38% at 58% 52%, rgba(186,255,25,.025), transparent 76%),
    linear-gradient(105deg, #030407 0%, #07090c 53%, #090b0f 76%, #040508 100%);
}

.precision-backdrop {
  position: absolute;
  z-index: -1;
  inset: -5%;
  transform: translate3d(0, var(--precision-bg-y), 0) scale(1.04);
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.014) 1px, transparent 1px),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)' opacity='.2'/%3E%3C/svg%3E");
  background-size: 88px 88px, 88px 88px, 180px 180px;
  mask-image: linear-gradient(90deg, transparent 0, #000 35%, #000 100%);
  opacity: .28;
  mix-blend-mode: soft-light;
  will-change: transform;
}

.precision-copy {
  position: absolute;
  z-index: 8;
  top: 12.5%;
  left: clamp(42px, 3.4vw, 64px);
  width: min(34vw, 560px);
  opacity: var(--precision-copy-opacity);
  transform: translate3d(0, var(--precision-copy-y), 0);
  will-change: opacity, transform;
}

.precision-kicker {
  margin: 0 0 24px;
  color: #aeb2ba;
  font-size: clamp(13px, 1.05vw, 17px);
  letter-spacing: .055em;
  text-transform: uppercase;
}

.precision-copy h2 {
  color: #f3f4ef;
  font-size: clamp(52px, 4.35vw, 74px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.precision-copy > p:last-child {
  margin: 24px 0 0;
  color: #969ca6;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(16px, 1.24vw, 21px);
  line-height: 1.55;
}

.precision-assembly {
  position: absolute;
  z-index: 3;
  inset: 0 0 10% 35%;
  pointer-events: none;
}

.precision-complete,
.precision-part {
  position: absolute;
  top: 49%;
  left: 50%;
  height: min(62vh, 700px);
  margin: 0;
}

.precision-complete {
  z-index: 7;
  opacity: var(--precision-complete-opacity);
  transform: translate3d(-50%, -50%, 0) scale(1.06);
  transform-origin: center;
  will-change: opacity;
}

.precision-part {
  opacity: var(--precision-parts-opacity);
  transform: translate3d(calc(-50% + var(--part-x, 0vw)), calc(-50% + var(--part-y, 0px)), 0) rotateY(var(--part-rotate, 0deg)) scale(var(--part-scale, 1));
  transform-origin: center;
  will-change: transform, opacity;
}

.precision-complete img,
.precision-part img {
  display: block;
  width: auto;
  height: 100%;
  filter: drop-shadow(19px 28px 24px rgba(0,0,0,.7));
}

.precision-part-shell { z-index: 6; }
.precision-part-ring { z-index: 5; height: min(53vh, 600px); }
.precision-part-core { z-index: 4; }
.precision-part-thermal { z-index: 3; }
.precision-part-connectivity { z-index: 2; }
.precision-part-housing { z-index: 1; }
.precision-part-ring img {
  filter: drop-shadow(0 0 12px rgba(186,255,25,.32)) drop-shadow(15px 25px 20px rgba(0,0,0,.64));
  animation: precision-ring-pulse 3.8s ease-in-out infinite;
}

.precision-ring-aura {
  position: absolute;
  z-index: 0;
  top: 49%;
  left: 50%;
  width: 17%;
  height: 53%;
  transform: translate(calc(-50% + var(--ring-x, 0vw)), -50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(186,255,25,.08), transparent 69%);
  filter: blur(24px);
  opacity: var(--precision-callout-opacity);
  will-change: transform, opacity;
}

.precision-callouts {
  position: absolute;
  z-index: 7;
  inset: auto 0 5.5%;
  height: 58px;
  color: #adb1b9;
  font-size: clamp(10px, .92vw, 15px);
  letter-spacing: .02em;
}

.precision-callout {
  --callout-delay: 0s;
  position: absolute;
  top: 0;
  width: 14vw;
  max-width: 210px;
  color: #a9aeb7;
  opacity: var(--precision-callout-opacity);
  text-align: center;
  transform: translate3d(-50%, var(--precision-callout-y), 0);
  will-change: opacity, transform;
}
.precision-callout:nth-child(1) { --callout-delay: 0s; left: 43.5%; }
.precision-callout:nth-child(2) { --callout-delay: .78s; left: 52.5%; }
.precision-callout:nth-child(3) { --callout-delay: 1.56s; left: 64.5%; }
.precision-callout:nth-child(4) { --callout-delay: 2.34s; left: 75%; }
.precision-callout:nth-child(5) { --callout-delay: 3.12s; left: 85%; }

.precision-leader {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 7px);
  width: clamp(128px, 11.4vw, 190px);
  height: clamp(72px, 9.3vh, 92px);
  overflow: visible;
  transform: translateX(-50%);
}
.precision-leader path {
  fill: none;
  stroke: rgba(194,210,111,.48);
  stroke-width: .8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: calc(1 - var(--precision-callout-opacity));
  vector-effect: non-scaling-stroke;
}
.precision-leader circle {
  fill: var(--lime);
  stroke: rgba(239,255,192,.82);
  stroke-width: .55;
  opacity: var(--precision-callout-opacity);
  filter: drop-shadow(0 0 3px rgba(186,255,25,.72));
  transform-box: fill-box;
  transform-origin: center;
}
.precision-stage.is-exploded .precision-callout {
  animation: precision-callout-text 4.2s ease-in-out infinite;
  animation-delay: var(--callout-delay);
}
.precision-stage.is-exploded .precision-leader path {
  animation: precision-callout-line 4.2s ease-in-out infinite;
  animation-delay: var(--callout-delay);
}
.precision-stage.is-exploded .precision-leader circle {
  animation: precision-callout-point 4.2s ease-in-out infinite;
  animation-delay: var(--callout-delay);
}

.precision-note {
  position: absolute;
  z-index: 7;
  left: clamp(42px, 3.4vw, 64px);
  bottom: 5.5%;
  margin: 0;
  color: #aeb2ba;
  font-size: clamp(11px, 1vw, 16px);
  letter-spacing: .045em;
  text-transform: uppercase;
  opacity: var(--precision-callout-opacity);
  transform: translateY(var(--precision-callout-y));
}

.anchor-target { height: 1px; background: #050609; }

.video-dialog {
  width: min(920px, calc(100vw - 40px));
  padding: 0;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 4px;
  background: #080a0d;
  box-shadow: 0 30px 100px rgba(0,0,0,.8);
}
.video-dialog::backdrop { background: rgba(0,0,0,.82); backdrop-filter: blur(10px); }
.dialog-close { position: absolute; z-index: 2; top: 14px; right: 16px; width: 42px; height: 42px; padding: 0; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; background: rgba(0,0,0,.38); cursor: pointer; font-size: 25px; line-height: 1; }
.video-frame { position: relative; display: grid; place-items: center; aspect-ratio: 16 / 9; overflow: hidden; background: radial-gradient(circle at center, #20252b, #08090c 68%); }
.video-frame::before { content: ""; position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 44px 44px; mask-image: radial-gradient(circle, #000, transparent 76%); }
.video-copy { position: relative; z-index: 2; text-align: center; }
.video-copy .eyebrow { margin-bottom: 18px; color: var(--lime); }
.video-copy h2 { font-size: clamp(42px, 6vw, 78px); }
.video-copy > p:last-child { color: #8f949b; }
.video-orbit { position: absolute; width: 45%; aspect-ratio: 1; border: 1px solid rgba(186,255,25,.18); border-radius: 50%; animation: orbit 14s linear infinite; }
.video-orbit::before, .video-orbit::after { content: ""; position: absolute; inset: 14%; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.video-orbit::after { inset: 29%; border-color: rgba(186,255,25,.2); }
.video-orbit span { position: absolute; top: 48%; left: -4px; width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 16px var(--lime); }

@keyframes title-in { to { transform: translateY(0); } }
@keyframes fade-up { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes energy-flow {
  0% { opacity: 0; stroke-dashoffset: .18; }
  7% { opacity: 1; }
  84% { opacity: .95; }
  100% { opacity: 0; stroke-dashoffset: -.82; }
}
@keyframes port-beacon {
  0%, 68%, 100% { opacity: .82; transform: scale(.9); }
  84% { opacity: 1; transform: scale(1.35); }
}
@keyframes product-breathe { 0%, 100% { transform: translate3d(0, -2px, 0) rotateX(-.5deg) rotateY(-2.3deg); } 50% { transform: translate3d(0, 4px, 0) rotateX(.7deg) rotateY(2.3deg); } }
@keyframes flow-device-float { 0%, 100% { transform: translateY(-3px); } 50% { transform: translateY(3px); } }
@keyframes flow-core-breathe { 0%, 100% { opacity: .5; filter: brightness(.95); } 50% { opacity: .72; filter: brightness(1.08); } }
@keyframes flow-route-pulse {
  0% { stroke-dashoffset: .12; opacity: 0; }
  9% { opacity: 1; }
  82% { opacity: 1; }
  100% { stroke-dashoffset: -.88; opacity: 0; }
}
@keyframes precision-ring-pulse {
  0%, 100% { filter: drop-shadow(0 0 9px rgba(186,255,25,.25)) drop-shadow(15px 25px 20px rgba(0,0,0,.64)); }
  50% { filter: drop-shadow(0 0 17px rgba(186,255,25,.48)) drop-shadow(15px 25px 20px rgba(0,0,0,.64)); }
}
@keyframes precision-callout-text {
  0%, 14% { color: #eef4d8; text-shadow: 0 0 13px rgba(186,255,25,.3); }
  24%, 100% { color: #a9aeb7; text-shadow: none; }
}
@keyframes precision-callout-line {
  0%, 14% { stroke: rgba(201,255,75,.96); filter: drop-shadow(0 0 3px rgba(186,255,25,.55)); }
  24%, 100% { stroke: rgba(194,210,111,.48); filter: none; }
}
@keyframes precision-callout-point {
  0%, 14% { opacity: 1; transform: scale(1.45); filter: drop-shadow(0 0 6px rgba(186,255,25,.95)); }
  24%, 100% { opacity: .72; transform: scale(1); filter: drop-shadow(0 0 3px rgba(186,255,25,.55)); }
}
@keyframes precision-mobile-line {
  0%, 14% { background: rgba(201,255,75,.96); box-shadow: 0 0 6px rgba(186,255,25,.48); }
  24%, 100% { background: rgba(194,210,111,.5); box-shadow: none; }
}
@keyframes mobile-flow-dot { 0%, 100% { opacity: .48; transform: scale(.82); } 50% { opacity: 1; transform: scale(1.25); } }
@keyframes scroll-dot { 0%,100% { transform: translateY(-5px); opacity: .45; } 50% { transform: translateY(6px); opacity: 1; } }
@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes mobile-aurora {
  0%, 100% { transform: translate3d(-5%, -3%, 0) scale(1); }
  50% { transform: translate3d(8%, 7%, 0) scale(1.08); }
}
@keyframes mobile-scan {
  0% { transform: translate3d(-35vw, 0, 0) rotate(13deg); opacity: 0; }
  12%, 76% { opacity: .72; }
  100% { transform: translate3d(190vw, 0, 0) rotate(13deg); opacity: 0; }
}
@keyframes mobile-particle {
  0% { transform: translate3d(0, 12vh, 0) scale(.65); opacity: 0; }
  12% { opacity: .8; }
  82% { opacity: .5; }
  100% { transform: translate3d(var(--drift), -125vh, 0) scale(1.25); opacity: 0; }
}

@media (min-width: 901px) {
  .product-glow {
    inset: 5% -2% 2%;
    background: radial-gradient(ellipse, rgba(186,255,25,.2), rgba(186,255,25,.065) 38%, transparent 70%);
    filter: blur(28px);
    opacity: var(--product-glow-opacity, .2);
  }
}

@media (max-width: 1180px) {
  .site-header { gap: 24px; }
  .site-nav { gap: 29px; }
  .hero-copy { width: 48vw; }
  h1 { font-size: clamp(60px, 6.6vw, 78px); }
  .hero-actions { gap: 14px; }
  .button { padding-inline: 24px; }
  .button-primary, .button-secondary { min-width: 0; }
  .product-zone { right: 1vw; width: 48vw; }
  .flow-copy { max-width: 520px; }
  .flow-copy h2 { font-size: clamp(52px, 5.4vw, 66px); }
  .flow-label-solar { left: 8.5%; }
  .flow-label-battery, .flow-label-ev { left: 82%; }
  .precision-copy { width: 34vw; }
  .precision-copy h2 { font-size: clamp(46px, 4.5vw, 58px); }
  .precision-complete,
  .precision-part { height: min(56vh, 620px); }
  .precision-part-ring { height: min(48vh, 530px); }
  .precision-callout { font-size: 10px; }
}

@media (max-width: 900px) {
  html, body { overscroll-behavior-y: none; }
  body { touch-action: pan-x pinch-zoom; }

  :root { --header-h: 78px; }
  .mobile-energy-field {
    position: fixed;
    z-index: 20;
    inset: 0;
    display: block;
    overflow: hidden;
    pointer-events: none;
    mix-blend-mode: screen;
  }
  .mobile-energy-field::before {
    content: "";
    position: absolute;
    inset: -30%;
    background:
      radial-gradient(circle at 18% 26%, rgba(186,255,25,.09), transparent 20%),
      radial-gradient(circle at 83% 62%, rgba(186,255,25,.065), transparent 24%),
      radial-gradient(circle at 48% 88%, rgba(124,255,42,.04), transparent 18%);
    filter: blur(18px);
    animation: mobile-aurora 15s ease-in-out infinite;
  }
  .mobile-energy-field::after {
    content: "";
    position: absolute;
    top: -25%;
    left: -38%;
    width: 22%;
    height: 150%;
    background: linear-gradient(90deg, transparent, rgba(202,255,54,.13), transparent);
    filter: blur(9px);
    animation: mobile-scan 8s var(--ease) infinite;
  }
  .mobile-energy-field span {
    position: absolute;
    bottom: -10vh;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 7px var(--lime), 0 0 18px rgba(186,255,25,.55);
    animation: mobile-particle var(--particle-time) linear infinite;
    animation-delay: var(--particle-delay);
  }
  .mobile-energy-field span:nth-child(1) { left: 14%; --particle-time: 9s; --particle-delay: -2s; --drift: 12vw; }
  .mobile-energy-field span:nth-child(2) { left: 54%; --particle-time: 12s; --particle-delay: -7s; --drift: -9vw; }
  .mobile-energy-field span:nth-child(3) { left: 86%; --particle-time: 10s; --particle-delay: -4s; --drift: 7vw; }
  .site-header { grid-template-columns: 1fr auto; padding-inline: 24px; }
  /* backdrop-filter creates a containing block for fixed children. Disable it
     while the full-screen menu is open so the overlay always fills the viewport. */
  .site-header.menu-open { backdrop-filter: none; }
  .brand { width: 174px; }
  .header-cta { display: none; }
  .menu-toggle {
    position: relative;
    z-index: 3;
    justify-self: end;
    display: block;
    width: 45px;
    height: 45px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
    background: rgba(0,0,0,.2);
    cursor: pointer;
  }
  .menu-toggle span { position: absolute; left: 13px; width: 18px; height: 1px; background: #fff; transition: transform .35s var(--ease), top .35s var(--ease); }
  .menu-toggle span:first-child { top: 18px; }
  .menu-toggle span:last-child { top: 25px; }
  .menu-toggle[aria-expanded="true"] span:first-child { top: 22px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { top: 22px; transform: rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 29px;
    box-sizing: border-box;
    padding: 76px 24px 32px;
    background: rgba(5,6,9,.97);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .35s ease, visibility .35s ease, transform .35s var(--ease);
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav a { color: var(--white); font-family: "Chakra Petch", sans-serif; font-size: clamp(28px, 8vw, 34px); line-height: 1.1; }

  .hero-scroll { height: auto; min-height: 0; }
  .hero-stage { position: relative; height: auto; min-height: 100svh; overflow: hidden; }
  .hero-layout { height: auto; min-height: 100svh; padding: 125px 24px 84px; display: flex; flex-direction: column; }
  .hero-copy { position: relative; top: auto; left: auto; width: 100%; transform: none !important; opacity: 1 !important; }
  .eyebrow { margin-bottom: 17px; font-size: 11px; }
  h1 { font-size: clamp(50px, 12vw, 78px); line-height: .94; }
  .hero-description { margin-top: 22px; font-size: 16px; }
  .desktop-break { display: none; }
  .product-zone { position: relative; order: 2; top: auto; right: auto; width: min(100%, 520px); height: min(72vw, 520px); margin: 26px auto 0; transform: none !important; }
  .product-float { animation-duration: 10s; }
  .energy-layer { top: 36%; height: 54%; transform: none !important; opacity: .8; }
  .energy-layer svg { transform: scale(1.7); transform-origin: 61% 50%; }
  .hero-actions { flex-direction: column; gap: 12px; margin-top: 28px; }
  .button { width: 100%; min-width: 0; }
  .feature-line { flex-wrap: wrap; justify-content: center; gap: 10px 15px; margin-top: 27px; font-size: 11px; }
  .scroll-cue { display: none; }
  .cursor-glow { display: none; }
  .core-section { padding-top: 110px; }
  .core-section h2 { font-size: clamp(42px, 12vw, 52px); line-height: 1.08; letter-spacing: -.04em; }
  .core-grid { grid-template-columns: 1fr; margin-top: 72px; }
  .core-grid article { min-height: 0; padding-block: 15px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .flow-section { height: 210vh; min-height: 1450px; }
  .flow-stage { min-height: 640px; }
  .flow-copy { top: 92px; left: 20px; right: 20px; max-width: 560px; }
  .flow-kicker { margin-bottom: 13px; font-size: 11px; }
  .flow-copy h2 { font-size: clamp(38px, 10vw, 54px); line-height: 1; }
  .flow-copy > p:last-child { margin-top: 15px; font-size: 14px; line-height: 1.45; }
  .flow-copy .desktop-break { display: none; }
  .flow-network { display: none; }
  .flow-device-aura { left: 50%; top: 47%; width: min(92vw, 430px); }
  .flow-device {
    --flow-device-y: 0px;
    --flow-device-scale: 1;
    --flow-device-rotate: 0deg;
    top: 32%;
    left: 50%;
    width: clamp(170px, 46vw, 225px);
  }
  .flow-label {
    left: 24px;
    width: calc(100% - 48px);
    padding-left: 60px;
    font-size: 14px;
  }
  .flow-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 42px;
    height: 1px;
    background: linear-gradient(90deg, rgba(186,255,25,.08), rgba(186,255,25,.64));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .7s var(--ease);
  }
  .flow-label::after {
    content: "";
    position: absolute;
    left: 40px;
    top: calc(50% - 3px);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 10px rgba(186,255,25,.7);
    opacity: 0;
    transition: opacity .35s ease;
  }
  .flow-stage.has-solar .flow-label-solar::before,
  .flow-stage.has-battery .flow-label-battery::before,
  .flow-stage.has-ev .flow-label-ev::before { transform: scaleX(1); }
  .flow-stage.has-solar .flow-label-solar::after,
  .flow-stage.has-battery .flow-label-battery::after,
  .flow-stage.has-ev .flow-label-ev::after { opacity: 1; animation: mobile-flow-dot 2.2s ease-in-out infinite; }
  .flow-label-solar { top: 66%; }
  .flow-label-battery { top: 73%; }
  .flow-label-ev { top: 80%; }
  .flow-status { left: 24px; bottom: 3.5%; gap: 5px; }
  .flow-status strong, .flow-status span { font-size: 11px; }

  .precision-section { height: 215vh; min-height: 1450px; }
  .precision-stage { min-height: 680px; }
  .precision-copy {
    top: 86px;
    left: 20px;
    right: 20px;
    width: auto;
    text-align: left;
  }
  .precision-kicker { margin-bottom: 14px; font-size: 11px; }
  .precision-copy h2 { font-size: clamp(38px, 10.5vw, 52px); line-height: 1.02; }
  .precision-copy > p:last-child { margin-top: 15px; font-size: 14px; line-height: 1.45; }
  .precision-assembly { inset: 31% 0 19%; }
  .precision-complete,
  .precision-part { top: 52%; height: min(36vh, 310px); }
  .precision-part-ring { height: min(31vh, 267px); }
  .precision-complete img,
  .precision-part img { filter: drop-shadow(10px 16px 15px rgba(0,0,0,.72)); }
  .precision-ring-aura { top: 52%; width: 22%; height: 52%; filter: blur(17px); }
  .precision-callouts {
    left: 20px;
    right: 20px;
    bottom: 2.6%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 16px;
    font-size: 9px;
    line-height: 1.3;
  }
  .precision-callout,
  .precision-callout:nth-child(n) {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    max-width: none;
    min-height: 18px;
    padding-left: 18px;
    text-align: left;
    transform: translateY(var(--precision-callout-y));
  }
  .precision-leader { display: none; }
  .precision-callout::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    bottom: auto;
    width: 11px;
    height: 1px;
    background: rgba(210,225,126,.5);
    transform: scaleX(var(--precision-callout-opacity));
    transform-origin: left;
  }
  .precision-callout::after {
    content: "";
    position: absolute;
    left: 9px;
    top: 4px;
    bottom: auto;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 7px rgba(186,255,25,.68);
    opacity: var(--precision-callout-opacity);
  }
  .precision-stage.is-exploded .precision-callout::before {
    animation: precision-mobile-line 4.2s ease-in-out infinite;
    animation-delay: var(--callout-delay);
  }
  .precision-stage.is-exploded .precision-callout::after {
    animation: precision-callout-point 4.2s ease-in-out infinite;
    animation-delay: var(--callout-delay);
  }
  .precision-note { left: 20px; bottom: 17%; font-size: 9px; }
}

@media (max-width: 520px) {
  .hero-layout { padding-inline: 20px; }
  .brand { width: 155px; }
  h1 { font-size: clamp(48px, 15vw, 66px); }
  .hero-description { max-width: 350px; }
  .product-zone { height: 105vw; margin-top: 12px; }
  .product-image { left: 15%; width: 70%; }
  .button { height: 55px; font-size: 14px; }
  .feature-line { margin-top: 22px; }
  .core-section { padding-inline: 20px; }
  .core-section h2 { font-size: clamp(40px, 11.5vw, 48px); line-height: 1.1; }
  .flow-copy { top: 86px; }
  .flow-device { top: 34%; }
  .flow-label-solar { top: 67%; }
  .flow-label-battery { top: 74%; }
  .flow-label-ev { top: 81%; }
  .precision-copy h2 { font-size: clamp(36px, 10.2vw, 44px); }
  .precision-assembly { top: 33%; }
  .precision-complete,
  .precision-part { height: min(34vh, 286px); }
  .precision-part-ring { height: min(29vh, 245px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .ambient-layer, .energy-layer, .product-zone, .product-float, .product-glow { transform: none !important; }
  .flow-device { transform: translateX(-50%) !important; }
  .precision-part { transition: none !important; }
  .cursor-glow, .mobile-energy-field { display: none; }
  .flow-device img, .flow-core-glow, .flow-path-pulse, .flow-label::after, .precision-part-ring img { animation: none !important; }
}
