:root {
  --ink: #07090c;
  --ink-2: #0d1117;
  --graphite: #151b22;
  --graphite-2: #202832;
  --steel: #a7b0b8;
  --steel-soft: #d9dee2;
  --paper: #f4f7f7;
  --laser: #b8ff2c;
  --arc: #ff4057;
  --plasma: #63e6ff;
  --line: rgba(244, 247, 247, 0.14);
  --muted: rgba(244, 247, 247, 0.68);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --mx: 0;
  --my: 0;
  --scene-x: 0px;
  --scene-y: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(135deg, #07090c 0%, #111821 42%, #050607 100%);
  background-size: 72px 72px, 72px 72px, auto;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--laser), var(--plasma), var(--arc));
}

.site-header {
  position: fixed;
  top: 14px;
  left: 14px;
  right: 14px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 9, 12, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.22);
  transition: background 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 9, 12, 0.92);
  border-color: rgba(184, 255, 44, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(184, 255, 44, 0.36);
  background:
    linear-gradient(135deg, rgba(184, 255, 44, 0.18), rgba(99, 230, 255, 0.05)),
    #0b0f14;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  content: "";
  position: absolute;
  background: var(--laser);
  box-shadow: 0 0 18px rgba(184, 255, 44, 0.45);
}

.brand-mark::before {
  width: 24px;
  height: 3px;
  transform: rotate(35deg);
}

.brand-mark::after {
  width: 20px;
  height: 3px;
  transform: rotate(-35deg) translateY(8px);
}

.brand-mark span {
  width: 3px;
  height: 22px;
  transform: translateX(-9px);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 1.1rem;
  letter-spacing: 0.16em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--steel);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 34px);
  color: rgba(244, 247, 247, 0.74);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--laser);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(184, 255, 44, 0.38);
  color: var(--ink);
  background: var(--laser);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 950;
  white-space: nowrap;
  box-shadow: 0 0 28px rgba(184, 255, 44, 0.18);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding: 130px clamp(18px, 5vw, 72px) 32px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 9, 12, 0.98) 0%, rgba(7, 9, 12, 0.78) 36%, rgba(7, 9, 12, 0.12) 100%),
    linear-gradient(0deg, #07090c 0%, rgba(7, 9, 12, 0) 24%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -28% 18%;
  z-index: 0;
  height: 42%;
  background: radial-gradient(ellipse, rgba(184, 255, 44, 0.18), transparent 66%);
  filter: blur(28px);
  opacity: 0.64;
  transform: translate3d(calc(var(--mx) * -18px), calc(var(--my) * -12px), 0);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 760px;
  padding-bottom: 150px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--laser);
  font-size: clamp(0.72rem, 1.4vw, 0.82rem);
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 6.2vw, 6.9rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 5.4vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 16px;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1;
}

.hero-lead {
  max-width: 650px;
  color: rgba(244, 247, 247, 0.78);
  font-size: clamp(1.04rem, 1.6vw, 1.32rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
}

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

.btn-primary {
  background: var(--laser);
  color: #081007;
  box-shadow: 0 16px 42px rgba(184, 255, 44, 0.2);
}

.btn-primary:hover {
  background: var(--plasma);
}

.btn-secondary {
  border-color: rgba(244, 247, 247, 0.28);
  background: rgba(244, 247, 247, 0.035);
  color: var(--paper);
}

.btn-secondary:hover {
  border-color: rgba(184, 255, 44, 0.55);
  color: var(--laser);
}

.hero-metrics {
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  right: clamp(18px, 5vw, 72px);
  bottom: 28px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 9, 12, 0.48);
  backdrop-filter: blur(12px);
}

