:root {
  --ink: #111315;
  --muted: #677078;
  --line: #dde3e5;
  --paper: #f7f8f6;
  --white: #ffffff;
  --charcoal: #171a1d;
  --cyan: #00a9b7;
  --mint: #dff8f2;
  --violet: #8d64c8;
  --amber: #d6b35f;
  --shadow: 0 24px 60px rgba(17, 19, 21, 0.14);
  --radius: 8px;
  --max: 1180px;
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

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

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

button {
  border: 0;
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: var(--white);
  transition:
    background 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease,
    padding 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 0 rgba(17, 19, 21, 0.08);
  color: var(--ink);
  padding-block: 12px;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 170px;
  font-weight: 720;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-size: 12px;
  letter-spacing: 0;
}

.brand-name {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  font-size: 14px;
  font-weight: 620;
}

.site-nav a {
  position: relative;
  padding-block: 8px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.site-nav a[aria-current="page"] {
  font-weight: 760;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

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

.nav-toggle.is-open span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(720px, 84svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 112px clamp(20px, 5vw, 72px) 52px;
  background: var(--charcoal);
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  opacity: 0.98;
  transform: none;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 15, 17, 0.9) 0%, rgba(13, 15, 17, 0.62) 38%, rgba(13, 15, 17, 0.1) 66%, rgba(13, 15, 17, 0.02) 100%),
    linear-gradient(0deg, rgba(13, 15, 17, 0.48) 0%, rgba(13, 15, 17, 0.02) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: 64px;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-applications,
.hero-capabilities {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-applications {
  display: flex;
  flex-wrap: wrap;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  font-weight: 620;
}

.hero-applications li {
  display: inline-flex;
  align-items: center;
}

.hero-applications li:not(:last-child)::after {
  content: "/";
  margin: 0 9px;
  color: var(--cyan);
  font-weight: 780;
}

.hero-capabilities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  width: min(560px, 100%);
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 15px;
  font-weight: 720;
}

.hero-capabilities li {
  display: flex;
  gap: 9px;
  align-items: center;
}

.hero-capabilities li::before {
  content: "\2713";
  color: var(--cyan);
  font-weight: 850;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 720;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.hero .button-dark {
  background: var(--white);
  color: var(--ink);
}

.button-light {
  border: 1px solid rgba(255, 255, 255, 0.48);
  color: var(--white);
}

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

.section-pad {
  padding: clamp(58px, 7vw, 98px) clamp(20px, 5vw, 72px);
}

.section-heading {
  width: min(var(--max), 100%);
  margin: 0 auto clamp(28px, 4vw, 50px);
}

.section-heading-with-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
}

.section-heading-with-action .text-link {
  padding-bottom: 8px;
  white-space: nowrap;
}

.section-heading h2 {
  width: min(780px, 100%);
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: min(640px, 68vh);
  align-items: end;
  overflow: hidden;
  padding: 132px clamp(20px, 5vw, 72px) 64px;
  background: var(--charcoal);
  color: var(--white);
}

.page-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 16, 18, 0.88), rgba(14, 16, 18, 0.4) 54%, rgba(14, 16, 18, 0.12)),
    linear-gradient(0deg, rgba(14, 16, 18, 0.76), rgba(14, 16, 18, 0.1));
  content: "";
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.98;
}

.page-hero p:not(.eyebrow) {
  width: min(760px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 23px);
}

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

.page-hero-actions .button {
  min-width: 180px;
}

.hero-text-link {
  padding-block: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.54);
  color: var(--white);
  font-size: 14px;
  font-weight: 720;
}

.product-routebar {
  position: sticky;
  top: 60px;
  z-index: 15;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(17, 19, 21, 0.04);
  backdrop-filter: blur(18px);
  scrollbar-width: none;
}

.product-routebar::-webkit-scrollbar {
  display: none;
}

