:root {
  --paper: #f5f4f0;
  --surface: #ffffff;
  --ink: #17191c;
  --slate: #60666c;
  --line: rgba(23, 25, 28, 0.14);
  --ice: #8fc7d6;
  --deep: #173b4d;
  --deep-soft: #204c61;
  --warm: #d9d2c7;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --shadow: 0 24px 60px rgba(17, 25, 30, 0.1);
  --shell: min(1280px, calc(100vw - 64px));
  --font: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: 118px 0;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 16px;
  color: #fff;
  background: var(--deep);
  border-radius: 6px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(245, 244, 240, 0.86);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(245, 244, 240, 0.94);
}

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

.wordmark {
  display: inline-flex;
  align-items: flex-end;
  gap: 8px;
  letter-spacing: -0.035em;
}

.wordmark-main {
  font-size: 23px;
  font-weight: 740;
  line-height: 1;
}

.wordmark-sub {
  color: var(--slate);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #303438;
  font-size: 14px;
  font-weight: 560;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 12px 18px;
  color: #fff;
  background: var(--deep);
  border-radius: 999px;
  transition: background 180ms ease, transform 180ms ease;
}

.nav-cta:hover {
  background: var(--deep-soft);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: 0;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--deep-soft);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

h1,
h2 {
  margin-bottom: 24px;
  font-weight: 570;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 {
  max-width: 720px;
  font-size: clamp(58px, 6.1vw, 92px);
}

h2 {
  max-width: 760px;
  font-size: clamp(42px, 4.8vw, 68px);
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: 620;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 680;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

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

.button-primary:hover {
  background: var(--deep-soft);
}

.button-light {
  color: var(--deep);
  background: var(--surface);
}

.button-light:hover {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
}

.hero {
  padding-top: 150px;
  padding-bottom: 42px;
}

.hero-grid {
  display: grid;
  min-height: 690px;
  align-items: center;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 70px;
}

.hero-copy {
  padding: 40px 0;
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--slate);
  font-size: clamp(18px, 1.45vw, 22px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 680;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.hero-note {
  max-width: 440px;
  margin: 34px 0 0;
  padding-top: 20px;
  color: var(--slate);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.hero-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #d8dfdf;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-media::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 59, 77, 0) 55%, rgba(23, 59, 77, 0.22));
  pointer-events: none;
}

.hero-media > img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.hero-media:hover > img {
  transform: scale(1.025);
}

.material-card {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  backdrop-filter: blur(14px);
  font-size: 12px;
}

.material-card span {
  color: var(--slate);
}

.material-card strong {
  font-size: 13px;
}

.value-strip {
  display: grid;
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.value-strip > div {
  display: flex;
  min-height: 94px;
  align-items: center;
  gap: 15px;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
}

.value-strip > div:last-child {
  border-right: 0;
}

.value-strip span {
  color: #8a8e91;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.value-strip strong {
  font-size: 13px;
  font-weight: 620;
}

.collector-feature-section {
  padding-top: 105px;
  background: var(--paper);
}

.collector-feature-heading {
  margin-bottom: 46px;
}

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

.collector-feature-card {
  min-width: 0;
  padding: 12px 12px 28px;
  background: var(--surface);
  border: 1px solid rgba(23, 25, 28, 0.08);
  border-radius: var(--radius-md);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.collector-feature-card:hover,
.collector-feature-card:focus-visible {
  border-color: rgba(23, 59, 77, 0.28);
  box-shadow: 0 18px 46px rgba(17, 25, 30, 0.09);
  transform: translateY(-3px);
}

.collector-feature-card-wide {
  display: grid;
  padding-bottom: 12px;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
}

.collector-feature-card-wide .collector-feature-image {
  margin-bottom: 0;
}

.collector-feature-card-wide .collector-feature-copy {
  align-content: end;
  padding: 36px;
  grid-template-columns: 1fr;
  gap: 18px;
}

.collector-feature-image {
  position: relative;
  aspect-ratio: 4 / 3;
  margin-bottom: 26px;
  overflow: hidden;
  background: #ded9d2;
  border-radius: 11px;
}

.collector-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 750ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.collector-feature-card:hover .collector-feature-image img {
  transform: scale(1.025);
}

.feature-index,
.copyright-note {
  position: absolute;
  z-index: 1;
  top: 16px;
  padding: 8px 10px;
  color: #fff;
  background: rgba(17, 25, 29, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-size: 10px;
}

.feature-index {
  left: 16px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.copyright-note {
  right: 16px;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.02em;
}

.collector-feature-copy {
  display: grid;
  align-items: end;
  padding: 0 14px;
  grid-template-columns: 1fr minmax(190px, 0.75fr);
  gap: 34px;
}

.collector-feature-copy h3 {
  margin-bottom: 0;
  font-size: 27px;
}

.collector-feature-copy > p {
  margin: 0 0 2px;
  color: var(--slate);
  font-size: 13px;
}

.categories {
  background: var(--surface);
}

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

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

.section-heading > p {
  max-width: 470px;
  margin: 0 0 4px;
  color: var(--slate);
  font-size: 16px;
}

.category-grid {
  display: grid;
  grid-auto-rows: 420px;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.category-card {
  position: relative;
  overflow: hidden;
  grid-column: span 4;
  background: #d9dddc;
  border-radius: var(--radius-md);
}

.category-card-large {
  grid-column: span 8;
}

.category-card-wide {
  grid-column: span 8;
}

.category-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.category-card:hover > img {
  transform: scale(1.035);
}

.image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 20, 24, 0) 45%, rgba(14, 20, 24, 0.68));
}

.category-copy {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  color: #fff;
}

.category-copy span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.category-copy h3 {
  margin-bottom: 8px;
  font-size: 25px;
}

.category-copy p {
  max-width: 460px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.custom-section {
  color: #fff;
  background: var(--deep);
}

.custom-section .eyebrow {
  color: var(--ice);
}

.custom-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 100px;
}

.custom-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.custom-intro p:not(.eyebrow) {
  max-width: 540px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

.custom-options {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.custom-options > div {
  display: grid;
  min-height: 138px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  grid-template-columns: 48px 0.8fr 1.25fr;
  gap: 24px;
}

.custom-options span {
  color: var(--ice);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.custom-options strong {
  font-size: 18px;
  font-weight: 580;
}

.custom-options p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.popular-section {
  background: #eceae4;
}

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

.product-card {
  display: block;
  min-width: 0;
  border-radius: var(--radius-sm);
  outline-offset: 7px;
  transition: transform 180ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-3px);
}

.product-image {
  aspect-ratio: 1;
  margin-bottom: 22px;
  overflow: hidden;
  background: #fff;
  border-radius: var(--radius-sm);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

.product-type {
  margin-bottom: 10px;
  color: var(--deep-soft);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.product-card > p:last-child {
  margin: 0;
  color: var(--slate);
  font-size: 13px;
}

.card-arrow {
  display: inline-block;
  margin-left: 4px;
  color: var(--deep);
  font-size: 14px;
  transition: transform 180ms ease;
}

.product-card:hover .card-arrow,
.product-card:focus-visible .card-arrow,
.collector-feature-card:hover .card-arrow,
.collector-feature-card:focus-visible .card-arrow {
  transform: translate(3px, -3px);
}

.process-section {
  background: var(--surface);
}

.process-heading {
  margin-bottom: 70px;
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-list li {
  min-height: 235px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-list span {
  display: block;
  margin-bottom: 54px;
  color: #8a8e91;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.process-list p {
  max-width: 300px;
  margin: 0;
  color: var(--slate);
  font-size: 14px;
}

.faq-section {
  background: #eceae4;
}

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1.26fr);
  gap: 110px;
}

.faq-intro {
  position: sticky;
  top: 126px;
}

.faq-intro h2 {
  max-width: 520px;
}

.faq-intro > p:last-child {
  max-width: 510px;
  color: var(--slate);
  font-size: 16px;
}

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

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

.faq-list summary {
  position: relative;
  padding: 27px 50px 27px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 620;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 25px;
  right: 4px;
  color: var(--deep);
  font-size: 24px;
  font-weight: 380;
  line-height: 1;
}

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

.faq-list details > p {
  max-width: 760px;
  margin: -5px 55px 28px 0;
  color: var(--slate);
  font-size: 14px;
}

.product-detail-hero {
  padding-top: 136px;
  background: var(--paper);
}

.back-link {
  position: fixed;
  top: 104px;
  left: calc((100vw - var(--shell)) / 2);
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 0;
  padding: 9px 14px;
  color: var(--slate);
  background: rgba(245, 244, 240, 0.9);
  border: 1px solid rgba(23, 25, 28, 0.12);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(17, 25, 30, 0.08);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 620;
  transition: color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.back-link:hover {
  color: var(--deep);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(17, 25, 30, 0.13);
}

.product-detail-grid {
  display: grid;
  align-items: center;
  margin-top: 54px;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
  gap: 78px;
}

.product-detail-media {
  aspect-ratio: 1;
  overflow: hidden;
  background: #e8e5de;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.product-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-copy h1 {
  max-width: 680px;
  font-size: clamp(52px, 5.4vw, 80px);
}

.product-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--slate);
  font-size: clamp(18px, 1.4vw, 21px);
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.product-disclaimer {
  max-width: 570px;
  margin: 30px 0 0;
  padding-top: 18px;
  color: #777b7e;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.commercial-strip {
  display: grid;
  margin: 66px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.commercial-strip > div {
  min-height: 112px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.commercial-strip > div:last-child {
  border-right: 0;
}

.commercial-strip dt {
  margin-bottom: 11px;
  color: var(--slate);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.commercial-strip dd {
  margin: 0;
  font-size: 14px;
  font-weight: 620;
}

.specification-section {
  background: var(--surface);
}

.specification-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 100px;
}

.specification-title {
  position: sticky;
  top: 126px;
}

.specification-title > p:last-child {
  max-width: 540px;
  color: var(--slate);
  font-size: 16px;
}

.specification-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.spec-panel {
  min-height: 285px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spec-panel > span {
  display: block;
  margin-bottom: 60px;
  color: #8a8e91;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.spec-panel p,
.spec-panel ul {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 14px;
}

.spec-panel ul {
  padding-left: 18px;
}

.spec-panel li + li {
  margin-top: 6px;
}

.project-note-section {
  color: #fff;
  background: var(--deep);
}

.project-note-section .eyebrow {
  color: var(--ice);
}

.project-note-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: 100px;
}

.project-note-card {
  padding: 40px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-md);
}

.project-note-card > p:first-child {
  font-size: 17px;
  font-weight: 620;
}

.project-note-card ul {
  margin: 22px 0 28px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.project-note-card li {
  padding: 12px 0;
  color: var(--slate);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.project-note-small {
  color: var(--slate);
  font-size: 13px;
}

.project-note-card .button-light {
  color: #fff;
  background: var(--deep);
}

.related-section {
  background: #eceae4;
}

.related-section .section-heading > .text-link {
  justify-self: end;
  margin-bottom: 5px;
}

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

.related-card {
  overflow: hidden;
  background: var(--surface);
  border-radius: var(--radius-md);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.related-card:hover,
.related-card:focus-visible {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.related-card img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
}

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

.related-card h3 {
  margin-bottom: 0;
  font-size: 22px;
}

.capability-section {
  color: #fff;
  background: #11191d;
}

.capability-section .eyebrow {
  color: var(--ice);
}

.capability-title {
  display: grid;
  align-items: end;
  margin-bottom: 56px;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 80px;
}

.capability-title h2 {
  margin-bottom: 0;
}

.capability-title > p:last-child {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.62);
}

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

.factory-card {
  position: relative;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  background: #26343a;
  border-radius: var(--radius-md);
}

.factory-card-featured {
  grid-column: span 2;
}

.factory-card > img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.04);
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1), filter 300ms ease;
}

.factory-card:hover > img {
  transform: scale(1.03);
  filter: saturate(0.95) contrast(1.02);
}

.factory-card figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(12, 18, 21, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 620;
}

.factory-card figcaption span {
  color: var(--ice);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

.relationship-section {
  background: var(--ice);
}

.relationship-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
}

.relationship-title .eyebrow {
  color: var(--deep);
}

.relationship-title h2 {
  margin-bottom: 0;
}

.relationship-copy {
  padding-top: 38px;
}

.relationship-copy p {
  margin-bottom: 24px;
  color: rgba(23, 25, 28, 0.76);
  font-size: 18px;
}

.relationship-copy strong {
  color: var(--ink);
}

.partner-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 36px 0 30px;
  border-top: 1px solid rgba(12, 56, 76, 0.18);
  border-left: 1px solid rgba(12, 56, 76, 0.18);
}

.partner-proof-item {
  min-height: 116px;
  padding: 23px 24px 21px;
  border-right: 1px solid rgba(12, 56, 76, 0.18);
  border-bottom: 1px solid rgba(12, 56, 76, 0.18);
}

.partner-proof-item strong,
.partner-proof-item span {
  display: block;
}

.partner-proof-item strong {
  margin-bottom: 8px;
  color: var(--deep);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 620;
  letter-spacing: -0.035em;
  line-height: 1;
}

.partner-proof-item span {
  color: rgba(23, 25, 28, 0.58);
  font-size: 12px;
  font-weight: 620;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.relationship-copy .partner-capability-note {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.75;
}

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

.quote-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 110px;
}

.quote-intro {
  padding-top: 12px;
}

.quote-intro > p:not(.eyebrow) {
  max-width: 540px;
  color: var(--slate);
  font-size: 17px;
}

.brief-list {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.brief-list > span {
  color: var(--deep-soft);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brief-list ul {
  margin: 18px 0 0;
  padding: 0;
  color: var(--slate);
  list-style: none;
}

.brief-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.quote-form {
  padding: 38px;
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: block;
  margin-bottom: 22px;
}

.quote-form label > span {
  display: block;
  margin-bottom: 9px;
  font-size: 12px;
  font-weight: 670;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: #f8f7f4;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.quote-form textarea {
  min-height: 130px;
  resize: vertical;
}

.file-upload {
  position: relative;
  cursor: pointer;
}

.file-input {
  position: absolute;
  width: 1px !important;
  height: 1px;
  padding: 0 !important;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0 !important;
}

.file-control {
  display: flex;
  min-height: 49px;
  overflow: hidden;
  color: var(--ink);
  background: #f8f7f4;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.file-action,
.file-name {
  display: flex;
  align-items: center;
  padding: 11px 14px;
}

.file-action {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 670;
  background: #eeece7;
  border-right: 1px solid var(--line);
}

.file-name {
  min-width: 0;
  overflow: hidden;
  color: var(--slate);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-upload:hover .file-control,
.file-input:focus-visible + .file-control {
  border-color: var(--deep);
  box-shadow: 0 0 0 3px rgba(143, 199, 214, 0.34);
}

.quote-form label > span small {
  color: var(--slate);
  font-size: inherit;
  font-weight: 500;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--deep);
  box-shadow: 0 0 0 3px rgba(143, 199, 214, 0.34);
}

.button-submit {
  width: 100%;
}

.button-submit:disabled {
  cursor: wait;
  opacity: 0.62;
}

.form-note,
.form-status {
  margin: 13px 0 0;
  color: var(--slate);
  font-size: 12px;
}

.form-status {
  color: var(--deep);
  font-weight: 620;
}

.form-status[data-state="error"] {
  color: #9b3b32;
}

.form-status[data-state="success"] {
  color: #2f6a50;
}

.site-footer {
  padding: 64px 0;
  color: rgba(255, 255, 255, 0.68);
  background: #11191d;
}

.footer-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 1.2fr 0.75fr 0.75fr;
  gap: 70px;
}

.wordmark-footer {
  margin-bottom: 18px;
  color: #fff;
}

.wordmark-footer .wordmark-sub {
  color: rgba(255, 255, 255, 0.54);
}

.site-footer p {
  max-width: 390px;
  margin-bottom: 10px;
  font-size: 13px;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: #fff;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--ice);
}

.footer-meta {
  text-align: right;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal-delay-1 {
  transition-delay: 90ms;
}

.reveal-delay-2 {
  transition-delay: 180ms;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

@media (max-width: 1050px) {
  :root {
    --shell: min(100% - 44px, 920px);
  }

  .section {
    padding: 92px 0;
  }

  .site-nav {
    gap: 20px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr 0.92fr;
    gap: 34px;
  }

  .hero-media,
  .hero-media > img {
    min-height: 540px;
  }

  .section-heading,
  .capability-title {
    grid-template-columns: 1fr 0.65fr;
    gap: 40px;
  }

  .custom-grid,
  .relationship-grid,
  .quote-grid {
    gap: 60px;
  }

  .faq-grid,
  .specification-grid,
  .project-note-grid {
    gap: 60px;
  }

  .product-detail-grid {
    gap: 44px;
  }

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

  .collector-feature-copy {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: calc(100vw - 36px);
  }

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

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 9vw;
    background: var(--paper);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    font-size: 26px;
  }

  .nav-cta {
    margin-top: 12px;
    font-size: 16px !important;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-grid,
  .custom-grid,
  .relationship-grid,
  .quote-grid,
  .faq-grid,
  .specification-grid,
  .project-note-grid,
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-media,
  .hero-media > img {
    min-height: min(640px, 108vw);
  }

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

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

  .value-strip > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section-heading,
  .capability-title {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading > p,
  .capability-title > p:last-child {
    max-width: 640px;
  }

  .category-grid {
    grid-auto-rows: 380px;
  }

  .collector-feature-image {
    aspect-ratio: 1;
  }

  .category-card,
  .category-card-large,
  .category-card-wide {
    grid-column: span 6;
  }

  .category-card-wide {
    grid-column: span 12;
  }

  .custom-intro {
    position: static;
  }

  .faq-intro,
  .specification-title {
    position: static;
  }

  .product-detail-copy {
    max-width: 720px;
  }

  .back-link {
    top: 84px;
  }

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

  .commercial-strip {
    grid-template-columns: 1fr 1fr;
  }

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

  .commercial-strip > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

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

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

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

  .factory-card-featured {
    grid-column: span 2;
  }

  .relationship-copy,
  .quote-intro {
    padding-top: 0;
  }

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

  .footer-meta {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  .section {
    padding: 76px 0;
  }

  h1 {
    font-size: clamp(49px, 15vw, 68px);
  }

  h2 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .hero {
    padding-top: 105px;
    padding-bottom: 26px;
  }

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

  .hero-media,
  .hero-media > img {
    min-height: 470px;
  }

  .material-card {
    right: 12px;
    bottom: 12px;
    left: 12px;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

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

  .value-strip > div {
    min-height: 76px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .value-strip > div:last-child {
    border-bottom: 0;
  }

  .collector-feature-grid {
    grid-template-columns: 1fr;
  }

  .collector-feature-card-wide {
    display: block;
    padding-bottom: 28px;
  }

  .collector-feature-image {
    aspect-ratio: 4 / 3;
  }

  .collector-feature-card-wide .collector-feature-image {
    margin-bottom: 26px;
  }

  .collector-feature-copy {
    padding: 0 8px;
  }

  .collector-feature-card-wide .collector-feature-copy {
    padding: 0 8px;
  }

  .category-grid {
    display: block;
  }

  .category-card {
    min-height: 400px;
    margin-bottom: 14px;
  }

  .custom-options > div {
    grid-template-columns: 34px 1fr;
  }

  .custom-options p {
    grid-column: 2;
  }

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

  .product-detail-hero {
    padding-top: 110px;
  }

  .product-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .commercial-strip {
    grid-template-columns: 1fr;
  }

  .commercial-strip > div {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .commercial-strip > div:last-child {
    border-bottom: 0;
  }

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

  .spec-panel {
    min-height: 235px;
  }

  .project-note-card {
    padding: 28px 22px;
  }

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

  .process-list li {
    min-height: 200px;
  }

  .process-list span {
    margin-bottom: 38px;
  }

  .factory-grid {
    display: block;
  }

  .factory-card {
    min-height: 270px;
    margin-bottom: 14px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .quote-form {
    padding: 24px 18px;
  }

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

  .footer-meta {
    grid-column: auto;
  }
}