.metric {
  min-width: 0;
  padding: 20px 22px;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  margin-bottom: 8px;
  color: var(--paper);
  font-size: clamp(1.3rem, 3vw, 2.5rem);
  line-height: 1;
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.hero-scene {
  position: absolute;
  top: 96px;
  right: 0;
  bottom: 118px;
  left: 42%;
  z-index: 1;
  display: grid;
  place-items: center;
  perspective: 1350px;
  overflow: visible;
  contain: layout paint style;
}

.factory-stage {
  position: absolute;
  left: 50%;
  top: 51%;
  width: clamp(520px, 42vw, 720px);
  aspect-ratio: 1.28;
  transform-style: preserve-3d;
  transform:
    translate3d(calc(-50% + var(--scene-x)), calc(-50% + var(--scene-y)), 0)
    rotateX(58deg)
    rotateZ(-33deg);
  transition: transform 0.12s linear;
  will-change: transform;
  backface-visibility: hidden;
}

.grid-floor,
.rear-wall,
.metal-sheet,
.gantry,
.laser-bridge,
.press-brake,
.weld-orbit,
.inspection-arm,
.machine-shadow,
.safety-frame {
  position: absolute;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.machine-shadow {
  left: 5%;
  right: 4%;
  bottom: -5%;
  height: 48%;
  transform: translateZ(-90px);
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.46), transparent 68%);
  opacity: 0.8;
}

.grid-floor {
  inset: 10% 5% 3% 4%;
  border: 1px solid rgba(244, 247, 247, 0.14);
  background:
    linear-gradient(rgba(184, 255, 44, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 230, 255, 0.13) 1px, transparent 1px),
    linear-gradient(145deg, rgba(21, 27, 34, 0.95), rgba(4, 6, 8, 0.92));
  background-size: 52px 52px, 52px 52px, auto;
  box-shadow: inset 0 0 52px rgba(99, 230, 255, 0.06), 0 24px 58px rgba(0, 0, 0, 0.34);
}

.rear-wall {
  left: 12%;
  right: 12%;
  top: 0;
  height: 27%;
  transform: translateZ(-120px) rotateX(82deg);
  border: 1px solid rgba(244, 247, 247, 0.1);
  background: linear-gradient(180deg, rgba(32, 40, 50, 0.7), rgba(10, 13, 18, 0.95));
}

.safety-frame {
  left: 12%;
  right: 9%;
  top: 24%;
  height: 45%;
  transform: translateZ(76px);
  border: 10px solid rgba(153, 166, 176, 0.72);
  border-top-color: rgba(202, 211, 218, 0.82);
  background:
    linear-gradient(90deg, transparent 0 45%, rgba(184, 255, 44, 0.17) 45% 46%, transparent 46%),
    linear-gradient(0deg, transparent 0 48%, rgba(99, 230, 255, 0.11) 48% 49%, transparent 49%);
  box-shadow: 0 18px 26px rgba(0, 0, 0, 0.22);
}

