:root {
  color-scheme: light;
  --navy: #f4f6f7;
  --navy-2: #e9edf0;
  --charcoal: #161b20;
  --panel: #ffffff;
  --panel-2: #edf1f3;
  --line: rgba(23, 35, 46, 0.14);
  --line-strong: rgba(16, 112, 173, 0.42);
  --text: #171c21;
  --muted: #606b74;
  --soft: #303a43;
  --blue: #1478b8;
  --blue-2: #0b639c;
  --shadow: 0 18px 50px rgba(22, 30, 36, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Montserrat, Poppins, sans-serif;
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.is-loading {
  overflow: hidden;
}

html[dir="rtl"] body {
  direction: rtl;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: clamp(18px, 2.3vw, 34px);
  padding: 14px max(20px, calc((100vw - var(--max)) / 2));
  background: rgba(7, 19, 33, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  color: #f7f9fa;
}

.site-header.is-solid,
.site-header.menu-active {
  color: #f7f9fa;
  background: rgba(7, 19, 33, 0.97);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 156px;
  height: auto;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 28px;
  color: #f7f9fa;
  background:
    linear-gradient(180deg, rgba(10, 27, 43, 0.98), rgba(6, 13, 20, 0.99)),
    #071321;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.site-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0, rgba(255, 255, 255, 0.045) 50%, transparent 100%) 50% 50% / 1px 100%,
    linear-gradient(0deg, transparent 0, rgba(255, 255, 255, 0.035) 50%, transparent 100%) 50% 50% / 100% 1px;
  opacity: 0.18;
  pointer-events: none;
}

.site-loader.is-hiding {
  opacity: 0;
  visibility: hidden;
}

.site-loader-panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  display: grid;
  justify-items: center;
  gap: 22px;
  text-align: center;
}

.site-loader-logo {
  display: block;
  width: min(330px, 76vw);
  height: auto;
}

.site-loader-line {
  position: relative;
  width: min(340px, 78vw);
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.site-loader-line::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 42%;
  background: linear-gradient(90deg, transparent, #52b8f4, transparent);
  transform: translateX(-105%);
  animation: loaderSweep 1.05s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.site-loader-text {
  margin: 0;
  color: rgba(239, 246, 250, 0.72);
  font-family: Poppins, Montserrat, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@keyframes loaderSweep {
  to {
    transform: translateX(245%);
  }
}

.site-footer .brand-logo-white {
  display: block;
}

.nav {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  color: inherit;
  font-family: Poppins, Montserrat, sans-serif;
  font-size: 0.86rem;
  font-weight: 500;
}

.nav a {
  opacity: 0.78;
  transition: color 180ms ease, opacity 180ms ease;
}

.nav a:hover {
  color: var(--blue-2);
  opacity: 1;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-dropdown-trigger::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 18px);
  left: -18px;
  width: 226px;
  display: grid;
  padding: 10px 0;
  color: var(--text);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 18px 44px rgba(11, 20, 28, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-submenu a {
  padding: 10px 18px;
  opacity: 0.74;
  font-weight: 500;
  white-space: nowrap;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

html[dir="rtl"] .nav-submenu {
  right: -18px;
  left: auto;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-select select {
  height: 40px;
  color: inherit;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 0 10px;
  font-family: Poppins, Montserrat, sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: #f7f9fa;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.section {
  padding: clamp(64px, 7vw, 94px) clamp(20px, 4vw, 56px);
}

.section-dark {
  color: #f7f9fa;
  background: #12171c;
}

.section-muted {
  background: var(--navy-2);
}

.hero {
  min-height: 66vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 112px clamp(20px, 4vw, 56px) 54px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #12171c;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 218, 239, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 218, 239, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.hero-grid,
.section-heading,
.section-heading-row,
.split-section,
.lead-panel,
.footer-grid,
.footer-bottom {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 1.12fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.hero-corporate-grid {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(30px, 5vw, 68px);
}

.hero-corporate {
  min-height: 72vh;
}

.hero-corporate .hero-copy {
  max-width: 600px;
}

.hero-corporate h1 {
  font-size: clamp(2.05rem, 3.45vw, 3rem);
}

.hero-brand-signature {
  justify-self: center;
  max-width: 300px;
  text-align: center;
}

.hero-brand-signature img {
  display: block;
  width: clamp(116px, 11vw, 164px);
  height: auto;
  margin: 0 auto 20px;
  filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.3));
}

.hero-brand-signature p {
  margin-bottom: 8px;
  color: #f7f9fa;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 700;
}

.hero-brand-signature span {
  display: block;
  color: #9eabb5;
  font-size: 0.82rem;
}

.hero-copy {
  max-width: 640px;
}

.hero-copy p,
.hero .media-caption,
.page-hero p {
  color: #b9c2c9;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(1.75rem, 2.6vw, 2.55rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
}

.hero-subtitle {
  margin-bottom: 12px;
  color: var(--soft);
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  font-weight: 500;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-family: Poppins, Montserrat, sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.2;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: #ffffff;
  background: var(--blue);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.hero .btn-secondary,
.page-hero .btn-secondary {
  color: #f7f9fa;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-small {
  min-height: 40px;
  padding-inline: 16px;
  font-size: 0.78rem;
}

.media-bay {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #e7ebee;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.media-bay-large {
  min-height: clamp(390px, 44vw, 540px);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-video-visual {
  align-self: center;
  min-height: 0;
  border-radius: 6px;
  background: #050607;
  overflow: hidden;
  position: relative;
}

.hero-video-visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 9%;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(5, 22, 36, 0) 0%, rgba(9, 49, 79, 0.08) 52%, rgba(9, 49, 79, 0.34) 100%);
}

.hero-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1108 / 832;
  object-fit: cover;
}

.hero-video-visual .media-caption {
  z-index: 2;
  left: 8px;
  right: 8px;
  bottom: 7px;
  color: #ffffff;
  font-size: 0.58rem;
  letter-spacing: 0.09em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

.series-video-section {
  padding: clamp(66px, 7vw, 96px) clamp(20px, 4vw, 56px);
}

.series-video-heading {
  width: min(100%, var(--max));
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.6fr);
  align-items: end;
  gap: 48px;
}

.series-video-heading h2 {
  margin-bottom: 0;
}

.series-video-heading > p {
  margin-bottom: 2px;
  color: #b9c2c9;
}

.series-video {
  width: 100%;
  margin-inline: auto;
  box-shadow:
    -96px 0 130px rgba(20, 120, 184, 0.48),
    96px 0 130px rgba(20, 120, 184, 0.48),
    0 24px 70px rgba(0, 0, 0, 0.32);
}

.series-video-layout {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(170px, 0.68fr) minmax(280px, 500px) minmax(170px, 0.68fr);
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
}

.series-video-notes {
  display: grid;
  gap: 28px;
}

.series-video-notes article {
  position: relative;
  padding-block: 18px;
  border-top: 1px solid rgba(218, 228, 238, 0.14);
}

.series-video-notes article:last-child {
  border-bottom: 1px solid rgba(218, 228, 238, 0.14);
}

.series-video-notes span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-2);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.series-video-notes h3 {
  margin-bottom: 8px;
  color: #f8fafc;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.series-video-notes p {
  margin-bottom: 0;
  color: #aeb9c1;
  font-size: 0.88rem;
  line-height: 1.65;
}

.series-video-notes-right {
  text-align: right;
}

.product-image-full,
.product-image-full img {
  display: block;
  width: 100%;
}

.product-image-full img {
  height: auto;
  object-fit: contain;
}

.hero .product-image-full {
  overflow: hidden;
  border-radius: 6px;
}

.hero .media-caption {
  color: #f7f9fa;
}

.hero-machine-crop {
  width: 100%;
  aspect-ratio: 1.18;
  overflow: hidden;
}

.hero-machine-crop img {
  width: 302%;
  max-width: none;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transform: translateX(-0.5%);
}

.product-machine-photo {
  background: #050607;
}

.product-machine-photo .media-caption {
  color: #b9c2c9;
}

.machine-render {
  width: min(92%, 650px);
  height: 310px;
  position: relative;
  background:
    radial-gradient(circle at 18% 52%, rgba(190, 210, 228, 0.18) 0 9%, rgba(7, 15, 25, 0.94) 10% 18%, transparent 19%),
    radial-gradient(circle at 84% 52%, rgba(190, 210, 228, 0.18) 0 9%, rgba(7, 15, 25, 0.94) 10% 18%, transparent 19%),
    linear-gradient(90deg, transparent 12%, rgba(100, 187, 255, 0.26) 12% 88%, transparent 88%) 0 33% / 100% 8px no-repeat,
    linear-gradient(90deg, transparent 12%, rgba(100, 187, 255, 0.22) 12% 88%, transparent 88%) 0 74% / 100% 8px no-repeat;
  transform-style: preserve-3d;
  perspective: 900px;
}

.machine-render::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 38px;
  height: 16px;
  background: rgba(6, 13, 22, 0.88);
  border: 1px solid rgba(196, 218, 239, 0.12);
  transform: skewX(-18deg);
}

.machine-render::after {
  content: "";
  position: absolute;
  left: 22%;
  top: 102px;
  width: 54%;
  height: 112px;
  border: 1px solid rgba(196, 218, 239, 0.18);
  border-radius: 5px;
  background:
    linear-gradient(135deg, rgba(225, 235, 243, 0.1), rgba(7, 17, 28, 0.92)),
    linear-gradient(90deg, rgba(100, 187, 255, 0.12), transparent 48%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 22px 58px rgba(0, 0, 0, 0.38);
  transform: skewX(-10deg);
}

.machine-core,
.machine-head,
.control-panel,
.rail,
.foil-roll {
  position: absolute;
  display: block;
  z-index: 1;
}

.machine-core {
  left: 16%;
  top: 106px;
  width: 58%;
  height: 112px;
  border: 1px solid rgba(196, 218, 239, 0.22);
  border-radius: 5px;
  background:
    linear-gradient(135deg, rgba(225, 235, 243, 0.12), rgba(7, 17, 28, 0.95)),
    linear-gradient(90deg, rgba(100, 187, 255, 0.18), transparent 50%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 28px 80px rgba(0, 0, 0, 0.45);
  transform: skewX(-10deg);
}

.machine-head {
  left: 60%;
  top: 86px;
  width: 25%;
  height: 142px;
  border: 1px solid rgba(196, 218, 239, 0.2);
  border-radius: 5px;
  background: linear-gradient(140deg, rgba(75, 98, 119, 0.64), rgba(8, 18, 30, 0.98));
  transform: skewX(-10deg);
}

.rail {
  left: 10%;
  width: 78%;
  height: 8px;
  border: 1px solid rgba(100, 187, 255, 0.22);
  background: rgba(110, 177, 231, 0.13);
}

.rail-top {
  top: 82px;
}

.rail-bottom {
  top: 236px;
}

.foil-roll {
  width: 78px;
  height: 78px;
  border: 1px solid rgba(196, 218, 239, 0.28);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 247, 255, 0.26) 0 15%, rgba(103, 125, 145, 0.34) 16% 36%, rgba(9, 18, 29, 0.94) 38% 100%);
  box-shadow: inset -8px -10px 20px rgba(0, 0, 0, 0.4);
}

.roll-left {
  left: 9%;
  top: 116px;
}

.roll-right {
  right: 5%;
  top: 116px;
}

.control-panel {
  right: 13%;
  top: 103px;
  width: 62px;
  height: 76px;
  border: 1px solid rgba(100, 187, 255, 0.24);
  border-radius: 5px;
  background: linear-gradient(180deg, rgba(100, 187, 255, 0.2), rgba(9, 18, 29, 0.94));
}

.control-panel::before {
  content: "";
  position: absolute;
  inset: 12px 10px auto;
  height: 20px;
  background: rgba(100, 187, 255, 0.46);
  border-radius: 3px;
}

.media-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.scroll-indicator {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 26px;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  color: #ffffff;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: translateX(-50%);
}

.scroll-indicator span {
  position: relative;
  display: block;
  width: 18px;
  height: 26px;
  background: transparent;
}

.scroll-indicator span::before,
.scroll-indicator span::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 9px;
  height: 9px;
  border-right: 1.5px solid #ffffff;
  border-bottom: 1.5px solid #ffffff;
  transform: translateX(-50%) rotate(45deg);
  animation: swipeDown 1.7s ease-in-out infinite;
}

.scroll-indicator span::before { top: 1px; }
.scroll-indicator span::after { top: 9px; animation-delay: 140ms; }

.scroll-indicator strong {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

@keyframes swipeDown {
  0%, 100% { opacity: 0.28; transform: translate(-50%, -3px) rotate(45deg); }
  50% { opacity: 1; transform: translate(-50%, 3px) rotate(45deg); }
}

.section-heading {
  max-width: 700px;
  margin-bottom: 38px;
  text-align: center;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max);
  margin-bottom: 42px;
  text-align: left;
}

.section-note {
  max-width: 430px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.feature-grid,
.product-grid,
.application-grid,
.metric-grid,
.support-grid {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.mini-card,
.support-item,
.metric-card {
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: 26px 0;
}

.feature-card svg {
  width: 38px;
  height: 38px;
  margin-bottom: 34px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.model-experience {
  color: #f7f9fa;
  background: #10151a;
  overflow: hidden;
}

.model-experience-copy {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: 84px clamp(20px, 4vw, 56px) 34px;
}

.model-experience-copy h2 {
  max-width: 720px;
  margin-bottom: 12px;
}

.model-experience-copy p:last-child {
  max-width: 650px;
  color: #aeb8c0;
}

.model-stage {
  --cube-yaw: -90deg;
  --cube-pitch: -22deg;
  position: relative;
  width: 100%;
  height: min(72vh, 760px);
  min-height: 540px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #151b20;
  overflow: hidden;
  touch-action: none;
  perspective: 900px;
}

.model-stage canvas {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: grab;
}

.model-stage canvas:active {
  cursor: grabbing;
}

.model-corners {
  position: absolute;
  z-index: 2;
  inset: clamp(24px, 4vw, 58px);
  pointer-events: none;
}

.model-corners span {
  position: absolute;
  width: 28px;
  height: 28px;
  opacity: 0.42;
}

.model-corners span:nth-child(1) { top: 0; left: 0; border-top: 1px solid #75bce7; border-left: 1px solid #75bce7; }
.model-corners span:nth-child(2) { top: 0; right: 0; border-top: 1px solid #75bce7; border-right: 1px solid #75bce7; }
.model-corners span:nth-child(3) { bottom: 0; left: 0; border-bottom: 1px solid #75bce7; border-left: 1px solid #75bce7; }
.model-corners span:nth-child(4) { right: 0; bottom: 0; border-right: 1px solid #75bce7; border-bottom: 1px solid #75bce7; }

.model-spatial-mark {
  position: absolute;
  z-index: 3;
  left: clamp(24px, 4vw, 58px);
  bottom: 32px;
  width: 98px;
  height: 62px;
  pointer-events: none;
}

.model-cube {
  position: absolute;
  left: 8px;
  top: 15px;
  width: 28px;
  height: 28px;
  transform: rotateX(var(--cube-pitch)) rotateY(var(--cube-yaw));
  transform-style: preserve-3d;
  transition: transform 120ms linear;
}

.cube-face {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(133, 202, 241, 0.76);
  background: rgba(45, 115, 157, 0.08);
}

.cube-front { transform: translateZ(14px); }
.cube-back { transform: rotateY(180deg) translateZ(14px); }
.cube-left { transform: rotateY(-90deg) translateZ(14px); }
.cube-right { transform: rotateY(90deg) translateZ(14px); }
.cube-top { transform: rotateX(90deg) translateZ(14px); }
.cube-bottom { transform: rotateX(-90deg) translateZ(14px); }

.model-axis {
  position: absolute;
  right: 0;
  bottom: 8px;
  width: 42px;
  height: 42px;
  color: #b8c3ca;
  font-size: 0.58rem;
  font-weight: 800;
}

.model-axis span { position: absolute; }
.axis-x { right: 0; bottom: 0; color: #ee7777; }
.axis-y { left: 18px; top: 0; color: #6fd0a2; }
.axis-z { left: 0; bottom: 0; color: #72bce8; }

.model-axis::before,
.model-axis::after {
  content: "";
  position: absolute;
  left: 19px;
  bottom: 8px;
  width: 24px;
  height: 1px;
  background: rgba(238, 119, 119, 0.7);
  transform-origin: left;
}

.model-axis::after {
  width: 25px;
  background: rgba(111, 208, 162, 0.7);
  transform: rotate(-90deg);
}

.model-loading {
  --load-progress: 0%;
  position: absolute;
  z-index: 4;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 14px;
  color: #d9e1e6;
  text-align: center;
  background: #151b20;
}

.model-loading[hidden] {
  display: none;
}

.model-loading span {
  width: 220px;
  height: 2px;
  background: rgba(255, 255, 255, 0.13);
}

.model-loading span::before {
  content: "";
  display: block;
  width: var(--load-progress);
  height: 100%;
  background: var(--blue);
  transition: width 180ms ease;
}

.model-loading strong {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.model-status {
  position: absolute;
  z-index: 3;
  top: 22px;
  right: clamp(20px, 4vw, 56px);
  color: #aeb8c0;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.machine-showcase {
  --showcase-zoom: 1.22;
  --showcase-side-scale: 0.88;
  --showcase-side-shift: 92px;
  --showcase-side-opacity: 0.18;
  --showcase-progress: 0;
  position: relative;
  height: 175vh;
  background: #eef1f3;
}

.machine-showcase-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  padding: 88px clamp(20px, 3vw, 44px) 30px;
  overflow: hidden;
}

.machine-showcase-heading {
  position: relative;
  z-index: 3;
  width: min(100%, 680px);
  margin: 0 auto 22px;
  text-align: center;
}

.machine-showcase-heading h2 {
  margin-bottom: 8px;
  font-size: clamp(1.65rem, 2.4vw, 2.4rem);
}

.machine-showcase-heading p:last-child {
  margin-bottom: 0;
}

.machine-stage {
  width: min(100%, 1380px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.16fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(12px, 2vw, 30px);
}

.machine-variant {
  min-width: 0;
  border: 1px solid rgba(23, 35, 46, 0.16);
  border-radius: 6px;
  background: transparent;
  box-shadow: 0 18px 42px rgba(25, 33, 39, 0.1);
  overflow: hidden;
  transition: opacity 120ms linear;
  will-change: transform, opacity;
}

.machine-variant-center {
  position: relative;
  z-index: 2;
  transform: scale(var(--showcase-zoom));
  transform-origin: center;
}

.machine-variant-left {
  opacity: var(--showcase-side-opacity);
  transform: translateX(var(--showcase-side-shift)) scale(var(--showcase-side-scale));
  transform-origin: right center;
}

.machine-variant-right {
  opacity: var(--showcase-side-opacity);
  transform: translateX(calc(var(--showcase-side-shift) * -1)) scale(var(--showcase-side-scale));
  transform-origin: left center;
}

.machine-image-full {
  width: 100%;
  overflow: visible;
}

.machine-image-full img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.machine-variant-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 16px;
  border-top: 1px solid var(--line);
}

.machine-variant-meta span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.machine-variant-meta strong {
  font-size: 0.88rem;
}

.showcase-progress {
  width: min(240px, 56vw);
  height: 2px;
  margin: 22px auto 0;
  background: rgba(23, 35, 46, 0.16);
  overflow: hidden;
}

.showcase-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--blue);
  transform: scaleX(var(--showcase-progress));
  transform-origin: left;
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.product-showcase-layout {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: block;
}

.configuration-section {
  background: #f6f8f9;
}

.configuration-grid {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.configuration-card {
  --mx: 50%;
  --my: 50%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --config-accent: rgba(20, 120, 184, 0.72);
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.96));
  overflow: hidden;
  position: relative;
  isolation: isolate;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(0);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.configuration-card.reveal {
  opacity: 0;
  transform: perspective(900px) translateY(54px) scale(0.965);
  filter: blur(8px);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 760ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.configuration-card.reveal:nth-child(2) {
  transition-delay: 130ms;
}

.configuration-card.reveal:nth-child(3) {
  transition-delay: 260ms;
}

.configuration-card.reveal .configuration-media img {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 360ms ease;
}

.configuration-card.reveal .configuration-copy {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.configuration-card.reveal.is-visible {
  opacity: 1;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(0) scale(1);
  filter: blur(0);
}

.configuration-card.reveal.is-visible .configuration-media img {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 120ms;
}

.configuration-card.reveal.is-visible .configuration-copy {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 230ms;
}

.configuration-card:nth-child(2) {
  --config-accent: rgba(12, 24, 34, 0.78);
}

.configuration-card:nth-child(3) {
  --config-accent: rgba(105, 190, 238, 0.68);
}

.configuration-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.1), transparent 30%);
  opacity: 0.6;
}

.configuration-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(20, 120, 184, 0.34), transparent);
  transform: scaleX(0.4);
  opacity: 0;
  transition: transform 240ms ease, opacity 240ms ease;
}

.configuration-card:hover {
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-5px);
  border-color: rgba(20, 120, 184, 0.38);
  box-shadow: 0 20px 42px rgba(22, 30, 36, 0.1);
}

.configuration-card.reveal.is-visible:hover {
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-5px) scale(1);
}

.configuration-card.reveal:not(.is-visible):hover {
  transform: perspective(900px) translateY(54px) scale(0.965);
  box-shadow: none;
}

.configuration-card:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.configuration-media {
  margin: 0;
  display: grid;
  place-items: center;
  min-height: 260px;
  aspect-ratio: 1448 / 1086;
  padding: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.96) 0%, rgba(246, 248, 249, 0.96) 46%, rgba(232, 236, 239, 0.96) 100%);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.configuration-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 18px 22px rgba(16, 23, 30, 0.13));
  transition: transform 360ms ease, filter 360ms ease;
}

.configuration-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0) 7%, rgba(255, 255, 255, 0) 93%, rgba(255, 255, 255, 0.58)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0) 8%, rgba(255, 255, 255, 0) 92%, rgba(255, 255, 255, 0.52));
}

.configuration-card:hover .configuration-media img {
  transform: translateY(-3px) scale(1.012);
  filter: contrast(1.03) drop-shadow(0 22px 26px rgba(16, 23, 30, 0.16));
}

.configuration-card.reveal.is-visible:hover .configuration-media img {
  transform: translateY(-3px) scale(1.012);
}

.configuration-copy {
  padding: 22px 24px 24px;
  position: relative;
  z-index: 2;
}

.configuration-copy span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
  color: var(--blue-2);
  font-family: Poppins, Montserrat, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.configuration-copy span::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--config-accent);
}

