@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/inter-400-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/inter-600-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
  src: url("/assets/fonts/inter-700-latin.woff2") format("woff2");
}

:root {
  --navy-950: #061c30;
  --navy-900: #0a2945;
  --navy-800: #0d3a61;
  --blue-700: #0b5794;
  --blue-600: #1269ad;
  --blue-100: #dcecf7;
  --blue-50: #edf6fb;
  --cyan-500: #1ba3be;
  --ink: #102233;
  --ink-2: #334b60;
  --ink-3: #5a7082;
  --line: #d9e2e9;
  --paper: #ffffff;
  --soft: #f4f7f9;
  --warm: #f7f5f1;
  --shadow: 0 18px 50px rgba(6, 28, 48, 0.11);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
  --wrap: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--blue-700);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

button,
input {
  font: inherit;
}

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

.narrow {
  max-width: 880px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--paper);
  color: var(--navy-950);
  font-weight: 700;
  transform: translateY(-180%);
}

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

.utility-bar {
  background: var(--navy-950);
  color: #cde0ee;
  font-size: 12px;
}

.utility-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 8px;
}

.utility-inner a {
  color: #fff;
  text-decoration: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(10, 41, 69, 0.1);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-950);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 54px;
  height: 38px;
  place-items: center;
  border-radius: 5px 14px 5px 14px;
  background: var(--blue-700);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 19px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.brand small {
  margin-top: 4px;
  color: var(--ink-3);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav > a {
  padding: 10px 13px;
  border-radius: 7px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.site-nav > a:hover,
.site-nav > a[aria-current="page"] {
  background: var(--blue-50);
  color: var(--blue-700);
}

.site-nav .nav-cta {
  margin-left: 7px;
  padding-inline: 18px;
  background: var(--navy-900);
  color: #fff;
}

.site-nav .nav-cta:hover {
  background: var(--blue-700);
  color: #fff;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--navy-900);
  padding: 8px 12px;
  font-weight: 700;
}

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

h1,
h2,
h3 {
  color: var(--navy-950);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(44px, 6.2vw, 78px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3.7vw, 48px);
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lede {
  color: var(--ink-2);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.section {
  padding-block: 92px;
}

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

.section-navy {
  background:
    radial-gradient(circle at 80% 0, rgba(27, 163, 190, 0.18), transparent 35%),
    var(--navy-950);
  color: #c9d9e5;
}

.section-navy h2,
.section-navy h3,
.section-navy strong {
  color: #fff;
}

.section-navy .eyebrow {
  color: #6cc7d9;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p,
.section-heading > a {
  margin-bottom: 5px;
}

.light-heading h2 {
  color: #fff;
}

.light-heading > p {
  color: #c9d9e5;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 11px 19px;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button.primary {
  background: var(--blue-700);
  color: #fff;
}

.button.primary:hover {
  background: var(--navy-800);
}

.button.secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--navy-900);
}

.button.light {
  background: #fff;
  color: var(--navy-950);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.text-link::after {
  content: "›";
  font-size: 20px;
  line-height: 1;
}

.home-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #b9c9d4;
  padding-block: 76px 72px;
  background:
    linear-gradient(rgba(10, 41, 69, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 41, 69, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, #f7f9fa, #eaf1f5);
  background-position: center;
  background-size: 32px 32px, 32px 32px, auto;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  gap: 72px;
  align-items: center;
}

.home-hero-copy {
  position: relative;
  z-index: 1;
}

.home-hero h1 {
  max-width: 700px;
  font-size: clamp(50px, 5.7vw, 76px);
  letter-spacing: -0.055em;
}

.home-hero .lede {
  max-width: 660px;
}

.home-hero .button {
  border-radius: 2px;
}

.industrial-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 44px;
  border-top: 1px solid #b8c8d3;
  padding-top: 18px;
  color: var(--ink-3);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.industrial-proof span {
  position: relative;
  padding-left: 14px;
}

.industrial-proof span::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--blue-700);
  content: "";
}

.industrial-system-map {
  position: relative;
  overflow: hidden;
  border: 1px solid #9fb3c1;
  border-radius: 2px;
  background:
    linear-gradient(rgba(13, 58, 97, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 58, 97, 0.045) 1px, transparent 1px),
    rgba(249, 251, 252, 0.97);
  background-size: 24px 24px;
  box-shadow: 18px 20px 0 rgba(10, 41, 69, 0.08);
}

.industrial-system-map::before {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--blue-700);
  content: "";
}

.system-map-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #8fa6b5;
  background: var(--navy-950);
  color: #fff;
  padding: 11px 16px 11px 20px;
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.system-map-head strong {
  color: #9fc1d8;
  font-weight: 650;
}

.system-map-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #aebfca;
  padding: 22px;
}

.map-module {
  display: grid;
  min-width: 0;
  min-height: 318px;
  grid-template-rows: auto 1fr auto;
  border: 1px solid #bfccd5;
  background: rgba(255, 255, 255, 0.85);
  color: inherit;
  padding: 13px;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.map-module:hover {
  border-color: var(--blue-700);
  background: #fff;
}

.map-module > span {
  color: var(--blue-700);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-module img {
  width: 100%;
  height: 230px;
  object-fit: contain;
}

.map-module > strong {
  border-top: 1px solid #d3dde4;
  padding-top: 10px;
  color: var(--navy-950);
  font-size: 12px;
}

.map-connector {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: var(--ink-3);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.map-connector i {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 10px;
  background: var(--blue-700);
}

.map-connector i::after {
  position: absolute;
  top: -4px;
  right: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 7px solid var(--blue-700);
  content: "";
}

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

.system-map-support > a {
  display: grid;
  min-width: 0;
  grid-template-columns: 78px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border-right: 1px solid #aebfca;
  color: inherit;
  padding: 12px;
  text-decoration: none;
}

.system-map-support > a:last-child {
  border-right: 0;
}

.system-map-support img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.system-map-support span,
.system-map-support strong,
.system-map-support small {
  display: block;
  min-width: 0;
}

.system-map-support small {
  margin-bottom: 5px;
  color: var(--blue-700);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.system-map-support strong {
  overflow: hidden;
  color: var(--navy-950);
  font-size: 10px;
  line-height: 1.35;
  text-overflow: ellipsis;
}

.system-index {
  border-bottom: 1px solid #294a65;
  background: var(--navy-950);
}

.system-index-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.system-index a {
  display: flex;
  min-width: 0;
  min-height: 104px;
  justify-content: center;
  flex-direction: column;
  border-right: 1px solid #294a65;
  color: #fff;
  padding: 18px;
  text-decoration: none;
}

.system-index a:first-child {
  border-left: 1px solid #294a65;
}

.system-index a:hover {
  background: #0d3558;
}

.system-index span,
.system-index strong {
  display: block;
}

.system-index span {
  margin-bottom: 6px;
  color: #77a8c8;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.system-index strong {
  font-size: 12px;
  line-height: 1.35;
}

.industrial-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 46px;
  border-top: 3px solid var(--navy-900);
  padding-top: 24px;
}

.industrial-section-head h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.industrial-section-head > p {
  margin-bottom: 5px;
  color: var(--ink-3);
}

.industrial-link {
  display: inline-flex;
  align-items: center;
  align-self: end;
  gap: 14px;
  border-bottom: 1px solid currentColor;
  color: var(--blue-700);
  padding-bottom: 5px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.industrial-link::after {
  content: "→";
  font-size: 15px;
}

.industrial-link.light {
  color: #85bedf;
}

.system-category-list {
  border-top: 1px solid #acbeca;
}

.system-category {
  display: grid;
  min-height: 264px;
  grid-template-columns: 170px 286px minmax(0, 1fr);
  border-bottom: 1px solid #acbeca;
}

.system-category-role {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  border-right: 1px solid #c5d1d9;
  padding: 28px 28px 26px 0;
}

.system-category-role span {
  color: var(--blue-700);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.system-category-role i {
  position: relative;
  display: block;
  height: 1px;
  background: #9fb4c2;
}

.system-category-role i::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-700);
  content: "";
}

.system-category-image {
  display: block;
  border-right: 1px solid #c5d1d9;
  background:
    linear-gradient(rgba(13, 58, 97, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 58, 97, 0.04) 1px, transparent 1px),
    var(--blue-50);
  background-size: 24px 24px;
}

.system-category-image img {
  width: 100%;
  height: 264px;
  object-fit: contain;
}

.system-category-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 34px 0 30px 42px;
}

.system-category-copy > p {
  margin-bottom: 10px;
  color: var(--blue-700);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.system-category-copy h3 {
  margin-bottom: 13px;
  font-size: 30px;
}

.system-category-copy h3 a {
  color: inherit;
  text-decoration: none;
}

.system-category-copy > div {
  max-width: 620px;
  margin-bottom: 22px;
  color: var(--ink-3);
  font-size: 14px;
}

.system-category-copy .industrial-link {
  margin-top: auto;
}

.engineering-panel {
  padding-block: 102px;
  background:
    linear-gradient(rgba(129, 181, 214, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(129, 181, 214, 0.055) 1px, transparent 1px),
    var(--navy-950);
  background-size: 32px 32px;
}

.engineering-brief {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 92px;
}

.engineering-brief-intro {
  position: sticky;
  top: 122px;
}

.engineering-brief-intro h2 {
  color: #fff;
}

.engineering-brief-intro > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: #afc4d4;
}

.brief-logic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #44627a;
  border-left: 1px solid #44627a;
}

.brief-logic article {
  min-height: 238px;
  border-right: 1px solid #44627a;
  border-bottom: 1px solid #44627a;
  padding: 30px;
}

.brief-logic span {
  display: block;
  margin-bottom: 42px;
  color: #78b7db;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.brief-logic h3 {
  color: #fff;
  font-size: 19px;
}

.brief-logic p {
  margin-bottom: 0;
  color: #9eb5c5;
  font-size: 13px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid #b8c7d1;
  background: #b8c7d1;
}

.showcase-family {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: #fff;
  color: inherit;
  text-decoration: none;
}

.showcase-family:first-child {
  grid-row: span 2;
  grid-column: span 2;
}

.showcase-image {
  display: block;
  min-height: 230px;
  border-bottom: 1px solid #d4dee5;
  background:
    linear-gradient(rgba(13, 58, 97, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 58, 97, 0.035) 1px, transparent 1px),
    var(--blue-50);
  background-size: 28px 28px;
}

.showcase-family:first-child .showcase-image {
  min-height: 480px;
}

.showcase-image img {
  width: 100%;
  height: 230px;
  object-fit: contain;
}

.showcase-family:first-child .showcase-image img {
  height: 480px;
}

.showcase-copy {
  display: flex;
  min-height: 178px;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.showcase-family:first-child .showcase-copy {
  min-height: 210px;
  padding: 34px;
}

.showcase-copy small {
  margin-bottom: 12px;
  color: var(--blue-700);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.showcase-copy b {
  margin-bottom: 5px;
  color: var(--ink-3);
  font-size: 10px;
}

.showcase-copy strong {
  color: var(--navy-950);
  font-size: 15px;
  line-height: 1.35;
}

.showcase-family:first-child .showcase-copy strong {
  max-width: 440px;
  font-size: 28px;
}

.showcase-copy em {
  margin-top: auto;
  padding-top: 18px;
  color: var(--blue-700);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-notes {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: 100px;
}

.field-notes-intro h2 {
  max-width: 500px;
}

.field-notes-intro > p:not(.eyebrow) {
  color: var(--ink-3);
}

.field-note-list {
  border-top: 3px solid var(--navy-900);
}

.field-note {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  gap: 6px 28px;
  border-bottom: 1px solid #b8c7d1;
  color: inherit;
  padding: 27px 0;
  text-decoration: none;
}

.field-note > span {
  grid-row: span 2;
  color: var(--blue-700);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field-note > strong {
  color: var(--navy-950);
  font-size: 18px;
}

.field-note > p {
  margin-bottom: 0;
  color: var(--ink-3);
  font-size: 13px;
}

.metrics-band {
  background: var(--navy-900);
  color: #fff;
}

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

.metrics-grid > div {
  display: flex;
  min-height: 118px;
  align-items: center;
  gap: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 28px;
}

.metrics-grid > div:last-child {
  border-right: 0;
}

.metrics-grid strong {
  font-size: 32px;
}

.metrics-grid span {
  color: #bdd0df;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
  text-transform: uppercase;
}

.category-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.category-card {
  display: grid;
  overflow: hidden;
  grid-template-columns: 42% 58%;
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.category-card:last-child {
  grid-column: 1 / -1;
  grid-template-columns: 34% 66%;
}

.category-card-image {
  display: block;
  min-height: 260px;
  background: var(--blue-50);
}

.category-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.category-card > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
}

.category-card > div > span {
  margin-bottom: 18px;
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.category-card h3 a {
  color: inherit;
  text-decoration: none;
}

.category-card p {
  color: var(--ink-3);
  font-size: 14px;
}

.category-card .text-link {
  margin-top: auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-grid article {
  min-height: 250px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding: 24px 10px 10px 0;
}

.process-grid article > span {
  display: block;
  margin-bottom: 50px;
  color: #6cc7d9;
  font-size: 12px;
  font-weight: 800;
}

.process-grid article p {
  color: #afc4d4;
  font-size: 14px;
}

.process-light article {
  border-top-color: var(--line);
}

.process-light article > span {
  color: var(--blue-700);
}

.process-light article p {
  color: var(--ink-3);
}

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

.product-card {
  display: flex;
  overflow: hidden;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.product-card:hover {
  border-color: #aac6da;
  box-shadow: 0 14px 34px rgba(6, 28, 48, 0.09);
  transform: translateY(-2px);
}

.product-card[hidden] {
  display: none;
}

.product-card-image {
  display: block;
  aspect-ratio: 1;
  border-bottom: 1px solid var(--line);
  background: var(--blue-50);
}

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

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
}

.product-card-body > span {
  margin-bottom: 9px;
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-card h3 {
  font-size: 17px;
}

.product-card h3 a {
  color: inherit;
  text-decoration: none;
}

.product-card .text-link {
  margin-top: auto;
  padding-top: 14px;
  font-size: 12px;
}

.card-data {
  width: 100%;
  margin: 6px 0 12px;
}

.card-data > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid #e7edf1;
  padding: 7px 0;
  font-size: 10px;
}

.card-data dt {
  color: var(--ink-3);
}

.card-data dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  text-align: right;
}

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

.editorial-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: inherit;
  padding: 30px;
  text-decoration: none;
}

.editorial-card:hover {
  border-color: #9fbfd5;
  box-shadow: 0 12px 30px rgba(6, 28, 48, 0.08);
}

.editorial-card > span {
  margin-bottom: 30px;
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.editorial-card p {
  color: var(--ink-3);
  font-size: 14px;
}

.editorial-card b {
  margin-top: auto;
  color: var(--blue-700);
  font-size: 13px;
}

.editorial-card.feature {
  background: var(--navy-900);
  color: #fff;
}

.editorial-card.feature h3,
.editorial-card.feature b {
  color: #fff;
}

.editorial-card.feature p {
  color: #c5d7e4;
}

.value-section {
  align-items: start;
}

.value-list article {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.value-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-900);
}

.value-list p {
  margin-bottom: 0;
  color: var(--ink-3);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 100px;
}

.prose {
  color: var(--ink-2);
  font-size: 17px;
}

.prose p {
  margin-bottom: 22px;
}

.prose-light {
  color: #c8d9e5;
}

.prose-light a {
  color: #fff;
}

.page-hero {
  padding-block: 104px 92px;
  background:
    radial-gradient(circle at 90% 10%, rgba(18, 105, 173, 0.13), transparent 31%),
    var(--soft);
}

.page-hero.compact {
  padding-block: 72px 64px;
}

.page-hero .narrow {
  margin-left: max(20px, calc((100% - var(--wrap)) / 2));
}

.breadcrumbs {
  display: flex;
  overflow: hidden;
  align-items: center;
  gap: 9px;
  padding-block: 18px;
  color: var(--ink-3);
  font-size: 12px;
  white-space: nowrap;
}

.breadcrumbs a {
  color: var(--ink-2);
  text-decoration: none;
}

.breadcrumbs > span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-hero {
  padding-block: 48px 82px;
  background: linear-gradient(135deg, #f8fbfd, #edf5fa);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: center;
}

.product-image-panel {
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(13, 58, 97, 0.12);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

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

.product-intro h1 {
  font-size: clamp(40px, 5vw, 64px);
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 19px;
}

.series-badge,
.meta-chip {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 800;
}

.series-badge {
  background: var(--navy-900);
  color: #fff;
}

.meta-chip {
  background: var(--blue-100);
  color: var(--navy-800);
}

.key-figures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 30px 0 0;
  border-top: 1px solid #cadbe7;
}

.key-figures > div {
  border-bottom: 1px solid #cadbe7;
  padding: 14px 16px 14px 0;
}

.key-figures > div:nth-child(even) {
  border-left: 1px solid #cadbe7;
  padding-left: 16px;
}

.key-figures dt {
  color: var(--ink-3);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.key-figures dd {
  margin: 5px 0 0;
  color: var(--navy-900);
  font-size: 15px;
  font-weight: 750;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  border-top: 1px solid var(--line);
  padding: 17px 0 17px 30px;
}

.check-list li::before {
  position: absolute;
  top: 19px;
  left: 2px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-700);
  content: "✓";
  font-size: 10px;
  font-weight: 900;
  line-height: 15px;
  text-align: center;
}

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

.spec-block,
.notice {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 28px;
}

.spec-block h3 {
  margin-bottom: 22px;
}

.spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  gap: 0 40px;
}

.spec-list > div {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 16px;
  border-top: 1px solid #e4ebf0;
  padding: 12px 0;
}

.spec-list dt {
  color: var(--ink-3);
  font-size: 12px;
}

.spec-list dd {
  margin: 0;
  font-size: 13px;
  font-weight: 650;
}

.table-scroll {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.data-table th {
  background: var(--navy-900);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-align: left;
  text-transform: uppercase;
}

.data-table th,
.data-table td {
  min-width: 105px;
  border: 1px solid var(--line);
  padding: 10px 11px;
  vertical-align: top;
}

.data-table tbody tr:nth-child(even) {
  background: var(--soft);
}

.notice {
  border-left: 4px solid var(--blue-600);
  color: var(--ink-2);
}

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

.related-card {
  display: grid;
  grid-template-columns: 125px 1fr;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: inherit;
  padding: 16px;
  text-decoration: none;
}

.related-card img {
  grid-row: span 2;
  width: 110px;
  height: 110px;
  object-fit: contain;
}

.related-card span {
  color: var(--blue-700);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.category-hero {
  padding-block: 64px 80px;
  background: linear-gradient(140deg, #f5f9fc, #e6f1f7);
}

.category-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.category-hero-image {
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.category-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-stat-row {
  display: flex;
  gap: 38px;
  margin: 34px 0;
}

.hero-stat-row > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-stat-row strong {
  color: var(--navy-900);
  font-size: 28px;
}

.hero-stat-row span {
  max-width: 85px;
  color: var(--ink-3);
  font-size: 10px;
  font-weight: 750;
  line-height: 1.3;
  text-transform: uppercase;
}

.guidance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.guidance-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.guidance-card > span {
  display: block;
  margin-bottom: 36px;
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 850;
}

.guidance-card p {
  margin: 0;
  color: var(--ink-3);
  font-size: 13px;
}

.category-index {
  padding-block: 23px;
}

.category-index-inner {
  display: flex;
  align-items: center;
  gap: 30px;
}

.category-index nav {
  display: flex;
  overflow-x: auto;
  gap: 8px;
}

.category-index a {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-2);
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.category-group + .category-group {
  border-top: 1px solid var(--line);
}

.directory-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.directory-stat strong {
  font-size: 34px;
}

.directory-stat span {
  color: var(--ink-3);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.directory-controls {
  position: sticky;
  z-index: 50;
  top: 76px;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  padding-block: 20px;
  backdrop-filter: blur(14px);
}

.search-box {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 14px;
}

.search-box > span {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.search-box input {
  width: 100%;
  border: 1px solid #bdceda;
  border-radius: 8px;
  outline: none;
  padding: 12px 14px;
}

.search-box input:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(18, 105, 173, 0.13);
}

.filter-row {
  display: flex;
  overflow-x: auto;
  gap: 7px;
  margin-top: 14px;
}

.filter-button {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-2);
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.filter-button span {
  color: var(--ink-3);
}

.filter-button.active {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: #fff;
}

.filter-button.active span {
  color: #c5d7e4;
}

.results-line {
  margin-top: 13px;
  color: var(--ink-3);
  font-size: 12px;
}

.empty-state {
  border: 1px dashed #aec1cf;
  border-radius: var(--radius);
  padding: 60px 24px;
  text-align: center;
}

.range-list {
  border-top: 1px solid var(--line);
}

.range-row {
  display: grid;
  grid-template-columns: 50px 1fr 130px;
  gap: 22px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: inherit;
  padding: 23px 5px;
  text-decoration: none;
}

.range-row > span {
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 850;
}

.range-row p {
  margin: 4px 0 0;
  color: var(--ink-3);
  font-size: 13px;
}

.range-row b {
  color: var(--ink-3);
  font-size: 11px;
  text-align: right;
  text-transform: uppercase;
}

.company-details-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.company-details {
  margin: 0;
}

.company-details > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

.company-details dt {
  color: var(--ink-3);
  font-size: 12px;
}

.company-details dd {
  margin: 0;
  font-weight: 650;
}

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

.contact-method > span,
.address-card > span {
  display: block;
  color: var(--ink-3);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-method > a {
  display: inline-block;
  margin-top: 5px;
  font-size: 21px;
  font-weight: 750;
}

.contact-method p {
  margin: 7px 0 0;
  color: var(--ink-3);
  font-size: 13px;
}

.address-card {
  display: grid;
  gap: 5px;
  margin-top: 24px;
  border-radius: var(--radius);
  background: var(--soft);
  padding: 24px;
  font-style: normal;
}

.inquiry-list {
  margin: 25px 0;
  padding: 0;
  list-style: none;
}

.inquiry-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

.inquiry-list span {
  color: var(--ink-3);
  font-size: 13px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 90px;
  align-items: start;
}

.faq-layout > div:first-child {
  position: sticky;
  top: 115px;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 22px 44px 22px 0;
  color: var(--navy-900);
  font-size: 17px;
  font-weight: 750;
  cursor: pointer;
}

.faq-list summary::after {
  position: absolute;
  top: 19px;
  right: 4px;
  content: "+";
  color: var(--blue-700);
  font-size: 24px;
}

.faq-list details[open] summary::after {
  content: "×";
}

.faq-list details > div {
  max-width: 700px;
  color: var(--ink-2);
  padding: 0 30px 22px 0;
}

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

.download-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.download-card {
  display: flex;
  min-height: 235px;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: inherit;
  padding: 24px;
  text-decoration: none;
}

.download-card > span {
  margin-bottom: 30px;
  color: var(--blue-700);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.download-card small {
  margin-top: 8px;
  color: var(--ink-3);
}

.download-card b {
  margin-top: auto;
  color: var(--blue-700);
  font-size: 12px;
}

.article-hero {
  padding-block: 72px 82px;
  background:
    radial-gradient(circle at 85% 0, rgba(27, 163, 190, 0.18), transparent 34%),
    var(--navy-950);
}

.article-hero h1 {
  color: #fff;
  font-size: clamp(42px, 5.4vw, 70px);
}

.article-hero .lede {
  color: #c5d7e4;
}

.article-hero .eyebrow {
  color: #6cc7d9;
}

.article-byline {
  display: flex;
  gap: 24px;
  margin-top: 30px;
  color: #9db5c7;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.article-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: 90px;
  justify-content: center;
  align-items: start;
}

.article-toc {
  position: sticky;
  top: 115px;
  display: flex;
  flex-direction: column;
  border-top: 2px solid var(--navy-900);
  padding-top: 17px;
}

.article-toc strong {
  margin-bottom: 12px;
  font-size: 12px;
  text-transform: uppercase;
}

.article-toc > a {
  border-top: 1px solid var(--line);
  color: var(--ink-3);
  padding: 9px 0;
  font-size: 11px;
  text-decoration: none;
}

.article-toc .toc-contact {
  margin-top: 14px;
  color: var(--blue-700);
  font-weight: 750;
}

.longform {
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.78;
}

.longform > p:first-child {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.65;
}

.longform h2 {
  margin-top: 58px;
  scroll-margin-top: 120px;
  font-size: 32px;
}

.longform h3 {
  margin-top: 34px;
}

.longform p,
.longform li {
  margin-bottom: 18px;
}

.longform ul,
.longform ol {
  padding-left: 24px;
}

.longform li::marker {
  color: var(--blue-700);
  font-weight: 800;
}

.formula {
  overflow-x: auto;
  border-left: 4px solid var(--cyan-500);
  background: var(--blue-50);
  padding: 18px 20px;
}

.formula code {
  color: var(--navy-900);
  font-size: 15px;
  font-weight: 700;
}

.article-note {
  margin-top: 60px;
  border-radius: var(--radius);
  background: var(--soft);
  padding: 26px;
}

.article-note p {
  margin: 8px 0 0;
  font-size: 14px;
}

.quote-band {
  background:
    radial-gradient(circle at 85% 0, rgba(27, 163, 190, 0.25), transparent 36%),
    var(--blue-700);
  color: #dceaf3;
  padding-block: 62px;
}

.quote-band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.quote-band h2 {
  margin-bottom: 10px;
  color: #fff;
}

.quote-band p {
  max-width: 780px;
  margin-bottom: 0;
}

.quote-band .eyebrow {
  color: #b8e2eb;
}

.site-footer {
  background: var(--navy-950);
  color: #a8bfce;
  padding-block: 70px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.7fr 1fr;
  gap: 70px;
}

.footer-brand {
  color: #fff;
}

.footer-brand small {
  color: #a8bfce;
}

.footer-grid > div:first-child > p {
  max-width: 360px;
  margin-top: 25px;
  font-size: 13px;
}

.footer-grid h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid a {
  margin-bottom: 8px;
  color: #c9d9e5;
  font-size: 13px;
  text-decoration: none;
}

.footer-grid address {
  margin-bottom: 12px;
  font-size: 13px;
  font-style: normal;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  color: #7894a7;
  font-size: 10px;
}

:focus-visible {
  outline: 3px solid rgba(27, 163, 190, 0.7);
  outline-offset: 3px;
}

@media (max-width: 1050px) {
  .site-nav {
    gap: 0;
  }

  .site-nav > a {
    padding-inline: 9px;
  }

  .home-hero-grid,
  .product-hero-grid,
  .category-hero-grid {
    gap: 42px;
  }

  .home-hero-grid {
    grid-template-columns: 1fr;
  }

  .industrial-system-map {
    width: 100%;
    max-width: 780px;
  }

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

  .system-category {
    grid-template-columns: 140px 250px minmax(0, 1fr);
  }

  .engineering-brief,
  .field-notes {
    gap: 58px;
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1.3fr 0.7fr 0.7fr;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .utility-inner > span {
    display: none;
  }

  .utility-inner {
    justify-content: flex-end;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    border-bottom: 1px solid var(--line);
    background: #fff;
    padding: 12px 20px 20px;
    box-shadow: 0 18px 30px rgba(6, 28, 48, 0.1);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav .nav-cta {
    margin: 6px 0 0;
    text-align: center;
  }

  .home-hero-grid,
  .product-hero-grid,
  .category-hero-grid,
  .split-layout,
  .company-details-grid,
  .contact-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .home-hero-grid {
    gap: 54px;
  }

  .system-index-track {
    display: flex;
    overflow-x: auto;
  }

  .system-index a {
    flex: 0 0 220px;
  }

  .industrial-section-head,
  .engineering-brief,
  .field-notes {
    grid-template-columns: 1fr;
  }

  .engineering-brief-intro {
    position: static;
  }

  .system-category {
    grid-template-columns: 120px 220px minmax(0, 1fr);
  }

  .system-category-copy {
    padding-left: 28px;
  }

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

  .showcase-family:first-child {
    grid-column: span 2;
  }

  .field-notes {
    gap: 52px;
  }

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

  .metrics-grid > div:nth-child(2) {
    border-right: 0;
  }

  .metrics-grid > div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

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

  .category-card:last-child {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .category-card-image {
    min-height: 320px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

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

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

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

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

  .article-toc,
  .faq-layout > div:first-child {
    position: static;
  }

  .article-toc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
  }

  .article-toc strong,
  .article-toc .toc-contact {
    grid-column: 1 / -1;
  }

  .quote-band-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 45px;
  }

  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(calc(100% - 28px), var(--wrap));
  }

  .header-inner {
    min-height: 68px;
  }

  .site-nav {
    top: 68px;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 48px;
    height: 34px;
  }

  h1 {
    font-size: 42px;
  }

  .section {
    padding-block: 68px;
  }

  .home-hero {
    padding-block: 54px 58px;
  }

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

  .industrial-proof {
    align-items: flex-start;
    flex-direction: column;
  }

  .industrial-system-map {
    box-shadow: 8px 10px 0 rgba(10, 41, 69, 0.08);
  }

  .system-map-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .system-map-flow {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .map-module {
    min-height: 250px;
  }

  .map-module img {
    height: 180px;
  }

  .map-connector {
    display: none;
  }

  .system-map-support {
    grid-template-columns: 1fr;
  }

  .system-map-support > a {
    border-top: 1px solid #aebfca;
    border-right: 0;
  }

  .industrial-section-head {
    gap: 18px;
    margin-bottom: 34px;
  }

  .system-category {
    grid-template-columns: 1fr;
  }

  .system-category-role {
    min-height: 82px;
    flex-direction: row;
    border-right: 0;
    border-bottom: 1px solid #c5d1d9;
    padding: 24px 0;
  }

  .system-category-role i {
    width: 110px;
    margin-top: 7px;
  }

  .system-category-image {
    border-right: 0;
    border-bottom: 1px solid #c5d1d9;
  }

  .system-category-image img {
    height: 280px;
  }

  .system-category-copy {
    padding: 28px 0 34px;
  }

  .engineering-panel {
    padding-block: 72px;
  }

  .brief-logic {
    grid-template-columns: 1fr;
  }

  .brief-logic article {
    min-height: 210px;
  }

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

  .showcase-family:first-child {
    grid-row: auto;
    grid-column: auto;
  }

  .showcase-family:first-child .showcase-image,
  .showcase-image {
    min-height: 300px;
  }

  .showcase-family:first-child .showcase-image img,
  .showcase-image img {
    height: 300px;
  }

  .field-note {
    grid-template-columns: 1fr;
  }

  .field-note > span {
    grid-row: auto;
  }

  .page-hero,
  .article-hero {
    padding-block: 62px;
  }

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

  .metrics-grid > div {
    min-height: 84px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .product-grid,
  .editorial-grid,
  .guidance-grid,
  .process-grid,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .category-card-image {
    min-height: 260px;
  }

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

  .key-figures,
  .spec-list {
    grid-template-columns: 1fr;
  }

  .key-figures > div:nth-child(even) {
    border-left: 0;
    padding-left: 0;
  }

  .spec-list > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hero-stat-row {
    flex-direction: column;
    gap: 10px;
  }

  .category-index-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .directory-controls {
    position: static;
  }

  .search-box {
    grid-template-columns: 1fr;
  }

  .range-row {
    grid-template-columns: 36px 1fr;
  }

  .range-row b {
    grid-column: 2;
    text-align: left;
  }

  .company-details > div,
  .inquiry-list li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .article-toc {
    grid-template-columns: 1fr;
  }

  .article-toc strong,
  .article-toc .toc-contact {
    grid-column: auto;
  }

  .longform {
    font-size: 16px;
  }

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

  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .utility-bar,
  .site-header,
  .site-footer,
  .quote-band,
  .article-toc,
  .button-row {
    display: none !important;
  }

  body {
    color: #000;
    font-size: 10pt;
  }

  .section,
  .article-section {
    padding-block: 10mm;
  }
}