.gantry {
  left: 16%;
  right: 12%;
  height: 10px;
  background: linear-gradient(90deg, #202832, #9ca6ae 46%, #17202a);
  box-shadow: 0 9px 18px rgba(0, 0, 0, 0.3);
}

.gantry span {
  position: absolute;
  top: 0;
  width: 12px;
  height: 172px;
  background: linear-gradient(180deg, #7b858d, #141b24);
}

.gantry span:first-child {
  left: 0;
}

.gantry span:last-child {
  right: 0;
}

.gantry-front {
  top: 37%;
  transform: translateZ(118px);
}

.gantry-back {
  top: 19%;
  opacity: 0.62;
  transform: translateZ(-42px);
}

.laser-bridge {
  left: 20%;
  right: 18%;
  top: 28%;
  height: 14px;
  transform: translateZ(176px);
  background: linear-gradient(90deg, #111820, #c8d0d6 46%, #27313b);
  animation: bridgeMove 5.4s ease-in-out infinite;
  transition: opacity 0.4s ease, filter 0.4s ease;
  will-change: transform;
}

.laser-carriage {
  position: absolute;
  top: -15px;
  left: 42%;
  width: 50px;
  height: 50px;
  transform-style: preserve-3d;
  animation: carriageRun 5.4s ease-in-out infinite;
  will-change: transform;
}

.laser-head {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #d5dde3, #3b4650 54%, #10151c);
  border: 1px solid rgba(244, 247, 247, 0.4);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.34);
}

.laser-head::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -31px;
  height: 33px;
  background: linear-gradient(180deg, #4b5560, #0b0f14);
}

.laser-beam {
  position: absolute;
  left: 24px;
  top: 50px;
  width: 4px;
  height: 150px;
  background: linear-gradient(180deg, #fff, var(--laser), rgba(184, 255, 44, 0));
  box-shadow: 0 0 12px var(--laser), 0 0 28px rgba(184, 255, 44, 0.42);
  animation: beamPulse 0.8s ease-in-out infinite;
  will-change: opacity, transform;
}

.spark {
  position: absolute;
  left: 17px;
  top: 184px;
  width: 52px;
  height: 2px;
  background: var(--arc);
  transform-origin: left;
  box-shadow: 0 0 10px var(--arc);
  animation: spark 0.7s ease-out infinite;
  will-change: opacity, width, transform;
}

.spark-b {
  animation-delay: 0.12s;
  transform: rotate(24deg);
}

.spark-c {
  animation-delay: 0.24s;
  transform: rotate(-32deg);
  background: var(--plasma);
  box-shadow: 0 0 10px var(--plasma);
}

.hero[data-phase="weld"] .laser-beam {
  background: linear-gradient(180deg, #fff, var(--arc), rgba(255, 64, 87, 0));
  box-shadow: 0 0 12px var(--arc), 0 0 32px rgba(255, 64, 87, 0.42);
}

.hero[data-phase="bend"] .laser-bridge,
.hero[data-phase="bend"] .laser-carriage {
  opacity: 0.54;
}

.metal-sheet {
  left: 28%;
  right: 18%;
  top: 48%;
  height: 30%;
  transform: translateZ(96px);
  border: 1px solid rgba(244, 247, 247, 0.34);
  background:
    repeating-linear-gradient(98deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 16px),
    linear-gradient(145deg, #dce2e6, #8d98a2 48%, #34404b);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.sheet-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 38%, rgba(255, 255, 255, 0.24) 46%, transparent 56%);
  opacity: 0.5;
}

.cut-line {
  position: absolute;
  height: 2px;
  background: var(--laser);
  box-shadow: 0 0 13px var(--laser);
  opacity: 0.88;
}

.cut-one {
  left: 12%;
  right: 14%;
  top: 28%;
}

.cut-two {
  left: 18%;
  right: 30%;
  top: 56%;
  transform: rotate(18deg);
}

.cut-three {
  left: 46%;
  right: 12%;
  top: 72%;
  background: var(--arc);
  box-shadow: 0 0 12px var(--arc);
}

.weld-orbit {
  left: 13%;
  top: 19%;
  width: 150px;
  height: 150px;
  transform: translateZ(170px);
  opacity: 0.42;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.weld-orbit span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(99, 230, 255, 0.34);
  transform: rotate(45deg);
  animation: orbit 7s linear infinite;
}

.weld-orbit span:nth-child(2) {
  inset: 24px;
  border-color: rgba(184, 255, 44, 0.28);
  animation-direction: reverse;
}

.weld-orbit span:nth-child(3) {
  inset: 52px;
  border-color: rgba(255, 64, 87, 0.3);
  animation-duration: 4s;
}

.hero[data-phase="weld"] .weld-orbit {
  opacity: 1;
  transform: translateZ(210px) scale(1.1);
}

.hero[data-phase="cut"] .weld-orbit,
.hero[data-phase="bend"] .weld-orbit {
  opacity: 0.34;
}

.press-brake {
  right: 6%;
  bottom: 15%;
  width: 148px;
  height: 205px;
  transform: translateZ(136px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.press-top,
.press-bottom,
.press-sheet {
  position: absolute;
  left: 0;
  right: 0;
}

.press-top {
  top: 0;
  height: 58px;
  background: linear-gradient(180deg, #59636d, #151b22);
  animation: pressDown 4.6s ease-in-out infinite;
  will-change: transform;
}

.press-bottom {
  bottom: 0;
  height: 62px;
  background: linear-gradient(180deg, #121820, #646f79);
}

.press-sheet {
  left: 18px;
  right: 18px;
  bottom: 62px;
  height: 44px;
  background: linear-gradient(135deg, #eef2f4, #78838d);
  transform-origin: bottom;
  animation: bendSheet 4.6s ease-in-out infinite;
  will-change: transform;
}

.hero[data-phase="bend"] .press-brake {
  opacity: 1;
  transform: translateZ(172px) scale(1.06);
}

.hero[data-phase="cut"] .press-brake,
.hero[data-phase="weld"] .press-brake {
  opacity: 0.46;
}

.inspection-arm {
  left: 11%;
  bottom: 20%;
  width: 142px;
  height: 16px;
  transform: translateZ(158px) rotate(28deg);
  background: linear-gradient(90deg, #111820, #aab4bd, #222b35);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
  animation: inspectSweep 6.2s ease-in-out infinite;
  will-change: transform;
}

.inspection-arm span:first-child {
  position: absolute;
  left: -15px;
  top: -15px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(244, 247, 247, 0.34);
  background: linear-gradient(145deg, #4d5964, #0c1118);
}

.inspection-arm span:last-child {
  position: absolute;
  right: -17px;
  top: -12px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(184, 255, 44, 0.46);
  background: radial-gradient(circle, rgba(184, 255, 44, 0.55), rgba(184, 255, 44, 0.05) 58%, transparent 64%);
  box-shadow: 0 0 16px rgba(184, 255, 44, 0.32);
}

.intro-band {
  min-height: 13svh;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0b0f14;
}

.intro-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  min-height: 13svh;
  padding: 0 34px;
  color: rgba(244, 247, 247, 0.9);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}

.intro-track span {
  display: inline-flex;
  align-items: center;
  gap: 34px;
}

.intro-track span::after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--laser);
  box-shadow: 0 0 16px var(--laser);
}

.section {
  position: relative;
  padding: clamp(82px, 12vw, 154px) clamp(18px, 5vw, 72px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: end;
  margin-bottom: 52px;
}

.section-head h2,
.section-head .eyebrow {
  grid-column: 1;
}

.section-head p:not(.eyebrow) {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: rgba(244, 247, 247, 0.025);
}

.service-card {
  min-width: 0;
  position: relative;
  padding: clamp(24px, 3vw, 42px);
  border-right: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(244, 247, 247, 0.05), rgba(244, 247, 247, 0.015)),
    rgba(7, 9, 12, 0.62);
  transition: transform 0.26s ease, background 0.26s ease, border-color 0.26s ease;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.11) 42%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 0.65s ease;
}

.service-card:last-child {
  border-right: 0;
}

.service-card:hover {
  transform: translateY(-8px);
  background:
    linear-gradient(180deg, rgba(184, 255, 44, 0.08), rgba(244, 247, 247, 0.018)),
    rgba(7, 9, 12, 0.78);
}

.service-card:hover::before {
  transform: translateX(120%);
}

.service-number {
  margin-bottom: 54px;
  color: rgba(184, 255, 44, 0.62);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.18em;
}

.service-card p,
.process-step p,
.area-copy p,
.quote-copy p,
.tech-copy p {
  color: var(--muted);
  line-height: 1.72;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 20px;
  color: rgba(244, 247, 247, 0.76);
  font-size: 0.92rem;
  line-height: 1.5;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 2px;
  background: var(--laser);
}

.capability-wall {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  margin-top: 34px;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(184, 255, 44, 0.18);
  background:
    linear-gradient(135deg, rgba(184, 255, 44, 0.06), transparent 42%),
    linear-gradient(180deg, rgba(244, 247, 247, 0.055), rgba(244, 247, 247, 0.018));
  box-shadow: var(--shadow);
}

.capability-copy h3 {
  max-width: 620px;
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 3.8vw, 3.6rem);
  text-transform: uppercase;
}

.capability-copy p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  line-height: 1.72;
}

.production-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 170px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(184, 255, 44, 0.08), transparent 35%, rgba(99, 230, 255, 0.08)),
    rgba(7, 9, 12, 0.62);
  overflow: hidden;
}

.production-flow::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--laser), var(--plasma), var(--arc));
  box-shadow: 0 0 22px rgba(184, 255, 44, 0.34);
  animation: flowPulse 2.8s ease-in-out infinite;
}

.production-flow span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  color: rgba(244, 247, 247, 0.9);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.production-flow span:last-child {
  border-right: 0;
}

.production-flow span::before {
  content: "";
  width: 28px;
  height: 28px;
  margin-bottom: 16px;
  border: 1px solid rgba(244, 247, 247, 0.24);
  background: #0b0f14;
  box-shadow: 0 0 0 7px rgba(244, 247, 247, 0.035);
}

.technology {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: clamp(30px, 7vw, 94px);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(184, 255, 44, 0.05), transparent 35%),
    rgba(13, 17, 23, 0.58);
}