.configuration-copy h3 {
  margin-bottom: 9px;
  color: var(--text);
  font-size: 1.02rem;
}

.configuration-copy p {
  margin-bottom: 0;
  font-size: 0.88rem;
  line-height: 1.65;
}

@media (prefers-reduced-motion: reduce) {
  .configuration-card,
  .configuration-card::before,
  .configuration-copy span::before {
    animation: none;
    transition: none;
  }
}

.foil-motion-rail {
  position: relative;
  min-height: 100%;
  border-inline: 1px solid var(--line);
  overflow: hidden;
}

.motion-label {
  position: absolute;
  left: 50%;
  top: 14px;
  color: var(--blue-2);
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: translateX(-50%);
}

.motion-line {
  position: absolute;
  left: 50%;
  top: 70px;
  bottom: 24px;
  width: 2px;
  background: rgba(20, 120, 184, 0.2);
  transform: translateX(-50%);
}

.motion-roller {
  position: absolute;
  left: 50%;
  width: 28px;
  height: 28px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: #f4f6f7;
  box-shadow: inset 0 0 0 6px #dce7ee;
  transform: translateX(-50%);
}

.motion-roller::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-top: 2px solid #171c21;
  transform: rotate(35deg);
  animation: rollerSpin 2.4s linear infinite;
}

