:root {
  --site-ink: #101820;
  --site-ink-soft: #27333d;
  --site-copy: #46545f;
  --site-muted: #6b7882;
  --site-line: #d9e1e5;
  --site-surface: #f4f7f8;
  --site-paper: #ffffff;
  --site-blue: #006f8a;
  --site-blue-dark: #004d63;
  --site-cyan: #00a6bd;
  --site-lime: #b5d334;
  --site-error: #b62f2f;
  --site-success: #16704d;
  --site-max: 1180px;
  --site-header: 72px;
}

* {
  box-sizing: border-box;
}

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

body.site-2026 {
  margin: 0;
  color: var(--site-ink);
  background: var(--site-paper);
  font-family: Inter, "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: clip;
}

body.site-2026.is-menu-open {
  overflow: hidden;
}

.site-2026 a {
  color: inherit;
  text-decoration: none;
}

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

.site-2026 button,
.site-2026 input,
.site-2026 select,
.site-2026 textarea {
  color: inherit;
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--site-ink);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--site-header);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--site-line);
}

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

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

.site-brand img {
  width: 178px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 650;
}

.site-nav > a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid transparent;
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.site-nav > a[aria-current="page"] {
  color: var(--site-blue);
  background: #eef7f8;
  border-color: #c8e2e7;
}

.site-language-menu {
  position: relative;
  margin-left: 8px;
}

.site-language-menu summary {
  display: inline-flex;
  min-width: 62px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 11px;
  color: var(--site-copy);
  border: 1px solid var(--site-line);
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
}

.site-language-menu summary::-webkit-details-marker {
  display: none;
}

.site-language-menu summary::after {
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
}

.site-language-menu[open] summary,
.site-language-menu summary:hover,
.site-language-menu summary:focus-visible {
  color: var(--site-blue);
  background: #eef7f8;
  border-color: #c8e2e7;
}

.site-language-menu[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}

.site-language-options {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 60;
  display: grid;
  width: 142px;
  padding: 6px;
  background: #fff;
  border: 1px solid var(--site-line);
  box-shadow: 0 14px 38px rgba(9, 16, 22, 0.14);
}

.site-language-options a {
  display: flex;
  min-height: 38px;
  align-items: center;
  padding: 0 10px;
}

.site-language-options a:hover,
.site-language-options a:focus-visible,
.site-language-options a[aria-current="page"] {
  color: var(--site-blue);
  background: #eef7f8;
}

.site-nav .site-nav-cta {
  margin-left: 8px;
  color: #fff;
  background: var(--site-ink);
  border-color: var(--site-ink);
}

.site-nav .site-nav-cta:hover,
.site-nav .site-nav-cta:focus-visible {
  color: #fff;
  background: var(--site-blue);
  border-color: var(--site-blue);
}

.site-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--site-line);
  background: #fff;
  cursor: pointer;
}

.site-menu-button span,
.site-menu-button::before,
.site-menu-button::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--site-ink);
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}

.site-menu-button[aria-expanded="true"] span {
  opacity: 0;
}

.site-menu-button[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.site-menu-button[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.site-hero {
  position: relative;
  min-height: min(650px, calc(100svh - var(--site-header) - 42px));
  color: #fff;
  background: var(--site-ink);
  isolation: isolate;
  overflow: hidden;
}

.site-hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}

.site-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(9, 16, 22, 0.56);
  content: "";
}

.site-hero-inner {
  display: flex;
  min-height: inherit;
  align-items: center;
  padding: 68px 0 76px;
}

.site-hero-copy {
  width: min(690px, 66%);
}

.site-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: #dceff2;
  font-size: 13px;
  font-weight: 750;
}

.site-eyebrow::before {
  width: 34px;
  height: 3px;
  background: var(--site-lime);
  content: "";
}

.site-hero h1 {
  max-width: 660px;
  margin: 0;
  font-size: 72px;
  line-height: 1.08;
  letter-spacing: 0;
}

.site-hero-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
}