.tech-copy {
  position: sticky;
  top: 118px;
}

.process-panel {
  display: grid;
  border: 1px solid var(--line);
  background: rgba(7, 9, 12, 0.52);
}

.process-step {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 22px;
  padding: 30px;
  border-bottom: 1px solid var(--line);
}

.process-step:last-child {
  border-bottom: 0;
}

.process-step span {
  grid-row: 1 / span 2;
  color: rgba(184, 255, 44, 0.7);
  font-weight: 950;
  letter-spacing: 0.16em;
}

.process-step strong {
  color: var(--paper);
  font-size: 1.18rem;
}

.process-step p {
  margin-bottom: 0;
}

.area {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 0.75fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
}

.area-map {
  position: relative;
  min-height: clamp(360px, 48vw, 620px);
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(145deg, rgba(21, 27, 34, 0.9), rgba(6, 8, 11, 0.98));
  background-size: 42px 42px, 42px 42px, auto;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(184, 255, 44, 0.26);
  transform: translate(-50%, -50%);
}

.ring-large {
  width: 82%;
  aspect-ratio: 1;
}

.ring-mid {
  width: 56%;
  aspect-ratio: 1;
  border-color: rgba(99, 230, 255, 0.22);
}

.ring-small {
  width: 28%;
  aspect-ratio: 1;
  border-color: rgba(255, 64, 87, 0.22);
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  min-width: 130px;
  padding: 12px 14px;
  transform: translate(-50%, -50%);
  background: var(--laser);
  color: #081007;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 0 34px rgba(184, 255, 44, 0.25);
}

