:root {
  --blue: #114abf;
  --blue-700: #0b3a9a;
  --blue-050: #edf4ff;
  --ink: #0b111c;
  --steel: #151c28;
  --steel-2: #202938;
  --graphite: #2f3744;
  --muted: #657184;
  --line: #d7dde7;
  --line-dark: rgba(255, 255, 255, 0.16);
  --soft: #f4f7fb;
  --panel: #ffffff;
  --accent: #e32828;
  --radius: 8px;
  --shadow: 0 20px 60px rgba(12, 22, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  background:
    linear-gradient(90deg, rgba(17, 74, 191, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 74, 191, 0.035) 1px, transparent 1px),
    #f7f9fc;
  background-size: 48px 48px;
  line-height: 1.58;
}

img {
  display: block;
  max-width: 100%;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(17, 74, 191, 0.34);
  outline-offset: 3px;
}

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 0;
  height: 3px;
  background: var(--blue);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(215, 221, 231, 0.85);
  background: rgba(247, 249, 252, 0.92);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1220px, calc(100% - 40px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  min-width: 0;
  overflow: visible;
}

.brand img {
  width: 162px;
  max-width: none;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(215, 221, 231, 0.8);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  color: #303a49;
  font-size: 13px;
  font-weight: 800;
  border-radius: 6px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--blue);
  background: var(--blue-050);
  transform: translateY(-1px);
}

.nav-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--blue);
  border-radius: 6px;
  color: #ffffff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(17, 74, 191, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-action:hover {
  background: var(--blue-700);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(17, 74, 191, 0.24);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
}

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

.section {
  padding: 96px 0;
}

.section.tight {
  padding: 64px 0;
}

.container {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

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

h1 {
  margin-bottom: 24px;
  font-size: 72px;
  line-height: 0.95;
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: 46px;
  line-height: 1.06;
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.22;
  font-weight: 900;
}

h4 {
  margin-bottom: 10px;
  font-size: 16px;
}

.lead {
  color: #344154;
  font-size: 19px;
  line-height: 1.65;
}

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

.hero {
  position: relative;
  min-height: calc(100svh - 74px);
  padding: 72px 0 34px;
  overflow: hidden;
  color: #f5f8ff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    var(--steel);
  background-size: 54px 54px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(21, 28, 40, 0.97) 0%, rgba(21, 28, 40, 0.88) 44%, rgba(21, 28, 40, 0.24) 74%, rgba(21, 28, 40, 0.05) 100%),
    linear-gradient(180deg, rgba(17, 74, 191, 0.16) 0%, rgba(17, 74, 191, 0) 46%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
}

.hero-machine {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 3vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  animation: machineReveal 900ms ease both;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(430px, 1.06fr);
  gap: 54px;
  align-items: center;
}

.hero-copy {
  width: min(660px, 100%);
}

.hero-copy > * {
  animation: textReveal 680ms ease both;
}

.hero-copy > :nth-child(1) {
  animation-delay: 80ms;
}

.hero-copy > :nth-child(2) {
  animation-delay: 160ms;
}

.hero-copy > :nth-child(3) {
  animation-delay: 240ms;
}

.hero-copy > :nth-child(4) {
  animation-delay: 320ms;
}

.hero-title {
  max-width: 760px;
  color: #ffffff;
}

.hero-title span {
  color: #7fb0ff;
}

.hero .lead {
  color: #c9d3e4;
}

.hero .eyebrow {
  color: #8db7ff;
}

.hero-actions,
.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.btn::after {
  content: "→";
  font-weight: 900;
  transform: translateX(0);
  transition: transform 180ms ease;
}

.btn.primary {
  border-color: var(--blue);
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 18px 38px rgba(17, 74, 191, 0.26);
}

.btn:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
  box-shadow: 0 18px 40px rgba(12, 22, 38, 0.16);
}

.btn:hover::after {
  transform: translateX(4px);
}

