/* Manrope is bundled with the theme under the SIL Open Font License. */
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --navy: #06141d;
  --navy-2: #071b28;
  --navy-3: #0b2235;
  --ink: #111827;
  --muted: #6b7280;
  --brand-blue: #005bbb;
  --brand-blue-bright: #006dff;
  --brand-blue-mid: #0077d9;
  --brand-blue-soft: #eaf3ff;
  --teal: #00bfa6;
  --teal-bright: #00d6a3;
  --green: #2ee6b8;
  --mist: #eef3f4;
  --soft: #f4f7f8;
  --line: #e5ecef;
  --gold: #c89b2e;
  --gold-soft: #d6aa3a;
  --white: #fff;
  --shadow: 0 24px 70px rgba(8, 28, 36, .18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

img {
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--navy);
  color: #fff;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: fixed;
  top: 22px;
  left: 0;
  right: 0;
  z-index: 50;
  pointer-events: none;
}

.nav {
  position: relative;
  width: min(1320px, calc(100% - 42px));
  min-height: 72px;
  margin: 0 auto;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 18px;
  pointer-events: auto;
  border: 1px solid rgba(255, 255, 255, .46);
  border-radius: 18px;
  background: rgba(238, 244, 246, .86);
  box-shadow: 0 18px 48px rgba(8, 28, 36, .22);
  backdrop-filter: blur(18px);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--navy);
}

.brand img {
  width: 42px;
  max-height: 42px;
  object-fit: contain;
}

.brand span {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-links > a,
.nav-pill {
  min-height: 42px;
  padding: 9px 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #26323a;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}

.nav-mega-control {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  transition: background .18s ease, color .18s ease;
}

.nav-mega-control:hover,
.nav-item--mega.is-open .nav-mega-control {
  background: rgba(0, 109, 255, .12);
  color: var(--brand-blue);
}

.nav-mega-control .nav-pill:hover {
  background: transparent;
  color: inherit;
}

.nav-mega-link {
  padding-right: 6px;
}

.nav-mega-toggle {
  min-width: 34px;
  padding-left: 4px;
  padding-right: 12px;
}

.nav-links > a:hover,
.nav-pill:hover,
.nav-pill[aria-expanded="true"] {
  background: rgba(0, 109, 255, .12);
  color: var(--brand-blue);
}

.nav-chevron {
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-top: -3px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .18s ease;
}

.nav-pill[aria-expanded="true"] .nav-chevron {
  transform: translateY(3px) rotate(225deg);
}

.nav-item {
  position: static;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: min(960px, calc(100vw - 48px));
  padding: 28px 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, 8px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .97);
  box-shadow: var(--shadow);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.mega-menu.open {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.nav-item--products {
  position: relative;
}

.mega-menu--products {
  left: 0;
  width: min(340px, calc(100vw - 48px));
  grid-template-columns: minmax(0, 1fr);
  transform: translate(0, 8px);
}

.mega-menu--products.open {
  transform: translate(0, 0);
}

.mega-menu--buyer-solutions,
.mega-menu--resources {
  width: min(900px, calc(100vw - 48px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mega-menu--knowledge {
  width: min(900px, calc(100vw - 48px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mega-menu--distributors,
.mega-menu--brands,
.mega-menu--projects,
.mega-menu--home-charging,
.mega-menu--business-charging,
.mega-menu--fast-charging {
  width: min(1040px, calc(100vw - 48px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mega-menu p {
  margin: 0 0 10px;
  color: #9ca3af;
  font-size: 14px;
  font-weight: 500;
}

.mega-menu a {
  display: block;
  padding: 7px 0;
  color: #262b31;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
}

.mega-menu a:hover {
  color: var(--brand-blue);
}

.contact-pill {
  min-height: 44px;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(8, 28, 36, .42);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-weight: 500;
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}

.contact-pill:hover {
  border-color: rgba(0, 91, 187, .55);
  background: rgba(255, 255, 255, .88);
  color: var(--brand-blue);
}

.site-search-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}

.site-search-toggle:hover,
.site-search-toggle:focus-visible,
.site-search-toggle[aria-expanded="true"] {
  background: rgba(0, 109, 255, .12);
  color: var(--brand-blue);
}

.site-search-toggle svg {
  width: 21px;
  height: 21px;
}

.site-search-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: min(720px, calc(100vw - 48px));
  padding: 16px;
  transform: translateX(-50%);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .98);
  box-shadow: var(--shadow);
}

.site-search-panel[hidden] {
  display: none;
}

.site-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.site-search-form input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--navy);
  font: inherit;
}

.site-search-form input:focus {
  border-color: var(--brand-blue);
  outline: 2px solid rgba(0, 109, 255, .14);
  outline-offset: 1px;
}

.site-search-submit {
  min-height: 50px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--navy);
  border-radius: 6px;
  background: var(--navy);
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.site-search-submit:hover,
.site-search-submit:focus-visible {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--navy);
}

.site-search-submit svg {
  width: 19px;
  height: 19px;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  gap: 4px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  background: var(--navy);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 880px;
  margin: 0;
  font-size: 64px;
  line-height: .96;
  letter-spacing: 0;
  font-weight: 300;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 300;
}

h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.18;
  font-weight: 500;
}

strong,
b {
  font-weight: 600;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 58%, rgba(0, 109, 255, .24), transparent 30%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 54%, var(--navy-3) 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 82% 62%, rgba(0, 214, 163, .18), transparent 24%),
    radial-gradient(circle at 72% 10%, rgba(0, 109, 255, .2), transparent 34%),
    linear-gradient(115deg, transparent 0%, rgba(0, 119, 217, .08) 58%, transparent 82%);
  mix-blend-mode: screen;
}

.hero::after {
  right: 4%;
  bottom: 13%;
  z-index: 2;
  width: min(420px, 34vw);
  height: min(420px, 34vw);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 109, 255, .16), rgba(0, 214, 163, .1) 38%, transparent 70%);
  filter: blur(18px);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: 0;
  background: var(--navy);
}

.hero-scene {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .96;
  filter: saturate(1.05) contrast(1.04);
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 13, 20, .9) 0%, rgba(4, 20, 31, .58) 38%, rgba(4, 20, 31, .08) 100%),
    linear-gradient(180deg, rgba(3, 13, 20, .08) 0%, rgba(3, 13, 20, .62) 100%);
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(1240px, calc(100% - 42px));
  margin: 0 auto;
  padding: 190px 0 92px;
  color: #fff;
}

.hero-copy h1 {
  max-width: 680px;
  color: #fff;
  font-weight: 300;
}

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

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

.button,
button.button {
  min-height: 50px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
}

.button.primary {
  border-color: rgba(46, 230, 184, .62);
  background: linear-gradient(135deg, var(--teal-bright), var(--green));
  color: #03141d;
  box-shadow: 0 14px 36px rgba(0, 191, 166, .22);
}

.button.secondary {
  border-color: rgba(255, 255, 255, .64);
  background: rgba(255, 255, 255, .04);
  color: #fff;
}

.button.ghost {
  border-color: rgba(110, 231, 183, .54);
  background: rgba(0, 191, 166, .12);
  color: #fff;
}

.hero-text-link {
  padding: 10px 4px;
  color: rgba(255, 255, 255, .86);
  font-weight: 500;
}

.hero-text-link::after {
  content: " ->";
  color: var(--brand-blue-bright);
}

.quote-section .button.primary,
.page-hero + .section .button.primary {
  background: var(--navy);
  color: #fff;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  width: 26px;
  height: 48px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 999px;
}

.scroll-cue span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
}

.section,
.page-hero,
.archive-grid {
  padding-left: max(21px, calc((100% - 1240px) / 2));
  padding-right: max(21px, calc((100% - 1240px) / 2));
}

.section {
  padding-top: 92px;
  padding-bottom: 92px;
  scroll-margin-top: 112px;
}

.section--compact {
  padding-top: 78px;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.section-heading.split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .55fr);
  gap: 50px;
  align-items: end;
}

.section-heading p,
.content-shell p,
.page-hero p {
  color: var(--muted);
  font-size: 18px;
}