.site-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.site-button,
.site-button-secondary {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 750;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.site-button {
  color: #081216;
  background: var(--site-lime);
}

.site-button:hover,
.site-button:focus-visible {
  color: #081216;
  background: #c7df55;
  transform: translateY(-1px);
}

.site-button-secondary {
  color: #fff;
  background: rgba(12, 22, 29, 0.78);
  border-color: rgba(255, 255, 255, 0.65);
}

.site-button-secondary:hover,
.site-button-secondary:focus-visible {
  color: #fff;
  background: var(--site-blue);
  border-color: var(--site-blue);
}

.site-facts {
  color: #fff;
  background: var(--site-ink);
  border-bottom: 4px solid var(--site-lime);
}

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

.site-fact {
  min-width: 0;
  padding: 24px 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.site-fact:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.site-fact strong {
  display: block;
  color: #fff;
  font-size: 31px;
  line-height: 1.15;
}

.site-fact span {
  display: block;
  margin-top: 6px;
  color: #b9c4ca;
  font-size: 12px;
}

.site-section {
  padding: 82px 0;
  background: #fff;
}

.site-section-alt {
  background: var(--site-surface);
  border-block: 1px solid var(--site-line);
}

.site-section-dark {
  color: #fff;
  background: var(--site-ink);
}

.site-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 38px;
}

.site-section-head h2,
.site-content-head h2 {
  margin: 0;
  font-size: 50px;
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

.site-section-head p,
.site-content-head p {
  margin: 0;
  color: var(--site-copy);
}

.site-section-dark .site-section-head p,
.site-section-dark .site-content-head p {
  color: #bac6cc;
}

.site-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--site-blue);
  font-size: 12px;
  font-weight: 800;
}

.site-section-dark .site-kicker {
  color: #7bd2dd;
}

.lifecycle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--site-line);
  background: var(--site-line);
  gap: 1px;
}

.lifecycle-step {
  min-width: 0;
  min-height: 280px;
  padding: 28px 24px;
  background: #fff;
}

.lifecycle-number {
  display: block;
  color: var(--site-cyan);
  font-size: 14px;
  font-weight: 800;
}

.lifecycle-step h3 {
  margin: 48px 0 10px;
  font-size: 23px;
  line-height: 1.25;
}

.lifecycle-step p {
  margin: 0;
  color: var(--site-copy);
  font-size: 14px;
}

.lifecycle-step a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--site-blue);
  font-size: 13px;
  font-weight: 750;
}

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

.equipment-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid var(--site-line);
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}

.equipment-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: #f7f9fa;
}

.equipment-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
  border-top: 1px solid var(--site-line);
}

.equipment-card h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.3;
}

.equipment-card p {
  margin: 10px 0 0;
  color: var(--site-copy);
  font-size: 14px;
}

.equipment-meta {
  display: block;
  margin-top: 18px;
  color: var(--site-blue);
  font-size: 12px;
  font-weight: 750;
}

.equipment-detail-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: 18px;
  color: var(--site-blue);
  font-size: 13px;
  font-weight: 800;
}

.equipment-detail-link::after {
  content: "→";
  margin-left: 7px;
}

.matcher-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.76fr);
  gap: 28px;
  align-items: stretch;
}

.matcher-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.matcher-option {
  position: relative;
  display: flex;
  min-height: 100px;
  align-items: flex-start;
  padding: 18px;
  color: var(--site-ink);
  background: #fff;
  border: 1px solid var(--site-line);
  cursor: pointer;
}

.matcher-option:hover {
  border-color: var(--site-cyan);
}

.matcher-option:has(input:checked) {
  background: #edf7f8;
  border-color: var(--site-blue);
  box-shadow: inset 4px 0 0 var(--site-blue);
}

.matcher-option input {
  margin: 4px 10px 0 0;
  accent-color: var(--site-blue);
}

.matcher-option strong {
  display: block;
  font-size: 14px;
}

.matcher-option span {
  display: block;
  margin-top: 4px;
  color: var(--site-muted);
  font-size: 12px;
}

.matcher-result {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  color: #fff;
  background: var(--site-blue-dark);
  border-top: 5px solid var(--site-lime);
}

.matcher-result h3 {
  margin: 8px 0 14px;
  font-size: 28px;
  line-height: 1.25;
}

.matcher-result p {
  margin: 0;
  color: #d8e8eb;
}

.matcher-result .site-button {
  align-self: flex-start;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-item {
  padding: 30px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  color: #fff;
  font-size: 22px;
}

.proof-item p {
  margin: 10px 0 0;
  color: #bdc8ce;
  font-size: 14px;
}

.site-cta-band {
  padding: 48px 0;
  color: #fff;
  background: var(--site-blue);
}

.site-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-cta-row h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
}

.site-cta-row p {
  margin: 8px 0 0;
  color: #d9f0f3;
}

