﻿:root {
  --graphite: #161c21;
  --graphite-2: #242d33;
  --ink: #1b242a;
  --muted: #607079;
  --teal: #008ca3;
  --teal-dark: #006c7d;
  --cyan: #22b8cf;
  --yellow: #f4c44e;
  --paper: #f4f7f7;
  --white: #ffffff;
  --line: #d7e0e2;
  --danger: #a9483d;
  --max: 1240px;
  --header-h: 72px;
  --radius: 6px;
  --font: Inter, "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(34, 184, 207, 0.38);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 8px;
  left: 8px;
  padding: 9px 13px;
  color: var(--white);
  background: var(--graphite);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 92px 0;
}

.section--paper {
  background: var(--paper);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 46px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 1.16;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: 58px;
}

h2 {
  margin-bottom: 0;
  font-size: 38px;
}

h3 {
  font-size: 21px;
}

.lead {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.kicker-rule {
  width: 58px;
  height: 4px;
  margin: 18px 0 0;
  background: var(--yellow);
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid var(--teal);
  border-radius: 4px;
  color: var(--white);
  background: var(--teal);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-1px);
}

.button--dark {
  background: var(--graphite);
  border-color: var(--graphite);
}

.button--dark:hover {
  background: var(--graphite-2);
  border-color: var(--graphite-2);
}

.button--line {
  color: var(--graphite);
  background: transparent;
  border-color: #a8b5ba;
}

.button--line:hover {
  color: var(--white);
  background: var(--graphite);
  border-color: var(--graphite);
}

.button--light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
}

.button--light:hover {
  color: var(--graphite);
  background: var(--white);
  border-color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 800;
}

.text-link::after {
  content: "→";
  transition: transform 160ms ease;
}

.text-link:hover::after {
  transform: translateX(3px);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-h);
  color: var(--white);
  background: rgba(22, 28, 33, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: none;
  font-size: 18px;
  font-weight: 800;
}

.brand-mark {
  width: 37px;
  height: 24px;
  overflow: visible;
}

.brand-mark path {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 3;
  stroke-linecap: round;
}

.brand-mark circle {
  fill: var(--yellow);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  color: #d7e0e4;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--yellow);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.lang-switch {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  padding: 2px;
  border: 1px solid #69757c;
  border-radius: 4px;
  background: #20282d;
}

.lang-switch button {
  min-width: 42px;
  height: 30px;
  padding: 0 8px;
  border: 0;
  border-radius: 2px;
  color: #b7c2c7;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.lang-switch button.is-active {
  color: var(--graphite);
  background: var(--white);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 650px;
  height: min(78svh, 740px);
  overflow: hidden;
  color: var(--white);
  background: var(--graphite);
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0 42% 0 0;
  background: rgba(22, 28, 33, 0.97);
  content: "";
}

.hero-media {
  position: absolute;
  inset: 0 0 0 39%;
  background: #e9eeee;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  align-items: center;
}

.hero-copy {
  width: min(620px, 55%);
  padding: 52px 0;
}

.hero .eyebrow {
  color: var(--cyan);
}

.hero h1 {
  max-width: 610px;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--yellow);
}

.hero .lead {
  max-width: 560px;
  margin-bottom: 30px;
  color: #d5dfe2;
  font-size: 19px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 610px;
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-proof div {
  padding: 18px 20px 0 0;
}

.hero-proof strong {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
  font-size: 20px;
}

.hero-proof span {
  color: #aebdc2;
  font-size: 12px;
}

.trust-strip {
  color: var(--graphite);
  background: var(--yellow);
}

.trust-strip .container {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  min-height: 78px;
  align-items: center;
  gap: 22px;
}

.trust-strip strong {
  font-size: 15px;
}

.trust-strip span {
  font-size: 13px;
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.product-card {
  display: grid;
  grid-template-columns: minmax(210px, 0.9fr) minmax(250px, 1.1fr);
  min-height: 350px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.product-card__media {
  display: flex;
  min-height: 310px;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--paper);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  max-height: 285px;
  object-fit: contain;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
}

.product-card__body .model {
  margin-bottom: 9px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.product-card__body h3 {
  margin-bottom: 12px;
}

.product-card__body p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
}

.metric-line {
  margin-bottom: 20px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: var(--graphite);
  font-size: 13px;
  font-weight: 800;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 235px;
  gap: 12px;
}

.application-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--graphite);
}

.application-item:nth-child(1),
.application-item:nth-child(2) {
  grid-column: span 6;
}

.application-item:nth-child(n + 3) {
  grid-column: span 4;
}

.application-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.application-item.is-contain img {
  padding: 22px;
  object-fit: contain;
  background: #eef2f2;
}

.application-item::after {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: rgba(14, 19, 22, 0.8);
  content: "";
}

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

.application-copy {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 18px;
  left: 22px;
  color: var(--white);
}

.application-copy span {
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
}

.application-copy h3 {
  margin: 3px 0 0;
  font-size: 19px;
}