.motion-roller-one { top: 23%; }
.motion-roller-two { top: 49%; }
.motion-roller-three { top: 75%; }

.motion-pulse {
  position: absolute;
  left: 50%;
  top: 72px;
  width: 8px;
  height: 44px;
  border-radius: 3px;
  background: var(--blue);
  box-shadow: 0 0 18px rgba(20, 120, 184, 0.56);
  transform: translateX(-50%);
  animation: foilTravel 4.2s ease-in-out infinite;
}

@keyframes rollerSpin {
  to { transform: rotate(360deg); }
}

@keyframes foilTravel {
  0% { top: 72px; opacity: 0; }
  12%, 88% { opacity: 1; }
  100% { top: calc(100% - 70px); opacity: 0; }
}

.product-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
}

.product-card-featured {
  border-color: rgba(100, 187, 255, 0.34);
  background: #f5fafc;
}

.product-visual {
  min-height: 260px;
  border: 0;
  border-bottom: 1px solid var(--line);
  box-shadow: none;
  background: #ffffff;
}

.product-card-image {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: contain;
}

.product-card {
  position: relative;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(22, 30, 36, 0.13);
}

.product-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid transparent;
  border-radius: inherit;
  pointer-events: none;
  transition: border-color 240ms ease;
}

.product-card:hover::after {
  border-color: rgba(20, 120, 184, 0.5);
}