.town {
  position: absolute;
  padding: 8px 10px;
  border: 1px solid rgba(244, 247, 247, 0.14);
  background: rgba(7, 9, 12, 0.7);
  color: rgba(244, 247, 247, 0.76);
  font-size: 0.78rem;
  font-weight: 850;
}

.town-a {
  left: 63%;
  top: 38%;
}

.town-b {
  left: 34%;
  top: 31%;
}

.town-c {
  left: 50%;
  bottom: 18%;
}

.town-d {
  right: 13%;
  bottom: 31%;
}

.town-e {
  left: 17%;
  top: 58%;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.area-tags span {
  padding: 10px 12px;
  border: 1px solid rgba(244, 247, 247, 0.14);
  background: rgba(244, 247, 247, 0.035);
  color: rgba(244, 247, 247, 0.74);
  font-size: 0.78rem;
  font-weight: 850;
}

.seo-faq {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(99, 230, 255, 0.045), transparent 35%),
    rgba(7, 9, 12, 0.62);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: rgba(244, 247, 247, 0.025);
}

.faq-item {
  min-width: 0;
  padding: clamp(24px, 3vw, 38px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(244, 247, 247, 0.045), rgba(244, 247, 247, 0.014)),
    rgba(7, 9, 12, 0.58);
}

.faq-item:nth-child(2n) {
  border-right: 0;
}

.faq-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.faq-item h3 {
  max-width: 720px;
  font-size: clamp(1.12rem, 2vw, 1.48rem);
  line-height: 1.18;
}

.faq-item p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.quote {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.9fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(255, 64, 87, 0.06), transparent 34%),
    #0a0d11;
}

.contact-lines {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.contact-lines a,
.contact-lines span {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(244, 247, 247, 0.82);
  text-decoration: none;
  font-weight: 850;
}

.contact-lines span span,
.contact-lines a span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(184, 255, 44, 0.28);
  color: var(--laser);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(184, 255, 44, 0.18);
  background:
    linear-gradient(180deg, rgba(244, 247, 247, 0.06), rgba(244, 247, 247, 0.02)),
    rgba(7, 9, 12, 0.84);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: rgba(244, 247, 247, 0.78);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid rgba(244, 247, 247, 0.16);
  border-radius: 0;
  outline: 0;
  background: rgba(244, 247, 247, 0.045);
  color: var(--paper);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.quote-form select {
  appearance: none;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: rgba(184, 255, 44, 0.72);
  background: rgba(244, 247, 247, 0.065);
  box-shadow: 0 0 0 3px rgba(184, 255, 44, 0.1);
}

.quote-form option {
  color: #0b0f14;
}

.wide {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--steel);
  font-size: 0.88rem;
}