.source-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.capability-section {
  color: var(--white);
  background: var(--graphite);
}

.capability-section .lead {
  color: #acbbc1;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid #465159;
  border-left: 1px solid #465159;
}

.capability-item {
  min-height: 205px;
  padding: 28px 23px;
  border-right: 1px solid #465159;
  border-bottom: 1px solid #465159;
}

.capability-item .index {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
}

.capability-item h3 {
  margin-bottom: 9px;
  font-size: 17px;
}

.capability-item p {
  margin-bottom: 0;
  color: #aab8be;
  font-size: 13px;
}

.company-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  gap: 84px;
  align-items: start;
}

.company-copy .lead {
  margin-bottom: 20px;
}

.company-copy p:not(.lead) {
  color: var(--muted);
}

.company-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.company-values div {
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.company-values strong {
  display: block;
  color: var(--teal);
  font-size: 18px;
}

.company-values span {
  color: var(--muted);
  font-size: 13px;
}

.base-list {
  border-top: 4px solid var(--yellow);
}

.base-item {
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.base-item .label {
  margin-bottom: 6px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
}

.base-item h3 {
  margin-bottom: 5px;
  font-size: 18px;
}

.base-item address {
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
}

.contact-section {
  color: var(--white);
  background: var(--teal-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(460px, 1fr);
  gap: 80px;
}

.contact-section .eyebrow {
  color: var(--yellow);
}

.contact-section .lead {
  color: #d5e9ec;
}

.contact-details {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.contact-details a,
.contact-details div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 14px;
}

.contact-details span {
  color: #a8d3d9;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

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

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

.field label {
  font-size: 12px;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 3px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.12);
  padding: 12px 13px;
}

.field select option {
  color: var(--graphite);
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: #afd2d7;
}

.contact-form .button {
  justify-self: start;
  color: var(--graphite);
  background: var(--yellow);
  border-color: var(--yellow);
}

.contact-form .button:hover {
  background: #ffd76f;
  border-color: #ffd76f;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: #d5e9ec;
  font-size: 13px;
}

.site-footer {
  padding: 46px 0 28px;
  color: #a9b5bb;
  background: #101519;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.7fr;
  gap: 56px;
  padding-bottom: 34px;
}

.site-footer .brand {
  margin-bottom: 16px;
  color: var(--white);
}

.site-footer p {
  max-width: 430px;
  font-size: 13px;
}

.footer-col strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 13px;
}

.footer-col a {
  display: block;
  margin: 7px 0;
  font-size: 13px;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid #343d42;
  font-size: 12px;
}

.product-hero {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  color: var(--white);
  background: var(--graphite);
}

.product-hero__media {
  position: absolute;
  inset: 0 0 0 48%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 38px;
  background: #e9eeee;
}

.product-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 590px;
  align-items: center;
}

.product-hero__copy {
  width: 46%;
  padding: 70px 0;
}

.breadcrumb {
  margin-bottom: 34px;
  color: #a9b8be;
  font-size: 13px;
}

.breadcrumb a:hover {
  color: var(--white);
}

.product-hero h1 {
  margin-bottom: 10px;
  font-size: 46px;
}

.product-hero .model {
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 800;
}

.product-hero .lead {
  margin-bottom: 28px;
  color: #c5d0d4;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid #5a6870;
  border-radius: 3px;
  color: #d7e0e4;
  font-size: 11px;
  font-weight: 800;
}

.metric-band {
  color: var(--graphite);
  background: var(--yellow);
}

.metric-band .container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric {
  min-height: 104px;
  padding: 22px 26px;
  border-left: 1px solid rgba(22, 28, 33, 0.22);
}

.metric:last-child {
  border-right: 1px solid rgba(22, 28, 33, 0.22);
}

.metric strong {
  display: block;
  font-size: 21px;
}

.metric span {
  font-size: 12px;
  font-weight: 700;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.7fr);
  gap: 80px;
}

.feature-list {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.feature-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.feature-item .index {
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.feature-item strong {
  display: block;
  margin-bottom: 3px;
}

.feature-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.spec-panel {
  border-top: 4px solid var(--teal);
}

.spec-panel h2 {
  margin: 18px 0 22px;
  font-size: 25px;
}

.spec-list {
  margin: 0;
}

.spec-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.9fr) minmax(130px, 1.1fr);
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.spec-row dt {
  color: var(--muted);
  font-size: 13px;
}

.spec-row dd {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

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

.product-gallery figure {
  margin: 0;
  background: var(--paper);
}

.product-gallery figure:only-child {
  grid-column: 1 / -1;
}

.product-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 26px;
}

.product-gallery figcaption {
  padding: 10px 14px;
  color: var(--white);
  background: var(--graphite);
  font-size: 12px;
  font-weight: 700;
}

.safety-note {
  margin-top: 30px;
  padding: 18px 20px;
  border-left: 4px solid var(--yellow);
  color: var(--muted);
  background: #fff9e7;
  font-size: 13px;
}

.integration-band {
  color: var(--white);
  background: var(--graphite-2);
}

.integration-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 70px;
  align-items: center;
}