.site-page-hero {
  position: relative;
  min-height: 430px;
  color: #fff;
  background: var(--site-ink);
  overflow: hidden;
  isolation: isolate;
}

.site-page-hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
}

.site-page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(9, 16, 22, 0.6);
  content: "";
}

.site-page-hero-inner {
  display: flex;
  min-height: inherit;
  align-items: center;
  padding: 58px 0;
}

.site-page-hero-copy {
  width: min(690px, 68%);
}

.site-page-hero h1 {
  margin: 0;
  font-size: 62px;
  line-height: 1.1;
  text-wrap: balance;
}

.site-page-hero p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.product-stage {
  scroll-margin-top: calc(var(--site-header) + 22px);
}

.product-stage-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 56px;
  align-items: start;
}

.product-stage-index {
  color: var(--site-cyan);
  font-size: 15px;
  font-weight: 800;
}

.product-stage h2 {
  margin: 12px 0 14px;
  font-size: 38px;
  line-height: 1.16;
}

.product-stage-summary {
  margin: 0;
  color: var(--site-copy);
}

.product-stage-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--site-line);
  border: 1px solid var(--site-line);
}

.product-stage-detail {
  min-height: 170px;
  padding: 24px;
  background: #fff;
}

.product-stage-detail h3 {
  margin: 0;
  font-size: 18px;
}

.product-stage-detail p {
  margin: 9px 0 0;
  color: var(--site-copy);
  font-size: 14px;
}

.product-stage-media {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--site-line);
}

.product-stage-media figure {
  margin: 0;
  background: #fff;
}

.product-stage-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: #f8fafb;
}

.product-stage-media figcaption {
  padding: 12px 18px 16px;
  color: var(--site-muted);
  font-size: 12px;
}

.stage-boundary {
  margin-top: 18px;
  padding: 15px 17px;
  color: var(--site-copy);
  background: #f7f9fa;
  border-left: 4px solid var(--site-cyan);
  font-size: 13px;
}

.stage-detail-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.stage-detail-links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  color: var(--site-blue);
  background: #fff;
  border: 1px solid var(--site-line-strong);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
}

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

.support-item {
  padding: 24px;
  border: 1px solid var(--site-line);
  background: #fff;
}

.support-item h3 {
  margin: 0;
  font-size: 19px;
}

.support-item p {
  margin: 9px 0 0;
  color: var(--site-copy);
  font-size: 14px;
}

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

.product-directory-item {
  display: grid;
  min-width: 0;
  padding: 22px 24px;
  color: var(--site-ink);
  background: #fff;
  border: 1px solid var(--site-line);
  border-left: 4px solid var(--site-cyan);
  border-radius: 4px;
}

.product-directory-item span {
  color: var(--site-blue);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-directory-item strong {
  margin-top: 7px;
  font-size: 18px;
}

.product-directory-item small {
  margin-top: 7px;
  color: var(--site-copy);
  font-size: 13px;
  line-height: 1.55;
}

.product-directory-item:hover,
.product-directory-item:focus-visible,
.stage-detail-links a:hover,
.stage-detail-links a:focus-visible {
  border-color: var(--site-cyan);
}

.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: 64px;
  align-items: start;
}

.inquiry-copy h2 {
  margin: 0;
  font-size: 46px;
  line-height: 1.12;
  text-wrap: balance;
}

.inquiry-copy > p {
  margin: 20px 0 0;
  color: #c0ccd2;
}

.response-commitment {
  margin-top: 28px;
  padding: 18px;
  color: #e9f5f6;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-left: 4px solid var(--site-lime);
}

.response-commitment strong {
  display: block;
  color: #fff;
}

.response-commitment span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
}

.contact-lines {
  margin-top: 26px;
  color: #c0ccd2;
  font-size: 14px;
}

.contact-lines a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  color: var(--site-ink);
  background: #fff;
  border-top: 5px solid var(--site-lime);
}

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

.form-label {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 750;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border: 1px solid #b9c5ca;
  border-radius: 3px;
  background: #fff;
  outline: 0;
}

.form-input,
.form-select {
  min-height: 46px;
  padding: 0 12px;
}

.form-textarea {
  min-height: 132px;
  padding: 11px 12px;
  resize: vertical;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--site-blue);
  box-shadow: 0 0 0 3px rgba(0, 111, 138, 0.14);
}

.form-consent {
  display: flex;
  grid-column: 1 / -1;
  gap: 9px;
  align-items: flex-start;
  color: var(--site-copy);
  font-size: 12px;
}