.form-status.is-success {
  color: var(--laser);
}

.form-status.is-error {
  color: #ff8090;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #050608;
  color: rgba(244, 247, 247, 0.55);
}

.site-footer div {
  display: grid;
  gap: 7px;
}

.site-footer strong {
  color: var(--paper);
  letter-spacing: 0.16em;
}

.site-footer span,
.site-footer p {
  margin: 0;
  font-size: 0.85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes bridgeMove {
  0%, 100% { transform: translateZ(176px) translateX(-3%); }
  50% { transform: translateZ(176px) translateX(7%); }
}

@keyframes carriageRun {
  0%, 100% { transform: translateX(-110px); }
  50% { transform: translateX(130px); }
}

@keyframes beamPulse {
  0%, 100% { opacity: 0.55; transform: scaleY(0.92); }
  50% { opacity: 1; transform: scaleY(1.04); }
}

@keyframes spark {
  from { opacity: 1; width: 56px; }
  to { opacity: 0; width: 14px; transform: rotate(42deg) translateX(72px); }
}

@keyframes orbit {
  to { transform: rotate(405deg); }
}

@keyframes pressDown {
  0%, 100% { transform: translateY(0); }
  46%, 62% { transform: translateY(42px); }
}

@keyframes bendSheet {
  0%, 42%, 100% { transform: rotateX(0deg); }
  58%, 70% { transform: rotateX(42deg); }
}

@keyframes inspectSweep {
  0%, 100% { transform: translateZ(158px) rotate(18deg) translateX(-14px); }
  50% { transform: translateZ(158px) rotate(34deg) translateX(26px); }
}

@keyframes flowPulse {
  0%, 100% { opacity: 0.48; transform: scaleX(0.82); }
  50% { opacity: 1; transform: scaleX(1); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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

@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }

  .hero-scene {
    left: 34%;
    top: 92px;
    bottom: 128px;
  }

  .factory-stage {
    width: clamp(360px, 42vw, 460px);
    top: 50%;
    opacity: 0.58;
  }

  .section-head,
  .technology,
  .area,
  .quote,
  .capability-wall {
    grid-template-columns: 1fr;
  }

  .section-head p:not(.eyebrow) {
    grid-column: 1;
    grid-row: auto;
  }

  .tech-copy {
    position: static;
  }
}

@media (max-width: 820px) {
  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    min-height: 64px;
  }

  .brand-copy strong {
    font-size: 0.96rem;
  }

  .brand-copy small {
    display: none;
  }

  .header-phone {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: 94svh;
    padding-top: 112px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(7, 9, 12, 0.54), rgba(7, 9, 12, 0.98) 62%),
      linear-gradient(0deg, #07090c 0%, rgba(7, 9, 12, 0) 26%);
  }

  .hero-copy {
    padding-bottom: 250px;
  }

  .hero-scene {
    left: 22%;
    top: 92px;
    bottom: 244px;
  }

  .factory-stage {
    width: clamp(330px, 70vw, 420px);
    top: 46%;
    opacity: 0.34;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .metric {
    padding: 14px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric:last-child {
    border-bottom: 0;
  }

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

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

  .faq-item,
  .faq-item:nth-child(2n),
  .faq-item:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .faq-item:last-child {
    border-bottom: 0;
  }

  .service-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .process-step {
    grid-template-columns: 1fr;
  }

  .process-step span {
    grid-row: auto;
  }

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

  .production-flow {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .production-flow::before {
    left: 30px;
    right: auto;
    top: 26px;
    bottom: 26px;
    width: 2px;
    height: auto;
    transform: none;
  }

  .production-flow span {
    min-height: 72px;
    grid-template-columns: 44px minmax(0, 1fr);
    justify-items: start;
    padding: 0 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .production-flow span:last-child {
    border-bottom: 0;
  }

  .production-flow span::before {
    margin: 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .header-phone {
    font-size: 0;
    width: 42px;
    padding: 0;
  }

  .header-phone span {
    font-size: 1rem;
  }

  h1 {
    font-size: clamp(3.55rem, 19vw, 5.8rem);
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .area-map {
    min-height: 350px;
  }

  .town {
    font-size: 0.68rem;
  }
}