.machine-render-small {
  width: 90%;
  height: 230px;
  margin: 16px auto 0;
  transform: scale(0.82);
}

.machine-render-wide {
  transform: scale(0.9);
}

.machine-render-xl {
  transform: scale(0.98);
}

.product-content {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
}

.product-content .text-link,
.product-content .button-row {
  margin-top: auto;
}

.spec-list {
  margin: 24px 0 0;
  display: grid;
  gap: 10px;
}

.spec-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.spec-list dt {
  color: var(--muted);
  font-size: 0.86rem;
}

.spec-list dd {
  margin: 0;
  color: var(--soft);
  font-weight: 800;
  text-align: right;
}

.comparison-panel {
  width: min(100%, var(--max));
  margin: 28px auto 0;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: var(--panel);
}

caption {
  padding: 18px 20px;
  color: var(--soft);
  text-align: left;
  font-weight: 800;
}

th,
td {
  padding: 16px 20px;
  border-top: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--blue-2);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

td {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.section-copy {
  max-width: 510px;
}

.tech-board {
  min-height: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.tech-diagram {
  position: relative;
  border: 0;
  border-block: 1px solid var(--line);
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(100, 187, 255, 0.12), transparent),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(196, 218, 239, 0.05) 39px 40px);
  overflow: hidden;
}