.hero-specs {
  position: relative;
  z-index: 4;
  width: min(1220px, calc(100% - 40px));
  margin: 54px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(12, 18, 28, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  animation: specsReveal 760ms ease 420ms both;
}

.spec {
  min-height: 122px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

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

.spec strong {
  display: block;
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.spec span {
  display: block;
  margin-top: 10px;
  color: #b5c1d4;
  font-size: 13px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 42px;
  margin-bottom: 36px;
}

.section-head p {
  margin-bottom: 0;
  color: #465467;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

.product-card,
.insight-card,
.value-card,
.contact-panel,
.metric-card,
.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 0 rgba(12, 22, 38, 0.04);
}

.product-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(17, 74, 191, 0.38);
  box-shadow: var(--shadow);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-media {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.product-media img {
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  object-fit: contain;
  object-position: center;
  transition: transform 260ms ease, filter 260ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.035);
  filter: drop-shadow(0 18px 24px rgba(12, 22, 38, 0.22));
}

.product-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-body p {
  color: var(--muted);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 18px;
}

.tag {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid #cbd4e2;
  border-radius: 999px;
  color: #334155;
  background: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.card-link {
  margin-top: auto;
  color: var(--blue);
  font-weight: 900;
  transition: color 180ms ease;
}

.card-link::after {
  content: " →";
}

.card-link:hover {
  color: var(--blue-700);
}

.band {
  color: #eef4ff;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    var(--steel);
  background-size: 48px 48px;
  border-block: 1px solid #0f1724;
}

.band .lead,
.band p,
.band .section-head p {
  color: #b8c4d6;
}

.band h2,
.band h3 {
  color: #ffffff;
}

.band .eyebrow {
  color: #8db7ff;
}

.innovation {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 38px;
  align-items: start;
}

.innovation-visual {
  position: sticky;
  top: 104px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.innovation-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  opacity: 0.95;
}

.step-list {
  display: grid;
  gap: 14px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 24px 24px 24px 76px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}

.step:hover {
  transform: translateX(6px);
  border-color: rgba(141, 183, 255, 0.55);
  background: rgba(255, 255, 255, 0.09);
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 24px;
  top: 27px;
  color: #8db7ff;
  font-weight: 900;
}

.step h3 {
  margin-bottom: 8px;
}

.mini-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 22px;
  font-size: 14px;
}

.mini-table th,
.mini-table td {
  padding: 15px 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.mini-table th {
  width: 36%;
  color: #263449;
  background: #eef3fa;
}

.metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: #ffffff;
}

.metric-card {
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  padding: 28px;
  box-shadow: none;
  transition: background 180ms ease, transform 180ms ease;
}

.metric-card:hover {
  background: var(--blue-050);
  transform: translateY(-4px);
}

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

.metric-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 36px;
  line-height: 1;
  font-weight: 900;
}

.metric-card span {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
  gap: 46px;
  align-items: center;
}

.image-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(12, 22, 38, 0.1);
}

.image-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  transition: transform 260ms ease;
}

.image-frame:hover img {
  transform: scale(1.035);
}

.product-shot {
  aspect-ratio: 4 / 3;
}

.product-shot img {
  height: 100%;
  padding: clamp(18px, 3vw, 38px);
}

.footer {
  padding: 58px 0 30px;
  color: #dce5f6;
  background: #0b111c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.9fr;
  gap: 26px;
}

.footer img {
  width: 156px;
  max-width: none;
  margin-bottom: 18px;
  padding: 6px 8px;
  border-radius: 6px;
  background: #ffffff;
  object-fit: contain;
}

.footer a {
  display: block;
  margin-bottom: 8px;
  color: #dce5f6;
  transition: color 160ms ease, transform 160ms ease;
}

.footer a:hover {
  color: #8db7ff;
  transform: translateX(3px);
}

.footer h3 {
  color: #ffffff;
  font-size: 16px;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #aeb9cb;
  font-size: 13px;
}

.page-hero {
  padding: 86px 0 68px;
  overflow: hidden;
  color: #f5f8ff;
  border-bottom: 1px solid #0f1724;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    var(--steel);
  background-size: 48px 48px;
}

.page-hero h1 {
  max-width: 980px;
  margin-bottom: 18px;
  font-size: 62px;
}

.page-hero .lead {
  max-width: 820px;
  color: #c9d3e4;
}

.page-hero .eyebrow {
  color: #8db7ff;
}

.breadcrumb {
  margin-bottom: 20px;
  color: #aeb9cb;
  font-size: 14px;
}

.breadcrumb a {
  color: #ffffff;
  font-weight: 900;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-btn {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: #334155;
  cursor: pointer;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.filter-btn:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
}

.filter-btn.is-active {
  border-color: var(--blue);
  color: #ffffff;
  background: var(--blue);
}

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  gap: 42px;
  align-items: center;
}

.product-detail-hero h1 {
  font-size: 58px;
}