.pathway-grid,
.product-grid,
.evidence-grid,
.case-grid,
.resource-grid,
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.archive-grid--products {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.archive-grid--products .archive-card {
  padding: 20px;
}

.pathway-card,
.product-card,
.evidence-grid a,
.case-card,
.resource-card,
.archive-card {
  min-height: 230px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.pathway-card {
  background:
    linear-gradient(180deg, rgba(0, 109, 255, .035), transparent 48%),
    var(--soft);
}

.pathway-card--dark {
  background:
    radial-gradient(circle at 92% 20%, rgba(0, 109, 255, .22), transparent 32%),
    linear-gradient(135deg, var(--navy), var(--navy-3));
  color: #fff;
}

.pathway-card span,
.product-card span,
.evidence-grid span,
.case-card span,
.resource-card span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.product-card span {
  color: var(--brand-blue);
}

.pathway-card strong,
.evidence-grid strong,
.resource-card strong {
  display: block;
  color: inherit;
  font-size: 25px;
  line-height: 1.1;
}

.product-doorway {
  background: var(--soft);
}

.product-grid--doorway {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.product-card {
  min-height: 310px;
  gap: 16px;
  background:
    linear-gradient(180deg, rgba(0, 91, 187, .045), transparent 42%),
    #fff;
}

.managed-card-media {
  width: calc(100% + 60px);
  aspect-ratio: 16 / 10;
  margin: -30px -30px 22px;
  display: block;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  background: var(--mist);
}

.managed-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.managed-card-media--product img {
  padding: 10px;
  object-fit: contain;
  background: #fff;
}

.managed-card-kicker {
  display: block;
  margin-bottom: 14px;
}

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

.product-card p,
.archive-card p {
  color: var(--muted);
}

.archive-product-media {
  width: 100%;
  aspect-ratio: 1;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mist);
}

.archive-product-media img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-fit {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.35;
}

.product-fit span {
  display: block;
  margin-bottom: 5px;
  color: var(--brand-blue);
  font-size: 12px;
}

.text-link {
  color: var(--brand-blue);
  font-weight: 500;
}

.text-link::after {
  content: " ->";
}

.proof-wall {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(360px, 1fr);
  grid-template-areas:
    "heading ."
    "media metrics";
  gap: 22px 54px;
  align-items: start;
  background:
    radial-gradient(circle at 88% 24%, rgba(0, 109, 255, .22), transparent 30%),
    linear-gradient(135deg, var(--navy), var(--navy-3));
  color: #fff;
}

.proof-wall__heading {
  grid-area: heading;
}

.proof-wall__heading > :last-child {
  margin-bottom: 0;
}

.proof-wall__media {
  grid-area: media;
}

.proof-wall h2 {
  color: #fff;
}

.proof-strip {
  grid-area: metrics;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.proof-strip div {
  min-height: 132px;
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.proof-strip dt {
  color: #fff;
  font-size: 28px;
  font-weight: 500;
}

.proof-strip dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
}

.evidence-router {
  background: #fff;
}

.evidence-grid a {
  background:
    linear-gradient(180deg, rgba(0, 109, 255, .06), transparent 46%),
    var(--mist);
}

.case-study-section {
  background: #fff;
}

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

.case-card {
  min-height: 250px;
  background:
    linear-gradient(180deg, rgba(0, 91, 187, .055), transparent 46%),
    #fff;
}

.case-card--accent {
  background:
    radial-gradient(circle at 90% 16%, rgba(0, 214, 163, .18), transparent 32%),
    linear-gradient(135deg, var(--navy), var(--navy-3));
  color: #fff;
}

.case-card p {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.case-card--accent p {
  color: rgba(255, 255, 255, .78);
}

.resources-strip {
  background: var(--soft);
}

.resource-card {
  min-height: 210px;
  background:
    linear-gradient(180deg, rgba(0, 191, 166, .06), transparent 48%),
    #fff;
}

.home-hero__product-lines {
  max-width: 720px;
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.home-hero__product-lines span {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(4, 20, 31, .28);
  color: rgba(255, 255, 255, .9);
  font-size: 13px;
  backdrop-filter: blur(8px);
}

.home-buyer-grid,
.home-case-grid {
  display: grid;
  gap: 20px;
}

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

.home-buyer-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.home-buyer-card__media,
.home-case-card__media {
  display: block;
  overflow: hidden;
  background: var(--mist);
}

.home-buyer-card__media {
  aspect-ratio: 16 / 10;
}

.home-buyer-card__media img,
.home-case-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform .35s ease;
}

.home-buyer-card__media img {
  object-fit: contain;
}

.home-case-card__media img {
  object-fit: cover;
}

.home-case-card:hover .home-case-card__media img {
  transform: scale(1.025);
}

.home-buyer-card__copy {
  min-height: 155px;
  padding: 24px;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.home-card-kicker {
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  text-transform: uppercase;
}

.home-buyer-card strong {
  max-width: 28ch;
  color: var(--ink);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.14;
}

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

.home-product-universe {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 286px;
  gap: 20px;
}

.home-product-tile {
  grid-column: span 3;
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.home-product-tile--1 {
  grid-column: span 6;
  grid-row: span 2;
}

.home-product-tile__media {
  min-height: 0;
  padding: 16px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
}

.home-product-tile__media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.home-product-tile__copy {
  padding: 20px;
  border-top: 1px solid var(--line);
  background: rgba(244, 247, 248, .72);
}

.home-product-tile__copy h3 {
  margin-top: 8px;
  font-size: 24px;
}

.home-product-tile__copy > p:not(.home-product-fit) {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.home-product-tile:not(.home-product-tile--1) .home-product-tile__copy > p:not(.home-product-fit),
.home-product-tile:not(.home-product-tile--1) .home-product-fit {
  display: none;
}

.home-product-fit {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.home-product-fit span {
  margin-right: 6px;
  color: var(--brand-blue);
  font-weight: 600;
}

.home-product-tile .text-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
}

.home-manufacturing {
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  color: #fff;
}

.home-manufacturing h2,
.home-manufacturing .section-heading p {
  color: #fff;
}

.home-manufacturing .section-heading > p {
  color: rgba(255, 255, 255, .72);
}

.home-manufacturing__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  gap: 22px;
  align-items: stretch;
}

.home-manufacturing__media {
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.home-manufacturing__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-manufacturing__metrics {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 14px;
}

.home-manufacturing__metrics div {
  min-height: 0;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 8px;
  background: rgba(255, 255, 255, .075);
}

.home-manufacturing__metrics dt {
  color: #fff;
  font-size: 32px;
  font-weight: 400;
}

.home-manufacturing__metrics dd {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.4;
}

.home-oem,
.home-compliance {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 54px;
  align-items: center;
}

.home-oem {
  background:
    radial-gradient(circle at 85% 18%, rgba(0, 109, 255, .2), transparent 30%),
    linear-gradient(135deg, #06141d, #0b2235);
  color: #fff;
}

.home-oem h2 {
  color: #fff;
}

.home-oem__copy > p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, .72);
  font-size: 18px;
}

.home-oem__steps {
  margin: 28px 0 30px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}

.home-oem__steps li {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
}

.home-oem__media,
.home-compliance__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mist);
}

.home-oem__media img,
.home-compliance__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-compliance {
  background: #fff;
}

.home-compliance__copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.home-compliance__marks {
  margin: 28px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-compliance__marks span {
  min-width: 68px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
  color: var(--navy);
  font-weight: 600;
  text-align: center;
}

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

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

.home-case-card {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.home-case-card__media {
  aspect-ratio: 16 / 10;
}

.home-case-card__copy {
  padding: 22px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.home-case-card__copy p {
  margin: 24px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
}

.home-case-card__copy .text-link {
  margin-top: auto;
}

.home-quote-section {
  background: #fff;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: start;
  background: var(--soft);
}

.quote-copy {
  position: sticky;
  top: 120px;
}

.quote-copy p {
  color: var(--muted);
  font-size: 18px;
}

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

.quote-form label {
  display: grid;
  gap: 10px;
  color: #24343d;
  font-weight: 500;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.quote-form .wide,
.quote-form button {
  grid-column: 1 / -1;
}

.form-status {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
}

.form-status--success {
  border: 2px solid var(--mint);
  background: #eafaf5;
  color: #063a32;
  box-shadow: 0 12px 28px rgba(0, 191, 166, .14);
}

.form-status--success::before {
  content: "\2713";
  display: inline-grid;
  place-items: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--mint);
  color: #fff;
  font-size: 18px;
}

.form-status--error {
  border: 1px solid #cc4b37;
  background: #fff3f0;
  color: #6b2015;
}

.page-hero {
  padding-top: 168px;
  padding-bottom: 74px;
  background: var(--soft);
}

.page-hero--dark {
  background: var(--navy);
  color: #fff;
}

.page-hero--dark h1 {
  color: #fff;
}

.page-hero h1 {
  max-width: 980px;
  font-weight: 300;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.breadcrumb a {
  color: inherit;
}

.breadcrumb > * {
  min-width: 0;
  overflow-wrap: anywhere;
}

.breadcrumb a::after {
  content: "/";
  margin-left: 8px;
  color: rgba(115, 130, 142, .64);
}

.breadcrumb--light {
  color: rgba(255, 255, 255, .72);
}

.breadcrumb--light a::after {
  color: rgba(255, 255, 255, .45);
}

.content-shell {
  width: min(920px, calc(100% - 42px));
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding-top: 62px;
  padding-bottom: 92px;
}

.content-shell a {
  overflow-wrap: anywhere;
}

.content-shell h2 {
  margin-top: 34px;
  font-size: 32px;
}

.content-shell li {
  margin: 8px 0;
}

.page-block {
  margin: 0 0 40px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.page-block--dark {
  background:
    radial-gradient(circle at 90% 18%, rgba(0, 191, 166, .18), transparent 32%),
    linear-gradient(135deg, var(--navy), var(--navy-3));
  color: #fff;
}

.page-block--dark h2,
.page-block--dark h3 {
  color: #fff;
}

.page-block--dark p,
.page-block--dark li {
  color: rgba(255, 255, 255, .78);
}

.content-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.content-card {
  min-height: 160px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.content-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.content-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.archive-grid {
  padding-top: 54px;
  padding-bottom: 92px;
}

.archive-hero__button {
  margin-top: 18px;
}

.archive-grid .pagination {
  grid-column: 1 / -1;
}

.archive-card h2 {
  font-size: 28px;
}

.archive-card--empty {
  grid-column: 1 / -1;
}

.search-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .7fr);
  gap: 48px;
  align-items: end;
}

.search-page-hero .site-search-form {
  width: 100%;
}

.search-summary {
  padding-top: 54px;
  padding-bottom: 0;
}

.search-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.search-term-section {
  padding-top: 36px;
  padding-bottom: 12px;
}

.search-term-section h2 {
  margin-bottom: 24px;
  font-size: 30px;
}

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

.search-term-card {
  min-height: 180px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.search-term-card .eyebrow,
.search-result-card .eyebrow {
  margin: 0;
  color: var(--teal);
}

.search-term-card h3,
.search-result-card h2 {
  margin: 0;
  color: var(--navy);
}

.search-term-card h3 {
  font-size: 24px;
}

.search-term-card p,
.search-result-card p {
  margin: 0;
  color: var(--muted);
}

.search-term-card .text-link,
.search-result-card .text-link {
  margin-top: auto;
}

.search-results-grid {
  padding-top: 36px;
}

.search-result-card {
  min-height: 310px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.search-result-card h2 {
  font-size: 27px;
  line-height: 1.08;
}

.search-result-card__media {
  margin-bottom: 2px;
}

.search-result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.search-result-meta span {
  padding: 5px 8px;
  border: 1px solid rgba(0, 109, 255, .18);
  border-radius: 5px;
  background: rgba(0, 109, 255, .06);
  color: var(--navy);
  font-size: 13px;
}

.search-results-empty {
  grid-column: 1 / -1;
  min-height: 220px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.certificate-card {
  min-height: 780px;
  gap: 24px;
  justify-content: space-between;
  border-radius: 8px;
}

.certificate-card__preview {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  display: grid;
  place-items: center;
  padding: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
}

.certificate-card__preview img {
  position: absolute;
  inset: 16px;
  width: calc(100% - 32px);
  max-width: none;
  height: calc(100% - 32px);
  max-height: none;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 14px 28px rgba(6, 20, 29, .15);
  transition: transform .2s ease, box-shadow .2s ease;
}

.certificate-card__preview:hover img,
.certificate-card__preview:focus-visible img {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(6, 20, 29, .2);
}

.certificate-group-title {
  grid-column: 1 / -1;
  margin: 34px 0 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-size: 30px;
}

.certificate-card__type {
  margin: 10px 0 22px;
  color: var(--brand-blue) !important;
  font-weight: 500;
}

.certificate-card__facts {
  display: grid;
  gap: 14px;
  margin: 0;
}

.certificate-card__facts div {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.certificate-card__facts dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.certificate-card__facts dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 14px;
  line-height: 1.45;
}

.certificate-card__actions {
  display: grid;
  gap: 14px;
  align-items: start;
}

.certificate-card__actions .button {
  width: 100%;
  text-align: center;
}

.certificate-detail {
  display: grid;
  gap: 28px;
}

.certificate-detail__preview {
  position: relative;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.certificate-detail__preview img {
  width: 100%;
  max-height: 840px;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 22px 50px rgba(6, 20, 29, .16);
}

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

.certificate-detail__note {
  margin: 0;
}

.product-family-hero {
  position: relative;
  min-height: 760px;
  padding: 170px max(21px, calc((100% - 1240px) / 2)) 78px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .72fr);
  gap: 58px;
  align-items: end;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 32%, rgba(0, 191, 166, .26), transparent 30%),
    linear-gradient(135deg, var(--navy), var(--navy-3));
  color: #fff;
}

.product-family-hero--text-only {
  grid-template-columns: minmax(0, 820px);
  min-height: 620px;
}

.product-family-hero h1 {
  color: #fff;
  font-weight: 300;
}

.product-family-copy,
.product-family-visual {
  position: relative;
  z-index: 2;
}

.product-family-visual {
  min-height: 440px;
  display: grid;
  place-items: center;
}

.product-family-visual::before {
  content: "";
  position: absolute;
  inset: 10% 0 0 10%;
  border-radius: 999px;
  background: rgba(0, 109, 255, .2);
  filter: blur(36px);
}

.product-family-visual img {
  position: relative;
  width: min(500px, 100%);
  max-height: 500px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, .3);
}

.buyer-fit-grid,
.value-pill-grid,
.family-product-grid {
  display: grid;
  gap: 20px;
}

.buyer-fit-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.buyer-fit-card,
.value-pill-grid div,
.family-product-card,
.family-evidence-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.buyer-fit-card {
  min-height: 165px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(0, 109, 255, .045), transparent 45%),
    #fff;
}

.buyer-fit-card span,
.family-product-card h3 {
  color: var(--navy);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.15;
}

.buyer-fit-card p,
.family-product-card p {
  color: var(--muted);
}

.product-family-value,
.product-family-series {
  background: var(--soft);
}

.product-series-entry-section {
  background: #fff;
}

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

.product-series-card a,
.series-info-grid article {
  min-height: 190px;
  padding: 26px;
  display: grid;
  align-content: start;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  text-decoration: none;
  box-shadow: 0 20px 48px rgba(6, 20, 29, .06);
}

.product-series-card__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  background: var(--mist);
}

.product-series-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: contain;
}

.product-series-card a {
  padding: 14px;
  gap: 12px;
}

.product-series-card a:hover,
.product-series-card a:focus-visible {
  border-color: rgba(0, 191, 166, .55);
  transform: translateY(-2px);
}

.product-series-card span,
.series-info-grid article span {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-series-card strong {
  font-size: 24px;
  line-height: 1.15;
}

.product-series-card p,
.series-info-grid li {
  margin: 0;
  color: var(--muted);
}

.product-series-card small {
  color: var(--blue);
  font-weight: 600;
}

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

.series-info-grid ul {
  margin: 0;
  padding-left: 18px;
}

.buyer-value-summary {
  margin-top: 24px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: minmax(150px, .28fr) minmax(260px, .7fr) minmax(320px, 1fr);
  gap: 20px;
  align-items: center;
  border-left: 4px solid var(--teal);
  background: var(--mist);
}

.buyer-value-summary span {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.buyer-value-summary strong {
  color: var(--navy);
  font-size: 20px;
  line-height: 1.25;
}

.buyer-value-summary p {
  margin: 0;
  color: var(--muted);
}

.value-pill-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.product-family-value .value-pill-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-pill-grid div {
  min-height: 118px;
  padding: 24px;
  display: grid;
  align-content: center;
  color: var(--navy);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

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

.family-product-pagination {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.family-product-pagination .page-numbers {
  min-width: 44px;
  height: 44px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--navy);
  font-weight: 500;
  text-decoration: none;
}

.family-product-pagination a.page-numbers:hover,
.family-product-pagination a.page-numbers:focus-visible,
.family-product-pagination .page-numbers.current {
  border-color: var(--teal);
  background: var(--navy);
  color: #fff;
}

.family-product-pagination .prev,
.family-product-pagination .next {
  min-width: 92px;
}

.family-product-card {
  min-height: 460px;
  padding: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto 1fr auto;
  gap: 20px;
}

.family-product-card--empty {
  grid-column: 1 / -1;
  min-height: 0;
  padding: 32px;
  display: block;
}

.family-product-card--empty p {
  max-width: 680px;
  margin-bottom: 0;
}

.family-product-card > * {
  min-width: 0;
}

.family-product-media {
  width: 100%;
  min-height: 0;
  aspect-ratio: 1;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mist);
}

.family-product-media img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-family-directory-card__media,
.product-series-directory-card__media {
  width: 100%;
  aspect-ratio: 1;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mist);
}

.product-family-directory-card__media img,
.product-series-directory-card__media img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-tag-list {
  margin: 14px 0;
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.product-tag-list span {
  max-width: 100%;
  padding: 6px 9px;
  border: 1px solid rgba(0, 109, 255, .16);
  border-radius: 4px;
  background: rgba(0, 109, 255, .06);
  color: var(--navy);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.card-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.family-evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  background: #fff;
}

.family-evidence-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.family-evidence-card {
  padding: 34px;
}

.family-evidence-card--dark {
  background: var(--navy);
  color: #fff;
}

.family-evidence-card--dark h2 {
  color: #fff;
}

.single-media {
  max-width: 980px;
  margin: 48px auto 0;
}

.product-detail-hero {
  position: relative;
  min-height: 720px;
  padding: 150px max(21px, calc((100% - 1240px) / 2)) 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .68fr);
  gap: 46px;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(2, 12, 17, .96) 0%, rgba(8, 28, 36, .9) 47%, rgba(5, 42, 44, .8) 100%),
    radial-gradient(circle at 84% 34%, rgba(0, 191, 166, .28), transparent 32%);
  color: #fff;
}

.product-detail > .section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.product-detail-hero h1 {
  color: #fff;
  font-weight: 300;
}

.product-detail-copy,
.product-detail-visual {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.product-detail-visual {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.product-detail-main-image {
  width: 100%;
  min-height: 350px;
  display: grid;
  place-items: center;
}

.product-detail-main-image > img {
  width: min(520px, 100%);
  max-height: 440px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 32px 70px rgba(0, 0, 0, .38));
}

.product-hero-gallery {
  width: min(520px, 100%);
  margin: 0;
}

.product-hero-gallery .product-gallery-stage {
  min-height: 0;
  aspect-ratio: 1;
}

.product-hero-gallery .product-gallery-slide {
  padding: 16px;
}

.product-hero-gallery .product-gallery-slide figcaption {
  color: #5f6876;
}

.product-hero-gallery .product-gallery-thumbnails {
  width: 100%;
}

.product-hero-identity,
.product-hero-specs {
  margin: 24px 0 0;
  display: grid;
  gap: 10px;
}

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

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

.product-hero-identity div,
.product-hero-specs div {
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 6px;
  background: rgba(255, 255, 255, .06);
}

.product-hero-identity dt,
.product-hero-specs dt {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.product-hero-identity dd,
.product-hero-specs dd {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.visual-badge {
  position: absolute;
  right: 0;
  bottom: 26px;
  width: min(280px, 80%);
  padding: 18px;
  border: 1px solid rgba(0, 214, 163, .35);
  border-radius: 8px;
  background: rgba(6, 20, 29, .88);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, .28);
}

.visual-badge span,
.detail-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.visual-badge strong {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.18;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .48fr);
  gap: 26px;
  align-items: start;
  background: #fff;
}

.quick-strip {
  position: relative;
  z-index: 3;
  width: min(1240px, calc(100% - 42px));
  margin: -40px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

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

.quick-strip div {
  min-height: 132px;
  padding: 24px;
  background: #fff;
}

.quick-strip span,
.section-heading .eyebrow,
.benefit-card h3,
.spec-table span,
.mini-card span {
  overflow-wrap: anywhere;
}

.quick-strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.quick-strip strong {
  display: block;
  font-size: 18px;
  line-height: 1.3;
}

.specs-section,
.product-faq {
  background: var(--soft);
}

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

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

.benefit-card,
.mini-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.benefit-card {
  min-height: 220px;
  padding: 28px;
}

.benefit-card h3,
.mini-card span {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.18;
}

.benefit-card p,
.mini-card p {
  color: var(--muted);
}

.product-applications {
  background: #fff;
}

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

.application-list div {
  min-height: 150px;
  padding: 24px;
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  background: var(--mist);
  color: var(--navy);
  font-weight: 500;
}

.spec-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.spec-table div {
  display: grid;
  grid-template-columns: minmax(180px, .38fr) minmax(0, 1fr);
  border-top: 1px solid var(--line);
}

.spec-table div:first-child {
  border-top: 0;
}

.spec-table span,
.spec-table strong {
  padding: 18px 22px;
}

.spec-table span {
  background: var(--mist);
  color: var(--navy);
  font-weight: 500;
}

.spec-table strong {
  color: var(--ink);
  font-weight: 500;
}

.specs-note {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.product-download {
  margin-top: 24px;
}

.compliance-section,
.oem-gallery-section,
.related-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.compliance-overview {
  background: #fff;
}

.compliance-overview .compliance-section,
.configuration-overview .oem-gallery-section {
  margin-top: 32px;
}

.compliance-section > :only-child {
  grid-column: 1 / -1;
}

.compliance-card,
.oem-panel,
.gallery-panel,
.related-column {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.compliance-card--dark {
  background: var(--navy);
  color: #fff;
}

.compliance-card--dark h2,
.compliance-card--dark h3,
.compliance-card--dark .eyebrow {
  color: #fff;
}

.check-list--light li {
  color: var(--muted);
}

.configuration-overview {
  background: var(--mist);
}

.product-media-section {
  background: #fff;
}

.product-description-section {
  background: #fff;
}

.product-description-copy {
  width: min(900px, 100%);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.75;
}

.product-description-copy p {
  margin: 0 0 18px;
}

.product-description-copy p:last-child {
  margin-bottom: 0;
}

.product-video-section {
  background: #fff;
}

.product-video-section .product-section-title {
  margin-bottom: 28px;
}

.product-media-layout {
  width: min(900px, 100%);
}

.product-media-section .product-gallery {
  margin-top: 0;
}

.product-video {
  width: min(1000px, 100%);
  margin-top: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #06141d;
  aspect-ratio: 16 / 9;
}

.product-video iframe,
.product-video video {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: contain;
}

.product-benefits-applications {
  background: #fff;
}

.product-benefits-applications .benefit-card {
  min-height: 180px;
}

.product-oem-section {
  background: var(--mist);
}

.product-oem-compact {
  padding: 30px 32px;
  display: grid;
  grid-template-columns: minmax(230px, .7fr) minmax(320px, 1.25fr) auto;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.product-oem-compact .product-section-title {
  margin: 0;
  font-size: 13px;
}

.product-oem-compact ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.product-oem-compact li {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
  color: var(--navy);
  font-size: 14px;
}

.oem-panel ul,
.gallery-panel ul {
  padding-left: 20px;
}

.oem-panel li {
  margin: 8px 0;
  color: var(--muted);
}

.product-gallery {
  margin-top: 22px;
}

.product-gallery-stage {
  position: relative;
  min-height: 420px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.product-gallery-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 28px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
}

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

.product-gallery-slide img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

.product-gallery-slide figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.product-gallery-nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 44px;
  height: 44px;
  padding: 0;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid rgba(6, 20, 29, .18);
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  color: var(--navy);
  box-shadow: 0 10px 28px rgba(6, 20, 29, .14);
  cursor: pointer;
}

.product-gallery-nav:hover,
.product-gallery-nav:focus-visible {
  border-color: var(--teal);
  color: var(--brand-blue);
}

.product-gallery-nav span {
  margin-top: -3px;
  font-size: 36px;
  line-height: 1;
}

.product-gallery-nav--previous {
  left: 14px;
}

.product-gallery-nav--next {
  right: 14px;
}

.product-gallery-counter {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(6, 20, 29, .78);
  color: #fff;
  font-size: 12px;
  line-height: 1;
}

.product-gallery-thumbnails {
  margin-top: 12px;
  padding: 2px 2px 8px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
}

.product-gallery-thumbnail {
  flex: 0 0 78px;
  width: 78px;
  aspect-ratio: 1;
  padding: 6px;
  overflow: hidden;
  scroll-snap-align: start;
  border: 2px solid transparent;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
}

.product-gallery-thumbnail:hover,
.product-gallery-thumbnail:focus-visible,
.product-gallery-thumbnail.is-active {
  border-color: var(--teal);
}

.product-gallery-thumbnail img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.related-section {
  background: #fff;
}

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

.related-section--single .mini-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.related-product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.related-product-media {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--mist);
}

.related-product-media img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.related-product-card > div {
  padding: 20px;
}

.related-product-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.2;
}

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

.family-oem-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .55fr);
  gap: 24px;
  align-items: center;
  padding-top: 54px;
  padding-bottom: 54px;
  background: var(--navy);
  color: #fff;
}

.family-oem-cta h2,
.family-oem-cta .eyebrow {
  color: #fff;
}

.family-oem-cta p {
  max-width: 720px;
  color: rgba(255, 255, 255, .76);
}

.family-oem-actions {
  display: grid;
  justify-items: start;
  gap: 20px;
}

.family-oem-actions span {
  color: rgba(255, 255, 255, .82);
  font-weight: 500;
  line-height: 1.5;
}

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

.mini-card {
  min-height: 150px;
  padding: 22px;
  display: block;
  transition: transform .2s ease, box-shadow .2s ease;
}

.mini-card:hover,
.mini-card:focus {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(8, 28, 36, .14);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 26px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 500;
}

.faq-list p {
  margin: 0;
  padding: 0 26px 24px;
  color: var(--muted);
}

.detail-panel {
  min-width: 0;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.detail-panel h2 {
  margin-top: 30px;
  font-size: 32px;
}

.detail-panel p {
  color: var(--muted);
  font-size: 18px;
}

.detail-panel li {
  margin: 8px 0;
}

.detail-panel--dark {
  position: sticky;
  top: 120px;
  background: var(--navy);
  color: #fff;
}

.detail-panel--dark h2 {
  color: #fff;
}

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

.check-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, .8);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
}

.detail-specs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  background: var(--soft);
}

.detail-card {
  min-height: 245px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.detail-card p {
  color: var(--muted);
}

.article-layout {
  width: min(1240px, calc(100% - 42px));
  margin: 0 auto;
  padding: 70px 0 98px;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(300px, 1fr);
  gap: 58px;
  align-items: start;
}

.article-body {
  min-width: 0;
}

.article-body p {
  color: var(--muted);
  font-size: 18px;
}

.article-body h2 {
  margin-top: 34px;
  font-size: 32px;
}

.article-body li {
  margin: 8px 0;
}

.article-aside {
  position: sticky;
  top: 120px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.article-aside h2 {
  font-size: 30px;
}

.article-aside p {
  color: var(--muted);
}

.footer {
  padding: 46px max(21px, calc((100% - 1240px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .86fr) minmax(0, 1fr) minmax(0, 1.05fr) minmax(330px, 1.2fr);
  gap: 28px;
  background: #06151c;
  color: rgba(255, 255, 255, .78);
}

.footer img {
  width: 92px;
  display: block;
  margin-bottom: 12px;
}

.footer strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
}

.footer a,
.footer span {
  display: block;
  margin: 6px 0;
}

.footer-social {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer .footer-social__link {
  --social-fg: #33434a;
  width: 42px;
  height: 42px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 50%;
  color: var(--social-fg);
  background: #fff;
  box-shadow: 0 5px 14px rgba(0, 0, 0, .18);
  transition: border-color .2s ease, filter .2s ease, transform .2s ease;
}

.footer .footer-social__link:hover,
.footer .footer-social__link:focus-visible {
  color: var(--social-fg);
  border-color: var(--social-fg);
  transform: translateY(-2px);
}

.footer .footer-social__link--whatsapp {
  --social-fg: #25d366;
}

.footer .footer-social__link--wechat {
  --social-fg: #07c160;
}

.footer .footer-social__link--linkedin {
  --social-fg: #0a66c2;
}

.footer .footer-social__link--youtube {
  --social-fg: #ff0033;
}

.footer .footer-social__link--x {
  --social-fg: #111;
}

.footer .footer-social__link--pinterest {
  --social-fg: #e60023;
}

.footer .footer-social__link--tiktok {
  --social-fg: #111;
}

.footer .footer-social__link--facebook {
  --social-fg: #1877f2;
}

.footer-social__link svg {
  width: 27px;
  height: 27px;
  display: block;
  fill: currentColor;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer__copyright {
  grid-column: 1 / -1;
  margin: 12px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .58);
}

.page-hero--media {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  color: #fff;
  background: #071b28 var(--page-hero-image) center / cover no-repeat;
}

.page-hero--media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(6, 20, 29, .62);
}

.page-hero--media h1,
.page-hero--media p {
  color: #fff;
}

.content-hub-tools {
  padding-bottom: 0;
}

.content-hub-filter {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(190px, .5fr) minmax(190px, .5fr) auto;
  gap: 14px;
  align-items: end;
}

.content-hub-filter--search-only {
  max-width: 920px;
  grid-template-columns: minmax(260px, 1fr) auto;
}

.content-hub-filter label {
  display: grid;
  gap: 7px;
  font-weight: 500;
}

.content-hub-filter input,
.content-hub-filter select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.article-meta {
  font-size: 15px;
}

.article-answer,
.zsw-content-block--answer_box,
.zsw-content-block--summary_box {
  padding: 24px;
  border-left: 4px solid var(--energy-green);
  background: var(--mist);
}

.article-body details,
.zsw-content-block details {
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.article-body summary,
.zsw-content-block summary {
  cursor: pointer;
  font-weight: 500;
}

.zsw-checklist {
  list-style: none;
  padding-left: 0;
}

.zsw-checklist li::before {
  content: "\2713";
  margin-right: 10px;
  color: var(--energy-green);
  font-weight: 600;
}

.zsw-table-wrap {
  overflow-x: auto;
}

.zsw-table-wrap table {
  width: 100%;
  border-collapse: collapse;
}

.zsw-table-wrap th,
.zsw-table-wrap td {
  padding: 13px;
  border: 1px solid var(--line);
  text-align: left;
}

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

.zsw-content-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.zsw-content-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 1500px) {
  .nav {
    grid-template-columns: minmax(0, 1fr) auto auto auto;
  }

  .nav-item {
    position: relative;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    padding: 16px;
    display: none;
    align-items: stretch;
    border-radius: 14px;
    background: rgba(255, 255, 255, .98);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: grid;
    gap: 8px;
  }

  .nav-links > a,
  .nav-pill {
    justify-content: space-between;
  }

  .nav-mega-control {
    width: 100%;
  }

  .nav-mega-link {
    flex: 1;
  }

  .nav-mega-toggle {
    justify-content: center;
  }

  .mega-menu {
    position: static;
    width: 100%;
    margin-top: 8px;
    display: none;
    grid-template-columns: 1fr;
    box-shadow: none;
    transform: none;
  }

  .mega-menu.open {
    display: grid;
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .contact-pill {
    justify-self: end;
  }
}

@media (max-width: 1180px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

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

  .section-heading.split,
  .proof-wall,
  .quote-section,
  .footer,
  .product-family-hero,
  .product-detail-grid,
  .quick-strip,
  .compliance-section,
  .oem-gallery-section,
  .related-section,
  .family-oem-cta,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .proof-wall {
    grid-template-areas:
      "heading"
      "media"
      "metrics";
    gap: 28px;
  }

  .quote-copy {
    position: static;
  }

  .content-hub-filter,
  .zsw-content-gallery {
    grid-template-columns: 1fr;
  }

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

  .detail-panel--dark,
  .article-aside {
    position: static;
  }

  .product-grid--doorway,
  .pathway-grid,
  .product-series-card-grid,
  .series-info-grid,
  .family-product-grid,
  .related-product-grid,
  .evidence-grid,
  .case-grid,
  .resource-grid,
  .archive-grid,
  .detail-specs,
  .benefit-grid,
  .application-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .buyer-value-summary {
    grid-template-columns: 1fr;
  }

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

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

  .quick-strip {
    margin-top: 0;
  }

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

  .home-product-universe {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }

  .home-product-tile,
  .home-product-tile--1 {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 480px;
  }

  .home-product-tile--1 {
    grid-column: span 2;
  }

  .home-product-tile__media {
    min-height: 260px;
  }

  .home-product-tile:not(.home-product-tile--1) .home-product-tile__copy > p:not(.home-product-fit) {
    display: block;
  }

  .home-manufacturing__content,
  .home-oem,
  .home-compliance {
    grid-template-columns: 1fr;
  }

  .home-oem__media {
    order: -1;
  }

}

@media (max-width: 900px) {
  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-hero {
    min-height: 0;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .product-detail-visual {
    min-height: 340px;
  }

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

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

@media (max-width: 680px) {
  .page-hero--media {
    background-image: var(--page-hero-mobile-image, var(--page-hero-image));
  }

  .site-header {
    top: 12px;
  }

  .nav {
    width: calc(100% - 24px);
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
  }

  .brand span,
  .contact-pill {
    display: none;
  }

  .site-search-panel {
    width: calc(100vw - 24px);
    padding: 12px;
  }

  .site-search-form {
    grid-template-columns: 1fr auto;
  }

  .site-search-submit {
    width: 50px;
    padding: 0;
  }

  .site-search-submit span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

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

  h1 {
    max-width: 340px;
    font-size: 31px;
    line-height: 1.08;
  }

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

  h2 {
    font-size: 30px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-scene {
    object-position: 64% center;
    opacity: .72;
  }

  .hero-copy {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 80px;
  }

  .hero-copy .eyebrow {
    max-width: 340px;
  }

  .section-heading h2,
  .section-heading p {
    max-width: 340px;
  }

  .breadcrumb span:last-child {
    flex-basis: 100%;
  }

  .product-detail-hero .breadcrumb span:last-child {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .button {
    width: min(100%, 270px);
  }

  .hero-lead,
  .section-heading p,
  .quote-copy p,
  .content-shell p,
  .page-hero p {
    font-size: 16px;
  }

  .hero-lead {
    max-width: 340px;
  }

  .section {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .pathway-grid,
  .product-grid--doorway,
  .home-buyer-grid,
  .home-case-grid,
  .buyer-fit-grid,
  .value-pill-grid,
  .product-series-card-grid,
  .series-info-grid,
  .family-product-grid,
  .related-product-grid,
  .family-evidence-grid,
  .evidence-grid,
  .case-grid,
  .resource-grid,
  .archive-grid,
  .detail-specs,
  .benefit-grid,
  .application-list,
  .mini-card-grid,
  .proof-strip,
  .quote-form {
    grid-template-columns: 1fr;
  }

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

  .home-product-tile,
  .home-product-tile--1 {
    grid-column: span 1;
    min-height: 430px;
  }

  .home-product-tile__media {
    min-height: 230px;
  }

  .home-manufacturing__content,
  .home-manufacturing__metrics {
    grid-template-columns: 1fr;
  }

  .home-manufacturing__media {
    min-height: 280px;
  }

  .home-buyer-card,
  .home-case-card {
    min-height: 0;
  }

  .home-hero__product-lines {
    max-width: 340px;
  }

  .product-family-value .value-pill-grid,
  .product-benefits .benefit-grid,
  .related-section--single .mini-card-grid {
    grid-template-columns: 1fr;
  }

  .pathway-card strong,
  .evidence-grid strong,
  .resource-card strong {
    font-size: 22px;
  }

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

  .certificate-card__preview {
    aspect-ratio: 4 / 3;
  }

  .certificate-detail__facts {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-top: 130px;
  }

  .product-detail-hero {
    min-height: 0;
    padding-top: 132px;
    padding-bottom: 54px;
  }

  .product-detail > .section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .product-hero-identity,
  .product-hero-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-main-image {
    min-height: 280px;
  }

  .product-family-hero {
    min-height: 760px;
    padding: 140px 21px 66px;
    align-items: start;
  }

  .product-family-visual {
    min-height: 300px;
  }

  .product-family-visual img {
    width: min(100%, 330px);
    max-height: 340px;
  }

  .product-detail-visual {
    min-height: 300px;
  }

  .visual-badge {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .detail-panel,
  .detail-card,
  .page-block,
  .content-card,
  .quick-strip div,
  .benefit-card,
  .compliance-card,
  .oem-panel,
  .gallery-panel,
  .related-column,
  .article-aside {
    padding: 24px;
  }

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

  .spec-table div {
    grid-template-columns: 1fr;
  }

  .spec-table span,
  .spec-table strong {
    padding: 14px 18px;
  }

  .product-gallery-stage {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .product-gallery-slide {
    padding: 18px;
  }

  .product-gallery-nav {
    width: 40px;
    height: 40px;
  }

  .product-gallery-nav--previous {
    left: 10px;
  }

  .product-gallery-nav--next {
    right: 10px;
  }

  .product-gallery-thumbnail {
    flex-basis: 68px;
    width: 68px;
  }

  .faq-list summary {
    padding: 18px 20px;
    font-size: 18px;
  }

  .faq-list p {
    padding: 0 20px 20px;
  }
}

.zsw-breadcrumbs {
  width: min(1240px, calc(100% - 42px));
  margin: 0 auto;
  padding: 122px 0 18px;
}

.zsw-breadcrumbs ol {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}

.zsw-breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 9px;
  color: #9ca3af;
}

.zsw-breadcrumbs a:hover,
.zsw-breadcrumbs a:focus {
  color: var(--brand-blue);
}

.zsw-breadcrumbs + .page-hero {
  padding-top: 74px;
}

.knowledge-hub-hero,
.knowledge-articles-hero,
.topic-directory-hero,
.topic-hero {
  min-height: 560px;
  justify-content: center;
  background-position: center 58%;
}

.knowledge-hub-hero::before,
.knowledge-articles-hero::before,
.topic-directory-hero::before,
.topic-hero::before {
  background: linear-gradient(90deg, rgba(6, 20, 29, .84) 0%, rgba(6, 20, 29, .55) 58%, rgba(6, 20, 29, .2) 100%);
}

.knowledge-hub-hero h1,
.knowledge-articles-hero h1,
.topic-directory-hero h1,
.topic-hero h1 {
  max-width: 850px;
}

.knowledge-hub-hero p,
.knowledge-articles-hero p,
.topic-directory-hero p,
.topic-hero p {
  max-width: 760px;
}

.topic-hero small {
  margin-top: 14px;
  color: rgba(255, 255, 255, .78);
}

.button--on-dark {
  border-color: rgba(255, 255, 255, .72);
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.section--soft {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.topic-card-grid,
.knowledge-card-grid,
.knowledge-doorway-grid,
.topic-evidence-grid {
  display: grid;
  gap: 22px;
}

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

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

.knowledge-card-grid--archive {
  margin-top: 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.knowledge-doorway-grid,
.topic-evidence-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.knowledge-entry-section {
  border-top: 1px solid rgba(0, 91, 187, .16);
  border-bottom: 1px solid rgba(0, 91, 187, .16);
  background: #eef3f4;
}

.knowledge-entry-section .section-heading {
  margin-bottom: 40px;
}

.knowledge-articles-directory .knowledge-card-grid {
  margin-top: 34px;
}

.knowledge-articles-directory .pagination {
  margin-top: 38px;
}

.knowledge-articles-directory .pagination ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.knowledge-articles-directory .pagination a,
.knowledge-articles-directory .pagination .current {
  min-width: 42px;
  min-height: 42px;
  padding: 9px 13px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.knowledge-articles-directory .pagination a:hover,
.knowledge-articles-directory .pagination a:focus,
.knowledge-articles-directory .pagination .current {
  border-color: var(--brand-blue);
  color: #fff;
  background: var(--brand-blue);
}

.topic-card,
.knowledge-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.topic-card__media,
.knowledge-card__media {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  overflow: hidden;
  background: var(--mist);
}

.topic-card__media img,
.knowledge-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.topic-card:hover .topic-card__media img,
.knowledge-card:hover .knowledge-card__media img {
  transform: scale(1.025);
}

.topic-card__body,
.knowledge-card__body {
  padding: 26px;
}

.topic-card__body h3,
.knowledge-card__body h3 {
  margin: 8px 0 14px;
  font-size: 25px;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.topic-card__body p:not(.eyebrow),
.knowledge-card__body p:not(.eyebrow) {
  color: var(--muted);
}

.knowledge-doorway,
.topic-evidence-card {
  min-height: 250px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.knowledge-doorway {
  border-top: 4px solid var(--brand-blue);
  box-shadow: 0 16px 38px rgba(6, 20, 29, .08);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.knowledge-doorway:nth-child(2) {
  border-top-color: var(--teal);
}

.knowledge-doorway:nth-child(3) {
  border-top-color: var(--navy);
}

.knowledge-doorway:nth-child(4) {
  border-top-color: #c89b2e;
}

.knowledge-doorway:hover {
  transform: translateY(-4px);
  border-right-color: rgba(0, 91, 187, .24);
  border-bottom-color: rgba(0, 91, 187, .24);
  border-left-color: rgba(0, 91, 187, .24);
  box-shadow: 0 20px 44px rgba(6, 20, 29, .13);
}

.knowledge-doorway .knowledge-doorway__label,
.topic-evidence-card span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.knowledge-doorway strong,
.topic-evidence-card strong {
  font-size: 24px;
  line-height: 1.18;
}

.knowledge-doorway .knowledge-doorway__cta {
  margin-top: auto;
  color: var(--brand-blue);
  font-size: 14px;
  font-weight: 500;
}

.topic-evidence-card small {
  color: var(--muted);
}

.topic-evidence-card--visual {
  isolation: isolate;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #071b28 var(--topic-card-image) center / cover no-repeat;
}

.topic-evidence-card--visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(6, 20, 29, .72);
}

.topic-evidence-card--visual small {
  color: rgba(255, 255, 255, .78);
}

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

.knowledge-final-cta {
  margin-bottom: 90px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(120deg, var(--navy), #0b3651);
}

.knowledge-final-cta h2 {
  max-width: 820px;
  margin-bottom: 0;
  color: #fff;
}

.resources-strip__intro {
  max-width: 560px;
}

.resources-strip__intro .text-link {
  margin-top: 10px;
  display: inline-block;
}

.article-related-topics {
  margin-top: 46px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.article-topic-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-topic-links a {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand-blue);
  background: var(--mist);
}

@media (max-width: 1120px) {
  .knowledge-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topic-card-grid,
  .knowledge-doorway-grid,
  .topic-evidence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 680px) {
  .zsw-breadcrumbs {
    width: calc(100% - 42px);
    padding-top: 102px;
  }

  .zsw-breadcrumbs + .page-hero {
    padding-top: 54px;
  }

  .knowledge-hub-hero,
  .knowledge-articles-hero,
  .topic-directory-hero,
  .topic-hero {
    min-height: 620px;
    background-position: 62% center;
  }

  .topic-hero::before {
    background: rgba(6, 20, 29, .7);
  }

  .topic-card-grid,
  .knowledge-card-grid,
  .knowledge-card-grid--archive,
  .knowledge-doorway-grid,
  .topic-evidence-grid,
  .knowledge-product-links {
    grid-template-columns: 1fr;
  }

  .knowledge-final-cta {
    margin-bottom: 66px;
    padding: 30px 24px;
    align-items: flex-start;
    flex-direction: column;
  }

  .topic-card__body,
  .knowledge-card__body,
  .knowledge-doorway,
  .topic-evidence-card {
    padding: 24px;
  }
}
.business-page {
  background: #fff;
}

.business-hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

.business-hero__image,
.business-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.business-hero__image {
  object-fit: cover;
  object-position: center;
}

.business-hero__shade {
  background: linear-gradient(90deg, rgba(2, 14, 21, .94) 0%, rgba(2, 14, 21, .76) 48%, rgba(2, 14, 21, .12) 82%);
}

.business-hero__content {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 42px));
  margin: 0 auto;
  padding: 190px 0 82px;
}

.business-hero__content h1 {
  max-width: 820px;
  margin-bottom: 24px;
  color: #fff;
  font-size: 72px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}

.business-hero__lead {
  max-width: 700px;
  color: rgba(255, 255, 255, .86);
  font-size: 21px;
  line-height: 1.5;
}

.business-metrics {
  padding: 30px max(21px, calc((100% - 1240px) / 2));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: var(--navy);
  color: #fff;
}

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

.business-metrics div {
  min-width: 0;
  padding: 6px 28px;
  border-left: 1px solid rgba(255, 255, 255, .18);
}

.business-metrics div:first-child {
  padding-left: 0;
  border-left: 0;
}

.business-metrics strong,
.business-metrics span {
  display: block;
}

.business-metrics strong {
  color: var(--teal);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.1;
}

.business-metrics span {
  margin-top: 7px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.4;
}

.business-section-heading {
  margin-bottom: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .58fr);
  gap: 64px;
  align-items: end;
}

.business-section-heading h2 {
  max-width: 760px;
}

.business-section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.business-card-grid {
  display: grid;
  gap: 18px;
}

.business-card-grid--products {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.business-card {
  min-width: 0;
  min-height: 230px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.managed-section-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mist);
  object-fit: cover;
  object-position: center;
}

.managed-section-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.managed-section-media--card {
  margin: -26px -26px 24px;
  width: calc(100% + 52px);
  border-radius: 8px 8px 0 0;
}

.managed-section-media--product {
  margin: -26px -26px 24px;
  width: calc(100% + 52px);
  padding: 10px;
  border-radius: 8px 8px 0 0;
  background: #fff;
  object-fit: contain;
}

.business-page--oem .managed-section-media--card,
.business-page--oem .managed-section-media--product {
  aspect-ratio: 16 / 9;
  padding: 0;
  background: transparent;
  object-fit: cover;
}

.business-page--oem .business-product-card .managed-section-media--product {
  width: calc(100% + 52px);
  max-width: none;
  aspect-ratio: 1 / 1;
  background: #fff;
  object-fit: contain;
}

.managed-section-media--wide {
  max-height: 520px;
  margin-bottom: 42px;
}

.managed-section-media--story {
  margin-bottom: 28px;
}

.managed-section-media--proof {
  margin-bottom: 28px;
}

.managed-section-media--heading {
  max-width: 420px;
  justify-self: end;
}

.managed-media-pair {
  margin-bottom: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.managed-story,
.managed-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr);
  gap: 64px;
  align-items: center;
}

.managed-story--soft {
  background: var(--soft);
}

.managed-story-grid__copy > p:last-child {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.business-product-card {
  justify-content: flex-start;
  color: #fff;
}

.business-product-card > span {
  font-size: 19px;
  font-weight: 500;
}

.business-product-card > strong {
  margin-top: auto;
  color: var(--teal);
  font-size: 24px;
}

.business-card h3 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 23px;
  line-height: 1.15;
}

.business-card p {
  margin: 0 0 24px;
  color: var(--muted);
}

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

.business-card--quiet {
  min-height: 190px;
  background: rgba(255, 255, 255, .76);
}

.business-band--soft {
  background: var(--soft);
}

.business-band--dark {
  background:
    radial-gradient(circle at 88% 20%, rgba(0, 191, 166, .2), transparent 28%),
    linear-gradient(135deg, var(--navy), var(--navy-3));
  color: #fff;
}

.business-band--dark h2,
.business-band--dark .business-section-heading > p {
  color: #fff;
}

.business-band--dark .business-section-heading > p {
  opacity: .72;
}

.business-card--dark {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .06);
}

.business-card--dark h3 {
  color: #fff;
}

.business-card--dark p {
  color: rgba(255, 255, 255, .72);
}

.business-proof {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 76px;
  align-items: start;
}

.business-proof__copy h2 {
  margin-bottom: 20px;
}

.business-proof__copy p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 18px;
}

.business-proof__list {
  border-top: 1px solid var(--line);
}

.business-proof__list div {
  padding: 24px 0;
  display: grid;
  grid-template-columns: minmax(150px, .42fr) minmax(0, 1fr);
  gap: 30px;
  border-bottom: 1px solid var(--line);
}

.business-proof__list strong {
  color: var(--navy);
  font-size: 18px;
}

.business-proof__list span {
  color: var(--muted);
}

.business-steps {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  list-style: none;
}

.business-steps--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  row-gap: 38px;
}

.business-steps li {
  min-width: 0;
  padding-top: 20px;
  border-top: 2px solid var(--teal);
}

.business-steps span,
.business-steps strong {
  display: block;
}

.business-steps span {
  margin-bottom: 24px;
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 600;
}

.business-steps strong {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 19px;
}

.business-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.business-line-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.business-line-links a {
  min-height: 150px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
}

.business-line-links a:last-child {
  border-right: 0;
}

.business-line-links span {
  font-size: 20px;
  font-weight: 500;
}

.business-line-links strong {
  color: var(--teal);
  font-size: 25px;
}

.business-quote {
  background: #fff;
}

.business-cta {
  padding: 58px max(21px, calc((100% - 1240px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--navy);
  color: #fff;
}

.business-cta h2 {
  max-width: 760px;
  color: #fff;
}

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

.case-study-row {
  padding: 46px 0;
  display: grid;
  grid-template-columns: minmax(260px, .55fr) minmax(0, 1.45fr);
  gap: 64px;
  border-bottom: 1px solid var(--line);
}

.case-study-row--visual {
  grid-template-columns: minmax(250px, .7fr) minmax(220px, .65fr) minmax(0, 1.35fr);
  gap: 42px;
}

.case-study-row__media {
  align-self: start;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mist);
}

.case-study-row__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.case-study-row__heading span {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.case-study-row__heading h3 {
  margin: 12px 0;
  color: var(--navy);
  font-size: 34px;
  line-height: 1.08;
}

.case-study-row__heading p,
.case-study-row__body p,
.case-study-row__body li {
  color: var(--muted);
}

.case-study-row__heading .case-study-row__summary {
  margin-top: 18px;
  font-size: 15px;
}

.case-study-row__body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 34px;
}

.case-study-row__body strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
}

.case-study-row__body p,
.case-study-row__body ul {
  margin: 0;
}

.case-study-row__body ul {
  padding-left: 18px;
}

.case-study-row__body .text-link {
  grid-column: 1 / -1;
}

.case-study-empty {
  padding: 48px 0;
  color: var(--muted);
}

.case-detail__hero {
  min-height: 620px;
}

.case-detail__profile {
  padding: 28px max(21px, calc((100% - 1240px) / 2));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--navy);
  color: #fff;
}

.case-detail__profile div {
  min-width: 0;
  padding: 4px 28px;
  border-left: 1px solid rgba(255, 255, 255, .18);
}

.case-detail__profile div:first-child {
  padding-left: 0;
  border-left: 0;
}

.case-detail__profile span,
.case-detail__profile strong {
  display: block;
}

.case-detail__profile span {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.case-detail__profile strong {
  color: #fff;
  font-size: 19px;
  line-height: 1.35;
}

.case-detail__overview {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: 88px;
  align-items: start;
}

.case-detail__challenge h2 {
  margin-bottom: 22px;
}

.case-detail__challenge > p:last-child {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.case-detail__scope {
  padding-top: 4px;
  border-top: 2px solid var(--teal);
}

.case-detail__scope ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.case-detail__scope li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-weight: 500;
}

.case-detail__solution {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 86px;
  align-items: start;
}

.case-detail__solution h2 {
  color: #fff;
}

.case-detail__solution > p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 19px;
  line-height: 1.7;
}

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

.case-detail__result-grid article {
  min-height: 180px;
  padding: 28px;
  display: flex;
  align-items: flex-end;
  border-top: 3px solid var(--teal);
  background: var(--soft);
}

.case-detail__result-grid p {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

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

.case-detail__product-links a {
  min-height: 120px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  color: var(--navy);
}

.case-detail__product-links a:last-child {
  border-right: 0;
}

.case-detail__product-links span {
  font-size: 18px;
  font-weight: 500;
}

.case-detail__product-links strong {
  color: var(--teal-dark);
  font-size: 24px;
}

.archive-managed-hero {
  min-height: 560px;
}

.archive-managed-hero .business-hero__content > p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
}

.solution-detail__hero {
  min-height: 600px;
}

.solution-detail__hero-copy {
  width: min(100% - 42px, 1240px);
  margin: 0 auto;
}

.solution-detail__plan .business-steps {
  margin-bottom: 42px;
}

@media (max-width: 1180px) {
  .business-card-grid--products,
  .business-line-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .business-line-links a:nth-child(3) {
    border-right: 0;
  }

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

@media (max-width: 900px) {
  .business-hero {
    min-height: 640px;
  }

  .business-hero__content h1 {
    max-width: 650px;
    font-size: 54px;
  }

  .business-metrics,
  .business-section-heading,
  .business-proof,
  .managed-story,
  .managed-story-grid,
  .case-study-row,
  .case-detail__overview,
  .case-detail__solution {
    grid-template-columns: 1fr;
  }

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

  .business-metrics div,
  .business-metrics div:first-child {
    padding: 18px 20px;
    border-left: 1px solid rgba(255, 255, 255, .18);
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .business-section-heading,
  .business-proof,
  .managed-story,
  .managed-story-grid,
  .case-study-row,
  .case-detail__overview,
  .case-detail__solution {
    gap: 34px;
  }

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

  .managed-section-media--heading {
    max-width: none;
    justify-self: stretch;
  }

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

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

@media (max-width: 680px) {
  .business-hero {
    min-height: 650px;
  }

  .business-hero__image {
    object-position: 62% center;
  }

  .business-hero__shade {
    background: linear-gradient(90deg, rgba(2, 14, 21, .94), rgba(2, 14, 21, .56));
  }

  .business-hero__content {
    width: calc(100% - 42px);
    padding-top: 150px;
    padding-bottom: 62px;
  }

  .business-hero__content h1 {
    max-width: 340px;
    font-size: 40px;
  }

  .business-hero__lead {
    max-width: 340px;
    font-size: 17px;
  }

  .business-metrics,
  .case-detail__profile,
  .managed-media-pair,
  .business-card-grid--products,
  .business-card-grid--four,
  .business-steps,
  .business-steps--six,
  .business-line-links,
  .case-study-row__body {
    grid-template-columns: 1fr;
  }

  .business-metrics div,
  .business-metrics div:first-child {
    padding-left: 0;
    border-left: 0;
  }

  .business-proof__list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .business-line-links a,
  .business-line-links a:nth-child(3) {
    min-height: 110px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
  }

  .business-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-study-row__heading h3 {
    font-size: 29px;
  }

  .case-detail__profile div,
  .case-detail__profile div:first-child {
    padding: 18px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .case-detail__result-grid,
  .case-detail__product-links {
    grid-template-columns: 1fr;
  }

  .case-detail__product-links a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

.form-trap {
  display: none !important;
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