.tech-diagram span {
  position: absolute;
  left: 18%;
  right: 18%;
  height: 3px;
  background: var(--blue);
  opacity: 0.68;
  animation: techMove 4s ease-in-out infinite;
}

.tech-diagram span:nth-child(1) { top: 24%; }
.tech-diagram span:nth-child(2) { top: 42%; animation-delay: 0.3s; }
.tech-diagram span:nth-child(3) { top: 60%; animation-delay: 0.6s; }
.tech-diagram span:nth-child(4) { top: 78%; animation-delay: 0.9s; }

@keyframes techMove {
  0%, 100% { transform: translateX(-10%); }
  50% { transform: translateX(10%); }
}

.tech-list {
  display: grid;
  gap: 10px;
}

.tech-item {
  min-height: 54px;
  padding: 0 18px;
  color: var(--soft);
  text-align: left;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.tech-item.active,
.tech-item:hover {
  color: var(--blue-2);
  border-color: var(--line-strong);
  background: transparent;
}

.process-line {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
}

.process-step {
  padding: 30px;
  border-top: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent);
}

.process-step span {
  display: block;
  margin-bottom: 42px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.application-grid {
  grid-template-columns: repeat(3, 1fr);
}

#application-preview .application-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.application-card {
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 0 0 24px;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}

.application-card-media {
  aspect-ratio: 4 / 3;
  margin: 0 0 22px;
  overflow: hidden;
  background: #dfe3e6;
}

.application-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.application-card:hover .application-card-media img {
  transform: scale(1.025);
}

.application-card h3,
.detail-card h3 {
  color: var(--text);
}

.application-card h3,
.application-card p {
  padding-inline: 4px;
}

.application-card p { color: var(--muted); }
.detail-card p { color: #b9c2c9; }

.application-hero-media {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #dfe3e6;
}

.application-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.application-hero-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 5px;
  left: 18px;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

.application-outcome-grid {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.application-outcome-grid article {
  padding: 32px 32px 8px 0;
  border-right: 1px solid var(--line);
}

.application-outcome-grid article + article {
  padding-left: 32px;
}

.application-outcome-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.application-outcome-grid strong {
  display: block;
  margin-bottom: 28px;
  color: var(--blue-2);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
}

.application-outcome-grid h3 {
  margin-bottom: 10px;
}

.application-outcome-grid p {
  color: var(--muted);
}

.data-section {
  color: #f7f9fa;
  background: #171c21;
}

.data-section p,
.data-section small {
  color: #aeb8c0;
}

.metric-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.metric-card {
  padding-inline: 24px;
  border-top-color: rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.metric-card:first-child {
  border-left: 0;
}

.metric-card strong {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
}

.data-section .metric-card strong {
  color: #72c6ff;
}

.data-section .metric-card span {
  color: #f7f9fa;
}

.data-section .metric-card small {
  color: #b7c4cd;
}

.metric-card span {
  display: block;
  color: var(--soft);
  font-weight: 800;
}

.metric-card small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

.about-grid .mini-card:last-child {
  grid-column: 1 / -1;
}

.support-grid {
  grid-template-columns: repeat(3, 1fr);
}

.support-item {
  color: var(--soft);
  font-weight: 800;
}

.support-item strong {
  display: block;
  margin-bottom: 22px;
  color: var(--blue-2);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.support-item p {
  color: var(--muted);
  font-weight: 400;
}

.about-grid,
.support-grid {
  gap: 0 24px;
}

.center-action {
  margin-top: 34px;
  text-align: center;
}

.lead-section {
  background: #e8eef2;
}

.lead-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-size: 0.86rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  color: var(--text);
  background: #f8fafb;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--line-strong);
}

.checkbox {
  display: flex;
  grid-template-columns: none;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
}

.checkbox input {
  width: 18px;
  margin-top: 3px;
}

.form-success {
  margin: 0;
  color: var(--blue-2);
  font-weight: 800;
}

.site-footer {
  padding: 64px clamp(20px, 4vw, 56px) 26px;
  background: #050d16;
  border-top: 1px solid var(--line);
  color: #f7f9fa;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 28px;
}

.footer-grid h3 {
  color: #75b8e2;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid a {
  display: block;
  margin-bottom: 9px;
  color: #aeb8c0;
}

.footer-grid strong {
  color: #e9eef1;
}

.footer-address {
  max-width: 250px;
  color: #8f9aa2;
  font-size: 0.82rem;
  line-height: 1.55;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #9ba6ae;
  font-size: 0.86rem;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.page-hero {
  min-height: 48vh;
  display: grid;
  align-items: center;
  padding: 116px clamp(20px, 4vw, 56px) 46px;
  color: #f7f9fa;
  background:
    linear-gradient(135deg, rgba(18, 23, 28, 0.98), rgba(22, 31, 39, 0.96)),
    linear-gradient(90deg, rgba(20, 120, 184, 0.08), transparent 45%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero-grid {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1.08fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: center;
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(1.95rem, 3vw, 2.85rem);
  line-height: 1.08;
}

.editorial-hero-media,
.technology-story-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: #111820;
}

.editorial-hero-media {
  aspect-ratio: 16 / 10;
}

.editorial-hero-media img,
.technology-story-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.technology-story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(38px, 6vw, 88px);
  padding-inline: max(20px, calc((100vw - var(--max)) / 2));
}

.technology-story-reverse {
  grid-template-columns: minmax(360px, 1.1fr) minmax(0, 0.9fr);
}

.technology-story-copy {
  max-width: 560px;
}

.technology-story-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.section-dark .technology-story-copy > p:not(.eyebrow) {
  color: #b7c4cd;
}

.technology-story-media {
  aspect-ratio: 16 / 10;
}

.technology-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  margin: 30px 0 0;
}

.technology-facts div {
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.technology-facts dt {
  margin-bottom: 4px;
  color: var(--text);
  font-weight: 800;
}

.technology-facts dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.technology-principles {
  background: #f7f8f9;
}

.technology-value-grid {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}

.technology-value-grid article {
  min-height: 230px;
  padding: 28px 26px;
  border-right: 1px solid var(--line);
}

.technology-value-grid article:last-child {
  border-right: 0;
}

.technology-value-grid span {
  display: block;
  margin-bottom: 44px;
  color: var(--blue-2);
  font-size: 0.74rem;
  font-weight: 800;
}

.technology-value-grid p {
  color: var(--muted);
  font-size: 0.88rem;
}

.editorial-image-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 5vw, 58px);
  padding: clamp(44px, 5.4vw, 70px) max(20px, calc((100vw - var(--max)) / 2));
  color: #f7f9fa;
  background: #12171c;
}

.editorial-image-band img {
  display: block;
  width: min(100%, 620px);
  max-height: 390px;
  aspect-ratio: 16 / 10;
  justify-self: start;
  object-fit: cover;
  border-radius: 6px;
}

.editorial-image-band p:not(.eyebrow) {
  color: #b7c4cd;
}

.product-index-hero {
  min-height: 58vh;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px clamp(20px, 4vw, 56px) 42px;
  color: var(--text);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 247, 249, 0.96) 48%, rgba(229, 237, 244, 0.92) 100%),
    radial-gradient(circle at 83% 30%, rgba(20, 120, 184, 0.14), transparent 34%);
}

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