.form-consent input {
  margin-top: 4px;
  accent-color: var(--site-blue);
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-actions {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  gap: 16px;
}

.form-submit {
  min-height: 46px;
  padding: 0 20px;
  color: #fff;
  background: var(--site-blue);
  border: 0;
  border-radius: 4px;
  font-weight: 750;
  cursor: pointer;
}

.form-submit:hover,
.form-submit:focus-visible {
  background: var(--site-blue-dark);
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-status {
  min-height: 22px;
  color: var(--site-copy);
  font-size: 13px;
}

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

.form-status.is-error {
  color: var(--site-error);
}

.contact-context-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--site-line);
  border: 1px solid var(--site-line);
}

.contact-context-item {
  padding: 26px;
  background: #fff;
}

.contact-context-item h3 {
  margin: 0;
  font-size: 20px;
}

.contact-context-item p {
  margin: 10px 0 0;
  color: var(--site-copy);
  font-size: 14px;
}

.site-footer {
  color: #c4ced3;
  background: #0b1116;
  border-top: 1px solid #26323a;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr;
  gap: 48px;
  padding: 48px 0 34px;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 15px;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
}

.site-footer a {
  color: #fff;
}

.site-footer-links {
  display: grid;
  gap: 8px;
  font-size: 13px;
}

