:root {
  --page: #f6fafc;
  --surface: #ffffff;
  --surface-2: #eef6fa;
  --ink: #122334;
  --soft: #607281;
  --line: rgba(20, 68, 92, .13);
  --blue: #0b8ee8;
  --cyan: #18c7e8;
  --green: #12b981;
  --navy: #0d3757;
  --yellow: #f6b73c;
  --shadow: 0 24px 60px rgba(19, 58, 82, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(24,199,232,.12), transparent 28%),
    linear-gradient(180deg, #fafeff 0%, var(--page) 48%, #ffffff 100%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p { color: var(--soft); line-height: 1.78; }
h1, h2, h3, p { margin-top: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(11, 142, 232, .12);
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 28px rgba(11, 55, 87, .06);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 280px; }
.brand-logo {
  display: grid;
  place-items: center;
  width: 86px;
  height: 48px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(11,142,232,.12);
  box-shadow: 0 10px 22px rgba(11,55,87,.08);
  overflow: hidden;
}
.brand-logo img {
  width: 78px;
  height: 38px;
  object-fit: contain;
}
.brand strong { display: block; font-size: 16px; color: var(--navy); }
.brand small { display: block; margin-top: 4px; color: var(--soft); font-size: 12px; }
.nav { display: flex; justify-content: flex-end; gap: 10px; color: #334b5b; font-size: 14px; white-space: nowrap; }
.nav a { position: relative; padding: 9px 13px; border-radius: 999px; transition: color .2s ease, background .2s ease, box-shadow .2s ease; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transition: right .2s ease;
}
.nav a:hover { color: var(--blue); background: rgba(11,142,232,.08); }
.nav a:hover::after { right: 0; }
.page-home .nav a[href="index.html"],
.page-products .nav a[href="products.html"],
.page-applications .nav a[href="applications.html"],
.page-technology .nav a[href="technology.html"],
.page-news .nav a[href="news.html"],
.page-contact .nav a[href="contact.html"] {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #125d84);
  box-shadow: 0 12px 24px rgba(13, 55, 87, .18);
}
.page-home .nav a[href="index.html"]::after,
.page-products .nav a[href="products.html"]::after,
.page-applications .nav a[href="applications.html"]::after,
.page-technology .nav a[href="technology.html"]::after,
.page-news .nav a[href="news.html"]::after,
.page-contact .nav a[href="contact.html"]::after {
  display: none;
}
.lang-toggle, .filters button {
  border: 1px solid rgba(11, 142, 232, .2);
  color: var(--navy);
  background: #fff;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(11, 55, 87, .06);
}
.lang-toggle { min-width: 52px; padding: 10px 12px; border-radius: 999px; font-weight: 800; }

.hero {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: center;
  padding: 92px clamp(20px, 5vw, 72px) 92px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -10% -10% auto;
  height: 580px;
  background:
    radial-gradient(circle at 15% 35%, rgba(24,199,232,.22), transparent 22rem),
    radial-gradient(circle at 78% 22%, rgba(18,185,129,.18), transparent 20rem),
    linear-gradient(120deg, rgba(255,255,255,.4), rgba(236,248,252,.6));
  clip-path: none;
  border-radius: 0 0 48% 48%;
}
.orbital {
  position: absolute;
  border: 1px solid rgba(11,142,232,.18);
  border-radius: 50%;
  pointer-events: none;
}
.orbital-one { width: 720px; height: 280px; right: -160px; top: 130px; transform: rotate(-18deg); }
.orbital-two { width: 520px; height: 190px; left: -140px; bottom: 110px; transform: rotate(16deg); }
.print-ribbon { display: none; }
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  width: min(1240px, 100%);
  margin: 0 auto;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1 {
  max-width: 780px;
  margin-bottom: 22px;
  color: #0b263a;
  font-size: clamp(44px, 6.2vw, 78px);
  line-height: 1.04;
  letter-spacing: 0;
}
h2 { color: #0d2d44; font-size: clamp(30px, 4vw, 50px); line-height: 1.12; margin-bottom: 14px; }
h3 { color: #14364e; font-size: 20px; margin-bottom: 8px; }
.lead { max-width: 760px; font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(11,142,232,.18);
  font-weight: 900;
}
.btn.primary {
  color: #fff;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border: 0;
  box-shadow: 0 16px 34px rgba(11, 142, 232, .24);
}
.btn.secondary { color: var(--navy); background: #fff; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.hero-tags span, .compatibility span {
  padding: 9px 13px;
  border: 1px solid rgba(11,142,232,.16);
  border-radius: 999px;
  color: #1f5a78;
  background: rgba(255,255,255,.78);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(18, 68, 92, .06);
}

.hero-stage {
  position: relative;
  min-height: 590px;
  padding: 34px;
  border: 1px solid rgba(11,142,232,.12);
  border-radius: 38px;
  background:
    radial-gradient(circle at 35% 22%, rgba(24,199,232,.18), transparent 16rem),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(238,248,251,.96));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.machine-showcase {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  gap: 18px;
  height: 380px;
  align-items: stretch;
}
.machine-panel {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  min-width: 0;
  border: 1px solid rgba(11,142,232,.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 78% 16%, rgba(24,199,232,.16), transparent 9rem),
    linear-gradient(145deg, #fff, #eef8fb);
  box-shadow: 0 22px 52px rgba(20, 80, 110, .13);
  overflow: hidden;
}
.machine-panel::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 84px;
  height: 16px;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(24, 69, 92, .18), transparent 72%);
}
.machine-panel img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 28px 22px 10px;
}
.machine-panel div {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0 18px 18px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(11,142,232,.12);
}
.machine-panel b { color: var(--blue); }
.machine-panel span { color: #46606e; font-size: 13px; text-align: right; }
.machine-primary { min-height: 380px; }
.machine-secondary { min-height: 330px; margin-top: 34px; }
.stage-arc {
  position: absolute;
  width: 620px;
  height: 620px;
  right: -170px;
  top: -160px;
  border: 52px solid rgba(11,142,232,.08);
  border-radius: 50%;
}
.stage-shadow {
  position: absolute;
  left: 12%;
  right: 8%;
  bottom: 118px;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(37,75,98,.18), transparent 68%);
}
.stage-glow {
  position: absolute;
  inset: 12% 10% 18%;
  border: 1px dashed rgba(11,142,232,.22);
  border-radius: 42% 58% 48% 52%;
  transform: rotate(-7deg);
}
.device-card {
  position: absolute;
  border-radius: 24px;
  border: 1px solid rgba(11,142,232,.12);
  background: rgba(255,255,255,.78);
  box-shadow: 0 22px 50px rgba(20, 80, 110, .16);
  overflow: hidden;
}
.device-card img { width: 100%; height: 100%; object-fit: contain; padding: 18px; background: linear-gradient(135deg, #fff, #edf7fb); }
.device-card div {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(11,142,232,.12);
  box-shadow: 0 10px 22px rgba(20,80,110,.08);
}
.device-card b { color: var(--blue); }
.device-card span { color: #46606e; font-size: 13px; text-align: right; }
.device-main { left: 10%; right: 7%; top: 70px; height: 315px; transform: none; }
.device-side { left: 6%; width: 260px; bottom: 62px; height: 172px; transform: none; }
.stage-panel {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 30px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.stage-panel div {
  padding: 14px;
  border: 1px solid rgba(11,142,232,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 14px 30px rgba(20,80,110,.08);
}
.stage-panel strong { display: block; color: var(--blue); margin-bottom: 5px; }
.stage-panel span { color: var(--soft); font-size: 13px; }
.beam { display: none; }
.beam-a { left: -10%; right: -10%; top: 42%; animation: beam 3.8s linear infinite; }
.beam-b { left: -10%; right: -10%; top: 58%; animation: beam 5s linear infinite; }
.ink-stream {
  position: absolute;
  left: 34%;
  top: 62%;
  display: flex;
  gap: 7px;
  transform: rotate(-12deg);
}
.ink-stream span { width: 10px; height: 10px; border-radius: 50%; box-shadow: 0 0 18px currentColor; }
.ink-stream span:nth-child(1) { color: #18c7e8; background: #18c7e8; }
.ink-stream span:nth-child(2) { color: #e94bd8; background: #e94bd8; }
.ink-stream span:nth-child(3) { color: #f6b73c; background: #f6b73c; }
.ink-stream span:nth-child(4) { color: #12b981; background: #12b981; }
.ink-stream span:nth-child(5) { color: #0b8ee8; background: #0b8ee8; }
@keyframes beam { 0% { transform: translateX(-40%); } 100% { transform: translateX(40%); } }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(1180px, calc(100% - 40px));
  margin: -38px auto 0;
  border-radius: 26px;
  background: rgba(255,255,255,.74);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.stats article { padding: 28px; background: rgba(255,255,255,.8); border-right: 1px solid var(--line); }
.stats article:last-child { border-right: 0; }
.stats strong { display: block; color: var(--blue); font-size: 36px; margin-bottom: 8px; }
.stats span { color: var(--soft); }

.section { position: relative; width: min(1240px, calc(100% - 40px)); margin: 0 auto; padding: 104px 0; }
.section-head { max-width: 820px; margin-bottom: 34px; }
.split-head { display: grid; grid-template-columns: 1fr minmax(280px, 430px); gap: 40px; align-items: end; max-width: none; }
.page-hero {
  padding-top: 84px;
  padding-bottom: 42px;
}
.page-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
}
.home-feature {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: center;
}
.sample-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.sample-strip span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  color: #1f5a78;
  border: 1px solid rgba(11,142,232,.14);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(18,68,92,.06);
}
.print-samples {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  min-height: 370px;
}
.print-samples article {
  position: relative;
  min-height: 176px;
  padding: 22px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(11,142,232,.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.print-samples article:first-child { grid-row: span 2; }
.print-samples b { color: var(--blue); }
.print-samples strong {
  position: absolute;
  left: 22px;
  bottom: 20px;
  color: #14364e;
}
.sample-bars {
  position: absolute;
  inset: 66px 24px 62px;
  border-radius: 24px;
  background:
    linear-gradient(90deg, #18c7e8 0 18%, #e94bd8 18% 38%, #f6b73c 38% 58%, #12b981 58% 78%, #0b8ee8 78%),
    #f6fbfd;
  box-shadow: 0 18px 36px rgba(24,199,232,.18);
}
.sample-qr {
  position: absolute;
  right: 28px;
  top: 42px;
  width: 92px;
  height: 92px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, #15364d 8px, transparent 8px) 0 0 / 18px 18px,
    linear-gradient(#15364d 8px, transparent 8px) 0 0 / 18px 18px,
    #eef8fb;
}
.sample-qr-img {
  position: absolute;
  right: 26px;
  top: 36px;
  width: 104px;
  height: 104px;
  padding: 8px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(11,142,232,.12);
  box-shadow: 0 14px 28px rgba(17,74,104,.1);
}
.sample-wave {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 72px;
  height: 42px;
  background:
    radial-gradient(50% 100% at 50% 100%, transparent 54%, #18c7e8 56%, transparent 59%) 0 0 / 54px 42px repeat-x;
}
.sample-carton {
  position: absolute;
  left: 34px;
  right: 28px;
  top: 48px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(11,142,232,.08), transparent 38%),
    linear-gradient(180deg, #ffffff, #eef6fa);
  border: 1px solid rgba(11,142,232,.14);
  box-shadow: 0 16px 28px rgba(20,80,110,.12);
  transform: none;
  overflow: hidden;
}
.sample-carton::before {
  content: "";
  position: absolute;
  inset: 12px 14px auto;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #18c7e8, #e94bd8, #f6b73c, #12b981);
}
.sample-carton::after {
  display: none;
}
.sample-carton img {
  position: relative;
  z-index: 1;
  width: 82%;
  max-height: 56px;
  object-fit: contain;
  padding: 8px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(20, 80, 110, .12);
}
.home-split {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 58px;
  align-items: center;
}
.home-split.reverse { grid-template-columns: .92fr 1.08fr; }
.split-copy {
  max-width: 560px;
}
.application-effect {
  align-items: stretch;
}
.effect-showcase {
  position: relative;
  min-height: 420px;
  padding: 30px;
  border: 1px solid rgba(11,142,232,.12);
  border-radius: 36px;
  background:
    radial-gradient(circle at 86% 12%, rgba(246,183,60,.18), transparent 12rem),
    linear-gradient(145deg, #ffffff, #eef8fb);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.effect-showcase::before {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: conic-gradient(from 140deg, rgba(11,142,232,.16), rgba(233,75,216,.16), rgba(246,183,60,.16), rgba(18,185,129,.16), transparent 72%);
}
.effect-title {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 22px;
}
.effect-title span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.effect-title strong {
  color: #0d2d44;
  font-size: 30px;
}
.effect-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  grid-template-rows: 168px 168px;
  gap: 16px;
}
.effect-grid article {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  border: 1px solid rgba(11,142,232,.12);
  border-radius: 24px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 16px 34px rgba(20, 80, 110, .08);
  overflow: hidden;
}
.effect-grid article:first-child {
  grid-row: span 2;
}
.effect-grid article > img {
  width: 78%;
  max-height: 120px;
  object-fit: contain;
  padding: 10px;
  border-radius: 14px;
  background: #fff;
}
.effect-grid span {
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: #14364e;
  font-weight: 900;
}
.effect-carton {
  width: 78%;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, #eef6fa);
  border: 1px solid rgba(11,142,232,.14);
}
.effect-carton img {
  width: 82%;
  max-height: 48px;
  object-fit: contain;
}
.effect-code {
  width: 92px;
  height: 92px;
  border-radius: 18px;
  background: url("assets/qr-dengshilang.svg") center / 76px 76px no-repeat, #fff;
  border: 1px solid rgba(11,142,232,.12);
  box-shadow: 0 12px 24px rgba(20,80,110,.1);
}
.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue);
  font-weight: 900;
}
.split-visual {
  position: relative;
  min-height: 430px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 70% 20%, rgba(24,199,232,.16), transparent 14rem),
    linear-gradient(145deg, #fff, #eef8fb);
  border: 1px solid rgba(11,142,232,.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.split-visual img {
  position: absolute;
  width: 78%;
  height: 70%;
  object-fit: contain;
  left: 11%;
  top: 12%;
  filter: drop-shadow(0 24px 34px rgba(17,74,104,.12));
}
.color-fan {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 54px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  transform: skewX(-12deg);
}
.color-fan span { height: 12px; border-radius: 999px; }
.color-fan span:nth-child(1) { background: #18c7e8; }
.color-fan span:nth-child(2) { background: #e94bd8; }
.color-fan span:nth-child(3) { background: #f6b73c; }
.color-fan span:nth-child(4) { background: #12b981; }
.application-visual {
  background:
    radial-gradient(circle at 25% 26%, rgba(246,183,60,.18), transparent 12rem),
    linear-gradient(145deg, #fff, #edf8fb);
}
.package-card {
  position: absolute;
  left: 14%;
  top: 18%;
  width: 58%;
  height: 42%;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(11,142,232,.12);
  box-shadow: 0 22px 46px rgba(17,74,104,.12);
  transform: rotate(-5deg);
}
.package-card.small {
  left: 45%;
  top: 47%;
  width: 38%;
  height: 28%;
  transform: rotate(7deg);
}
.package-card span {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 34px;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, #18c7e8, #e94bd8, #f6b73c, #12b981);
}
.package-card b {
  position: absolute;
  left: 24px;
  bottom: 26px;
  color: #14364e;
}
.spray-path {
  position: absolute;
  left: 4%;
  right: 6%;
  bottom: 72px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #18c7e8, #e94bd8, #f6b73c, transparent);
  transform: rotate(-10deg);
}
.tech-visual {
  background:
    radial-gradient(circle at 62% 22%, rgba(18,185,129,.16), transparent 12rem),
    linear-gradient(145deg, #fff, #eef8fb);
}
.nozzle {
  position: absolute;
  left: 16%;
  top: 16%;
  width: 220px;
  height: 96px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--navy), #1b83c4);
  box-shadow: 0 22px 44px rgba(11,55,87,.2);
}
.nozzle::after {
  content: "";
  position: absolute;
  left: 44%;
  bottom: -44px;
  width: 34px;
  height: 44px;
  border-radius: 0 0 14px 14px;
  background: #126da7;
}
.belt {
  position: absolute;
  left: 9%;
  right: 9%;
  bottom: 72px;
  height: 62px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, #d9e8ef 0 34px, #eef7fb 34px 68px);
}
.belt span {
  position: relative;
  top: 14px;
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-left: 42px;
  border-radius: 10px;
  background: #fff;
  border: 2px solid rgba(11,142,232,.18);
}
.dot-line {
  position: absolute;
  left: 30%;
  top: 48%;
  width: 260px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #18c7e8 0 20%, #e94bd8 20% 40%, #f6b73c 40% 60%, #12b981 60% 80%, #0b8ee8 80%);
  box-shadow: 0 0 22px rgba(24,199,232,.45);
}
.home-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 52px;
  margin-bottom: 80px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 12% 20%, rgba(24,199,232,.2), transparent 14rem),
    linear-gradient(135deg, #0d3757, #0b8ee8);
  box-shadow: 0 30px 70px rgba(11,55,87,.22);
}
.home-cta h2, .home-cta .eyebrow { color: #fff; }
.news-section {
  padding-top: 70px;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.news-list {
  display: grid;
  gap: 18px;
  max-width: 980px;
}
.news-list article {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  padding: 26px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(11,142,232,.12);
  box-shadow: 0 18px 42px rgba(17,74,104,.08);
}
.news-list time {
  color: var(--blue);
  font-weight: 900;
}
.news-list h3 {
  margin-bottom: 8px;
}
.news-list p {
  margin-bottom: 12px;
}
.news-list span {
  display: inline-flex;
  color: #1f5a78;
  font-size: 13px;
  font-weight: 800;
}
.news-grid article {
  padding: 26px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(11,142,232,.12);
  box-shadow: var(--shadow);
}
.news-grid time {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--blue);
  font-weight: 900;
}
.news-grid h3 {
  min-height: 52px;
}
.news-grid span {
  display: block;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(11,142,232,.12);
  color: #1f5a78;
  font-size: 13px;
  font-weight: 800;
}
.line-demo {
  padding-top: 72px;
}
.production-animation {
  position: relative;
  min-height: 430px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 18% 18%, rgba(24,199,232,.18), transparent 16rem),
    radial-gradient(circle at 80% 22%, rgba(18,185,129,.14), transparent 14rem),
    linear-gradient(145deg, #fff, #eef8fb);
  border: 1px solid rgba(11,142,232,.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.production-animation::before {
  content: "";
  position: absolute;
  inset: 38px 48px auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(11,142,232,.24), transparent);
}
.station {
  position: absolute;
  top: 70px;
  width: 150px;
  min-height: 92px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(11,142,232,.14);
  box-shadow: 0 18px 42px rgba(17,74,104,.1);
  text-align: center;
  z-index: 3;
}
.station b { display: block; color: var(--blue); margin-bottom: 6px; }
.station span { color: #46606e; font-size: 13px; font-weight: 800; }
.station-corona { left: 15%; }
.station-print { left: 43%; }
.station-uv { right: 12%; }
.station::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -88px;
  width: 54px;
  height: 88px;
  transform: translateX(-50%);
  border-radius: 0 0 8px 8px;
  background: linear-gradient(180deg, #1b83c4, #0d3757);
  clip-path: polygon(18% 0, 82% 0, 100% 100%, 0 100%);
}
.station-corona::after {
  background: linear-gradient(180deg, #7c8cff, #0b8ee8);
}
.station-print {
  border-radius: 12px;
}
.station-print::after {
  width: 118px;
  height: 44px;
  bottom: -44px;
  border-radius: 8px;
  background: linear-gradient(180deg, #1b83c4, #0d3757);
  clip-path: none;
}
.station-uv::after {
  background: linear-gradient(180deg, #f6b73c, #ff8a00);
}
.conveyor {
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 96px;
  height: 78px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, #cfdfe7 0 34px, #e9f3f7 34px 68px);
  box-shadow: inset 0 0 0 1px rgba(11,142,232,.12), 0 24px 46px rgba(17,74,104,.11);
  overflow: hidden;
}
.conveyor::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 44px, rgba(11,142,232,.12) 44px 48px);
  animation: beltMove 1.2s linear infinite;
}
.conveyor span {
  position: relative;
  top: 22px;
  z-index: 1;
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-left: 52px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(11,142,232,.16);
}
.box-flow {
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 160px;
  height: 120px;
  pointer-events: none;
}
.moving-box {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 116px;
  height: 76px;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff, #f3f7fa);
  border: 2px solid rgba(80,112,130,.16);
  box-shadow: 0 18px 30px rgba(70,105,125,.14);
  animation: boxTravel 7.2s linear infinite;
  overflow: hidden;
}
.moving-box::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 13px;
  height: 14px;
  border-radius: 999px;
  background: rgba(70,105,125,.12);
}
.moving-box img,
.moving-box strong {
  position: absolute;
  opacity: 0;
}
.moving-box img {
  left: 11px;
  right: 11px;
  bottom: 14px;
  width: calc(100% - 22px);
  height: 28px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
  animation: printedImage 7.2s linear infinite;
}
.moving-box strong {
  inset: 0;
  background: rgba(255,255,255,.34);
  animation: curedSurface 7.2s linear infinite;
}
.corona-glow {
  position: absolute;
  left: 17%;
  bottom: 150px;
  width: 120px;
  height: 38px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 20% 70%, #6f7cff 0 4px, transparent 5px),
    radial-gradient(circle at 48% 50%, #18c7e8 0 3px, transparent 4px),
    radial-gradient(circle at 70% 75%, #f6b73c 0 4px, transparent 5px),
    radial-gradient(ellipse, rgba(88,112,255,.35), transparent 72%);
  animation: sparkUnderBox 7.2s linear infinite;
}
.print-jet {
  position: absolute;
  left: 46%;
  bottom: 226px;
  display: flex;
  gap: 8px;
}
.print-jet span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0;
  animation: colorRain 7.2s linear infinite;
}
.print-jet span:nth-child(1) { background: #18c7e8; }
.print-jet span:nth-child(2) { background: #e94bd8; animation-delay: .08s; }
.print-jet span:nth-child(3) { background: #f6b73c; animation-delay: .16s; }
.print-jet span:nth-child(4) { background: #12b981; animation-delay: .24s; }
.uv-light {
  position: absolute;
  right: 13%;
  bottom: 190px;
  width: 150px;
  height: 112px;
  background: linear-gradient(180deg, rgba(246,183,60,.36), transparent);
  clip-path: polygon(35% 0, 65% 0, 100% 100%, 0 100%);
  animation: uvFlash 1.4s ease-in-out infinite;
}
.uv-light::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  bottom: -18px;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,226,120,.95), transparent 70%);
  animation: uvBottomFlash 7.2s linear infinite;
}
@keyframes beltMove {
  from { transform: translateX(0); }
  to { transform: translateX(-68px); }
}
@keyframes boxTravel {
  0% { transform: translateX(-130px); }
  18% { transform: translateX(15vw); }
  44% { transform: translateX(43vw); }
  72% { transform: translateX(68vw); }
  100% { transform: translateX(calc(88vw)); }
}
@keyframes printedImage {
  0%, 36% { opacity: 0; }
  40%, 100% { opacity: 1; }
}
@keyframes curedSurface {
  0%, 68% { opacity: 0; }
  76%, 100% { opacity: .45; }
}
@keyframes pulseCorona {
  0%, 100% { opacity: .35; transform: scale(.9); }
  50% { opacity: .9; transform: scale(1.08); }
}
@keyframes sparkUnderBox {
  0%, 12%, 27%, 100% { opacity: 0; transform: scale(.7); }
  17%, 24% { opacity: 1; transform: scale(1.1); }
}
@keyframes colorRain {
  0%, 38%, 56%, 100% { opacity: 0; transform: translateY(-34px) scale(.6); }
  43% { opacity: .95; transform: translateY(0) scale(1); }
  51% { opacity: .95; transform: translateY(58px) scale(1); }
}
@keyframes uvBottomFlash {
  0%, 68%, 79%, 100% { opacity: 0; transform: scale(.7); }
  72%, 76% { opacity: 1; transform: scale(1.2); }
}
@keyframes uvFlash {
  0%, 100% { opacity: .35; }
  50% { opacity: .9; }
}
.module-switcher {
  width: min(1280px, calc(100% - 32px));
  padding-top: 74px;
}
.module-tabs {
  position: sticky;
  top: 84px;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 0 auto 24px;
  padding: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(11,142,232,.12);
  box-shadow: 0 18px 42px rgba(17,74,104,.1);
  backdrop-filter: blur(14px);
}
.module-tabs button {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: #1f5a78;
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}
.module-tabs button.active {
  color: #fff;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 10px 26px rgba(11,142,232,.22);
}
.module-block {
  width: 100%;
  margin-top: 0;
  margin-bottom: 42px;
  padding: clamp(42px, 5vw, 72px);
  border-radius: 42px;
  border: 1px solid rgba(11,142,232,.12);
  background: rgba(255,255,255,.82);
  box-shadow: 0 26px 70px rgba(17,74,104,.1);
  overflow: hidden;
}
.module-block[hidden] { display: none; }
.module-products {
  background:
    radial-gradient(circle at 92% 4%, rgba(24,199,232,.17), transparent 18rem),
    #fff;
}
.module-applications {
  background:
    radial-gradient(circle at 6% 10%, rgba(246,183,60,.16), transparent 16rem),
    linear-gradient(135deg, #f6fbfd, #fff);
}
.module-technology {
  background:
    radial-gradient(circle at 80% 12%, rgba(18,185,129,.14), transparent 16rem),
    #fff;
}
.module-contact {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
}
.section-wave {
  position: absolute;
  top: 44px;
  right: 0;
  width: 300px;
  height: 72px;
  opacity: .8;
  background:
    radial-gradient(50% 100% at 50% 100%, transparent 54%, rgba(11,142,232,.18) 56%, transparent 58%) 0 0 / 70px 70px repeat-x;
}
.filters { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }
.filters button { padding: 12px 17px; border-radius: 999px; font-weight: 900; }
.filters button.active { color: #fff; background: linear-gradient(90deg, var(--blue), var(--cyan)); border-color: transparent; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.product-card {
  position: relative;
  min-height: 468px;
  border: 1px solid rgba(11,142,232,.12);
  border-radius: 30px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(17, 74, 104, .09);
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 28px 64px rgba(17, 74, 104, .15); }
.product-hit {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 20px;
  background:
    radial-gradient(circle at 70% 25%, rgba(24,199,232,.22), transparent 9rem),
    linear-gradient(145deg, #f7fcff, #eaf5f9);
}
.product-card div { position: relative; z-index: 2; padding: 20px; pointer-events: none; }
.product-card span { color: var(--blue); font-weight: 900; }
.product-card p { margin-bottom: 0; color: var(--soft); }
.product-card ul { margin: 16px 0 18px; padding-left: 18px; color: #465f70; line-height: 1.7; }
.product-card div a { display: inline-flex; color: var(--blue); font-weight: 900; pointer-events: auto; }
.product-card.featured { box-shadow: 0 24px 60px rgba(18,185,129,.16); }
.product-card[hidden] { display: none; }

.detail-hero {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
}
.detail-media {
  min-height: 420px;
  display: grid;
  place-items: center;
  border-radius: 36px;
  border: 1px solid rgba(11,142,232,.12);
  background:
    radial-gradient(circle at 78% 18%, rgba(24,199,232,.16), transparent 12rem),
    linear-gradient(145deg, #fff, #eef8fb);
  box-shadow: var(--shadow);
}
.detail-media img {
  width: 88%;
  max-height: 360px;
  object-fit: contain;
}
.detail-copy h1 {
  font-size: clamp(38px, 5vw, 64px);
}
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.detail-grid article {
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(11,142,232,.12);
  box-shadow: 0 18px 42px rgba(17,74,104,.08);
}
.detail-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-weight: 900;
}
.detail-grid strong {
  color: var(--blue);
  font-size: 34px;
}
.detail-grid ul {
  margin: 0;
  padding-left: 18px;
  color: #465f70;
  line-height: 1.75;
}
.spec-section {
  padding-top: 10px;
}
.spec-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.spec-table div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(11,142,232,.12);
  box-shadow: 0 12px 28px rgba(17,74,104,.06);
}
.spec-table span {
  color: var(--blue);
  font-weight: 900;
}
.spec-table strong {
  color: #365365;
  font-size: 14px;
  line-height: 1.6;
}

.article-page {
  max-width: 900px;
  padding-top: 92px;
  padding-bottom: 92px;
}
.article-page h1 {
  max-width: 820px;
  margin-bottom: 18px;
}
.article-page .lead {
  max-width: 820px;
  color: #3f5668;
  font-size: 20px;
  line-height: 1.75;
}
.article-page > p:not(.eyebrow):not(.lead) {
  max-width: 820px;
  color: #334b5b;
  font-size: 17px;
  line-height: 1.9;
}
.article-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 26px 0;
  color: #5d7180;
  font-weight: 800;
}
.article-meta time,
.article-meta span {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(11,142,232,.08);
}

.applications {
  width: 100%;
  padding-left: max(20px, calc((100% - 1240px) / 2));
  padding-right: max(20px, calc((100% - 1240px) / 2));
  background:
    linear-gradient(120deg, rgba(11,142,232,.07), transparent 44%),
    #f0f8fb;
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}
.application-grid, .tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.application-grid article, .tech-grid article {
  position: relative;
  min-height: 250px;
  padding: 30px;
  border: 1px solid rgba(11,142,232,.12);
  border-radius: 30px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 20px 48px rgba(17, 74, 104, .08);
  overflow: hidden;
}
.application-grid article i {
  position: absolute;
  right: -36px;
  top: -36px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: conic-gradient(from 120deg, rgba(11,142,232,.18), rgba(18,185,129,.18), transparent 65%);
}
.application-grid span, .tech-grid b { color: var(--green); font-weight: 900; }

.tech-band {
  width: 100%;
  padding-left: max(20px, calc((100% - 1240px) / 2));
  padding-right: max(20px, calc((100% - 1240px) / 2));
  background: #fff;
}
.tech-grid { grid-template-columns: repeat(3, 1fr); }
.compatibility { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.render-lab {
  position: relative;
  min-height: 220px;
  margin-top: 30px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(11,142,232,.11), rgba(18,185,129,.08)),
    #f7fcff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.lab-head {
  position: absolute;
  left: 11%;
  top: 38px;
  width: 210px;
  height: 92px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--navy), #1b83c4);
  box-shadow: 0 18px 36px rgba(11,55,87,.22);
}
.lab-head::after {
  content: "";
  position: absolute;
  left: 46%;
  bottom: -42px;
  width: 28px;
  height: 42px;
  border-radius: 0 0 12px 12px;
  background: #126da7;
}
.lab-belt {
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 42px;
  height: 58px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, #d9e8ef 0 34px, #eef7fb 34px 68px);
  box-shadow: inset 0 0 0 1px rgba(11,142,232,.12);
}
.lab-belt span {
  position: relative;
  top: 12px;
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-left: 38px;
  border-radius: 10px;
  background: #fff;
  border: 2px solid rgba(11,142,232,.18);
}
.lab-dots {
  position: absolute;
  left: 33%;
  top: 112px;
  width: 280px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #18c7e8 0 20%, #e94bd8 20% 40%, #f6b73c 40% 60%, #12b981 60% 80%, #0b8ee8 80%);
  box-shadow: 0 0 22px rgba(24,199,232,.45);
}
.lab-code {
  position: absolute;
  right: 8%;
  top: 54px;
  color: #1d5a78;
  font-weight: 900;
}

.table-wrap { overflow-x: auto; border-radius: 28px; border: 1px solid rgba(11,142,232,.12); box-shadow: var(--shadow); }
table { width: 100%; min-width: 880px; border-collapse: collapse; background: #fff; }
th, td { padding: 18px; border-bottom: 1px solid var(--line); text-align: left; }
th { color: var(--blue); background: #edf8fc; font-size: 13px; }
td { color: #365365; }
tr:last-child td { border-bottom: 0; }

.about { display: grid; grid-template-columns: .75fr 1.25fr; gap: 60px; align-items: start; }
.about-copy {
  padding: 32px;
  border-left: 4px solid var(--cyan);
  border-radius: 0 30px 30px 0;
  background: #fff;
  box-shadow: var(--shadow);
}
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 28px; }
.process div { padding: 16px; border-radius: 20px; border: 1px solid rgba(11,142,232,.12); background: #f4fbfe; }
.process b { display: block; color: var(--blue); margin-bottom: 8px; }
.process span { color: #24465a; font-weight: 800; }

.contact { padding-top: 50px; }
.contact-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 38px;
  padding: clamp(30px, 5vw, 58px);
  border-radius: 38px;
  background:
    radial-gradient(circle at 12% 20%, rgba(24,199,232,.2), transparent 14rem),
    linear-gradient(135deg, #0d3757, #0b8ee8);
  box-shadow: 0 30px 70px rgba(11, 55, 87, .22);
  overflow: hidden;
}
.contact-card h2, .contact-card .eyebrow { color: #fff; }
.contact-card p { color: rgba(255,255,255,.78); }
.contact dl { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 0; }
.contact dl div { padding: 18px; border-radius: 22px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.12); }
.contact dt { color: rgba(255,255,255,.72); margin-bottom: 8px; }
.contact dd { margin: 0; color: #fff; font-size: 18px; font-weight: 900; }

footer {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  padding: 30px 20px;
  color: #5d7180;
  border-top: 1px solid rgba(11,142,232,.12);
  background: #f8fbfd;
  font-size: 14px;
}

@media (max-width: 1060px) {
  .site-header { grid-template-columns: 1fr auto; }
  .nav { grid-column: 1 / -1; justify-content: flex-start; overflow-x: auto; }
  .hero { min-height: auto; }
  .hero-grid, .split-head, .about, .contact-card { grid-template-columns: 1fr; }
  .product-grid, .application-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid, .stats, .contact dl { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .site-header {
    gap: 14px;
    padding-left: 18px;
    padding-right: 18px;
  }
  .brand {
    min-width: 0;
  }
  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }
  .machine-showcase {
    grid-template-columns: 1fr 1fr;
  }
  .home-feature,
  .home-split,
  .home-split.reverse,
  .application-effect {
    grid-template-columns: 1fr;
  }
  .product-grid,
  .application-grid,
  .tech-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .detail-hero {
    grid-template-columns: 1fr;
  }
  .production-animation {
    overflow: hidden;
  }
}

@media (max-width: 680px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }
  body {
    background:
      linear-gradient(145deg, rgba(24,199,232,.12), transparent 34%),
      linear-gradient(180deg, #fafeff 0%, #f5fafc 55%, #fff 100%);
  }
  .site-header {
    position: sticky;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 10px 14px 12px;
  }
  .brand { min-width: 0; }
  .brand-logo {
    width: 68px;
    height: 42px;
    border-radius: 12px;
  }
  .brand-logo img {
    width: 62px;
    height: 30px;
  }
  .brand strong {
    max-width: 210px;
    font-size: 13px;
    line-height: 1.25;
  }
  .brand small {
    font-size: 10px;
  }
  .lang-toggle {
    min-width: 48px;
    padding: 9px 11px;
  }
  .nav {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 0 4px;
    scrollbar-width: none;
  }
  .nav::-webkit-scrollbar {
    display: none;
  }
  .nav a {
    flex: 0 0 auto;
    padding: 8px 11px;
    font-size: 13px;
  }
  section,
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero {
    min-height: auto;
    padding: 36px 16px 48px;
  }
  h1 { font-size: 34px; line-height: 1.15; }
  h2 { font-size: 26px; line-height: 1.22; }
  h3 { font-size: 20px; }
  p { line-height: 1.68; }
  .lead {
    font-size: 16px;
  }
  .hero-actions,
  .detail-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .btn {
    width: 100%;
    justify-content: center;
    min-height: 46px;
    text-align: center;
  }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stage { min-height: 450px; border-radius: 26px; }
  .device-main { left: 6%; right: 6%; top: 54px; height: 230px; }
  .device-side { display: none; }
  .stage-panel { left: 18px; right: 18px; bottom: 34px; width: auto; }
  .stats, .product-grid, .application-grid, .tech-grid, .contact dl, .process { grid-template-columns: 1fr; }
  .stats {
    padding-left: 16px;
    padding-right: 16px;
    gap: 12px;
  }
  .stats article {
    min-height: auto;
    padding: 18px;
  }
  .home-feature,
  .home-split,
  .home-split.reverse {
    padding-top: 46px;
    padding-bottom: 46px;
  }
  .feature-copy,
  .split-copy {
    min-width: 0;
  }
  .print-samples {
    grid-template-columns: 1fr;
  }
  .about-copy { padding: 24px; }
  .lab-code { display: none; }
}

@media (max-width: 680px) {
  .hero-stage {
    min-height: auto;
    padding: 20px;
  }
  .machine-showcase {
    height: auto;
    grid-template-columns: 1fr;
  }
  .machine-primary,
  .machine-secondary {
    min-height: 250px;
    margin-top: 0;
  }
  .machine-panel img {
    height: 190px;
  }
  .page-hero {
    padding-top: 48px;
    padding-bottom: 36px;
  }
  .page-hero h1 {
    font-size: 32px;
  }
  .page-hero p {
    font-size: 15px;
  }
  .product-section,
  .news-section,
  .contact {
    padding-top: 28px;
  }
  .product-grid {
    gap: 16px;
  }
  .product-card {
    min-height: auto;
    border-radius: 22px;
  }
  .product-card img {
    aspect-ratio: 16 / 10;
    padding: 16px;
  }
  .product-card div {
    padding: 18px;
  }
  .product-card ul {
    margin: 12px 0 14px;
  }
  .stage-panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    margin-top: 16px;
  }
  .application-effect,
  .home-feature,
  .home-split,
  .home-split.reverse {
    grid-template-columns: 1fr;
  }
  .effect-showcase {
    min-height: auto;
    padding: 22px;
  }
  .effect-title {
    display: block;
  }
  .effect-title strong {
    display: block;
    margin-top: 8px;
    font-size: 24px;
  }
  .effect-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .effect-grid article,
  .effect-grid article:first-child {
    grid-row: auto;
    min-height: 150px;
  }
  .production-animation {
    min-height: 310px;
    border-radius: 24px;
    padding: 12px;
  }
  .production-animation::before {
    inset: 24px 20px auto;
    height: 56px;
  }
  .station {
    width: 88px;
    min-height: 68px;
    padding: 10px;
    border-radius: 14px;
    font-size: 11px;
  }
  .station b {
    font-size: 16px;
  }
  .station-corona { left: 6%; }
  .station-print { left: 38%; }
  .station-uv { right: 5%; }
  .conveyor {
    left: 18px;
    right: 18px;
    bottom: 72px;
    height: 46px;
  }
  .moving-box {
    width: 64px;
    height: 46px;
    bottom: 88px;
  }
  .moving-box img {
    width: 48px;
  }
  .print-jet {
    left: 48%;
    top: 128px;
    transform: scale(.72);
  }
  .corona-glow {
    left: 20%;
    bottom: 124px;
    transform: scale(.7);
  }
  .uv-light {
    right: 10%;
    bottom: 118px;
    transform: scale(.7);
  }
  .news-list article,
  .detail-hero,
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .news-list {
    gap: 14px;
  }
  .news-list article {
    gap: 10px;
    padding: 18px;
    border-radius: 20px;
  }
  .news-list time {
    font-size: 13px;
  }
  .application-grid article,
  .tech-grid article {
    min-height: auto;
    padding: 22px;
    border-radius: 22px;
  }
  .detail-hero {
    gap: 24px;
    padding-top: 42px;
  }
  .detail-copy h1 {
    font-size: 32px;
  }
  .detail-grid {
    gap: 14px;
  }
  .detail-grid article {
    padding: 20px;
    border-radius: 20px;
  }
  .spec-table,
  .spec-table div {
    grid-template-columns: 1fr;
  }
  .spec-table {
    gap: 10px;
  }
  .spec-table div {
    gap: 8px;
    padding: 14px;
    border-radius: 16px;
  }
  .detail-media {
    min-height: 280px;
    border-radius: 24px;
  }
  .article-page {
    padding-top: 44px;
    padding-bottom: 54px;
  }
  .article-page h1 {
    font-size: 31px;
  }
  .article-page .lead {
    font-size: 16px;
    line-height: 1.68;
  }
  .article-page > p:not(.eyebrow):not(.lead) {
    font-size: 15px;
    line-height: 1.78;
  }
  .article-meta {
    gap: 8px;
    margin: 18px 0;
  }
  .article-meta time,
  .article-meta span {
    border-radius: 14px;
    padding: 8px 10px;
  }
  .contact-card {
    border-radius: 24px;
  }
  .contact dl div {
    border-radius: 16px;
  }
  footer {
    padding: 24px 16px;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .brand strong {
    max-width: 170px;
    font-size: 12px;
  }
  .brand small {
    display: none;
  }
  h1 {
    font-size: 30px;
  }
  .hero-tags {
    gap: 8px;
  }
  .hero-tags span {
    font-size: 11px;
    padding: 7px 9px;
  }
  .machine-primary,
  .machine-secondary {
    min-height: 220px;
  }
  .machine-panel img {
    height: 160px;
  }
  .production-animation {
    min-height: 290px;
  }
  .station {
    width: 78px;
  }
  .station span {
    font-size: 10px;
  }
}