.product-index-hero::before {
  inset: 88px 0 auto auto;
  width: 46vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 120, 184, 0.42), transparent);
}

.product-index-hero::after {
  right: clamp(22px, 5vw, 86px);
  bottom: 32px;
  width: min(36vw, 440px);
  height: 28%;
  border-right: 1px solid rgba(20, 120, 184, 0.2);
  border-bottom: 1px solid rgba(20, 120, 184, 0.2);
}

.product-hero-grid {
  position: relative;
  z-index: 1;
  width: min(100%, 1280px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
}

.product-hero-copy {
  max-width: 560px;
}

.product-index-hero .eyebrow {
  color: var(--blue-2);
}

.product-index-hero h1 {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--text);
  font-size: clamp(2rem, 3.5vw, 3.15rem);
  line-height: 1.05;
}

.product-index-hero .hero-subtitle {
  max-width: 560px;
  color: #4a5660;
  font-size: clamp(0.98rem, 1.22vw, 1.08rem);
  font-weight: 500;
}

.product-index-hero .btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(23, 35, 46, 0.16);
}

.product-hero-stage {
  position: relative;
  min-width: 0;
  padding-top: 0;
}

.product-hero-stage::before {
  content: "";
  position: absolute;
  left: 9%;
  right: -5%;
  bottom: 58px;
  height: 20%;
  background: linear-gradient(90deg, rgba(20, 120, 184, 0.18), rgba(20, 120, 184, 0.02));
  filter: blur(28px);
}

.product-hero-stage img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 500px);
  margin-left: auto;
  height: auto;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 18px 26px rgba(17, 25, 33, 0.14));
}

html[dir="rtl"] .product-hero-stage img {
  margin-right: auto;
  margin-left: 0;
}

.product-detail-hero {
  min-height: 48vh;
}

.product-detail-hero .page-hero-grid {
  grid-template-columns: minmax(0, 760px);
  align-items: end;
}

.product-detail-hero .page-hero-grid > div {
  max-width: 720px;
}

.product-panorama {
  padding: 46px clamp(20px, 4vw, 56px) 56px;
  background: #ffffff;
}

.product-panorama-inner {
  width: min(100%, 1320px);
  margin-inline: auto;
}

.product-panorama-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 18px 32px;
  margin-bottom: 20px;
}

.product-panorama-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.product-panorama-heading h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.6vw, 2.45rem);
}

.product-panorama-heading span {
  color: var(--muted);
  font-family: Poppins, Montserrat, sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-panorama img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.product-hero-photo {
  overflow: hidden;
  border-radius: 6px;
}

.product-hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.product-nav {
  position: sticky;
  top: 70px;
  z-index: 20;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px clamp(20px, 4vw, 56px);
  background: rgba(7, 19, 33, 0.92);
  border-block: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.product-nav a {
  padding: 9px 13px;
  color: #b7c1c9;
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 800;
}

.product-nav a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.benefit-grid,
.detail-grid,
.related-grid,
.contact-grid {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: grid;
  gap: 18px;
}

.benefit-grid {
  grid-template-columns: repeat(4, 1fr);
}

.benefit-card {
  position: relative;
  overflow: hidden;
}

.benefit-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42%;
  height: 2px;
  background: var(--blue);
  transform: translateX(-110%);
  transition: transform 360ms ease;
}

.benefit-card:hover::after {
  transform: translateX(0);
}

.spec-highlights {
  width: min(100%, var(--max));
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}

.spec-highlights article {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.spec-highlights article:last-child {
  border-right: 0;
}

.spec-highlights strong,
.spec-highlights span {
  display: block;
}

.spec-highlights strong {
  margin-bottom: 7px;
  color: var(--blue-2);
  font-size: 1.8rem;
}

.spec-highlights span {
  color: var(--muted);
  font-size: 0.82rem;
}

tbody th {
  color: var(--text);
  font-size: 0.9rem;
  letter-spacing: 0;
  text-transform: none;
}

.detail-grid {
  grid-template-columns: repeat(3, 1fr);
}

.variant-gallery {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.variant-figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.variant-figure:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.variant-figure img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: contain;
  padding: 12px;
  background: #ffffff;
}

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

.application-design-list .mini-card:last-child {
  grid-column: auto;
}

.variant-figure figcaption {
  padding: 13px 16px;
  color: var(--soft);
  background: #ffffff;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 800;
}

.engineering-flow {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(30px, 6vw, 80px);
}

.flow-visual {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-block: 1px solid var(--line);
}

.flow-visual-hero {
  min-height: 260px;
  border-color: rgba(255, 255, 255, 0.18);
}

.flow-visual-hero .flow-wheel {
  background: #171c21;
}

.about-statement,
.support-summary {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: flex-start;
  padding: 24px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.18);
}

.about-statement img {
  width: 76px;
  height: 76px;
  margin-bottom: auto;
}

.about-statement strong,
.support-summary strong {
  color: #f7f9fa;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
}

.about-statement p,
.support-summary span {
  color: #aeb8c0;
}

.support-summary a {
  margin-top: 18px;
  color: #75b8e2;
  font-weight: 800;
}

.flow-foil {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--blue) 0 38px, rgba(20, 120, 184, 0.18) 38px 54px);
  background-size: 108px 100%;
  animation: foilFeed 2.2s linear infinite;
}

.flow-wheel {
  position: absolute;
  top: 50%;
  width: 62px;
  height: 62px;
  border: 3px solid #222a31;
  border-radius: 50%;
  background: #f4f6f7;
  box-shadow: inset 0 0 0 12px #dce3e7;
  transform: translate(-50%, -50%);
}

.flow-wheel::after {
  content: "";
  position: absolute;
  inset: 13px;
  border-top: 3px solid var(--blue);
  animation: rollerSpin 1.8s linear infinite;
}

.flow-wheel-a { left: 13%; }
.flow-wheel-b { left: 38%; }
.flow-wheel-c { left: 63%; }
.flow-wheel-d { left: 87%; }

.flow-sensor {
  position: absolute;
  left: 7%;
  top: 25%;
  width: 2px;
  height: 50%;
  background: var(--blue);
  box-shadow: 0 0 22px rgba(20, 120, 184, 0.7);
  animation: sensorSweep 3s ease-in-out infinite;
}

@keyframes foilFeed {
  to { background-position-x: 108px; }
}