.site-footer-bottom {
  padding: 18px 0 24px;
  color: #88959d;
  border-top: 1px solid #26323a;
  font-size: 12px;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 920px) {
  .site-nav {
    position: fixed;
    top: var(--site-header);
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-content: start;
    align-items: stretch;
    padding: 18px 20px;
    background: #fff;
    overflow-y: auto;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav > a,
  .site-nav .site-nav-cta {
    min-height: 50px;
    margin: 0;
    padding: 0 14px;
    border: 0;
    border-bottom: 1px solid var(--site-line);
  }

  .site-language-menu {
    width: 100%;
    margin: 0;
    border-bottom: 1px solid var(--site-line);
  }

  .site-language-menu summary {
    width: 100%;
    min-height: 50px;
    justify-content: space-between;
    padding: 0 14px;
    border: 0;
  }

  .site-language-options {
    position: static;
    width: 100%;
    padding: 0 0 8px 14px;
    border: 0;
    box-shadow: none;
  }

  .site-language-options a {
    min-height: 42px;
  }

  .site-menu-button {
    display: block;
  }

  .site-hero-copy,
  .site-page-hero-copy {
    width: min(720px, 84%);
  }

  .site-hero h1 {
    font-size: 56px;
  }

  .site-section-head h2,
  .site-content-head h2 {
    font-size: 42px;
  }

  .site-page-hero h1 {
    font-size: 52px;
  }

  .inquiry-copy h2 {
    font-size: 42px;
  }

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

  .site-fact:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .site-fact:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .site-section-head,
  .product-stage-grid,
  .inquiry-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .equipment-grid,
  .support-grid,
  .product-directory-grid,
  .contact-context-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .matcher-layout {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .site-footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

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

@media (max-width: 620px) {
  :root {
    --site-header: 64px;
  }

  .site-shell {
    width: min(calc(100% - 28px), var(--site-max));
  }

  .site-brand img {
    width: 150px;
  }

  .site-hero {
    min-height: min(610px, calc(100svh - var(--site-header) - 24px));
  }

  .site-hero > img,
  .site-page-hero > img {
    object-position: 66% center;
  }

  .site-hero::before,
  .site-page-hero::before {
    background: rgba(9, 16, 22, 0.76);
  }

  .site-hero-inner {
    align-items: flex-end;
    padding: 58px 0 54px;
  }

  .site-hero-copy,
  .site-page-hero-copy {
    width: 100%;
  }

  .site-hero h1 {
    font-size: 42px;
  }

  .site-section-head h2,
  .site-content-head h2 {
    font-size: 34px;
  }

  .site-page-hero h1 {
    font-size: 40px;
  }

  .inquiry-copy h2 {
    font-size: 36px;
  }

  .site-hero-lead,
  .site-page-hero p {
    font-size: 16px;
  }

  .site-actions,
  .site-actions a {
    width: 100%;
  }

  .site-facts-grid,
  .lifecycle-grid,
  .equipment-grid,
  .matcher-options,
  .product-stage-details,
  .product-stage-media,
  .support-grid,
  .product-directory-grid,
  .inquiry-form,
  .contact-context-grid {
    grid-template-columns: 1fr;
  }

  .site-fact,
  .site-fact:nth-child(2),
  .site-fact:last-child {
    padding: 18px 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .site-fact:last-child {
    border-bottom: 0;
  }

  .site-section {
    padding: 62px 0;
  }

  .site-section-head {
    margin-bottom: 28px;
  }

  .lifecycle-step {
    min-height: 220px;
  }

  .site-cta-row {
    align-items: stretch;
    flex-direction: column;
  }

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

  .site-page-hero {
    min-height: 390px;
  }

  .product-stage h2 {
    font-size: 32px;
  }

  .inquiry-form {
    padding: 22px 18px;
  }

  .form-field-full,
  .form-consent,
  .form-actions {
    grid-column: 1;
  }

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

  .site-footer-grid {
    gap: 28px;
  }
}

.detail-breadcrumb {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  color: var(--site-muted);
  font-size: 13px;
  overflow: hidden;
  white-space: nowrap;
}

.detail-breadcrumb a:hover,
.detail-breadcrumb a:focus-visible {
  color: var(--site-blue);
}

.detail-breadcrumb span:last-child {
  min-width: 0;
  color: var(--site-ink);
  overflow: hidden;
  text-overflow: ellipsis;
}

.detail-hero {
  position: relative;
  min-height: 520px;
  color: #fff;
  background: var(--site-ink);
  isolation: isolate;
  overflow: hidden;
}

.detail-hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.detail-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(9, 16, 22, 0.7);
  content: "";
}

.detail-hero-inner {
  display: flex;
  min-height: inherit;
  align-items: center;
  padding: 66px 0 72px;
}

.detail-hero-copy {
  width: min(760px, 72%);
}

.detail-hero h1 {
  max-width: 900px;
  margin: 12px 0 22px;
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: 1.06;
  letter-spacing: 0;
}

.detail-hero-copy > p:not(.site-eyebrow) {
  max-width: 750px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.detail-caption {
  padding-top: 10px;
  padding-bottom: 10px;
  color: var(--site-muted);
  font-size: 12px;
  text-align: right;
}

.detail-facts {
  color: #fff;
  background: var(--site-ink-soft);
}

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

.detail-facts-grid article {
  min-width: 0;
  padding: 26px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.detail-facts-grid article:last-child {
  border-right: 0;
}

.detail-facts-grid span,
.detail-facts-grid small {
  display: block;
  color: rgba(255, 255, 255, 0.67);
  font-size: 12px;
}

.detail-facts-grid strong {
  display: block;
  margin: 6px 0;
  color: #fff;
  font-size: 23px;
  line-height: 1.2;
}

.detail-section-nav {
  position: sticky;
  top: var(--site-header);
  z-index: 20;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--site-line);
}

.detail-section-nav .site-shell {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.detail-section-nav .site-shell::-webkit-scrollbar {
  display: none;
}

.detail-section-nav a {
  flex: 0 0 auto;
  color: var(--site-copy);
  font-size: 13px;
  font-weight: 700;
}

.detail-section-nav a:hover,
.detail-section-nav a:focus-visible {
  color: var(--site-blue);
}

.detail-scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--site-line);
  border-bottom: 1px solid var(--site-line);
}

.detail-scenario-item {
  min-width: 0;
  padding: 30px 28px;
  border-right: 1px solid var(--site-line);
}

.detail-scenario-item:last-child {
  border-right: 0;
}

.detail-scenario-item h3,
.detail-process-item h3,
.detail-delivery-item h3,
.detail-evidence-item h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.35;
}

.detail-scenario-item p,
.detail-process-item p,
.detail-delivery-item p,
.detail-evidence-item p {
  margin: 0;
  color: var(--site-copy);
}

.detail-table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--site-line);
}

.detail-spec-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: left;
}

.detail-spec-table th,
.detail-spec-table td {
  padding: 17px 20px;
  vertical-align: top;
  border-bottom: 1px solid var(--site-line);
}

.detail-spec-table thead th {
  color: #fff;
  background: var(--site-ink-soft);
  font-size: 12px;
  text-transform: uppercase;
}

.detail-spec-table tbody th {
  width: 20%;
  color: var(--site-ink);
  font-size: 14px;
}

.detail-spec-table tbody td:nth-child(2) {
  width: 35%;
  color: var(--site-ink);
  font-weight: 650;
}