.product-routebar-inner {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.product-routebar a {
  display: grid;
  min-height: 76px;
  padding: 16px 18px;
  align-content: center;
  border-left: 1px solid var(--line);
  color: #3f484f;
  font-size: 13px;
  font-weight: 680;
  line-height: 1.25;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.product-routebar a:last-child {
  border-right: 1px solid var(--line);
}

.product-routebar a span {
  margin-bottom: 4px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 800;
}

.product-routebar a:hover,
.product-routebar a.is-active {
  background: var(--charcoal);
  color: var(--white);
}

.breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 650;
}

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

.lead-band {
  background: var(--white);
  padding: clamp(54px, 7vw, 92px) clamp(20px, 5vw, 72px);
}

.lead-band-inner {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.lead-band h2,
.split-copy h2,
.content-panel h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
}

.lead-band p,
.split-copy p,
.content-panel p,
.series-card p,
.spec-card p,
.process-step p,
.faq-item p {
  color: var(--muted);
}

.lead-band p,
.split-copy p,
.content-panel p {
  font-size: 18px;
}

.lead-image {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.lead-image img {
  width: 100%;
  height: 520px;
  padding: 16px;
  object-fit: contain;
}

.series-grid {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.series-card,
.spec-card,
.process-step,
.faq-item,
.content-panel {
  border: 1px solid rgba(17, 19, 21, 0.09);
  border-radius: var(--radius);
  background: var(--white);
}

.series-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  overflow: hidden;
}

.series-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  object-position: center;
}

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

.series-grid-lightbox .series-card img {
  aspect-ratio: 1 / 1;
}

.series-card h3 {
  margin: 22px 20px 10px;
  font-size: 22px;
  line-height: 1.12;
}

.series-card p {
  margin: 0 20px 24px;
  font-size: 14px;
}

.section-intro {
  width: min(720px, 100%);
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.catalog-jumps {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto clamp(70px, 9vw, 112px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.catalog-jumps a {
  display: flex;
  min-height: 152px;
  flex-direction: column;
  padding: 20px;
  border-left: 1px solid var(--line);
  transition:
    background 180ms ease,
    color 180ms ease;
}

.catalog-jumps a:first-child {
  border-left: 0;
}

.catalog-jumps a:hover {
  background: var(--charcoal);
  color: var(--white);
}

.catalog-jumps span,
.catalog-jumps small {
  color: var(--muted);
  font-size: 12px;
}

.catalog-jumps strong {
  margin: auto 0 6px;
  font-size: 17px;
  line-height: 1.15;
}

.catalog-jumps a:hover span,
.catalog-jumps a:hover small {
  color: rgba(255, 255, 255, 0.68);
}

.catalog-group-heading {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto 30px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
}

.catalog-group-heading + .series-grid {
  margin-bottom: clamp(84px, 10vw, 132px);
}

.catalog-group-heading h3 {
  width: min(690px, 100%);
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
}

.catalog-group-heading > p {
  margin: 0;
  color: var(--muted);
}

.catalog-group-summary {
  display: grid;
  gap: 18px;
}

.catalog-group-summary p {
  margin: 0;
  color: var(--muted);
}

.catalog-group-summary .text-link {
  justify-self: start;
}

.panel-series-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 20px !important;
}

.panel-platform-details {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto clamp(84px, 10vw, 132px);
  padding: clamp(28px, 4vw, 52px);
  background: var(--charcoal);
  color: var(--white);
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.platform-detail-lead h4 {
  margin: 12px 0 18px;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.04;
}

.platform-detail-lead p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.68);
}

.platform-detail-grid {
  display: grid;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.platform-detail-grid div {
  min-height: 152px;
  padding: 20px 20px 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.platform-detail-grid div:nth-child(even) {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.platform-detail-grid dt {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.official-catalog-grid {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto clamp(54px, 7vw, 86px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.official-product-card {
  overflow: hidden;
  border: 1px solid rgba(17, 19, 21, 0.09);
  border-radius: var(--radius);
  background: var(--white);
}

.official-product-card[href] {
  display: block;
  color: var(--ink);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.official-product-card[href]:hover {
  border-color: rgba(0, 169, 183, 0.46);
  box-shadow: 0 18px 44px rgba(17, 19, 21, 0.1);
  transform: translateY(-3px);
}

.official-product-card > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  padding: 14px;
  background: #eef1f1;
  object-fit: contain;
}

.official-product-card > img.product-photo-dark {
  padding: 0;
  background: #050505;
  object-fit: cover;
  object-position: center 58%;
}

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

.official-product-card h3 {
  margin: 7px 0 12px;
  font-size: 23px;
  line-height: 1.12;
}

.official-product-card p {
  margin: 0;
  color: var(--muted);
}

.official-product-card dl {
  display: grid;
  margin: 22px 0 0;
  border-top: 1px solid var(--line);
}

.official-product-card dl div {
  display: grid;
  gap: 4px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.official-product-card dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

.official-product-card dd {
  margin: 0;
  font-size: 13px;
  font-weight: 680;
}

.official-product-card.compact > img {
  aspect-ratio: 5 / 3;
}

.method-directory {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto 22px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--charcoal);
  color: var(--white);
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(32px, 6vw, 78px);
}

.method-directory-heading h4 {
  margin: 12px 0 14px;
  font-size: 32px;
  line-height: 1.08;
}

.method-directory-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.method-directory dl {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.method-directory dl div {
  display: grid;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  grid-template-columns: minmax(140px, 0.55fr) minmax(0, 1fr);
  gap: 20px;
}

.method-directory dt {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 760;
}

.method-directory dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.specialty-grid {
  margin-bottom: 14px;
}

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

.product-benefits-compact {
  padding-top: clamp(64px, 7vw, 92px);
  padding-bottom: clamp(58px, 6vw, 82px);
}

.product-benefits-compact .section-heading {
  margin-bottom: clamp(34px, 4vw, 50px);
}

.product-benefits-compact .section-heading h2 {
  width: min(900px, 100%);
  font-size: clamp(38px, 5vw, 64px);
}

.product-directory-compact {
  padding-top: clamp(64px, 7vw, 96px);
  padding-bottom: clamp(72px, 8vw, 110px);
}

.product-directory-compact .catalog-jumps {
  margin-bottom: 0;
}

.managed-product-copy {
  background: #eef2f1;
}

.managed-product-copy-inner {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 7vw, 112px);
  align-items: start;
}

.managed-product-copy h2 {
  margin: 0;
  font-size: clamp(36px, 4.8vw, 60px);
  line-height: 1.04;
}

.managed-product-copy [data-product-details] {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.managed-product-copy [data-product-details] p {
  margin: 0;
}

.catalog-page-links a {
  min-height: 238px;
}

.catalog-page-links strong {
  margin-top: auto;
}

.catalog-page-links small {
  min-height: 54px;
  margin-top: 8px;
  line-height: 1.45;
}

.catalog-page-links b {
  margin-top: 18px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 780;
}

.catalog-page-links a:hover b {
  color: var(--white);
}

.product-directory .specialty-grid {
  margin-bottom: clamp(84px, 10vw, 132px);
}

.specialty-directory {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto clamp(84px, 10vw, 132px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.specialty-directory article {
  display: grid;
  min-height: 178px;
  padding: 24px;
  border-left: 1px solid var(--line);
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
}

.specialty-directory article:first-child {
  border-left: 0;
}

.specialty-directory article > span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
}

.specialty-directory h4 {
  margin: 48px 0 8px;
  font-size: 18px;
  line-height: 1.15;
}

.specialty-directory p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.catalog-capacity-note {
  width: min(var(--max), 100%);
  margin: 0 auto clamp(84px, 10vw, 132px);
  padding-left: 18px;
  border-left: 3px solid var(--cyan);
  color: var(--muted);
  font-size: 14px;
}

.platform-detail-grid dd {
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.5;
}

.series-card {
  color: var(--ink);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.series-card:hover {
  border-color: rgba(0, 169, 183, 0.46);
  box-shadow: 0 18px 44px rgba(17, 19, 21, 0.1);
  transform: translateY(-3px);
}

.series-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.series-card-copy .series-kicker {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.series-card-copy h3 {
  margin: 10px 0 10px;
}

.series-card-copy p {
  margin: 0;
}

.series-link {
  margin-top: auto;
  padding-top: 24px;
  font-size: 13px;
  font-weight: 720;
}

#panel-catalog,
#production-methods,
#specialty-products,
#lightbox-catalog,
#frameless-system,
#framed-system,
#custom-forms,
#color-control,
#structure-options,
#installation-options,
#technical-options,
#format-options,
#project-gallery,
#poster-frame,
#magnetic-lightbox,
#crystal-lightbox,
#snap-open-lightbox,
#fabric-lightbox,
#double-sided-lightbox {
  scroll-margin-top: 176px;
}

#options-title,
#benefits-title {
  scroll-margin-top: 176px;
}

#technical-options {
  scroll-margin-top: 145px;
}

.product-details {
  background: var(--white);
}

.product-detail-row {
  display: grid;
  width: min(var(--max), 100%);
  min-height: 560px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.product-detail-row:last-child {
  border-bottom: 1px solid var(--line);
}

.product-detail-media {
  min-height: 520px;
  overflow: hidden;
  background: var(--charcoal);
}

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

.product-detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 66px);
}

.product-detail-row.is-reversed .product-detail-media {
  order: 2;
}

.product-detail-row.is-reversed .product-detail-copy {
  order: 1;
}

.detail-number,
.series-kicker {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-copy h3,
.assembly-copy h3,
.product-line h3 {
  margin: 12px 0 18px;
  font-size: clamp(30px, 3.4vw, 45px);
  line-height: 1.04;
}

.product-detail-copy > p,
.assembly-copy p,
.lightbox-intro p {
  color: var(--muted);
  font-size: 17px;
}

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

.detail-specs div {
  padding: 14px 12px 14px 0;
  border-bottom: 1px solid var(--line);
}

.detail-specs dt,
.product-line dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.detail-specs dd,
.product-line dd {
  margin: 4px 0 0;
  font-size: 14px;
  font-weight: 680;
}

.detail-note {
  margin: 16px 0 0;
  font-size: 12px !important;
}

.detail-actions {
  display: flex;
  margin-top: 28px;
  align-items: center;
  gap: 20px;
}

.text-link {
  font-size: 14px;
  font-weight: 720;
}

.feature-list {
  display: grid;
  margin: 24px 0 0;
  padding: 0;
  gap: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 12px 0 12px 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.feature-list li::before {
  position: absolute;
  top: 18px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  content: "";
}

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

.color-options span {
  position: relative;
  padding: 14px 10px 14px 28px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 680;
}

.color-options span::before {
  position: absolute;
  top: 18px;
  left: 4px;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(17, 19, 21, 0.18);
  border-radius: 50%;
  background: #ffd5a0;
  content: "";
}

.color-options span:nth-child(2)::before {
  background: #fff7dd;
}

.color-options span:nth-child(3)::before {
  background: #e4f1ff;
}

.color-options span:nth-child(4)::before {
  background: linear-gradient(90deg, #ffc785 0 50%, #dfeeff 50%);
}

.color-options span:nth-child(5)::before {
  background: linear-gradient(90deg, #36b7ff, #de3bba, #ff5959);
}

.lightbox-details {
  background: #eaf0ed;
}

.lightbox-intro {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto clamp(54px, 7vw, 92px);
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.lightbox-intro h2,
.installation-copy h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.02;
}

.lightbox-intro-media {
  min-height: 480px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal);
}

.lightbox-intro-media img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.product-lineup {
  width: min(var(--max), 100%);
  margin: 0 auto;
  border-bottom: 1px solid rgba(17, 19, 21, 0.16);
}

.product-line {
  display: grid;
  padding: 34px 0;
  border-top: 1px solid rgba(17, 19, 21, 0.16);
  grid-template-columns: 90px minmax(0, 0.8fr) minmax(380px, 1.2fr);
  gap: 26px;
  align-items: start;
}

.product-line-index {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 780;
}

.product-line h3 {
  margin: 0 0 10px;
  font-size: 28px;
}

.product-line p {
  margin: 0;
  color: var(--muted);
}

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

.structure-section {
  background: #eef0f2;
}

.assembly-grid {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.assembly-panel {
  min-height: 620px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(17, 19, 21, 0.12);
  border-radius: var(--radius);
  background: var(--white);
}

.assembly-copy h3 {
  font-size: clamp(30px, 3.2vw, 42px);
}

.layer-stack {
  display: grid;
  margin: 48px 0 0;
  padding: 0;
  gap: 7px;
  list-style: none;
}

.layer-stack li {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(17, 19, 21, 0.12);
  background: #f8fbfc;
  font-size: 14px;
  font-weight: 650;
}

.layer-stack li:nth-child(2) {
  margin-inline: 8px;
  background: #e4fbf8;
}

.layer-stack li:nth-child(3) {
  margin-inline: 16px;
  background: #d8f0f2;
}

.layer-stack li:nth-child(4) {
  margin-inline: 10px;
  background: #f1f3f4;
}

.layer-stack li span {
  color: var(--cyan);
  font-size: 11px;
}

.lightbox-stack li:nth-child(2) {
  background: #f5f1e7;
}

.lightbox-stack li:nth-child(3) {
  background: #e5f5f1;
}

.installation-section {
  background: var(--white);
}

.installation-layout {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.installation-visual {
  align-self: center;
  padding: 12px;
  border-radius: var(--radius);
  background: #eef1f2;
}

.installation-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  background: #f0f2f2;
}

.installation-visual img {
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.installation-visual p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.installation-copy > p {
  color: var(--muted);
  font-size: 17px;
}

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

.installation-grid article {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  padding: 18px 18px 18px 0;
  border-bottom: 1px solid var(--line);
}

.installation-grid strong {
  font-size: 15px;
}

.installation-grid span {
  margin: auto 0 4px;
  color: var(--cyan);
  font-size: 18px;
  font-weight: 760;
}

.installation-grid small {
  color: var(--muted);
}

.project-gallery {
  background: var(--paper);
}

.project-mosaic {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  grid-auto-rows: 320px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.project-shot {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal);
}

.project-shot-wide {
  grid-column: span 2;
}

.project-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.project-shot:hover img {
  transform: scale(1.025);
}

.project-shot figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 10px 12px;
  border-radius: 4px;
  background: rgba(17, 19, 21, 0.78);
  color: var(--white);
  font-size: 13px;
  font-weight: 680;
  backdrop-filter: blur(10px);
}

.split-section {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.split-media {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal);
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.split-copy,
.content-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 58px);
}

.spec-grid {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

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

.technical-options-section {
  background: var(--charcoal);
  color: var(--white);
}

.technical-options-heading {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto clamp(36px, 5vw, 60px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: end;
}

.technical-options-heading h2 {
  width: min(760px, 100%);
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.04;
}

.technical-options-summary {
  display: grid;
  gap: 22px;
}

.technical-options-summary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
}

.technical-options-summary .text-link {
  justify-self: start;
  color: var(--white);
}

.light-entry-guide,
.panel-structure-guide {
  width: min(var(--max), 100%);
  margin: 0 auto clamp(42px, 6vw, 72px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #171a1c;
  scroll-margin-top: 150px;
}

.light-entry-guide header,
.panel-structure-guide header {
  display: grid;
  padding: clamp(28px, 4vw, 46px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: end;
}

.light-entry-guide h3,
.panel-structure-guide h3 {
  width: min(680px, 100%);
  margin: 12px 0 0;
  color: var(--white);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.04;
}

.light-entry-guide header > p,
.panel-structure-guide header > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
}

.light-entry-guide figure,
.panel-structure-guide figure {
  margin: 0;
  padding: clamp(12px, 2vw, 24px);
}

.light-entry-guide img,
.panel-structure-guide img {
  display: block;
  width: 100%;
  height: auto;
  background: #111315;
}

.light-entry-guide figcaption,
.panel-structure-guide figcaption {
  padding: 14px 4px 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.technical-specification {
  width: min(var(--max), 100%);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  scroll-margin-top: 150px;
}

.technical-disclosure {
  background: #171a1c;
}

.technical-disclosure > summary {
  display: grid;
  min-height: 112px;
  padding: 28px clamp(24px, 4vw, 46px);
  align-items: center;
  grid-template-columns: minmax(160px, 0.45fr) minmax(0, 1fr) auto;
  gap: 20px;
  color: var(--white);
  cursor: pointer;
  list-style: none;
}

.technical-disclosure > summary::-webkit-details-marker {
  display: none;
}

.technical-disclosure > summary strong {
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.12;
}

.technical-disclosure > summary::after {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--white);
  content: "+";
  font-size: 24px;
  line-height: 1;
}

.technical-disclosure[open] > summary {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.technical-disclosure[open] > summary::after {
  content: "\2212";
}

.technical-specification-heading {
  display: grid;
  padding: clamp(28px, 4vw, 46px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 14px clamp(28px, 6vw, 78px);
}

.technical-specification-heading .detail-number {
  grid-column: 1 / -1;
}

.technical-specification-heading h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.06;
}

.technical-specification-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
}

.technical-table-wrap {
  overflow-x: auto;
  background: #f4f6f5;
}

.technical-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--ink);
  table-layout: fixed;
}

.technical-table th,
.technical-table td {
  padding: 20px 24px;
  border-right: 1px solid #d6dcda;
  border-bottom: 1px solid #d6dcda;
  text-align: left;
  vertical-align: top;
}

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

.technical-table th:last-child,
.technical-table td:last-child {
  border-right: 0;
}

.technical-table th[scope="row"] {
  width: 31%;
  background: rgba(230, 236, 234, 0.62);
  font-size: 15px;
  font-weight: 780;
}

.technical-table td {
  color: #3f4a4f;
  font-size: 15px;
}

.technical-table-section th {
  padding-block: 15px;
  background: #d6f1ed;
  color: #0a6872;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.technical-reference-note {
  width: min(var(--max), 100%);
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.spec-card {
  min-height: 210px;
  padding: 24px;
}

.spec-card strong {
  display: block;
  margin-bottom: 38px;
  color: var(--cyan);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spec-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.1;
}

.format-section {
  background: var(--white);
}

.format-intro {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: end;
}

.format-intro h2 {
  width: min(760px, 100%);
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.04;
}

.format-intro-copy {
  display: grid;
  gap: 22px;
}

.format-intro-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.format-intro-copy .text-link {
  justify-self: start;
}

.format-product-visual {
  position: relative;
  display: grid;
  width: min(var(--max), 100%);
  min-height: clamp(360px, 44vw, 520px);
  margin: clamp(36px, 5vw, 60px) auto 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #050505;
}

.format-product-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.format-product-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.02) 64%);
  content: "";
}

.format-product-visual figcaption {
  position: absolute;
  right: clamp(24px, 4vw, 52px);
  bottom: clamp(24px, 4vw, 46px);
  left: clamp(24px, 4vw, 52px);
  z-index: 1;
  display: grid;
  max-width: 720px;
  gap: 8px;
  color: var(--white);
}

.format-product-visual figcaption span {
  color: var(--mint);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.format-product-visual figcaption strong {
  font-size: clamp(26px, 4vw, 48px);
  line-height: 1.04;
}

.format-product-visual figcaption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.format-list {
  width: min(var(--max), 100%);
  margin: clamp(54px, 8vw, 92px) auto 0;
  border-top: 1px solid var(--line);
}

.format-row {
  display: grid;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 72px minmax(0, 0.78fr) minmax(380px, 1.22fr);
  gap: 26px;
  align-items: start;
}

.format-index {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 780;
}

.format-row h3 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.7vw, 36px);
  line-height: 1.08;
}

.format-row p {
  margin: 0;
  color: var(--muted);
}

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

.format-row dl div {
  min-height: 116px;
  padding: 0 22px;
}

.format-row dl div + div {
  border-left: 1px solid var(--line);
}

.format-row dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 740;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.format-row dd {
  margin: 28px 0 0;
  font-size: 14px;
  font-weight: 680;
  line-height: 1.45;
}

.protection-note {
  display: grid;
  width: min(var(--max), 100%);
  margin: 40px auto 0;
  padding: 28px 32px;
  background: var(--charcoal);
  color: var(--white);
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: 30px;
}

.protection-note span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.protection-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.gallery-strip {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 14px;
}

.gallery-strip img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}

.gallery-strip-captioned figure {
  position: relative;
  min-width: 0;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: var(--charcoal);
}

.gallery-strip-captioned img {
  display: block;
  border-radius: 0;
}

.gallery-strip-captioned figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 10px 12px;
  border-radius: 4px;
  background: rgba(17, 19, 21, 0.8);
  color: var(--white);
  font-size: 13px;
  font-weight: 680;
  backdrop-filter: blur(10px);
}

.official-product-card > img.product-photo-original {
  object-position: center 48%;
}

.process-grid {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.16);
}

.process-section {
  background: var(--charcoal);
  color: var(--white);
}

.process-section .section-heading h2 {
  color: var(--white);
}

.process-step {
  min-height: 250px;
  padding: 26px;
  background: #202428;
}

.process-step span {
  color: var(--mint);
  font-size: 13px;
  font-weight: 800;
}

.process-step h3 {
  margin: 54px 0 10px;
  font-size: 24px;
  line-height: 1.12;
}

.process-step p {
  color: rgba(255, 255, 255, 0.72);
}

.faq-grid {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

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

.faq-item summary {
  position: relative;
  padding: 22px 58px 22px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 760;
  list-style: none;
}

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

.faq-item summary::after {
  position: absolute;
  top: 20px;
  right: 8px;
  color: var(--cyan);
  content: "+";
  font-size: 24px;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item p {
  margin: 0;
  padding: 0 58px 24px 0;
}

.intro {
  background: var(--white);
}

.feature-grid {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature-card {
  min-height: 270px;
  padding: 28px;
  background: var(--white);
}

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

.feature-card h3 {
  margin: 58px 0 12px;
  font-size: 24px;
  line-height: 1.12;
}

.feature-card p,
.product-card p,
.tech-copy p,
.cta p,
.site-footer {
  color: var(--muted);
}

.company-assurance {
  background: #f3f1ea;
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: rgba(13, 18, 24, 0.14);
  border: 1px solid rgba(13, 18, 24, 0.14);
}

.assurance-card {
  min-height: 270px;
  padding: 34px;
  background: #f3f1ea;
}

.assurance-card > span,
.corporate-verification span {
  display: block;
  margin-bottom: 22px;
  color: #687078;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.assurance-card h3 {
  margin: 0 0 16px;
  font-size: 1.35rem;
}

.assurance-card p {
  margin: 0;
  color: #59616a;
  line-height: 1.75;
}

.corporate-verification {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
  border-top: 1px solid rgba(13, 18, 24, 0.18);
  border-bottom: 1px solid rgba(13, 18, 24, 0.18);
}

.corporate-verification div {
  padding: 22px 18px;
}

.corporate-verification a {
  color: #111820;
  font-weight: 650;
  text-decoration: none;
}

@media (max-width: 900px) {
  .assurance-grid,
  .corporate-verification {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .assurance-grid,
  .corporate-verification {
    grid-template-columns: 1fr;
  }
}

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

.product-grid {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.product-card {
  display: flex;
  min-height: 480px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 21, 0.09);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(17, 19, 21, 0.03);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.product-card:hover {
  border-color: rgba(0, 169, 183, 0.35);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.product-card img,
.product-card video {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  object-position: center;
  transition: transform 420ms ease;
}

.product-card video {
  object-position: center 52%;
}

.product-card:hover img,
.product-card:hover video {
  transform: scale(1.04);
}

.product-meta {
  margin: 28px 28px 0;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 12px 28px 10px;
  font-size: 25px;
  line-height: 1.12;
}

.product-card p {
  margin: 0 28px 22px;
}

.product-card-link {
  margin: auto 28px 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  font-weight: 760;
}

.product-family-strip {
  display: grid;
  width: min(var(--max), 100%);
  margin: 22px auto 0;
  border-block: 1px solid var(--line);
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.product-family-strip a {
  min-height: 190px;
  padding: 24px 20px;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.product-family-strip a + a {
  border-left: 1px solid var(--line);
}

.product-family-strip a:hover {
  background: var(--charcoal);
  color: var(--white);
}

.product-family-strip span,
.product-family-strip strong,
.product-family-strip small {
  display: block;
}

.product-family-strip span {
  margin-bottom: 34px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 780;
}

.product-family-strip strong {
  font-size: 17px;
  line-height: 1.18;
}

.product-family-strip small {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.product-family-strip a:hover small {
  color: rgba(255, 255, 255, 0.66);
}

.applications {
  background: var(--white);
}

.application-layout {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  grid-template-columns: 1.28fr 0.72fr;
  gap: 18px;
}

.application-tile {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal);
  color: var(--white);
}

.application-tile.large {
  min-height: 518px;
  grid-row: span 2;
}

.application-tile img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.92;
  transition: transform 480ms ease;
}

.application-tile::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 12, 13, 0.74), rgba(10, 12, 13, 0.05) 58%);
  content: "";
}

.application-tile:hover img {
  transform: scale(1.04);
}

.application-tile div {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  z-index: 1;
}

.application-tile span {
  color: var(--mint);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.application-tile h3 {
  margin: 8px 0 0;
  font-size: clamp(22px, 3vw, 42px);
  line-height: 1.04;
}

.technology {
  background: #f1f3f1;
}

.tech-panel {
  display: grid;
  width: min(var(--max), 100%);
  min-height: 470px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  overflow: hidden;
  border: 1px solid rgba(17, 19, 21, 0.09);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(17, 19, 21, 0.08);
}

.tech-visual {
  min-height: 470px;
  background: var(--charcoal);
}

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

.tech-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 64px);
}

.tech-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
}

.tech-tab {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 720;
  padding: 9px 14px;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.tech-tab.is-active,
.tech-tab:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.tech-copy h3 {
  margin: 0 0 18px;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.04;
}

.tech-copy p {
  margin: 0;
  font-size: 18px;
}

.factory {
  background: var(--charcoal);
  color: var(--white);
}

.factory .section-heading h2 {
  color: var(--white);
}

.factory-grid {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 18px;
}

.factory-media,
.factory-stats {
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.factory-media img,
.factory-media video {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: center 54%;
}

.factory-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.stat {
  min-height: 180px;
  padding: 28px;
  background: #202428;
}

.stat strong {
  display: block;
  margin-bottom: 22px;
  color: var(--mint);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1;
}

.stat span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 620;
}

.factory-address {
  display: grid;
  width: min(var(--max), 100%);
  align-items: center;
  margin: 18px auto 0;
  padding: 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  grid-template-columns: minmax(180px, 0.7fr) minmax(280px, 1.5fr) auto;
  gap: 28px;
  background: #202428;
}

.factory-address strong {
  display: block;
  margin-top: 5px;
  color: var(--white);
  font-size: 20px;
}

.factory-address p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.factory-address a {
  color: var(--mint);
  font-size: 14px;
  font-weight: 720;
}

.contact-label {
  display: block;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cta {
  padding: clamp(64px, 8vw, 108px) clamp(20px, 5vw, 72px);
  background: var(--white);
}

.cta-inner {
  width: min(860px, 100%);
  margin: 0 auto;
  text-align: center;
}

.cta h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.04;
}

.cta p {
  width: min(670px, 100%);
  margin: 24px auto 30px;
  font-size: 18px;
}

.contact-inline {
  display: grid;
  width: min(820px, 100%);
  margin: 30px auto;
  border-block: 1px solid var(--line);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  text-align: left;
}

.contact-inline > * {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 680;
}

.contact-inline > * + * {
  border-left: 1px solid var(--line);
}

.contact-inline span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-section {
  padding: clamp(64px, 8vw, 108px) clamp(20px, 5vw, 72px);
  background: var(--white);
}

.quote-heading,
.quote-layout {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.quote-heading {
  display: grid;
  align-items: end;
  margin-bottom: 48px;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 42px;
}

.quote-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -24px;
}

.quote-heading h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.04;
}

.quote-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.quote-layout {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  background: var(--paper);
}

.contact-panel {
  padding: clamp(28px, 4vw, 48px);
  background: var(--charcoal);
  color: var(--white);
}

.contact-item {
  padding-block: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-item:first-child {
  padding-top: 0;
}

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

.contact-item a,
.contact-item strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: clamp(19px, 2vw, 24px);
  overflow-wrap: anywhere;
}

.contact-item .contact-address {
  font-size: 18px;
  line-height: 1.35;
}

.contact-item small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
}

.contact-item p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.quote-form {
  position: relative;
  padding: clamp(28px, 4vw, 48px);
  background: var(--paper);
}

.form-honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  pointer-events: none;
}

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

.quote-form label {
  display: grid;
  gap: 8px;
}

.quote-form label > span {
  color: #3d444a;
  font-size: 12px;
  font-weight: 720;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid #cfd6d9;
  border-radius: 6px;
  outline: 0;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.quote-form input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin: 2px 0 0;
  accent-color: var(--cyan);
}

.quote-form input,
.quote-form select {
  min-height: 48px;
}

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

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 169, 183, 0.12);
}

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

.file-field small {
  color: var(--muted);
  font-size: 11px;
}

.consent-field {
  display: flex !important;
  align-items: flex-start;
  grid-template-columns: none;
  gap: 11px !important;
  padding: 14px 0 2px;
}

.consent-field > span {
  flex: 1;
  color: var(--muted) !important;
  font-weight: 560 !important;
  line-height: 1.5;
}

.consent-field a {
  color: var(--ink);
  font-weight: 720;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.turnstile-slot:not(:empty) {
  margin-top: 22px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.form-note[data-state="working"] {
  color: #356b72;
}

.form-note[data-state="error"] {
  color: #a33d36;
}

.quote-form button:disabled {
  cursor: wait;
  opacity: 0.64;
  transform: none;
}

.site-footer {
  display: grid;
  padding: 44px clamp(20px, 5vw, 72px);
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  grid-template-columns: minmax(220px, 1fr) auto minmax(250px, 1fr);
  gap: 28px 54px;
  align-items: start;
}

.footer-brand {
  display: grid;
  max-width: 360px;
  gap: 8px;
}

.footer-brand strong {
  color: var(--white);
  font-size: 17px;
  font-weight: 760;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 680;
  transition: color 180ms ease;
}

.site-footer a:hover,
.site-footer a[aria-current="page"] {
  color: var(--cyan);
}

.footer-nav {
  display: grid;
  gap: 8px 24px;
}

.footer-contact {
  display: grid;
  justify-items: end;
  gap: 8px;
  text-align: right;
}

.legal-hero {
  min-height: 42vh;
  padding-bottom: 54px;
}

.legal-hero h1 {
  max-width: 900px;
  font-size: clamp(42px, 6vw, 72px);
}

.legal-layout {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 108px) clamp(20px, 5vw, 72px);
  grid-template-columns: minmax(200px, 0.3fr) minmax(0, 0.7fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 94px;
  display: grid;
  border-top: 1px solid var(--line);
}

.legal-nav a {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 680;
}

.legal-nav a:hover,
.legal-nav a[aria-current="page"] {
  color: var(--ink);
}

.legal-copy {
  min-width: 0;
}

.legal-copy > p:first-child {
  margin-top: 0;
  color: var(--muted);
  font-size: 18px;
}

.legal-section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 100px;
}

.legal-section h2 {
  margin: 0 0 14px;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.12;
}

.legal-section h3 {
  margin: 24px 0 8px;
  font-size: 18px;
}

.legal-section p,
.legal-section li {
  color: #4f5a61;
}

.legal-section ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.legal-section li + li {
  margin-top: 8px;
}

.legal-callout {
  padding: 22px 24px;
  border-left: 3px solid var(--cyan);
  background: #e9f5f3;
}

.legal-callout p {
  margin: 0;
}

.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 110px 20px 56px;
  background: var(--charcoal);
}

.success-panel {
  width: min(720px, 100%);
  padding: clamp(34px, 6vw, 68px);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.success-panel h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1;
}

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

.success-reference {
  margin: 28px 0;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.success-reference span,
.success-reference strong {
  display: block;
}

.success-reference span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

.success-reference strong {
  margin-top: 5px;
  font-size: 19px;
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-company {
  display: grid;
  background: #eef1f1;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}

.home-company > * {
  min-width: 0;
}

.home-company-visual {
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal);
}

.home-company-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-company-copy {
  max-width: 600px;
}

.home-company-copy h2,
.company-profile-copy h2,
.company-capability-intro h2 {
  margin: 0;
  font-size: clamp(32px, 3.6vw, 50px);
  line-height: 1.04;
}

.home-company-copy > p:not(.eyebrow),
.company-profile-copy > p,
.company-capability-intro > p {
  color: var(--muted);
  font-size: 17px;
}

.home-company-facts {
  display: grid;
  margin: 32px 0;
  border-top: 1px solid #cfd6d8;
}

.home-company-facts div {
  display: grid;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid #cfd6d8;
}

.home-company-facts strong {
  font-size: 15px;
}

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

.company-hero .page-hero-media {
  object-position: 68% center;
}

.company-hero .page-hero-content {
  width: min(var(--max), 100%);
}

.company-hero h1 {
  max-width: 1040px;
  font-size: 56px;
}

.company-profile {
  background: var(--white);
}

.company-profile-grid {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}

.company-profile-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.company-profile-visual img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}

.company-inline-logo {
  width: min(360px, 100%);
  height: auto;
  margin-bottom: 28px;
}

.official-logo-panel {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid var(--line);
  border-top: 4px solid var(--cyan);
  background: #f5f7f6;
}

.official-logo-panel img {
  width: 100%;
  height: auto;
}

.official-logo-panel span {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 18px;
  font-weight: 760;
}

.official-logo-panel small {
  color: var(--muted);
}

.company-profile-copy .text-link {
  margin-top: 18px;
}

.company-milestones {
  background: #eef1f1;
}

.milestone-grid {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  border-top: 1px solid #cfd6d8;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.milestone {
  min-height: 280px;
  padding: 30px;
  border-left: 1px solid #cfd6d8;
}

.milestone:first-child {
  border-left: 0;
}

.milestone > span {
  color: var(--cyan);
  font-size: 14px;
  font-weight: 800;
}

.milestone h3 {
  margin: 94px 0 12px;
  font-size: 24px;
}

.milestone p {
  margin: 0;
  color: var(--muted);
}

.company-capabilities {
  display: grid;
  background: var(--charcoal);
  color: var(--white);
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(44px, 7vw, 96px);
}

.company-capability-intro {
  align-self: start;
}

.company-capability-intro > p {
  color: rgba(255, 255, 255, 0.68);
}

.company-capability-list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.company-capability-list article {
  display: grid;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
}

.company-capability-list article > span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
}

.company-capability-list h3 {
  margin: 0 0 7px;
  font-size: 22px;
}

.company-capability-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
}

.factory-proof {
  background: var(--white);
}

.factory-proof-grid {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.factory-proof-grid figure {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  margin: 0;
  background: var(--charcoal);
}

.factory-proof-grid img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.factory-proof-grid figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 22px;
  background: linear-gradient(0deg, rgba(17, 19, 21, 0.84), transparent);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.company-process {
  background: var(--paper);
}

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

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

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

@media (max-width: 1020px) {
  .feature-grid,
  .product-grid,
  .series-grid,
  .spec-grid,
  .process-grid,
  .product-family-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .panel-series-grid,
  .panel-platform-details,
  .format-intro,
  .official-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-company,
  .company-profile-grid,
  .company-capabilities {
    grid-template-columns: 1fr;
  }

  .technical-options-heading {
    grid-template-columns: 1fr;
  }

  .light-entry-guide header,
  .panel-structure-guide header,
  .technical-specification-heading {
    grid-template-columns: 1fr;
  }

  .format-row {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .format-row dl {
    grid-column: 2;
  }

  .product-family-strip a:nth-child(odd) {
    border-left: 0;
  }

  .product-family-strip a:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .product-card {
    min-height: 480px;
  }

  .product-routebar-inner {
    width: max-content;
    grid-auto-flow: column;
    grid-auto-columns: minmax(160px, 22vw);
    grid-template-columns: none;
  }

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

  .footer-contact {
    grid-column: 1 / -1;
    justify-items: start;
    text-align: left;
  }

  .application-layout,
  .lead-band-inner,
  .split-section,
  .tech-panel,
  .factory-grid,
  .quote-heading,
  .quote-layout,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .quote-heading .eyebrow {
    margin-bottom: -16px;
  }

  .factory-address {
    grid-template-columns: 1fr 1.5fr;
  }

  .factory-address a {
    grid-column: 1 / -1;
  }

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

  .application-tile.large {
    min-height: 500px;
    grid-row: auto;
  }

  .tech-panel {
    min-height: auto;
  }

  .tech-visual {
    min-height: 420px;
  }

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

  .product-directory .catalog-jumps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-jumps a:nth-child(3n + 1) {
    border-left: 0;
  }

  .catalog-jumps a:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .product-directory .catalog-jumps a:nth-child(odd) {
    border-left: 0;
  }

  .product-directory .catalog-jumps a:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .catalog-group-heading,
  .product-detail-row,
  .lightbox-intro,
  .installation-layout {
    grid-template-columns: 1fr;
  }

  .product-detail-row.is-reversed .product-detail-media,
  .product-detail-row.is-reversed .product-detail-copy {
    order: initial;
  }

  .product-line {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .product-line dl {
    grid-column: 2;
  }

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

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

@media (max-width: 760px) {
  .site-header {
    align-items: center;
    color: var(--white);
  }

  .site-header.is-scrolled,
  .site-header.is-open {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 1px 0 rgba(17, 19, 21, 0.08);
    color: var(--ink);
    backdrop-filter: blur(18px);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 66px;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 17px 18px;
    border-bottom: 1px solid var(--line);
  }

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

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

  .site-nav a[aria-current="page"] {
    background: rgba(0, 169, 183, 0.08);
    color: #007e89;
  }

  .hero {
    min-height: auto;
    padding: 104px 20px 48px;
  }

  .hero-media {
    object-position: center 45%;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(13, 15, 17, 0.86) 0%, rgba(13, 15, 17, 0.42) 56%, rgba(13, 15, 17, 0.2) 100%),
      linear-gradient(90deg, rgba(13, 15, 17, 0.55), rgba(13, 15, 17, 0.15));
  }

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

  .feature-grid,
  .product-grid,
  .series-grid,
  .spec-grid,
  .process-grid,
  .product-family-strip,
  .factory-stats,
  .form-grid,
  .contact-inline,
  .factory-address {
    grid-template-columns: 1fr;
  }

  .panel-series-grid,
  .panel-platform-details,
  .platform-detail-grid,
  .format-intro,
  .format-row,
  .format-row dl,
  .protection-note,
  .official-catalog-grid,
  .method-directory,
  .method-directory dl div,
  .specialty-directory,
  .milestone-grid,
  .factory-proof-grid {
    grid-template-columns: 1fr;
  }

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

  .product-directory .catalog-jumps a {
    min-height: 116px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .product-directory .catalog-jumps a:first-child {
    border-top: 0;
  }

  .method-directory {
    padding: 28px 22px;
  }

  .specialty-directory article,
  .specialty-directory article:first-child {
    min-height: auto;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .specialty-directory article:first-child {
    border-top: 0;
  }

  .specialty-directory h4 {
    margin-top: 24px;
  }

  .home-company {
    gap: 34px;
  }

  .home-company-visual,
  .home-company-visual > img {
    min-height: 240px;
    height: 240px;
  }

  .company-profile-visual,
  .company-profile-visual img {
    min-height: 300px;
    height: 300px;
  }

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

  .official-logo-panel {
    padding: 24px 20px;
  }

  .milestone {
    min-height: auto;
    padding: 28px 0;
    border-top: 1px solid #cfd6d8;
    border-left: 0;
  }

  .milestone:first-child {
    border-top: 0;
  }

  .milestone h3 {
    margin-top: 38px;
  }

  .company-capability-list article {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .factory-proof-grid figure,
  .factory-proof-grid img {
    min-height: 320px;
  }

  .panel-platform-details {
    padding: 28px 22px;
  }

  .platform-detail-grid div,
  .platform-detail-grid div:nth-child(even) {
    min-height: auto;
    padding: 20px 0;
    border-left: 0;
  }

  .platform-detail-grid dd {
    margin-top: 14px;
  }

  .format-row {
    gap: 14px;
  }

  .format-row dl {
    grid-column: auto;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .format-row dl div {
    min-height: auto;
    padding: 18px 0;
  }

  .format-row dl div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .format-row dd {
    margin-top: 10px;
  }

  .protection-note {
    padding: 24px 22px;
  }

  .feature-card {
    min-height: 210px;
  }

  .feature-card h3 {
    margin-top: 38px;
  }

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

  .product-card img,
  .product-card video {
    height: auto;
    aspect-ratio: 5 / 3;
  }

  .product-family-strip a,
  .product-family-strip a:nth-child(n) {
    min-height: 160px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .product-family-strip a:first-child {
    border-top: 0;
  }

  .application-tile {
    min-height: 280px;
  }

  .application-tile.large {
    min-height: 340px;
  }

  .tech-visual {
    min-height: 340px;
  }

  .tech-copy {
    padding: 28px;
  }

  .factory-media img,
  .factory-media video {
    min-height: 400px;
  }

  .factory-address a {
    grid-column: auto;
  }

  .contact-inline > * + * {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

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

  .legal-layout {
    padding-inline: 20px;
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .legal-nav a {
    padding: 12px 8px;
    text-align: center;
  }

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

  .page-hero {
    min-height: min(620px, 60vh);
    padding-top: 112px;
  }

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

  .page-hero.company-hero h1 {
    max-width: 100%;
    font-size: clamp(32px, 9.5vw, 38px);
    overflow-wrap: anywhere;
  }

  .company-hero .page-hero-content {
    width: 100%;
    min-width: 0;
    max-width: calc(100vw - 40px);
  }

  .company-hero .page-hero-content > p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

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

  .product-routebar-inner {
    grid-auto-columns: minmax(154px, 44vw);
  }

  .product-routebar a {
    min-height: 68px;
    padding: 13px 16px;
  }

  .section-heading-with-action {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-heading-with-action .text-link {
    justify-self: start;
  }

  .lead-image img,
  .split-media img {
    height: auto;
    min-height: 360px;
  }

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

  .gallery-strip img {
    height: 360px;
  }

  .catalog-jumps,
  .detail-specs,
  .color-options,
  .product-line dl,
  .installation-grid,
  .project-mosaic {
    grid-template-columns: 1fr;
  }

  .catalog-jumps a,
  .catalog-jumps a:nth-child(n) {
    min-height: 130px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .catalog-jumps a:first-child {
    border-top: 0;
  }

  .catalog-group-heading {
    align-items: start;
  }

  .series-card {
    min-height: 390px;
  }

  .product-detail-media,
  .lightbox-intro-media,
  .lightbox-intro-media img {
    min-height: 360px;
  }

  .product-detail-copy {
    padding: 30px 22px 42px;
  }

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

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

  .product-line dl {
    grid-column: auto;
  }

  .assembly-panel {
    min-height: auto;
    padding: 28px 20px;
  }

  .layer-stack {
    margin-top: 34px;
  }

  .layer-stack li {
    margin-inline: 0 !important;
  }

  .project-mosaic {
    grid-auto-rows: 340px;
  }

  .project-shot-wide {
    grid-column: auto;
  }

  .light-entry-guide figure,
  .panel-structure-guide figure {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }

  .light-entry-guide figure img,
  .panel-structure-guide figure img {
    width: 1020px;
    max-width: none;
  }

  .technical-disclosure > summary {
    grid-template-columns: 1fr auto;
  }

  .technical-disclosure > summary .detail-number {
    grid-column: 1 / -1;
  }

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

  .footer-contact {
    grid-column: auto;
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 720px) {
  .technical-table,
  .technical-table tbody,
  .technical-table tr,
  .technical-table th,
  .technical-table td {
    display: block;
    width: 100%;
  }

  .technical-table tr {
    border-bottom: 1px solid #d6dcda;
  }

  .technical-table th,
  .technical-table td,
  .technical-table th[scope="row"] {
    width: 100%;
    border-right: 0;
    border-bottom: 0;
  }

  .technical-table th[scope="row"] {
    padding-bottom: 8px;
  }

  .technical-table td {
    padding-top: 0;
  }

  .technical-table-section {
    border-bottom: 0;
  }

  .technical-table-section th {
    padding-block: 15px;
  }
}

@media (max-width: 420px) {
  .brand {
    min-width: 0;
  }

  .brand-name {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

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

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

  .hero-applications {
    font-size: 15px;
  }

  .hero-capabilities {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .button {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .managed-product-copy-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}