@keyframes sensorSweep {
  0%, 100% { left: 7%; opacity: 0.3; }
  50% { left: 92%; opacity: 1; }
}

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

.benefit-card,
.detail-card,
.contact-card,
.map-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 24px;
}

.benefit-card,
.contact-card {
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: 24px 0;
}

.detail-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background:
    linear-gradient(180deg, transparent, rgba(5, 13, 22, 0.9)),
    repeating-linear-gradient(90deg, rgba(196, 218, 239, 0.08) 0 1px, transparent 1px 22px),
    #132131;
  color: #f7f9fa;
}

.viewer-panel {
  width: min(100%, var(--max));
  min-height: 440px;
  margin-inline: auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    radial-gradient(circle at 50% 42%, rgba(100, 187, 255, 0.18), transparent 36%),
    #0d1824;
  color: #f7f9fa;
}

.viewer-panel .machine-render {
  transform: scale(0.92);
}

.product-kicker {
  margin-bottom: 10px;
  color: var(--blue-2);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link {
  color: var(--blue-2);
  font-size: 0.84rem;
  font-weight: 800;
}

.product-family-visual {
  overflow: hidden;
  background: #ffffff;
  border-radius: 4px;
}

.product-family-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.format-guide {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  border-block: 1px solid var(--line);
}

.format-guide-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 34px 34px 34px 0;
  border-right: 1px solid var(--line);
}

html[dir="rtl"] .format-guide-note {
  padding: 34px 0 34px 34px;
  border-right: 0;
  border-left: 1px solid var(--line);
}

.format-guide-note strong {
  color: var(--text);
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  line-height: 1.12;
}

.format-guide-note span {
  color: var(--muted);
  font-size: 0.94rem;
}

.format-guide-list {
  display: grid;
}