.detail-spec-table tbody td:last-child {
  color: var(--site-copy);
  font-size: 14px;
}

.detail-spec-table tbody tr:last-child th,
.detail-spec-table tbody tr:last-child td {
  border-bottom: 0;
}

.detail-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--site-line);
}

.detail-process-item {
  min-width: 0;
  padding: 28px 22px 0;
  border-right: 1px solid var(--site-line);
}

.detail-process-item:first-child {
  padding-left: 0;
}

.detail-process-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.detail-process-item > span,
.detail-delivery-item > span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #fff;
  background: var(--site-blue);
  font-size: 12px;
  font-weight: 800;
}

.detail-delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.detail-delivery-item {
  min-width: 0;
  padding: 30px 24px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.detail-delivery-item:first-child {
  padding-left: 0;
}

.detail-delivery-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.detail-delivery-item h3 {
  color: #fff;
}

.detail-delivery-item p {
  color: rgba(255, 255, 255, 0.74);
}

.detail-evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--site-line);
  border: 1px solid var(--site-line);
}

.detail-evidence-item {
  min-width: 0;
  padding: 26px;
  background: #fff;
}

.detail-cta-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.event-next {
  max-width: 900px;
  margin-left: max(20px, calc((100% - var(--site-max)) / 2));
  margin-right: auto;
}

.event-next h2 {
  margin: 10px 0 16px;
  font-size: 38px;
  line-height: 1.18;
}

.event-next p {
  max-width: 820px;
  margin: 0;
  color: var(--site-copy);
  font-size: 17px;
}

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

.event-photo {
  margin: 0;
  background: var(--site-surface);
  border: 1px solid var(--site-line);
}

.event-photo a {
  display: block;
  overflow: hidden;
}

.event-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 180ms ease;
}

.event-photo a:hover img,
.event-photo a:focus-visible img {
  transform: scale(1.015);
}

.event-photo figcaption {
  min-height: 64px;
  padding: 16px 18px;
  color: var(--site-copy);
  font-size: 14px;
}

.site-cta-band .site-button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 920px) {
  .detail-hero-copy {
    width: min(820px, 88%);
  }

  .detail-facts-grid,
  .detail-process,
  .detail-delivery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-facts-grid article:nth-child(2),
  .detail-process-item:nth-child(2),
  .detail-delivery-item:nth-child(2) {
    border-right: 0;
  }

  .detail-facts-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .detail-process-item,
  .detail-process-item:first-child,
  .detail-delivery-item,
  .detail-delivery-item:first-child {
    padding: 28px 22px;
  }

  .detail-process-item:nth-child(-n + 2),
  .detail-delivery-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--site-line);
  }

  .detail-delivery-item:nth-child(-n + 2) {
    border-bottom-color: rgba(255, 255, 255, 0.18);
  }
}

@media (max-width: 620px) {
  .detail-breadcrumb {
    min-height: 46px;
  }

  .detail-hero {
    min-height: 520px;
  }

  .detail-hero::before {
    background: rgba(9, 16, 22, 0.8);
  }

  .detail-hero-inner {
    align-items: flex-end;
    padding: 54px 0 48px;
  }

  .detail-hero-copy {
    width: 100%;
  }

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

  .detail-hero-copy > p:not(.site-eyebrow) {
    font-size: 16px;
  }

  .detail-caption {
    text-align: left;
  }

  .detail-facts-grid,
  .detail-scenario-grid,
  .detail-process,
  .detail-delivery-grid,
  .detail-evidence-grid {
    grid-template-columns: 1fr;
  }

  .detail-facts-grid article,
  .detail-facts-grid article:nth-child(2),
  .detail-scenario-item,
  .detail-process-item,
  .detail-process-item:first-child,
  .detail-process-item:nth-child(2),
  .detail-delivery-item,
  .detail-delivery-item:first-child,
  .detail-delivery-item:nth-child(2) {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--site-line);
  }

  .detail-facts-grid article {
    padding-inline: 14px;
    border-bottom-color: rgba(255, 255, 255, 0.15);
  }

  .detail-delivery-item,
  .detail-delivery-item:nth-child(2) {
    border-bottom-color: rgba(255, 255, 255, 0.18);
  }

  .detail-scenario-item:last-child,
  .detail-process-item:last-child,
  .detail-delivery-item:last-child {
    border-bottom: 0;
  }

  .detail-cta-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .event-photo-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .detail-cta-actions a {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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