.product-detail-hero .image-frame {
  background: #ffffff;
}

.product-detail-hero .image-frame img {
  object-fit: contain;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
}

.spec-table th,
.spec-table td {
  padding: 15px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  background: #eef3fa;
  color: #263449;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 15px 16px;
  border-left: 4px solid var(--blue);
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(12, 22, 38, 0.04);
}

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

.insight-card {
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.insight-card:hover {
  transform: translateY(-7px);
  border-color: rgba(17, 74, 191, 0.36);
  box-shadow: var(--shadow);
}

.insight-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 260ms ease;
}

.insight-card:hover img {
  transform: scale(1.04);
}

.insight-body {
  padding: 24px;
}

.insight-body h2,
.insight-body h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.28;
}

.meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.article {
  max-width: 880px;
  margin: 0 auto;
}

.article-hero {
  width: min(1080px, calc(100% - 40px));
  margin: 42px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.article-hero img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.article-content {
  max-width: 880px;
  margin: 0 auto;
  color: #2d3746;
  font-size: 18px;
}

.article-content h2 {
  margin-top: 44px;
  font-size: 32px;
}

.article-content p {
  margin-bottom: 18px;
}

.article-content img {
  width: 100%;
  margin: 30px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item strong {
  color: var(--blue);
  font-size: 24px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1.15fr);
  gap: 28px;
  align-items: start;
}

.contact-panel {
  padding: 28px;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.contact-list li {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.contact-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-list strong {
  display: block;
  margin-bottom: 4px;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: #2d3746;
  font-size: 13px;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cbd4e2;
  border-radius: 6px;
  padding: 10px 12px;
  background: #ffffff;
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(17, 74, 191, 0.12);
}

.field textarea {
  min-height: 142px;
  resize: vertical;
}

.map-panel {
  min-height: 260px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(17, 74, 191, 0.09) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 74, 191, 0.08) 1px, transparent 1px),
    #eef3fa;
  background-size: 28px 28px;
  color: #344154;
  text-align: center;
  padding: 28px;
}

[data-animate] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 620ms ease, transform 620ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes textReveal {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes machineReveal {
  from {
    opacity: 0;
    transform: translateX(44px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes specsReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  [data-animate] {
    opacity: 1;
    transform: none;
  }

  .hero-copy > *,
  .hero-machine,
  .hero-specs {
    animation: none !important;
  }
}

@media (max-width: 1100px) {
  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 38px;
  }

  .page-hero h1,
  .product-detail-hero h1 {
    font-size: 48px;
  }

  .hero-machine {
    min-height: 340px;
  }
}

@media (max-width: 980px) {
  .nav {
    min-height: 68px;
  }

  .brand img {
    width: 142px;
  }

  .nav-toggle {
    flex: 0 0 44px;
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 0 12px;
  }

  .nav-action {
    display: none;
  }

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

  .hero-machine {
    width: 100%;
    min-height: clamp(210px, 54vw, 340px);
    margin-top: 30px;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(21,28,40,0.97), rgba(21,28,40,0.72));
  }

  .hero-specs,
  .metrics-strip,
  .grid.four,
  .grid.three,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .spec:nth-child(2),
  .metric-card:nth-child(2) {
    border-right: 0;
  }

  .spec:nth-child(-n + 2),
  .metric-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .metric-card:nth-child(-n + 2) {
    border-bottom-color: var(--line);
  }

  .section-head,
  .hero-inner,
  .innovation,
  .split,
  .product-detail-hero,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .innovation-visual {
    position: static;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 68px 0;
  }

  .section.tight {
    padding: 46px 0;
  }

  .container,
  .hero-inner,
  .hero-specs {
    width: min(100% - 28px, 1220px);
  }

  h1,
  .page-hero h1,
  .product-detail-hero h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .lead {
    font-size: 17px;
  }

  .hero {
    padding-bottom: 22px;
  }

  .hero-actions,
  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-specs,
  .metrics-strip,
  .grid.two,
  .grid.three,
  .grid.four,
  .blog-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .spec,
  .metric-card {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .metric-card {
    border-bottom-color: var(--line);
  }

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

  .product-media {
    height: 210px;
  }

  .mini-table,
  .spec-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    font-size: 13px;
    -webkit-overflow-scrolling: touch;
  }

  .mini-table th,
  .mini-table td,
  .spec-table th,
  .spec-table td {
    min-width: 132px;
    padding: 10px 8px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