.format-guide-list article {
  display: grid;
  grid-template-columns: minmax(190px, 0.76fr) minmax(180px, 0.72fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 24px 0 24px 34px;
  border-bottom: 1px solid var(--line);
}

.format-guide-list article:last-child {
  border-bottom: 0;
}

.format-guide-list span {
  color: var(--blue-2);
  font-family: Poppins, Montserrat, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.format-guide-list strong {
  color: var(--text);
  font-size: 1rem;
}

.format-guide-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.marketing-rail {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}

.marketing-rail a {
  min-height: 230px;
  padding: 34px;
  border-right: 1px solid var(--line);
}

.marketing-rail a:last-child {
  border-right: 0;
}

.marketing-rail h3 {
  margin: 36px 0 12px;
}

.marketing-rail p {
  color: var(--muted);
}

.marketing-rail span {
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 800;
}

.conversion-band {
  color: #f7f9fa;
  background: #171c21;
}

.conversion-band-inner {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.conversion-band-inner p {
  max-width: 660px;
  color: #aeb8c0;
}

.contact-grid {
  grid-template-columns: minmax(250px, 0.68fr) minmax(0, 1.32fr);
  align-items: start;
  gap: clamp(36px, 6vw, 86px);
}

.contact-stack {
  display: grid;
  gap: 0;
}

.contact-stack-intro {
  padding-bottom: 28px;
}

.contact-stack-intro h2 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
}

.contact-card {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.contact-card h3 {
  margin-bottom: 8px;
}

.contact-card a {
  color: var(--blue-2);
  font-weight: 800;
}

.contact-form-panel {
  display: grid;
  gap: 30px;
  padding: 0 clamp(28px, 4vw, 48px) clamp(28px, 4vw, 48px);
  border: 0;
  border-top: 0;
  border-radius: 0;
  background: #f4f7f9;
}

.contact-form-heading {
  max-width: 680px;
  margin-top: 0;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.contact-form-heading h2 {
  margin-bottom: 12px;
}

.contact-form-fields {
  display: grid;
  gap: 18px;
}

.contact-form-panel .form-wide {
  grid-column: 1 / -1;
}

.contact-form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-form-actions p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.map-embed {
  min-height: 390px;
  padding: 0;
  overflow: hidden;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
}

.branch-grid {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}

.branch-contact {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.branch-contact h3 {
  margin-bottom: 8px;
}

.branch-contact a {
  display: block;
  width: fit-content;
  margin-top: 7px;
  color: var(--blue-2);
  font-weight: 800;
}

.whatsapp-btn {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 0 14px;
  color: var(--text);
  border: 1px solid rgba(81, 214, 132, 0.34);
  border-radius: 6px;
  background: rgba(81, 214, 132, 0.08);
  font-size: 0.88rem;
  font-weight: 800;
}

.map-card {
  min-height: 310px;
  display: grid;
  place-items: center;
  color: #b8c2ca;
  background:
    linear-gradient(180deg, rgba(5, 13, 22, 0.58), rgba(5, 13, 22, 0.88)),
    repeating-linear-gradient(0deg, rgba(196, 218, 239, 0.08) 0 1px, transparent 1px 38px),
    repeating-linear-gradient(90deg, rgba(196, 218, 239, 0.08) 0 1px, transparent 1px 38px),
    #101d2b;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

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

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .nav,
  .header-actions {
    display: none;
  }

  .site-header.menu-active .nav,
  .site-header.menu-active .header-actions {
    display: flex;
  }

  .site-header.menu-active {
    grid-template-columns: auto auto;
  }

  .site-header.menu-active .nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 20px;
  }

  .site-header.menu-active .nav a {
    padding: 15px 0;
    color: #f7f9fa;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    opacity: 0.92;
  }

  .site-header.menu-active .nav-dropdown {
    display: grid;
  }

  .site-header.menu-active .nav-submenu {
    position: static;
    width: auto;
    padding: 0 0 10px 18px;
    color: #c8d4dc;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-header.menu-active .nav-submenu a {
    padding: 9px 0;
    border-top: 0;
    font-size: 0.84rem;
    opacity: 0.82;
  }

  .site-header.menu-active .header-actions {
    grid-column: 1 / -1;
    align-items: stretch;
    flex-direction: column;
  }

  .hero-grid,
  .hero-corporate-grid,
  .split-section,
  .lead-panel,
  .product-hero-grid,
  .page-hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .technology-story,
  .technology-story-reverse,
  .editorial-image-band {
    grid-template-columns: 1fr;
  }

  .technology-story-copy {
    max-width: 760px;
  }

  .technology-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .technology-value-grid article:nth-child(2) {
    border-right: 0;
  }

  .technology-value-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .product-index-hero {
    min-height: auto;
    padding-top: 112px;
  }

  .product-index-hero::after {
    width: 62vw;
    height: 26%;
  }

  .product-hero-copy {
    max-width: 760px;
  }

  .product-hero-stage img {
    margin-left: 0;
  }

  .hero-corporate-grid {
    align-items: start;
    gap: 34px;
  }

  .hero-brand-signature {
    justify-self: start;
    width: 100%;
    max-width: 300px;
    text-align: left;
  }

  .hero-brand-signature img {
    width: 130px;
    margin-inline: 0;
  }

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

  .format-guide {
    grid-template-columns: 1fr;
  }

  .format-guide-note {
    padding: 0 0 28px;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .format-guide-list article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 0;
  }

  .marketing-rail {
    grid-template-columns: 1fr;
  }

  .marketing-rail a {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .marketing-rail a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
  }

  .hero-copy {
    max-width: 820px;
  }

  .feature-grid,
  .product-grid,
  .configuration-grid,
  .metric-grid,
  .support-grid,
  .benefit-grid,
  .detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .machine-showcase {
    height: 150vh;
  }

  .machine-showcase-sticky {
    padding-top: 96px;
  }

  .machine-stage {
    gap: 12px;
  }
}

@media (max-width: 720px) {
  .section {
    padding-block: 58px;
  }

  .technology-facts,
  .technology-value-grid {
    grid-template-columns: 1fr;
  }

  .technology-value-grid article,
  .technology-value-grid article:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .technology-value-grid article:last-child {
    border-bottom: 0;
  }

  .technology-value-grid span {
    margin-bottom: 22px;
  }

  .editorial-hero-media,
  .technology-story-media {
    min-height: 280px;
  }

  .model-experience-copy {
    padding: 62px 20px 28px;
  }

  .model-stage {
    height: 60vh;
    min-height: 460px;
  }

  .model-status {
    top: 16px;
    right: 20px;
  }

  .model-corners {
    inset: 22px;
  }

  .model-spatial-mark {
    left: 20px;
    bottom: 24px;
    transform: scale(0.88);
    transform-origin: left bottom;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 58px;
  }

  .scroll-indicator {
    right: 20px;
    left: auto;
    bottom: 24px;
    transform: none;
  }

  .hero-corporate {
    min-height: auto;
  }

  .hero-corporate-grid {
    gap: 28px;
  }

  h1 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(1.6rem, 6.8vw, 2rem);
    line-height: 1.1;
  }

  .section-heading,
  .section-heading-row {
    text-align: left;
  }

  .section-heading-row,
  .footer-bottom {
    display: block;
  }

  .series-video-heading {
    display: block;
  }

  .series-video-heading > p {
    margin-top: 18px;
  }

  .series-video-layout {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .series-video {
    order: -1;
  }

  .series-video-notes,
  .series-video-notes-right {
    text-align: left;
  }

  .section-heading-row .btn {
    margin-top: 18px;
  }

  .feature-grid,
  .product-grid,
  .configuration-grid,
  .application-grid,
  .metric-grid,
  .support-grid,
  .process-line,
  .about-grid,
  .form-grid,
  .tech-board,
  .footer-grid,
  .benefit-grid,
  .detail-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  #application-preview .application-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-panel {
    padding: 0 20px 24px;
  }

  .contact-form-heading {
    margin-top: 0;
  }

  .contact-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-form-actions .btn {
    width: 100%;
  }

  .variant-gallery,
  .engineering-flow {
    grid-template-columns: 1fr;
  }

  .application-outcome-grid {
    grid-template-columns: 1fr;
  }

  .application-outcome-grid article,
  .application-outcome-grid article + article {
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .application-outcome-grid article:last-child {
    border-bottom: 0;
  }

  .application-hero-media,
  .application-hero-media img {
    min-height: 310px;
  }

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

  .spec-highlights article:nth-child(2) {
    border-right: 0;
  }

  .spec-highlights article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .product-showcase-layout {
    display: block;
  }

  .foil-motion-rail {
    min-height: 64px;
    margin-bottom: 18px;
    border-inline: 0;
    border-block: 1px solid var(--line);
  }

  .motion-label {
    left: 14px;
    top: 50%;
    writing-mode: horizontal-tb;
    transform: translateY(-50%);
  }

  .motion-line {
    left: 92px;
    right: 14px;
    top: 50%;
    bottom: auto;
    width: auto;
    height: 2px;
    transform: translateY(-50%);
  }

  .motion-roller {
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .motion-roller-one { left: 38%; }
  .motion-roller-two { left: 62%; }
  .motion-roller-three { left: 86%; }

  .motion-pulse {
    display: none;
  }

  .flow-visual {
    min-height: 220px;
  }

  .page-hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 36px;
  }

  .product-index-hero {
    padding-bottom: 34px;
  }

  .product-index-hero h1 {
    font-size: clamp(1.8rem, 8.4vw, 2.35rem);
    line-height: 1.07;
  }

  .product-hero-stage {
    padding-top: 8px;
  }

  .product-hero-stage::before {
    left: 0;
    right: 0;
    bottom: 118px;
  }

  .product-hero-stage img {
    width: 112%;
    max-width: none;
    margin-left: -6%;
  }

  .product-detail-hero {
    min-height: auto;
  }

  .product-panorama {
    padding: 32px 20px 38px;
  }

  .product-panorama-heading {
    grid-template-columns: 1fr;
    margin-bottom: 16px;
  }

  .product-panorama-heading span {
    display: none;
  }

  .product-nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .about-grid .mini-card:last-child {
    grid-column: auto;
  }

  .media-bay-large {
    min-height: 320px;
  }

  .hero-machine-crop {
    aspect-ratio: 1.08;
  }

  .machine-showcase {
    height: auto;
  }

  .machine-showcase-sticky {
    position: relative;
    min-height: 0;
    display: block;
    padding: 64px 20px;
  }

  .machine-showcase-heading {
    margin-bottom: 28px;
    text-align: left;
  }

  .machine-showcase-heading h2 {
    font-size: 1.85rem;
  }

  .machine-stage {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .machine-variant,
  .machine-variant-left,
  .machine-variant-center,
  .machine-variant-right {
    opacity: 1;
    transform: none;
  }

  .machine-variant-center {
    order: -1;
  }

  .showcase-progress {
    display: none;
  }

  .machine-render {
    width: 106%;
    height: 260px;
    transform: scale(0.8);
  }

  .machine-render-small,
  .machine-render-wide,
  .machine-render-xl {
    transform: scale(0.76);
  }

  .media-caption {
    flex-direction: column;
    gap: 4px;
  }

  .product-content,
  .feature-card,
  .mini-card,
  .support-item,
  .metric-card {
    padding: 22px;
  }

  .feature-card,
  .mini-card,
  .support-item,
  .metric-card {
    padding-inline: 0;
  }

  .metric-card {
    border-left: 0;
  }

  .button-row,
  .btn {
    width: 100%;
  }

  .lead-panel {
    padding: 24px;
  }

  .conversion-band-inner {
    align-items: stretch;
    flex-direction: column;
  }

}