.integration-band .lead {
  color: #b9c5ca;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #5b676e;
  border-left: 1px solid #5b676e;
}

.process-flow div {
  min-height: 112px;
  padding: 18px;
  border-right: 1px solid #5b676e;
  border-bottom: 1px solid #5b676e;
}

.process-flow span {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
}

.process-flow strong {
  font-size: 14px;
}

.cta-band {
  padding: 62px 0;
  color: var(--graphite);
  background: var(--yellow);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.cta-inner h2 {
  max-width: 710px;
  font-size: 32px;
}

.legal-page {
  padding: 80px 0;
}

.legal-page h1 {
  font-size: 42px;
}

.legal-page h2 {
  margin: 34px 0 12px;
  font-size: 24px;
}

.legal-page p,
.legal-page li {
  max-width: 850px;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 18px;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-card__media {
    min-height: 235px;
  }

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

  .contact-grid,
  .detail-grid {
    gap: 48px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-h: 64px;
  }

  .container {
    width: min(100% - 32px, var(--max));
  }

  .section {
    padding: 72px 0;
  }

  .section-head,
  .company-grid,
  .contact-grid,
  .detail-grid,
  .integration-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  h1 {
    font-size: 45px;
  }

  h2 {
    font-size: 32px;
  }

  .main-nav {
    position: fixed;
    z-index: 90;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 22px 24px;
    background: var(--graphite);
  }

  body.nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 15px 0;
    border-bottom: 1px solid #3a444a;
    font-size: 17px;
  }

  .main-nav a::after {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: 720px;
    height: 82svh;
    max-height: 820px;
  }

  .hero::before {
    inset: 0 0 auto;
    height: 58%;
    background: rgba(22, 28, 33, 0.97);
  }

  .hero-media {
    inset: 43% 0 0;
  }

  .hero-media img {
    object-fit: cover;
    object-position: center;
  }

  .hero-inner {
    align-items: flex-start;
  }

  .hero-copy {
    width: 100%;
    padding-top: 66px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero .lead {
    max-width: 650px;
    font-size: 17px;
  }

  .hero-proof {
    display: none;
  }

  .trust-strip .container {
    grid-template-columns: repeat(2, 1fr);
    padding: 16px 0;
  }

  .trust-strip strong {
    grid-column: 1 / -1;
  }

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

  .application-grid {
    grid-auto-rows: 220px;
  }

  .application-item:nth-child(n) {
    grid-column: span 6;
  }

  .application-item:nth-child(5) {
    grid-column: span 12;
  }

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

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

  .field--full {
    grid-column: auto;
  }

  .form-status {
    grid-column: auto;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top > :first-child {
    grid-column: 1 / -1;
  }

  .product-hero {
    min-height: 720px;
  }

  .product-hero__media {
    inset: 52% 0 0;
    padding: 18px;
  }

  .product-hero__inner {
    min-height: 720px;
    align-items: flex-start;
  }

  .product-hero__copy {
    width: 100%;
    padding-top: 56px;
  }

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

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

  .metric:nth-child(2) {
    border-right: 1px solid rgba(22, 28, 33, 0.22);
  }

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

@media (max-width: 560px) {
  .header-inner {
    gap: 10px;
  }

  .section {
    padding: 58px 0;
  }

  .brand {
    font-size: 15px;
  }

  .brand-mark {
    width: 31px;
  }

  .lang-switch button {
    min-width: 32px;
    padding: 0 6px;
  }

  .nav-toggle {
    width: 34px;
    padding: 5px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
  }

  .lead {
    font-size: 16px;
  }

  .hero {
    min-height: 690px;
    height: 83svh;
  }

  .hero-copy {
    padding-top: 48px;
  }

  .hero h1 {
    font-size: 39px;
  }

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

  .trust-strip .container {
    gap: 8px 18px;
  }

  .product-card {
    min-height: 0;
  }

  .product-card__media {
    min-height: 220px;
  }

  .product-card__body {
    padding: 26px 22px;
  }

  .application-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 225px;
  }

  .application-item:nth-child(n) {
    grid-column: auto;
  }

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

  .capability-item {
    min-height: 160px;
  }

  .company-values {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-top > :first-child {
    grid-column: auto;
  }

  .footer-bottom,
  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-hero {
    min-height: 720px;
  }

  .product-hero__inner {
    min-height: 720px;
  }

  .product-hero__media {
    inset: 62% 0 0;
  }

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

  .metric-band .container,
  .product-gallery,
  .process-flow {
    grid-template-columns: 1fr;
  }

  .metric {
    border-right: 1px solid rgba(22, 28, 33, 0.22);
  }

  .spec-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .spec-row dd {
    text-align: left;
  }
}

@media (max-width: 360px) {
  .site-header .brand span {
    font-size: 0;
  }

  .site-header .brand span::after {
    font-size: 15px;
    content: "PWELL";
  }
}

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