/* UNIWISE V36 consolidated stylesheet. */
:root {
  --ink: #10201c;
  --ink-soft: #263833;
  --green: #1d7666;
  --green-dark: #14584e;
  --mint: #82cfb7;
  --paper: #f5f2e9;
  --paper-deep: #ece7da;
  --white: #fffef9;
  --muted: #67736e;
  --line: rgba(16, 32, 28, 0.14);
  --shadow: 0 26px 70px rgba(16, 32, 28, 0.13);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 8px;
  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }

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

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 100;
  background: var(--ink);
  color: white;
  padding: 12px 16px;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(245, 242, 233, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}
.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.brand-copy { display: grid; gap: 2px; }
.brand-name {
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 13px;
}
.brand-subline {
  font-family: "Courier New", monospace;
  letter-spacing: 0.14em;
  font-size: 9px;
  color: var(--green);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
}
.desktop-nav > a:not(.button) {
  position: relative;
  color: var(--ink-soft);
}
.desktop-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--green);
  transition: right 180ms ease;
}
.desktop-nav > a:not(.button):hover::after { right: 0; }

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 5px;
  background: transparent;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary {
  background: var(--green);
  border-color: var(--green);
  color: white;
}
.button.primary:hover { background: var(--green-dark); border-color: var(--green-dark); }
.button.dark { background: var(--ink); color: white; }
.button.light { border-color: rgba(255,255,255,.75); color: white; }
.button.full { width: 100%; }

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 5px;
  cursor: pointer;
}
.mobile-menu-button span,
.mobile-menu-button::before,
.mobile-menu-button::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: var(--ink);
  margin: 5px auto;
}
.mobile-menu {
  display: none;
  padding: 0 24px 24px;
  border-top: 1px solid var(--line);
}
.mobile-menu.open { display: grid; }
.mobile-menu a {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .button { margin-top: 18px; }

.hero {
  position: relative;
  padding: 80px 0 74px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -210px;
  top: -240px;
  border-radius: 50%;
  border: 1px solid rgba(29, 118, 102, .28);
  box-shadow: inset 0 0 0 58px var(--paper), inset 0 0 0 59px rgba(29,118,102,.22), inset 0 0 0 116px var(--paper), inset 0 0 0 117px rgba(29,118,102,.17);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 72px;
}
.eyebrow {
  margin: 0 0 20px;
  color: var(--green);
  font: 700 12px/1.3 "Courier New", monospace;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(50px, 6.4vw, 82px);
  line-height: .96;
  letter-spacing: -.058em;
}
.hero h1 span { color: var(--green); }
.hero-lead {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.hero-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 30px;
  max-width: 560px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.hero-note::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--green);
  margin-top: 8px;
  flex: 0 0 auto;
}

.hero-visual {
  position: relative;
  min-height: 540px;
}
.hero-product-main {
  position: absolute;
  inset: 0 60px 72px 0;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.hero-product-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-product-main::after {
  content: "ROTARY DAMPER · OEM MATCHING";
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 10px 12px;
  background: rgba(245,242,233,.94);
  color: var(--ink);
  font: 700 10px/1 "Courier New", monospace;
  letter-spacing: .12em;
}
.hero-product-secondary {
  position: absolute;
  width: 44%;
  right: 0;
  bottom: 0;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 20px 54px rgba(16,32,28,.16);
}
.hero-product-secondary img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  border-radius: 11px;
}
.hero-product-caption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 3px 1px;
  font-size: 11px;
}
.hero-product-caption span:last-child { color: var(--green); font-weight: 700; }
.hero-factory-chip {
  position: absolute;
  left: -34px;
  top: 42px;
  width: 120px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: 0 18px 44px rgba(16,32,28,.12);
  transform: rotate(-4deg);
}
.hero-factory-chip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}
.hero-factory-chip span {
  display: block;
  padding: 8px 2px 2px;
  font: 700 9px/1.3 "Courier New", monospace;
  letter-spacing: .08em;
}

.proof-bar {
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item {
  padding: 26px 22px;
  border-right: 1px solid var(--line);
}
.proof-item:last-child { border-right: 0; }
.proof-item strong {
  display: block;
  margin-bottom: 7px;
  font-size: 25px;
  letter-spacing: -.03em;
}
.proof-item span { color: var(--muted); font-size: 12px; line-height: 1.4; }

.section { padding: 96px 0; }
.section.alt { background: var(--white); }
.section.dark { background: var(--ink); color: white; }
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 44px;
  margin-bottom: 38px;
}
.section-header h2 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(38px, 4.5vw, 56px);
  line-height: 1.04;
  letter-spacing: -.046em;
}
.section-header > p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.dark .section-header > p { color: rgba(255,255,255,.65); }
.dark .eyebrow { color: var(--mint); }

.application-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.application-card {
  min-height: 326px;
  position: relative;
  padding: 25px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.36);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.application-number {
  font: 700 11px/1 "Courier New", monospace;
  color: var(--green);
  letter-spacing: .12em;
}
.application-icon {
  width: 124px;
  height: 94px;
  position: relative;
  margin: 36px 0 34px;
  border: 1px solid rgba(29,118,102,.34);
  border-radius: 62px 62px 18px 18px;
}
.application-icon::before {
  content: "";
  position: absolute;
  width: 76px;
  height: 76px;
  left: 23px;
  top: 9px;
  border: 1px solid rgba(29,118,102,.24);
  border-radius: 50%;
}
.application-icon span:nth-child(1) {
  position: absolute;
  width: 70px;
  height: 7px;
  left: 27px;
  bottom: 17px;
  border-radius: 10px;
  background: var(--green);
}
.application-icon span:nth-child(2),
.application-icon span:nth-child(3) {
  position: absolute;
  width: 18px;
  height: 18px;
  bottom: 11px;
  background: var(--paper);
  border: 4px solid var(--green);
  border-radius: 50%;
}
.application-icon span:nth-child(2) { left: 31px; }
.application-icon span:nth-child(3) { right: 31px; }
.application-card h3 { margin: 0 0 11px; font-size: 21px; }
.application-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.62; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.product-card {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 46px rgba(16,32,28,.10);
}
.product-extra { display: none; }
.products-expanded .product-extra { display: block; }
.product-image-button {
  width: 100%;
  padding: 0;
  border: 0;
  background: #d9d4c9;
  cursor: zoom-in;
}
.product-image-button img {
  width: 100%;
  aspect-ratio: 1.38;
  object-fit: cover;
}
.product-body { padding: 23px; }
.product-kicker {
  margin-bottom: 7px;
  color: var(--green);
  font: 700 10px/1 "Courier New", monospace;
  letter-spacing: .13em;
}
.product-body h3 { margin: 0 0 10px; font-size: 24px; }
.product-body p { min-height: 45px; margin: 0 0 18px; color: var(--muted); line-height: 1.55; font-size: 13px; }
.text-button {
  padding: 0;
  border: 0;
  background: none;
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}
.product-footer { text-align: center; margin-top: 28px; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.process-step {
  min-height: 280px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,.16);
}
.process-step:last-child { border-right: 0; }
.process-number {
  color: var(--mint);
  font: 700 12px/1 "Courier New", monospace;
  letter-spacing: .13em;
}
.process-step h3 { margin: 94px 0 11px; font-size: 21px; }
.process-step p { margin: 0; color: rgba(255,255,255,.63); font-size: 13px; line-height: 1.65; }

.factory-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 58px;
  align-items: start;
}
.factory-copy { position: sticky; top: 118px; }
.factory-copy h2 {
  margin: 0;
  font-size: clamp(39px, 4.6vw, 58px);
  line-height: 1.03;
  letter-spacing: -.048em;
}
.factory-copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.72;
}
.factory-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.factory-point {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.factory-point::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.factory-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.factory-photo {
  position: relative;
  margin: 0;
  min-height: 300px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #d6d2c7;
}
.factory-photo-1 { grid-column: 1 / -1; min-height: 420px; }
.factory-photo-4 { grid-column: 1 / -1; min-height: 360px; }
.factory-photo img { width: 100%; height: 100%; object-fit: cover; }
.factory-photo figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 9px 11px;
  background: rgba(245,242,233,.92);
  font: 700 10px/1 "Courier New", monospace;
  letter-spacing: .1em;
}

.contact-section { padding: 80px 0; }
.contact-panel {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  border-radius: 24px;
  overflow: hidden;
  background: var(--green);
  color: white;
}
.contact-copy { padding: 48px; }
.contact-copy .eyebrow { color: rgba(255,255,255,.72); }
.contact-copy h2 {
  margin: 0;
  font-size: clamp(38px, 4.4vw, 56px);
  line-height: 1.03;
  letter-spacing: -.048em;
}
.contact-copy > p { max-width: 520px; color: rgba(255,255,255,.76); line-height: 1.7; }
.contact-details {
  display: grid;
  gap: 13px;
  margin-top: 31px;
  font-size: 13px;
}
.contact-details a { text-decoration: underline; text-underline-offset: 4px; }
.contact-form {
  margin: 10px;
  padding: 34px;
  background: var(--white);
  color: var(--ink);
  border-radius: 18px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 12px; font-weight: 700; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 47px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #faf8f1;
  color: var(--ink);
  outline: none;
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(29,118,102,.11); }
.form-help { margin: 13px 0 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.form-status { min-height: 18px; margin: 12px 0 0; color: var(--green); font-size: 12px; }

.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}
.footer-inner { display: flex; justify-content: space-between; gap: 24px; }

.lightbox {
  width: min(760px, calc(100% - 30px));
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.lightbox::backdrop { background: rgba(4, 12, 10, .72); }
.lightbox-inner { position: relative; padding: 16px; }
.lightbox img { width: 100%; max-height: 72vh; object-fit: contain; border-radius: 14px; }
.lightbox-bar { display: flex; justify-content: space-between; align-items: center; padding: 15px 4px 2px; }
.lightbox-bar h3 { margin: 0; }
.lightbox-close {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
}

@media (max-width: 980px) {
  .desktop-nav { gap: 18px; }
  .hero-grid { gap: 42px; }
  .hero-visual { min-height: 470px; }
  .application-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .factory-layout { grid-template-columns: 1fr; }
  .factory-copy { position: static; }
  .contact-panel { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .desktop-nav { display: none; }
  .mobile-menu-button { display: block; }
  .hero { padding-top: 54px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 440px; margin-top: 16px; }
  .hero-factory-chip { left: 4px; top: 22px; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-header { display: block; }
  .section-header > p { margin-top: 18px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.16); }
  .factory-gallery { grid-template-columns: 1fr; }
  .factory-photo,
  .factory-photo-1,
  .factory-photo-4 { grid-column: auto; min-height: 360px; }
}

@media (max-width: 560px) {
  .wrap { width: min(var(--wrap), calc(100% - 28px)); }
  .navbar { min-height: 68px; }
  .brand img { width: 35px; height: 35px; }
  .hero h1 { font-size: 47px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 350px; }
  .hero-product-main { inset: 0 24px 52px 0; border-radius: 20px; }
  .hero-product-secondary { width: 54%; }
  .hero-factory-chip { width: 92px; }
  .proof-grid,
  .application-grid,
  .product-grid,
  .process-grid { grid-template-columns: 1fr; }
  .proof-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-item:last-child { border-bottom: 0; }
  .process-step { min-height: 220px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .process-step:last-child { border-bottom: 0; }
  .process-step h3 { margin-top: 60px; }
  .section { padding: 70px 0; }
  .section-header h2,
  .factory-copy h2,
  .contact-copy h2 { font-size: 38px; }
  .factory-photo,
  .factory-photo-1,
  .factory-photo-4 { min-height: 300px; }
  .contact-copy { padding: 34px 24px; }
  .contact-form { margin: 7px; padding: 24px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .footer-inner { display: grid; }
}

/* Product specifications — V2 */
.product-spec-preview {
  display: grid;
  gap: 7px;
  margin: 0 0 18px;
}
.product-spec-preview > div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  padding-top: 7px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}
.product-spec-preview dt { color: var(--muted); }
.product-spec-preview dd { margin: 0; font-weight: 700; text-align: right; }
.spec-pending {
  margin: 0 0 18px;
  padding: 10px 12px;
  background: rgba(29,118,102,.07);
  color: var(--muted);
  border-radius: 6px;
  font-size: 11px;
  line-height: 1.5;
}
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 18px;
  align-items: center;
}
.product-dialog {
  width: min(960px, calc(100% - 28px));
  max-height: calc(100vh - 28px);
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 32px 100px rgba(16,32,28,.28);
}
.product-dialog::backdrop { background: rgba(7,18,15,.72); }
.product-dialog-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.product-dialog-visual {
  display: grid;
  place-items: center;
  padding: 36px;
  background: #d9d4c9;
}
.product-dialog-visual img {
  width: 100%;
  max-height: 470px;
  object-fit: contain;
}
.product-dialog-content {
  overflow: auto;
  padding: 48px 42px;
}
.product-dialog-sku {
  margin: 0 0 5px;
  color: var(--green);
  font: 700 12px/1 "Courier New", monospace;
  letter-spacing: .12em;
}
.product-dialog-content h3 {
  margin: 0 0 14px;
  font-size: 34px;
  line-height: 1.08;
}
.product-dialog-content > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}
.product-spec-table {
  display: grid;
  margin: 26px 0 30px;
  border-top: 1px solid var(--line);
}
.spec-row {
  display: grid;
  grid-template-columns: 135px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.spec-row dt { color: var(--muted); }
.spec-row dd { margin: 0; font-weight: 700; }
.spec-empty {
  padding: 18px 0;
  color: var(--muted);
  line-height: 1.6;
}
.dialog-close {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 24px;
  cursor: pointer;
}
@media (max-width: 760px) {
  .product-dialog-inner { grid-template-columns: 1fr; }
  .product-dialog-visual { min-height: 260px; padding: 28px; }
  .product-dialog-content { padding: 34px 24px; }
  .spec-row { grid-template-columns: 110px 1fr; }
}


/* V3: application photography and product media gallery */
.application-card { padding: 0; min-height: 390px; display: grid; grid-template-rows: 210px 1fr; background: var(--white); }
.application-image { overflow: hidden; background: #ebe7dc; border-bottom: 1px solid var(--line); }
.application-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.application-card:hover .application-image img { transform: scale(1.035); }
.application-copy { padding: 22px 24px 26px; }
.application-copy .application-number { margin-bottom: 20px; }
.product-dialog { width: min(1120px, calc(100% - 28px)); }
.product-dialog-inner { grid-template-columns: 1.15fr .85fr; }
.product-dialog-visual { justify-content: flex-start; overflow: auto; }
.product-dialog-main-button { width: 100%; min-height: 430px; padding: 14px; border: 0; border-radius: 16px; background: white; cursor: zoom-in; }
.product-dialog-main-button img { width: 100%; height: 100%; max-height: 520px; object-fit: contain; }
.product-source-note { margin-top: -12px !important; padding: 13px 15px; background: rgba(29,118,102,.08); border-radius: 8px; font-size: 11px; line-height: 1.55 !important; }
@media (max-width: 760px) { .product-dialog-inner { grid-template-columns: 1fr; } .product-dialog-main-button { min-height: 280px; } .application-card { grid-template-rows: 190px 1fr; } }

/* V4: hinges + dampers, stacked product media cards */
.hero-product-main::after { content: "HINGES + DAMPERS · OEM MATCHING"; }

.product-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -6px 0 34px;
}
.product-filter-button {
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.product-filter-button:hover { transform: translateY(-1px); border-color: rgba(29,118,102,.5); }
.product-filter-button.active { background: var(--ink); border-color: var(--ink); color: white; }

.product-grid {
  gap: 38px 24px;
  overflow: visible;
}
.product-card {
  position: relative;
  overflow: visible;
  padding-top: 18px;
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(16,32,28,.045);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(16,32,28,.10);
}
.product-extra { display: none; }

.product-stack {
  position: relative;
  z-index: 1;
  width: calc(100% - 40px);
  margin: 14px 20px 0;
  aspect-ratio: 1.34;
  perspective: 1100px;
  isolation: isolate;
}
.stack-layer {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(16,32,28,.18);
  border-radius: 17px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(16,32,28,.08);
  cursor: pointer;
  transform-origin: 50% 100%;
  transition: transform .28s cubic-bezier(.2,.75,.25,1), box-shadow .28s ease, opacity .25s ease, filter .25s ease;
}
.stack-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stack-layer-main {
  z-index: 3;
  background: #d9d4c9;
  transform: translate3d(0,0,0);
}
.stack-layer-main img { object-fit: cover; }
.stack-layer-spec {
  z-index: 2;
  transform: translate3d(10px,-9px,-8px) rotate(1deg);
}
.stack-layer-drawing {
  z-index: 1;
  transform: translate3d(20px,-18px,-16px) rotate(2deg);
  background: white;
}
.stack-layer-drawing img {
  object-fit: contain;
  padding: 14px;
  opacity: .13;
  filter: saturate(.3);
}
.stack-spec-sheet {
  display: grid;
  align-content: start;
  gap: 8px;
  width: 100%;
  height: 100%;
  padding: 22px 22px 18px;
  text-align: left;
  opacity: .12;
  transition: opacity .24s ease;
}
.stack-sheet-tag {
  color: var(--green);
  font: 700 9px/1 "Courier New", monospace;
  letter-spacing: .12em;
}
.stack-spec-sheet > strong { font-size: 22px; letter-spacing: -.03em; }
.stack-sheet-rule { height: 1px; background: var(--line); }
.stack-spec-row { display: grid; gap: 2px; padding-top: 6px; border-top: 1px solid rgba(16,32,28,.09); }
.stack-spec-row small { color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.stack-spec-row b { font-size: 11px; line-height: 1.25; }
.stack-edge-label {
  position: absolute;
  z-index: 3;
  right: 13px;
  top: 6px;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(255,254,249,.96);
  color: var(--green);
  font: 700 8px/1 "Courier New", monospace;
  letter-spacing: .1em;
  opacity: .82;
  pointer-events: none;
}
.stack-main-hint {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(16,32,28,.80);
  color: white;
  font-size: 10px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: none;
}
.product-stack:hover .stack-layer-main {
  transform: translate3d(-7px,7px,0) rotate(-.7deg);
}
.product-stack:hover .stack-layer-spec {
  transform: translate3d(19px,-15px,0) rotate(1.25deg);
}
.product-stack:hover .stack-layer-drawing {
  transform: translate3d(37px,-29px,0) rotate(2.4deg);
}
.product-stack:hover .stack-layer-spec .stack-spec-sheet { opacity: .42; }
.product-stack:hover .stack-layer-drawing img { opacity: .38; filter: saturate(.6); }
.product-stack:hover .stack-main-hint { opacity: 1; transform: translateY(0); }
.stack-layer-spec:hover,
.stack-layer-spec:focus-visible {
  z-index: 12;
  transform: translate3d(3px,-18px,35px) scale(1.09) rotate(0deg) !important;
  box-shadow: 0 30px 72px rgba(16,32,28,.22);
}
.stack-layer-spec:hover .stack-spec-sheet,
.stack-layer-spec:focus-visible .stack-spec-sheet { opacity: 1; }
.stack-layer-drawing:hover,
.stack-layer-drawing:focus-visible {
  z-index: 12;
  transform: translate3d(4px,-18px,35px) scale(1.09) rotate(0deg) !important;
  box-shadow: 0 30px 72px rgba(16,32,28,.22);
}
.stack-layer-drawing:hover img,
.stack-layer-drawing:focus-visible img { opacity: 1; filter: none; }
.stack-layer-main:hover,
.stack-layer-main:focus-visible {
  z-index: 13;
  transform: translate3d(-5px,-9px,35px) scale(1.035) rotate(0deg) !important;
  box-shadow: 0 28px 66px rgba(16,32,28,.20);
}
.stack-layer:focus-visible { outline: 3px solid rgba(29,118,102,.38); outline-offset: 4px; }

.product-body { padding: 25px 23px 24px; }
.product-body h3 { margin: 0 0 6px; font-size: 28px; }
.product-name {
  min-height: 38px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.product-actions { justify-content: space-between; gap: 10px; }
.product-actions .text-button { font-size: 12px; }

.product-dialog-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 9px;
  width: 100%;
  margin-top: 12px;
}
.product-dialog-thumb {
  display: grid;
  grid-template-rows: 68px auto;
  gap: 6px;
  min-width: 0;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.78);
  color: var(--ink);
  cursor: pointer;
  font-size: 9px;
  line-height: 1.2;
  text-align: left;
}
.product-dialog-thumb.active { border-color: var(--green); box-shadow: 0 0 0 2px rgba(29,118,102,.12); }
.product-dialog-thumb img { width: 100%; height: 68px; object-fit: cover; border-radius: 6px; }
.product-dialog-thumb span:last-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.thumb-spec-icon {
  display: grid;
  place-items: center;
  height: 68px;
  border-radius: 6px;
  background: var(--paper-deep);
  color: var(--green);
  font: 800 12px/1 "Courier New", monospace;
  letter-spacing: .12em;
}
.product-dialog-main-button.showing-spec { cursor: default; }
.product-dialog-main-button[aria-label="Specifications are shown"] { background: var(--paper); }
.dialog-spec-sheet {
  width: 100%;
  max-width: 620px;
  min-height: 420px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  text-align: left;
  cursor: default;
}
.dialog-spec-heading { display: grid; gap: 6px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.dialog-spec-heading span { color: var(--green); font: 700 10px/1 "Courier New", monospace; letter-spacing: .12em; }
.dialog-spec-heading strong { font-size: 36px; letter-spacing: -.04em; }
.dialog-spec-heading em { color: var(--muted); font-size: 13px; font-style: normal; }
.dialog-spec-sheet dl { margin: 18px 0 0; }
.dialog-spec-sheet dl > div {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.dialog-spec-sheet dt { color: var(--muted); }
.dialog-spec-sheet dd { margin: 0; font-weight: 700; }

@media (max-width: 980px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .product-dialog-thumbs { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 680px) {
  .product-grid { grid-template-columns: 1fr; gap: 32px; }
  .product-stack { width: calc(100% - 34px); margin-inline: 14px 20px; }
  .product-stack:hover .stack-layer-main { transform: translate3d(-3px,3px,0) rotate(-.4deg); }
  .product-stack:hover .stack-layer-spec { transform: translate3d(12px,-10px,0) rotate(.8deg); }
  .product-stack:hover .stack-layer-drawing { transform: translate3d(24px,-19px,0) rotate(1.6deg); }
  .stack-layer-spec:hover,
  .stack-layer-spec:focus-visible,
  .stack-layer-drawing:hover,
  .stack-layer-drawing:focus-visible { transform: translate3d(0,-8px,25px) scale(1.025) rotate(0) !important; }
  .product-dialog-thumbs { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .dialog-spec-sheet { min-height: 330px; padding: 22px; }
  .dialog-spec-sheet dl > div { grid-template-columns: 105px 1fr; gap: 12px; }
}
@media (hover: none) {
  .stack-main-hint { display: none; }
  .stack-layer-spec .stack-spec-sheet { opacity: .18; }
  .stack-layer-drawing img { opacity: .18; }
}
.product-filter-download {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 3px;
  color: var(--green);
  font-weight: 700;
  font-size: 12px;
  border-bottom: 1px solid rgba(29,118,102,.35);
}
.product-filter-download:hover { border-color: var(--green); }
@media (max-width: 680px) { .product-filter-download { width: 100%; margin-left: 0; justify-content: flex-start; } }
.product-card:hover,
.product-card:focus-within { z-index: 10; }

/* V5 — clean scroll-driven hero and separated product families */
.hero-motion-section {
  min-height: 152vh;
  padding: 0;
  overflow: clip;
  background:
    radial-gradient(circle at 82% 24%, rgba(29,118,102,.055), transparent 32%),
    var(--paper);
}
.hero-motion-section::before {
  width: 620px;
  height: 620px;
  right: -300px;
  top: -315px;
  box-shadow: none;
  border-color: rgba(29,118,102,.18);
}
.hero-sticky {
  position: sticky;
  top: 76px;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: 48px 0;
}
.hero-motion-grid {
  grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr);
  gap: 64px;
}
.hero-motion-section .hero-copy { position: relative; z-index: 2; }
.hero-motion-section .hero-copy::after {
  content: "";
  display: block;
  width: 88px;
  height: 1px;
  margin-top: 38px;
  background: rgba(29,118,102,.45);
}
.hero-motion-section h1 {
  max-width: 680px;
  font-size: clamp(52px, 6.2vw, 86px);
}
.hero-contact-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid rgba(29,118,102,.32);
  padding-bottom: 5px;
}
.hero-contact-link:hover { border-color: var(--green); }

.hero-motion {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
}
.hero-motion::before,
.hero-motion::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-motion::before {
  width: 520px;
  height: 520px;
  border: 1px solid rgba(29,118,102,.12);
}
.hero-motion::after {
  width: 420px;
  height: 420px;
  border: 1px solid rgba(29,118,102,.08);
}
.hero-motion-svg {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  height: auto;
  overflow: visible;
}
.motion-grid-lines path {
  fill: none;
  stroke: rgba(16,32,28,.07);
  stroke-width: 1;
  stroke-dasharray: 3 9;
}
.damper-ghost circle,
.damper-ghost path {
  fill: none;
  stroke: rgba(29,118,102,.18);
  stroke-width: 1.5;
}
.damper-ghost .damper-angle-arc {
  stroke: rgba(29,118,102,.52);
  stroke-width: 2;
  stroke-dasharray: 6 7;
}
.damper-rotor {
  transform-origin: 350px 252px;
  will-change: transform;
}
.damper-rotor rect {
  fill: rgba(29,118,102,.055);
  stroke: var(--green);
  stroke-width: 2;
}
.damper-rotor path,
.damper-rotor circle {
  fill: var(--paper);
  stroke: var(--green);
  stroke-width: 2;
}
.damper-rotor circle:last-child { fill: var(--green); }
.damper-angle-label text:first-child {
  fill: var(--green);
  font: 700 26px/1 Arial, sans-serif;
}
.damper-angle-label text:last-child {
  fill: var(--muted);
  font: 700 8px/1 "Courier New", monospace;
  letter-spacing: .16em;
}
.toilet-outline path,
.toilet-outline circle,
.toilet-lid rect,
.toilet-lid path,
.toilet-lid circle {
  fill: none;
  stroke: var(--ink);
  stroke-width: 2.2;
  vector-effect: non-scaling-stroke;
}
.toilet-outline path:nth-child(4),
.toilet-outline path:nth-child(5) { stroke: rgba(16,32,28,.58); }
.toilet-lid {
  transform-origin: 474px 414px;
  will-change: transform;
}
.toilet-lid rect { fill: rgba(255,254,249,.7); }
.motion-caption text:first-child {
  fill: var(--ink);
  font: 700 11px/1 "Courier New", monospace;
  letter-spacing: .16em;
}
.motion-caption text:last-child {
  fill: var(--muted);
  font: 700 8px/1 "Courier New", monospace;
  letter-spacing: .12em;
}
.motion-status {
  position: absolute;
  right: 20px;
  bottom: 40px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,254,249,.82);
  color: var(--muted);
  backdrop-filter: blur(10px);
  font: 700 10px/1 "Courier New", monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.motion-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(29,118,102,.09);
}

.product-family-nav {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.product-family-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.product-family-link {
  min-height: 128px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 24px 34px;
  border-right: 1px solid var(--line);
  transition: background .18s ease;
}
.product-family-link:last-child { border-right: 0; }
.product-family-link:hover { background: rgba(29,118,102,.045); }
.family-index {
  color: var(--green);
  font: 700 11px/1 "Courier New", monospace;
  letter-spacing: .12em;
}
.product-family-link strong {
  display: block;
  margin-bottom: 7px;
  font-size: 22px;
  letter-spacing: -.025em;
}
.product-family-link small { color: var(--muted); font-size: 12px; }
.family-arrow { color: var(--green); font-size: 25px; }

.compact-header { align-items: start; }
.compact-header > p { display: none; }
.section-intro {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.product-section-header { align-items: end; }
.section-jump-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
  padding-bottom: 6px;
}
.section-jump-links a {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(29,118,102,.28);
}
.section-jump-links a:hover { border-color: var(--green); }
.product-family-section { scroll-margin-top: 74px; }

/* Main image stays dominant; supporting cards appear only as restrained edges. */
.product-grid { gap: 34px 24px; }
.product-card {
  padding-top: 12px;
  background: rgba(245,242,233,.72);
  box-shadow: none;
}
.product-stack {
  width: calc(100% - 34px);
  margin: 12px 17px 0;
  aspect-ratio: 1.34;
}
.stack-layer {
  box-shadow: 0 8px 22px rgba(16,32,28,.07);
}
.stack-layer-main { transform: translate3d(0,0,0); }
.stack-layer-spec {
  transform: translate3d(7px,-7px,-8px) rotate(.45deg);
  clip-path: inset(0 0 calc(100% - 18px) 0 round 17px);
}
.stack-layer-drawing {
  transform: translate3d(14px,-14px,-16px) rotate(.8deg);
  clip-path: inset(0 0 calc(100% - 18px) 0 round 17px);
}
.stack-layer-spec .stack-spec-sheet,
.stack-layer-drawing img { opacity: 0; }
.stack-edge-label {
  top: 3px;
  right: 10px;
  opacity: .92;
}
.product-stack:hover .stack-layer-main { transform: translate3d(-5px,5px,0) rotate(-.35deg); }
.product-stack:hover .stack-layer-spec {
  clip-path: inset(0 0 0 0 round 17px);
  transform: translate3d(15px,-13px,0) rotate(.8deg);
}
.product-stack:hover .stack-layer-drawing {
  clip-path: inset(0 0 0 0 round 17px);
  transform: translate3d(29px,-25px,0) rotate(1.45deg);
}
.product-stack:hover .stack-layer-spec .stack-spec-sheet { opacity: .24; }
.product-stack:hover .stack-layer-drawing img { opacity: .22; }
.stack-layer-spec:hover,
.stack-layer-spec:focus-visible {
  clip-path: inset(0 0 0 0 round 17px);
  transform: translate3d(2px,-15px,35px) scale(1.07) rotate(0deg) !important;
}
.stack-layer-drawing:hover,
.stack-layer-drawing:focus-visible {
  clip-path: inset(0 0 0 0 round 17px);
  transform: translate3d(2px,-15px,35px) scale(1.07) rotate(0deg) !important;
}
.stack-layer-main:hover,
.stack-layer-main:focus-visible {
  transform: translate3d(-3px,-7px,35px) scale(1.025) rotate(0deg) !important;
}
.stack-main-hint { display: none !important; }
.product-body { padding-top: 23px; }
.product-extra { display: none; }
.products-expanded .product-extra { display: block; }

/* Remove old internal/source notes from the visual system. */
.product-source-note,
.form-help { display: none !important; }

@media (max-width: 980px) {
  .hero-motion-section { min-height: 138vh; }
  .hero-motion-grid { grid-template-columns: .92fr 1.08fr; gap: 28px; }
  .hero-motion { min-height: 510px; }
  .product-family-link { padding-inline: 22px; }
}

@media (max-width: 780px) {
  .hero-motion-section { min-height: 150vh; }
  .hero-sticky { top: 68px; min-height: calc(100vh - 68px); padding: 36px 0; }
  .hero-motion-grid { grid-template-columns: 1fr; gap: 18px; }
  .hero-motion-section h1 { font-size: clamp(45px, 12vw, 62px); }
  .hero-motion { min-height: 380px; max-width: 540px; margin-inline: auto; }
  .hero-motion-svg { max-height: 430px; }
  .motion-status { right: 8px; bottom: 12px; }
  .product-family-grid { grid-template-columns: 1fr; }
  .product-family-link { min-height: 102px; border-right: 0; border-bottom: 1px solid var(--line); }
  .product-family-link:last-child { border-bottom: 0; }
  .product-section-header { display: block; }
  .section-jump-links { justify-content: flex-start; margin-top: 22px; }
}

@media (max-width: 560px) {
  .hero-motion-section { min-height: 132vh; }
  .hero-sticky { align-items: flex-start; padding-top: 30px; }
  .hero-motion-section .hero-copy::after { display: none; }
  .hero-motion { min-height: 315px; margin-top: 4px; }
  .motion-caption { display: none; }
  .motion-status { font-size: 8px; }
  .product-family-link { grid-template-columns: 34px 1fr auto; padding: 19px 18px; }
  .product-family-link strong { font-size: 18px; }
  .product-stack { width: calc(100% - 28px); margin-inline: 12px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-sticky { position: relative; top: auto; }
  .hero-motion-section { min-height: auto; }
  .damper-rotor,
  .toilet-lid { transition: none; }
}

/* V5: cleaner hero, separate hinge/damper sections */
.hero-grid-clean {
  grid-template-columns: .92fr 1.08fr;
  gap: 52px;
}
.hero-family-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.hero-family-jump a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.52);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}
.hero-family-jump a:hover { border-color: rgba(29,118,102,.45); color: var(--green); }
.hero-visual-clean {
  position: relative;
  min-height: 580px;
  padding: 22px;
  border: 1px solid rgba(16,32,28,.09);
  border-radius: 32px;
  background:
    radial-gradient(circle at 78% 28%, rgba(29,118,102,.08), transparent 33%),
    linear-gradient(135deg, rgba(255,255,255,.82), rgba(236,231,218,.92));
  overflow: hidden;
  box-shadow: 0 22px 68px rgba(16,32,28,.08);
}
.hero-visual-clean::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(29,118,102,.08);
  border-radius: 24px;
  pointer-events: none;
}
.hero-visual-badge {
  position: absolute;
  left: 24px;
  top: 24px;
  z-index: 3;
  display: inline-grid;
  gap: 5px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,254,249,.92);
  border: 1px solid rgba(16,32,28,.08);
  box-shadow: 0 14px 34px rgba(16,32,28,.08);
}
.hero-visual-badge span {
  color: var(--green);
  font: 700 10px/1 "Courier New", monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-visual-badge strong {
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.04em;
}
.motion-canvas {
  --seat-open: 115deg;
  --damper-turn: 0deg;
  --motion-progress: 0.5;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 536px;
}
.motion-orbit {
  position: absolute;
  border: 1px solid rgba(29,118,102,.15);
  border-radius: 50%;
}
.orbit-1 { width: 520px; height: 520px; right: -110px; top: -160px; }
.orbit-2 { width: 340px; height: 340px; right: 24px; top: -48px; }
.damper-graphic {
  position: absolute;
  left: 6%;
  right: 7%;
  bottom: 5%;
  height: 68%;
}
.damper-body,
.damper-cap,
.damper-axis,
.damper-rotor,
.damper-shaft,
.damper-arc,
.seat-base,
.seat-ring,
.seat-lid {
  position: absolute;
}
.damper-body {
  left: 12%;
  bottom: 16%;
  width: 48%;
  height: 34%;
  border: 2px solid rgba(29,118,102,.55);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.46), rgba(29,118,102,.03));
}
.damper-cap {
  left: 8%;
  bottom: 22%;
  width: 16%;
  height: 22%;
  border: 2px solid rgba(29,118,102,.55);
  border-radius: 999px;
  background: rgba(255,255,255,.34);
}
.damper-axis {
  left: 56%;
  bottom: 33%;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(29,118,102,.72);
  border-radius: 50%;
  background: var(--paper);
  z-index: 2;
}
.damper-rotor {
  left: calc(56% + 7px);
  bottom: calc(33% + 7px);
  width: 31%;
  height: 2px;
  background: rgba(29,118,102,.36);
  transform-origin: 0 50%;
  transform: rotate(var(--damper-turn));
}
.damper-shaft {
  left: calc(56% + 6px);
  bottom: calc(33% + 3px);
  width: 29%;
  height: 12%;
  border: 2px solid rgba(29,118,102,.72);
  border-left: 0;
  border-radius: 0 999px 999px 0;
  transform-origin: 0 50%;
  transform: rotate(var(--damper-turn));
  background: rgba(255,255,255,.42);
}
.damper-arc {
  right: 0;
  top: 8%;
  width: 36%;
  aspect-ratio: 1;
  border: 1.5px dashed rgba(29,118,102,.38);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(-18deg);
}
.damper-angle-label,
.damper-angle-value,
.seat-label {
  position: absolute;
  color: var(--green);
  font: 700 10px/1.2 "Courier New", monospace;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.label-open { right: 4%; top: 6%; }
.damper-angle-value {
  right: 1%;
  top: 24%;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.05em;
}
.seat-graphic {
  position: absolute;
  right: 3%;
  top: 14%;
  width: 260px;
  height: 220px;
}
.seat-label { right: 8px; top: -2px; }
.seat-base {
  left: 28px;
  bottom: 26px;
  width: 168px;
  height: 92px;
  border: 2px solid rgba(16,32,28,.64);
  border-radius: 74px 74px 48px 48px;
  background: transparent;
}
.seat-ring {
  left: 54px;
  bottom: 50px;
  width: 116px;
  height: 44px;
  border: 2px solid rgba(16,32,28,.45);
  border-radius: 999px;
  background: transparent;
}
.seat-lid {
  left: 26px;
  bottom: 34px;
  width: 174px;
  height: 96px;
  border: 2px solid rgba(29,118,102,.72);
  border-radius: 76px 76px 48px 48px;
  transform-origin: 18px calc(100% - 10px);
  transform: rotate(calc(-1 * var(--seat-open)));
  transition: transform .18s linear;
}
.seat-hinge-dot {
  position: absolute;
  left: 38px;
  bottom: 32px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(29,118,102,.08);
}
.section-header-simple { align-items: start; }
.section-header-simple > p { display: none; }
.compact-header { margin-bottom: 24px; }

.family-jump-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}
.family-jump-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.74);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
}
.family-jump-link:hover { transform: translateY(-1px); border-color: rgba(29,118,102,.42); color: var(--green); }
.family-jump-download { margin-left: auto; }
.product-family-block + .product-family-block {
  margin-top: 64px;
  padding-top: 46px;
  border-top: 1px solid var(--line);
}
.family-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.family-heading h3 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.family-heading-actions {
  display: grid;
  gap: 8px;
  justify-items: end;
}
.family-heading-note {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  text-align: right;
}
.family-mini-link {
  color: var(--green);
  font-weight: 700;
  font-size: 12px;
}
.stack-main-hint { display: none !important; }
.product-grid {
  gap: 30px 24px;
}
.product-card {
  background: var(--white);
  box-shadow: 0 12px 30px rgba(16,32,28,.05);
}
.product-stack {
  margin-top: 6px;
}
.product-body {
  padding-top: 22px;
}

@media (max-width: 980px) {
  .hero-grid-clean { grid-template-columns: 1fr; }
  .hero-visual-clean { min-height: 500px; }
  .family-heading,
  .family-heading-actions { align-items: start; }
  .family-heading { display: block; }
  .family-heading-actions { justify-items: start; margin-top: 14px; }
  .family-heading-note { text-align: left; }
}
@media (max-width: 780px) {
  .hero-visual-clean { min-height: 430px; }
  .motion-canvas { min-height: 390px; }
  .seat-graphic { right: -8px; top: 10%; transform: scale(.86); transform-origin: top right; }
  .damper-graphic { left: 2%; right: 2%; bottom: 3%; height: 66%; }
}
@media (max-width: 680px) {
  .family-jump-download { margin-left: 0; }
}
@media (max-width: 560px) {
  .hero-family-jump,
  .family-jump-bar { display: grid; }
  .hero-family-jump a,
  .family-jump-link { width: 100%; justify-content: center; }
  .hero-visual-badge { left: 14px; top: 14px; padding: 10px 12px; }
  .hero-visual-badge strong { font-size: 22px; }
  .hero-visual-clean { min-height: 360px; padding: 14px; border-radius: 24px; }
  .motion-canvas { min-height: 320px; }
  .orbit-1 { width: 320px; height: 320px; right: -90px; top: -112px; }
  .orbit-2 { width: 200px; height: 200px; right: 16px; top: -20px; }
  .seat-graphic { width: 195px; height: 170px; right: -12px; top: 14%; transform: scale(.8); }
  .damper-angle-value { font-size: 22px; }
  .family-heading h3 { font-size: 34px; }
}

/* V6 - premium dual-product hero and company profile */
.site-header .navbar { min-height: 86px; }
.brand { gap: 14px; }
.brand img {
  width: 58px;
  height: 58px;
}
.brand-name {
  font-size: 16px;
  letter-spacing: .16em;
}
.brand-subline { font-size: 10px; }

.hero-showcase {
  min-height: 760px;
  padding: 82px 0 88px;
  background:
    radial-gradient(circle at 78% 24%, rgba(29,118,102,.12), transparent 28%),
    radial-gradient(circle at 96% 72%, rgba(130,207,183,.13), transparent 24%),
    linear-gradient(135deg, #f8f5ec 0%, #f2eee3 58%, #e9efe8 100%);
}
.hero-showcase::before {
  width: 620px;
  height: 620px;
  top: -340px;
  right: -250px;
  border-color: rgba(29,118,102,.16);
  box-shadow: none;
}
.hero-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .26;
  background-image:
    linear-gradient(rgba(16,32,28,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,32,28,.035) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(90deg, transparent 0%, black 44%, black 100%);
}
.hero-showcase-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(500px,1.1fr);
  align-items: center;
  gap: 62px;
}
.hero-showcase-copy { position: relative; z-index: 3; }
.hero-showcase-copy h1 {
  max-width: 690px;
  font-size: clamp(52px,6.2vw,84px);
}
.hero-category-actions { margin-top: 36px; }
.hero-trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  margin-top: 32px;
  color: var(--muted);
  font: 700 10px/1.4 "Courier New", monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-trust-line span {
  position: relative;
  padding-left: 14px;
}
.hero-trust-line span::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.hero-3d-stage {
  --stage-rx: 0deg;
  --stage-ry: 0deg;
  --stage-x: 0px;
  --stage-y: 0px;
  position: relative;
  min-height: 590px;
  perspective: 1450px;
  transform-style: preserve-3d;
  isolation: isolate;
}
.hero-3d-stage::before {
  content: "";
  position: absolute;
  inset: 70px 24px 42px 40px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,.78), rgba(255,255,255,.18) 47%, transparent 70%),
    linear-gradient(150deg, rgba(29,118,102,.12), rgba(255,255,255,.12));
  filter: blur(.2px);
  border: 1px solid rgba(29,118,102,.12);
  box-shadow: inset 0 0 70px rgba(255,255,255,.58), 0 34px 90px rgba(16,32,28,.10);
  transform: rotateX(67deg) translateZ(-80px);
}
.hero-stage-grid {
  position: absolute;
  inset: 72px 42px 54px;
  border-radius: 28px;
  opacity: .42;
  background-image:
    linear-gradient(rgba(29,118,102,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,118,102,.09) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle, black 0%, transparent 72%);
  transform: rotateX(68deg) translateZ(-54px);
}
.hero-stage-orbit {
  position: absolute;
  border: 1px solid rgba(29,118,102,.22);
  border-radius: 50%;
  pointer-events: none;
}
.orbit-one {
  width: 470px;
  height: 470px;
  right: 8px;
  top: 46px;
  transform: rotateX(66deg) rotateZ(-12deg) translateZ(-40px);
}
.orbit-two {
  width: 330px;
  height: 330px;
  right: 72px;
  top: 112px;
  border-style: dashed;
  transform: rotateX(66deg) rotateZ(18deg) translateZ(-20px);
}
.hero-stage-angle {
  position: absolute;
  right: 12px;
  top: 92px;
  width: 170px;
  height: 170px;
  border-top: 2px solid rgba(29,118,102,.52);
  border-right: 2px solid rgba(29,118,102,.52);
  border-radius: 0 100% 0 0;
  color: var(--green);
  font: 700 11px/1 "Courier New", monospace;
  letter-spacing: .08em;
}
.hero-stage-angle span:first-child { position: absolute; left: -2px; top: -20px; }
.hero-stage-angle span:last-child { position: absolute; right: -8px; bottom: 5px; }

.hero-product-3d {
  position: absolute;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.76);
  border-radius: 26px;
  background: rgba(255,254,249,.82);
  box-shadow: 0 34px 75px rgba(16,32,28,.18), inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  transform-style: preserve-3d;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.hero-product-3d:hover {
  border-color: rgba(29,118,102,.36);
  box-shadow: 0 45px 95px rgba(16,32,28,.23), inset 0 1px 0 rgba(255,255,255,.95);
}
.hero-product-hinge {
  width: 360px;
  left: 20px;
  top: 54px;
  z-index: 3;
  transform: translate3d(var(--stage-x),var(--stage-y),60px) rotateX(calc(-5deg + var(--stage-rx))) rotateY(calc(8deg + var(--stage-ry))) rotateZ(-4deg);
}
.hero-product-hinge:hover {
  transform: translate3d(var(--stage-x),calc(var(--stage-y) - 12px),90px) rotateX(-2deg) rotateY(3deg) rotateZ(-2deg) scale(1.02);
}
.hero-product-damper {
  width: 340px;
  right: 0;
  bottom: 46px;
  z-index: 4;
  transform: translate3d(calc(var(--stage-x) * -1),calc(var(--stage-y) * -1),100px) rotateX(calc(5deg + var(--stage-rx))) rotateY(calc(-9deg + var(--stage-ry))) rotateZ(4deg);
}
.hero-product-damper:hover {
  transform: translate3d(calc(var(--stage-x) * -1),calc(var(--stage-y) * -1 - 12px),125px) rotateX(2deg) rotateY(-3deg) rotateZ(2deg) scale(1.02);
}
.hero-product-label {
  position: absolute;
  z-index: 2;
  left: 18px;
  top: 16px;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  background: rgba(16,32,28,.78);
  color: white;
  backdrop-filter: blur(12px);
  font: 700 9px/1 "Courier New", monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-product-image-shell {
  position: relative;
  aspect-ratio: 1.33;
  overflow: hidden;
  background: #e8e3d8;
}
.hero-product-image-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255,255,255,.16), transparent 42%, rgba(16,32,28,.08));
  pointer-events: none;
}
.hero-product-image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.035);
  transition: transform .4s ease, filter .4s ease;
}
.hero-product-3d:hover img { transform: scale(1.075); filter: saturate(1.04) contrast(1.02); }
.hero-product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 19px 18px;
}
.hero-product-meta strong { font-size: 22px; letter-spacing: -.03em; }
.hero-product-meta span { color: var(--green); font-size: 11px; font-weight: 700; }
.hero-stage-center {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 9px;
  transform: translate(-50%,-50%) translateZ(-10px) rotate(-12deg);
  color: rgba(29,118,102,.27);
  font: 700 12px/1 "Courier New", monospace;
  letter-spacing: .16em;
}
.hero-stage-center i { font-style: normal; font-size: 25px; color: rgba(29,118,102,.38); }

.company-profile {
  padding-top: 104px;
  padding-bottom: 104px;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.company-profile-grid {
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(420px,.92fr);
  align-items: center;
  gap: 78px;
}
.company-building-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: var(--paper-deep);
  box-shadow: var(--shadow);
}
.company-building-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: inherit;
  pointer-events: none;
}
.company-building-card img {
  width: 100%;
  aspect-ratio: 1.62;
  object-fit: cover;
}
.company-building-card figcaption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: grid;
  gap: 4px;
  min-width: 218px;
  padding: 15px 18px;
  border-radius: 14px;
  background: rgba(255,254,249,.88);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 14px 35px rgba(16,32,28,.15);
  backdrop-filter: blur(14px);
}
.company-building-card figcaption span {
  color: var(--green);
  font: 700 9px/1 "Courier New", monospace;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.company-building-card figcaption strong { font-size: 15px; }
.company-profile-copy h2 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(35px,4vw,56px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.company-profile-text {
  margin-top: 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}
.company-profile-text p { margin: 0 0 15px; }
.company-profile-points {
  display: grid;
  gap: 10px;
  margin: 26px 0 28px;
}
.company-profile-points span {
  position: relative;
  padding-left: 24px;
  font-size: 13px;
  font-weight: 700;
}
.company-profile-points span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--green);
  border-radius: 50%;
}
.text-link {
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(29,118,102,.32);
}
.text-link:hover { border-color: var(--green); }

@media (max-width: 1050px) {
  .hero-showcase-grid { grid-template-columns: .9fr 1.1fr; gap: 32px; }
  .hero-3d-stage { min-height: 540px; }
  .hero-product-hinge { width: 320px; }
  .hero-product-damper { width: 306px; }
  .company-profile-grid { gap: 44px; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .site-header .navbar { min-height: 72px; }
  .brand img { width: 46px; height: 46px; }
  .brand-name { font-size: 14px; }
  .hero-showcase { padding: 60px 0 52px; min-height: auto; }
  .hero-showcase-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-showcase-copy h1 { font-size: clamp(47px,11vw,66px); }
  .hero-3d-stage { min-height: 520px; max-width: 620px; width: 100%; margin-inline: auto; }
  .hero-product-hinge { left: 10px; top: 44px; }
  .hero-product-damper { right: 8px; bottom: 38px; }
  .company-profile-grid { grid-template-columns: 1fr; }
  .company-profile-copy { order: -1; }
  .company-profile { padding-block: 80px; }
}

@media (max-width: 560px) {
  .wrap { width: min(var(--wrap), calc(100% - 30px)); }
  .brand-copy { display: none; }
  .brand img { width: 50px; height: 50px; }
  .hero-showcase-copy h1 { font-size: clamp(43px,13vw,57px); }
  .hero-category-actions { display: grid; }
  .hero-category-actions .button { width: 100%; }
  .hero-trust-line { display: grid; }
  .hero-3d-stage { min-height: 465px; }
  .hero-product-hinge { width: 78%; left: 0; top: 36px; }
  .hero-product-damper { width: 74%; right: 0; bottom: 28px; }
  .hero-product-label { left: 12px; top: 12px; }
  .hero-product-meta { padding: 13px 14px 15px; }
  .hero-product-meta strong { font-size: 18px; }
  .hero-product-meta span { font-size: 9px; }
  .hero-stage-angle { width: 120px; height: 120px; top: 75px; }
  .company-profile { padding-block: 66px; }
  .company-building-card figcaption { left: 14px; bottom: 14px; min-width: 190px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-product-3d,
  .hero-product-image-shell img { transition: none; }
}

/* V7 — application-led homepage with dark gradient hero and floating product cutouts */
.site-header {
  background: rgba(7, 10, 9, .94);
  border-bottom-color: rgba(255,255,255,.1);
  color: #fff;
}
.site-header .brand img {
  width: 58px;
  height: 58px;
  filter: brightness(0) invert(1);
  mix-blend-mode: normal;
}
.site-header .brand-name { color: #fff; font-size: 14px; }
.site-header .brand-subline { color: #74d6c5; }
.site-header .desktop-nav > a:not(.button) { color: rgba(255,255,255,.78); }
.site-header .desktop-nav > a:not(.button)::after { background: #65cdbb; }
.site-header .button.dark { background: #fff; border-color: #fff; color: #0b1411; }
.site-header .mobile-menu-button { border-color: rgba(255,255,255,.24); }
.site-header .mobile-menu-button span,
.site-header .mobile-menu-button::before,
.site-header .mobile-menu-button::after { background: #fff; }
.site-header .mobile-menu { background: #0b0f0e; border-top-color: rgba(255,255,255,.12); }
.site-header .mobile-menu a { border-bottom-color: rgba(255,255,255,.1); }

.hero-experience {
  position: relative;
  min-height: min(850px, calc(100vh - 76px));
  overflow: hidden;
  background: #080b0a;
  color: #fff;
  isolation: isolate;
}
.hero-slides,
.hero-slide,
.hero-slide img,
.hero-gradient,
.hero-dot-field {
  position: absolute;
  inset: 0;
}
.hero-slide {
  opacity: 0;
  transition: opacity 800ms ease, transform 1200ms ease;
  transform: scale(1.025);
}
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .74;
}
.hero-gradient {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.98) 0%, rgba(0,0,0,.94) 31%, rgba(0,0,0,.55) 58%, rgba(0,0,0,.16) 100%),
    linear-gradient(180deg, rgba(0,0,0,.16), rgba(0,0,0,.36));
}
.hero-dot-field {
  z-index: 2;
  width: 470px;
  right: auto;
  left: 30%;
  opacity: .18;
  background-image: radial-gradient(circle, rgba(255,255,255,.72) 1px, transparent 1.5px);
  background-size: 24px 24px;
  mask-image: linear-gradient(90deg, transparent, #000 24%, #000 70%, transparent);
  pointer-events: none;
}
.hero-experience-inner {
  position: relative;
  z-index: 3;
  min-height: min(850px, calc(100vh - 76px));
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(480px, 1.2fr);
  align-items: center;
  gap: 28px;
}
.hero-experience-copy {
  position: relative;
  max-width: 640px;
  padding: 72px 0 96px;
}
.hero-overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 26px;
  color: #72d5c3;
  font: 700 12px/1.2 "Courier New", monospace;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-overline::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}
.hero-experience h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(58px, 6.2vw, 98px);
  line-height: .94;
  letter-spacing: -.065em;
  text-wrap: balance;
}
.hero-experience h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(95deg, #fff 5%, #8fe1d3 52%, #3ea38f 96%);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-experience-lead {
  max-width: 590px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 18px;
  line-height: 1.75;
}
.hero-experience .hero-actions { margin-top: 36px; }
.hero-experience .button {
  min-height: 54px;
  padding-inline: 28px;
  border-radius: 999px;
}
.hero-primary { background: #50c5b2; border-color: #50c5b2; color: #06100d; }
.hero-primary:hover { background: #70d7c5; border-color: #70d7c5; }
.hero-secondary { color: #fff; border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.035); }
.hero-secondary:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.hero-slider-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 72px;
}
.hero-slider-controls > button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.hero-slider-controls > button:hover { background: rgba(255,255,255,.1); border-color: #fff; transform: translateY(-2px); }
.hero-control-line { width: 72px; height: 1px; background: rgba(255,255,255,.34); }
.hero-dots { display: flex; gap: 8px; margin-left: 6px; }
.hero-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.34);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}
.hero-dots button.is-active { width: 28px; background: #64d0bd; }

.floating-products {
  --float-x: 0px;
  --float-y: 0px;
  --float-rx: 0deg;
  --float-ry: 0deg;
  position: relative;
  min-height: 660px;
  perspective: 1200px;
  transform-style: preserve-3d;
}
.floating-product {
  position: absolute;
  display: block;
  transform-style: preserve-3d;
  transition: transform .22s ease, filter .22s ease;
  will-change: transform;
}
.floating-product img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 38px 34px rgba(0,0,0,.42)) drop-shadow(0 8px 12px rgba(0,0,0,.28));
  animation: productFloat 5.6s ease-in-out infinite;
}
.floating-product span {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(6,10,9,.44);
  color: rgba(255,255,255,.72);
  backdrop-filter: blur(12px);
  font: 700 10px/1 "Courier New", monospace;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.floating-hinge {
  width: min(620px, 82%);
  left: 3%;
  top: 12%;
  transform: translate3d(var(--float-x), var(--float-y), 90px) rotateX(var(--float-rx)) rotateY(var(--float-ry)) rotateZ(-5deg);
}
.floating-hinge img { animation-delay: -.8s; }
.floating-damper {
  width: min(390px, 52%);
  right: -2%;
  bottom: 11%;
  transform: translate3d(calc(var(--float-x) * -.6), calc(var(--float-y) * -.7), 150px) rotateX(calc(var(--float-rx) * -.7)) rotateY(calc(var(--float-ry) * -.8)) rotateZ(9deg);
}
.floating-damper img { animation-duration: 4.8s; }
.floating-product:hover { filter: brightness(1.08); }
.floating-hinge:hover { transform: translate3d(var(--float-x), calc(var(--float-y) - 10px), 130px) rotateX(var(--float-rx)) rotateY(var(--float-ry)) rotateZ(-3deg) scale(1.035); }
.floating-damper:hover { transform: translate3d(calc(var(--float-x) * -.6), calc(var(--float-y) * -.7 - 10px), 180px) rotateX(calc(var(--float-rx) * -.7)) rotateY(calc(var(--float-ry) * -.8)) rotateZ(7deg) scale(1.04); }
@keyframes productFloat {
  0%,100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}

.application-shortcuts {
  background: #fff;
  border-bottom: 1px solid rgba(16,32,28,.11);
}
.application-shortcut-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
}
.application-shortcut {
  min-height: 150px;
  display: grid;
  grid-template-columns: 58px 1fr 42px;
  align-items: center;
  gap: 18px;
  padding: 26px 24px;
  border-right: 1px solid rgba(16,32,28,.1);
  transition: background .18s ease;
}
.application-shortcut:last-child { border-right: 0; }
.application-shortcut:hover { background: rgba(29,118,102,.04); }
.application-shortcut svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: #13231f;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.application-shortcut strong { display: block; font-size: 16px; letter-spacing: -.015em; }
.application-shortcut small { display: block; margin-top: 7px; color: var(--muted); font-size: 11px; }
.application-shortcut i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(29,118,102,.34);
  border-radius: 50%;
  color: var(--green);
  font-style: normal;
  transition: transform .18s ease, background .18s ease;
}
.application-shortcut:hover i { transform: translateX(4px); background: rgba(29,118,102,.06); }

.company-building-card figcaption {
  background: rgba(255,254,249,.72) !important;
  backdrop-filter: blur(14px);
  border-color: rgba(255,255,255,.52) !important;
}
.application-card { color: inherit; }
.application-card:hover .application-image img { transform: scale(1.025); }
.application-image img { transition: transform .28s ease; }
.application-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

/* Separate category pages */
.category-page { background: var(--paper); }
.category-hero {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  background:
    radial-gradient(circle at 78% 20%, rgba(77,190,170,.18), transparent 32%),
    linear-gradient(120deg, #080c0b 0%, #101a17 68%, #17332b 100%);
  color: #fff;
}
.category-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.12) 1px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: .18;
  mask-image: linear-gradient(90deg, transparent 36%, #000 66%, transparent);
}
.category-hero-grid {
  position: relative;
  z-index: 1;
  min-height: 580px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 50px;
}
.category-hero-copy h1 { margin: 0; font-size: clamp(62px,7vw,104px); line-height: .92; letter-spacing: -.065em; }
.category-hero-copy > p:not(.hero-overline) { max-width: 610px; margin: 28px 0 0; color: rgba(255,255,255,.63); font-size: 18px; line-height: 1.75; }
.category-hero-product { position: relative; min-height: 500px; display: grid; place-items: center; perspective: 1000px; }
.category-hero-product img { width: min(760px, 96%); max-height: 430px; object-fit: contain; filter: drop-shadow(0 44px 38px rgba(0,0,0,.48)); animation: productFloat 5s ease-in-out infinite; transform: rotateZ(-4deg); }
.category-hero-product span { position: absolute; right: 5%; bottom: 14%; color: rgba(255,255,255,.54); font: 700 11px/1 "Courier New", monospace; letter-spacing: .18em; text-transform: uppercase; }

@media (max-width: 1060px) {
  .hero-experience-inner { grid-template-columns: .92fr 1.08fr; }
  .floating-products { min-height: 580px; }
  .floating-hinge { width: 92%; left: -4%; }
  .floating-damper { width: 55%; right: -4%; }
  .application-shortcut-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .application-shortcut:nth-child(2) { border-right: 0; }
  .application-shortcut:nth-child(-n+2) { border-bottom: 1px solid rgba(16,32,28,.1); }
}

@media (max-width: 780px) {
  .site-header .brand img { width: 45px; height: 45px; }
  .hero-experience { min-height: auto; }
  .hero-experience-inner { min-height: 900px; grid-template-columns: 1fr; align-content: start; }
  .hero-experience-copy { max-width: 100%; padding: 66px 0 0; }
  .hero-experience h1 { font-size: clamp(52px, 15vw, 78px); }
  .hero-experience-lead { font-size: 16px; }
  .hero-slider-controls { margin-top: 38px; }
  .floating-products { min-height: 400px; margin-top: -30px; }
  .floating-hinge { width: 88%; left: -5%; top: 8%; }
  .floating-damper { width: 50%; right: 0; bottom: 4%; }
  .floating-product span { display: none; }
  .application-shortcut-grid { grid-template-columns: 1fr; }
  .application-shortcut { min-height: 108px; border-right: 0; border-bottom: 1px solid rgba(16,32,28,.1); }
  .application-shortcut:last-child { border-bottom: 0; }
  .category-hero-grid { grid-template-columns: 1fr; padding: 60px 0 30px; }
  .category-hero-product { min-height: 330px; }
}

@media (max-width: 520px) {
  .hero-experience-inner { min-height: 820px; }
  .hero-experience-copy { padding-top: 48px; }
  .hero-experience .hero-actions { display: grid; }
  .hero-slider-controls { margin-top: 30px; }
  .hero-control-line { width: 38px; }
  .floating-products { min-height: 310px; }
  .floating-hinge { width: 100%; left: -9%; }
  .floating-damper { width: 58%; right: -8%; }
  .application-shortcut { grid-template-columns: 48px 1fr 38px; padding: 20px 16px; }
  .application-shortcut svg { width: 42px; height: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .floating-product,
  .floating-product img,
  .category-hero-product img { transition: none; animation: none; }
}


/* V8 — visible light brand header, contact strip and dedicated matching page */
.site-header {
  background: rgba(248,246,239,.96) !important;
  border-bottom: 1px solid rgba(16,32,28,.14) !important;
  box-shadow: 0 8px 26px rgba(16,32,28,.045);
  backdrop-filter: blur(18px);
}
.site-header .navbar { min-height: 82px; }
.site-header .brand { gap: 13px; }
.site-header .brand img {
  width: 56px !important;
  height: 56px !important;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: none !important;
}
.site-header .brand-copy { display: grid !important; gap: 3px; }
.site-header .brand-name {
  color: var(--ink) !important;
  font-size: 16px !important;
  font-weight: 900;
  letter-spacing: .2em;
}
.site-header .brand-subline {
  color: var(--green) !important;
  font-size: 10px !important;
  letter-spacing: .17em;
}
.site-header .desktop-nav > a:not(.button) { color: var(--ink-soft) !important; }
.site-header .desktop-nav > a:not(.button)::after { background: var(--green) !important; }
.site-header .button.dark { background: var(--green) !important; border-color: var(--green) !important; color: #fff !important; }
.site-header .mobile-menu-button { border-color: var(--line) !important; }
.site-header .mobile-menu-button span,
.site-header .mobile-menu-button::before,
.site-header .mobile-menu-button::after { background: var(--ink) !important; }
.site-header .mobile-menu { background: rgba(248,246,239,.99) !important; border-top-color: var(--line) !important; }
.site-header .mobile-menu a { color: var(--ink) !important; border-bottom-color: var(--line) !important; }

.contact-strip {
  padding: 0;
  background: #f1f1f0;
  border-top: 1px solid rgba(16,32,28,.08);
  border-bottom: 1px solid rgba(16,32,28,.08);
}
.contact-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
}
.contact-strip-item {
  min-height: 172px;
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 22px;
  padding: 34px 38px;
  border-right: 1px solid rgba(16,32,28,.1);
  transition: background .18s ease, transform .18s ease;
}
.contact-strip-item:last-child { border-right: 0; }
.contact-strip-item:hover { background: rgba(255,255,255,.62); }
.contact-strip-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border: 2px solid #1aa899;
  border-radius: 50%;
  color: var(--ink);
}
.contact-strip-icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.contact-strip-copy { display: grid; gap: 7px; min-width: 0; }
.contact-strip-copy strong { font-size: clamp(18px,1.6vw,24px); letter-spacing: -.025em; }
.contact-strip-copy small { color: var(--ink-soft); font-size: 15px; line-height: 1.45; overflow-wrap: anywhere; }

.matching-page { background: var(--paper); }
.matching-hero {
  padding: 96px 0 86px;
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 28%, rgba(46,176,154,.14), transparent 28%),
    linear-gradient(135deg, #f7f4eb 0%, #eeeee8 50%, #e4ede8 100%);
  border-bottom: 1px solid var(--line);
}
.matching-hero-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 72px; align-items: center; }
.matching-hero h1 { margin: 0; max-width: 720px; font-size: clamp(54px,6.5vw,90px); line-height: .94; letter-spacing: -.06em; }
.matching-hero p:not(.eyebrow) { max-width: 660px; margin: 28px 0 0; color: var(--muted); font-size: 18px; line-height: 1.75; }
.matching-hero-links { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 30px; }
.matching-hero-links a { color: var(--green); font-weight: 800; border-bottom: 1px solid rgba(29,118,102,.3); padding-bottom: 5px; }
.matching-diagram { min-height: 470px; display: grid; place-items: center; }
.matching-diagram svg { width: min(100%,680px); overflow: visible; }
.matching-diagram circle,.matching-diagram path,.matching-diagram rect { fill: none; stroke: rgba(16,32,28,.72); stroke-width: 2; vector-effect: non-scaling-stroke; }
.matching-diagram circle:nth-child(-n+2),.matching-diagram path:nth-child(-n+2) { stroke: rgba(29,118,102,.46); }
.matching-diagram text { fill: var(--green); font: 800 16px Arial,sans-serif; }
.matching-diagram text:last-child { fill: var(--muted); font: 700 9px "Courier New",monospace; letter-spacing: .11em; }
.matching-requirements { background: var(--white); border-bottom: 1px solid var(--line); }
.matching-requirements-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); }
.matching-requirements article { min-height: 210px; padding: 35px 30px; border-right: 1px solid var(--line); }
.matching-requirements article:last-child { border-right: 0; }
.matching-requirements span { color: var(--green); font: 700 11px "Courier New",monospace; letter-spacing: .14em; }
.matching-requirements strong { display: block; margin-top: 26px; font-size: 20px; }
.matching-requirements p { color: var(--muted); line-height: 1.65; }
.matching-form-section { padding: 100px 0; }
.matching-form-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: start; }
.matching-form-copy { position: sticky; top: 120px; }
.matching-form-copy h2 { margin: 0; font-size: clamp(42px,4.7vw,68px); line-height: 1; letter-spacing: -.052em; }
.matching-form-copy > p:not(.eyebrow) { color: var(--muted); line-height: 1.75; font-size: 16px; }
.matching-contact-mini { display: grid; gap: 12px; margin-top: 34px; }
.matching-contact-mini a { display: grid; gap: 5px; padding: 18px 0; border-top: 1px solid var(--line); }
.matching-contact-mini strong { color: var(--green); font: 700 11px "Courier New",monospace; letter-spacing: .12em; text-transform: uppercase; }
.matching-contact-mini span { font-weight: 700; }
.matching-form { padding: 42px; border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: 0 28px 70px rgba(16,32,28,.09); }
.matching-form textarea { min-height: 170px; }

@media (max-width: 980px) {
  .contact-strip-grid { grid-template-columns: 1fr; }
  .contact-strip-item { min-height: 118px; border-right: 0; border-bottom: 1px solid rgba(16,32,28,.1); }
  .contact-strip-item:last-child { border-bottom: 0; }
  .matching-hero-grid,.matching-form-layout { grid-template-columns: 1fr; }
  .matching-diagram { min-height: 360px; }
  .matching-requirements-grid { grid-template-columns: 1fr 1fr; }
  .matching-requirements article:nth-child(2) { border-right: 0; }
  .matching-requirements article { border-bottom: 1px solid var(--line); }
  .matching-form-copy { position: static; }
}
@media (max-width: 720px) {
  .site-header .navbar { min-height: 72px; }
  .site-header .brand img { width: 46px !important; height: 46px !important; }
  .site-header .brand-name { font-size: 14px !important; }
  .site-header .brand-subline { font-size: 8px !important; }
  .contact-strip-item { grid-template-columns: 52px 1fr; padding: 25px 20px; gap: 17px; }
  .contact-strip-icon { width: 50px; height: 50px; }
  .matching-hero { padding: 60px 0 52px; }
  .matching-hero h1 { font-size: clamp(46px,14vw,68px); }
  .matching-diagram { min-height: 280px; }
  .matching-requirements-grid { grid-template-columns: 1fr; }
  .matching-requirements article { border-right: 0; }
  .matching-form-section { padding: 65px 0; }
  .matching-form { padding: 25px 18px; }
}
@media (max-width: 450px) {
  .site-header .brand-copy { display: grid !important; }
  .site-header .brand-name { font-size: 12px !important; }
  .site-header .brand-subline { font-size: 7px !important; }
}


/* ============================================================
   V9 — new Uniwise brand, light engineering visual system
   ============================================================ */
:root {
  --ink: #181339;
  --ink-soft: #454064;
  --green: #2c1975;
  --green-dark: #1d104f;
  --mint: #dad4f2;
  --paper: #f7f4ee;
  --paper-deep: #ece7e2;
  --white: #fffdfa;
  --muted: #716b7c;
  --line: rgba(35,24,92,.14);
  --brand-purple: #28156f;
  --brand-red: #d7282f;
  --brand-lavender: #e8e3f6;
  --shadow: 0 26px 80px rgba(29,17,74,.14);
}
body {
  background:
    radial-gradient(circle at 82% 0%, rgba(66,49,141,.06), transparent 30%),
    var(--paper);
  color: var(--ink);
}
.site-header {
  background: rgba(248,245,239,.93) !important;
  border-bottom-color: rgba(35,24,92,.11) !important;
  color: var(--ink) !important;
}
.navbar { min-height: 86px; }
.brand-v9 { display:flex; align-items:center; min-width: 212px; }
.site-header .brand-v9 img {
  width: 206px !important;
  height: 64px !important;
  object-fit: contain !important;
  object-position: left center;
  mix-blend-mode: normal !important;
  filter: none !important;
}
.site-header .desktop-nav > a:not(.button) { color: var(--ink-soft) !important; }
.site-header .button.dark { background: var(--brand-purple); border-color: var(--brand-purple); color: #fff; }
.site-header .mobile-menu-button { border-color: rgba(35,24,92,.2); }
.site-header .mobile-menu-button span,
.site-header .mobile-menu-button::before,
.site-header .mobile-menu-button::after { background: var(--brand-purple); }
.eyebrow,.hero-overline,.product-kicker,.family-index,.application-number,.process-number { color: var(--brand-purple) !important; }
.button.primary,.hero-primary { background: var(--brand-purple) !important; border-color: var(--brand-purple) !important; color:#fff !important; }
.button.primary:hover,.hero-primary:hover { background: var(--green-dark) !important; border-color: var(--green-dark) !important; }
.hero-secondary { color: var(--brand-purple) !important; border-color: rgba(40,21,111,.55) !important; background: rgba(255,255,255,.42) !important; }
.text-link,.text-button,.section-jump-links a,.application-link,.matching-hero-links a { color: var(--brand-purple) !important; }

/* Homepage engineering hero */
.engineering-hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 45%, rgba(84,67,151,.14), transparent 27%),
    radial-gradient(circle at 24% 20%, rgba(215,40,47,.035), transparent 24%),
    linear-gradient(120deg, #faf8f3 0%, #f4f0eb 48%, #ece9f1 100%);
  border-bottom: 1px solid rgba(35,24,92,.1);
}
.engineering-hero::before {
  content:""; position:absolute; inset:0;
  background-image: linear-gradient(rgba(40,21,111,.025) 1px, transparent 1px),linear-gradient(90deg,rgba(40,21,111,.025) 1px,transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg,transparent 20%,black 58%,black 100%);
  pointer-events:none;
}
.engineering-hero-grid { display:grid; grid-template-columns:.86fr 1.14fr; gap:38px; align-items:center; padding:76px 0 70px; }
.engineering-hero-copy { position:relative; z-index:5; }
.engineering-hero-copy h1 { margin:0; max-width:650px; font-family: Georgia, 'Times New Roman', serif; font-size:clamp(58px,6.2vw,94px); line-height:.96; letter-spacing:-.055em; font-weight:500; }
.engineering-hero-copy h1 span { display:block; color:var(--brand-purple); }
.engineering-hero-copy > p:not(.hero-overline) { max-width:610px; margin:27px 0 0; color:var(--muted); font-size:18px; line-height:1.75; }
.engineering-hero-copy .hero-actions { margin-top:34px; }
.engineering-hero-copy .button { min-width:190px; }
.engineering-hero-copy .button b { font-size:20px; font-weight:400; }
.hero-engineering-note { display:flex; align-items:center; gap:12px; margin-top:30px; color:var(--ink-soft); font:700 10px/1.4 'Courier New',monospace; letter-spacing:.11em; text-transform:uppercase; }
.hero-engineering-note span { width:38px; height:2px; background:linear-gradient(90deg,var(--brand-red),var(--brand-purple)); }
.engineering-stage { position:relative; min-height:570px; perspective:1200px; transform-style:preserve-3d; }
.stage-glow { position:absolute; width:68%; height:54%; left:17%; top:21%; border-radius:50%; background:radial-gradient(ellipse,rgba(255,255,255,.94),rgba(207,198,233,.26) 54%,transparent 72%); filter:blur(10px); }
.blueprint { position:absolute; z-index:1; object-fit:contain; filter:sepia(.1) hue-rotate(195deg) saturate(.65); mix-blend-mode:multiply; opacity:.16; pointer-events:none; }
.blueprint-hinge { width:64%; right:0; top:4%; transform:rotate(-2deg); }
.blueprint-damper { width:42%; left:29%; bottom:2%; transform:rotate(4deg); }
.engineering-arc { position:absolute; z-index:2; width:68%; height:88%; left:10%; top:5%; overflow:visible; fill:none; stroke:rgba(40,21,111,.52); stroke-width:1.5; pointer-events:none; }
.engineering-arc .arc-dash { stroke:rgba(215,40,47,.38); stroke-dasharray:4 9; }
.engineering-arc text { fill:var(--brand-purple); stroke:none; font:700 16px Arial,sans-serif; }
.hero-object { position:absolute; z-index:4; display:block; transform-style:preserve-3d; transition:transform .35s ease,filter .35s ease; }
.hero-object img { width:100%; height:100%; object-fit:contain; filter:drop-shadow(0 30px 23px rgba(31,24,55,.22)); }
.hero-object-hinge { width:71%; height:42%; left:1%; top:8%; transform:translate3d(var(--float-x,0),var(--float-y,0),55px) rotateY(var(--float-ry,0deg)) rotateX(var(--float-rx,0deg)) rotate(-1.5deg); }
.hero-object-damper { width:52%; height:46%; right:-1%; bottom:5%; transform:translate3d(calc(var(--float-x,0px) * -.55),calc(var(--float-y,0px) * -.7),75px) rotateY(calc(var(--float-ry,0deg) * -.7)) rotateX(var(--float-rx,0deg)) rotate(1deg); }
.hero-object:hover { filter:brightness(1.035); }
.stage-shadow { position:absolute; z-index:3; height:23px; border-radius:50%; background:rgba(36,25,67,.15); filter:blur(14px); }
.shadow-hinge { width:47%; left:12%; top:43%; }
.shadow-damper { width:36%; right:7%; bottom:5%; }

/* Category engineering heroes */
.category-engineering-hero { position:relative; overflow:hidden; min-height:580px; background:radial-gradient(circle at 78% 40%,rgba(80,63,150,.14),transparent 29%),linear-gradient(120deg,#faf8f3,#f0edf2); border-bottom:1px solid var(--line); }
.category-engineering-hero::before { content:""; position:absolute; inset:0; background-image:radial-gradient(rgba(40,21,111,.11) 1px,transparent 1px); background-size:28px 28px; mask-image:linear-gradient(90deg,transparent 32%,black 70%); opacity:.42; }
.category-engineering-grid { position:relative; z-index:2; min-height:580px; display:grid; grid-template-columns:.82fr 1.18fr; align-items:center; gap:40px; padding:60px 0; }
.category-engineering-copy h1 { margin:0; font-family:Georgia,'Times New Roman',serif; font-size:clamp(60px,7vw,102px); line-height:.92; letter-spacing:-.055em; font-weight:500; }
.category-engineering-copy h1 span { display:block; color:var(--brand-purple); }
.category-engineering-copy p:not(.hero-overline) { max-width:590px; margin:26px 0 0; color:var(--muted); font-size:18px; line-height:1.75; }
.category-engineering-stage { position:relative; min-height:470px; perspective:1100px; }
.category-blueprint { position:absolute; width:78%; height:76%; object-fit:contain; right:-3%; top:0; opacity:.16; mix-blend-mode:multiply; filter:sepia(.2) hue-rotate(190deg) saturate(.5); }
.damper-blueprint { width:70%; right:-6%; top:3%; }
.category-arc { position:absolute; width:72%; height:90%; left:0; top:3%; fill:none; stroke:rgba(40,21,111,.45); stroke-width:1.4; }
.category-arc text { fill:var(--brand-red); stroke:none; font:700 15px Arial,sans-serif; }
.category-product-float { position:absolute; z-index:3; width:88%; height:72%; object-fit:contain; left:3%; top:9%; filter:drop-shadow(0 32px 24px rgba(31,24,55,.22)); transform:translate3d(var(--float-x,0),var(--float-y,0),70px) rotateY(var(--float-ry,0deg)) rotateX(var(--float-rx,0deg)); }
.damper-float { width:74%; height:73%; left:14%; top:10%; }
.category-product-shadow { position:absolute; width:54%; height:24px; left:22%; bottom:8%; border-radius:50%; background:rgba(36,25,67,.16); filter:blur(16px); }

/* Matching page uses real application cases instead of the old abstract lid diagram. */
.matching-case-hero { padding:76px 0 70px; background:radial-gradient(circle at 77% 26%,rgba(80,63,150,.13),transparent 28%),linear-gradient(125deg,#faf8f3,#f1edf2); border-bottom:1px solid var(--line); }
.matching-case-grid { display:grid; grid-template-columns:.82fr 1.18fr; gap:60px; align-items:center; }
.matching-case-copy h1 { margin:0; max-width:660px; font-family:Georgia,'Times New Roman',serif; font-size:clamp(58px,6vw,88px); line-height:.96; letter-spacing:-.055em; font-weight:500; }
.matching-case-copy > p:not(.eyebrow) { max-width:640px; margin:27px 0 0; color:var(--muted); font-size:18px; line-height:1.75; }
.matching-data-chips { display:flex; flex-wrap:wrap; gap:9px; margin-top:27px; }
.matching-data-chips span { padding:9px 12px; border:1px solid rgba(40,21,111,.17); border-radius:999px; background:rgba(255,255,255,.52); color:var(--ink-soft); font:700 10px/1 'Courier New',monospace; letter-spacing:.06em; text-transform:uppercase; }
.matching-case-gallery { display:grid; grid-template-columns:1.1fr .9fr; grid-template-rows:1fr 1fr; gap:14px; min-height:500px; }
.matching-case-card { position:relative; overflow:hidden; margin:0; min-height:230px; border:1px solid rgba(40,21,111,.12); border-radius:22px; background:#fff; box-shadow:0 18px 45px rgba(31,24,55,.1); }
.matching-case-large { grid-row:1/3; }
.matching-case-card img { width:100%; height:100%; object-fit:cover; filter:saturate(.72) contrast(.97); transition:transform .45s ease; }
.matching-case-card:hover img { transform:scale(1.035); }
.matching-case-card::after { content:""; position:absolute; inset:42% 0 0; background:linear-gradient(transparent,rgba(21,15,54,.72)); }
.matching-case-card figcaption { position:absolute; z-index:2; left:20px; right:20px; bottom:17px; color:#fff; display:grid; gap:5px; }
.matching-case-card figcaption strong { font-size:19px; }
.matching-case-card figcaption span { font-size:12px; opacity:.76; }

/* Contact and office details */
.contact-strip-v9 { background:linear-gradient(180deg,#f4f1f0,#ece8ed); border-top:1px solid rgba(40,21,111,.1); }
.contact-strip-v9 .contact-strip-item:hover { background:rgba(255,255,255,.6); }
.contact-strip-icon { color:var(--brand-purple) !important; border-color:rgba(40,21,111,.45) !important; }
.office-details { display:grid; grid-template-columns:repeat(auto-fit, minmax(160px, 1fr)); border-top:1px solid rgba(40,21,111,.1); padding:28px 0 32px; gap:24px 28px; }
.office-details > div { display:grid; gap:7px; }
.office-details span { color:var(--brand-purple); font:700 10px/1 'Courier New',monospace; letter-spacing:.13em; text-transform:uppercase; }
.office-details strong { color:var(--ink-soft); font-size:15px; line-height:1.5; font-weight:600; }
.office-address { min-width:0; }
.site-footer { background:var(--brand-purple) !important; color:#fff !important; }

@media (max-width: 1000px) {
  .engineering-hero-grid,.category-engineering-grid,.matching-case-grid { grid-template-columns:1fr; }
  .engineering-hero { min-height:auto; }
  .engineering-stage { min-height:520px; }
  .category-engineering-grid { padding-bottom:38px; }
  .category-engineering-stage { min-height:440px; }
  .office-details { grid-template-columns:1fr 1fr 1fr; }
  .office-address { grid-column:span 2; }
}
@media (max-width: 780px) {
  .navbar { min-height:72px; }
  .site-header .brand-v9 img { width:155px !important; height:48px !important; }
  .brand-v9 { min-width:155px; }
  .engineering-hero-grid { padding:52px 0 44px; }
  .engineering-hero-copy h1,.category-engineering-copy h1,.matching-case-copy h1 { font-size:clamp(48px,13vw,70px); }
  .engineering-stage { min-height:390px; }
  .hero-object-hinge { width:76%; height:42%; top:4%; }
  .hero-object-damper { width:58%; height:47%; right:-3%; bottom:0; }
  .blueprint-hinge { width:72%; }
  .category-engineering-grid { min-height:auto; padding:50px 0 34px; }
  .category-engineering-stage { min-height:340px; }
  .matching-case-gallery { grid-template-columns:1fr 1fr; grid-template-rows:290px 210px; min-height:auto; }
  .matching-case-large { grid-column:1/3; grid-row:auto; }
  .office-details { grid-template-columns:1fr 1fr; }
  .office-address { grid-column:1/3; }
}
@media (max-width: 540px) {
  .site-header .brand-v9 img { width:132px !important; height:42px !important; }
  .brand-v9 { min-width:132px; }
  .engineering-stage { min-height:310px; }
  .engineering-arc { width:76%; left:5%; }
  .hero-object-hinge { width:80%; height:44%; left:-3%; }
  .hero-object-damper { width:63%; right:-8%; }
  .category-engineering-stage { min-height:285px; }
  .matching-case-gallery { grid-template-columns:1fr; grid-template-rows:250px 210px 210px; }
  .matching-case-large { grid-column:auto; }
  .office-details { grid-template-columns:1fr; }
  .office-address { grid-column:auto; }
}

/* V9 final refinements */
.section.dark { background: var(--brand-purple) !important; }
.site-header .navbar { min-height: 96px; }
.site-header .brand-v9 { min-width: 148px; }
.site-header .brand-v9 img { width: auto !important; height: 74px !important; }
@media (max-width:780px){.site-header .navbar{min-height:74px}.site-header .brand-v9{min-width:105px}.site-header .brand-v9 img{width:auto!important;height:54px!important}}
@media (max-width:540px){.site-header .brand-v9{min-width:92px}.site-header .brand-v9 img{height:48px!important}}

/* ============================================================
   V10 — category tabs + hover-synchronised product preview
   ============================================================ */
.catalog-showcase-hero {
  position: relative;
  overflow: hidden;
  min-height: 455px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 42%, rgba(72, 50, 151, .13), transparent 27%),
    radial-gradient(circle at 24% 8%, rgba(215, 40, 47, .03), transparent 23%),
    linear-gradient(120deg, #fbf9f5 0%, #f5f1ed 48%, #eeebf3 100%);
}
.catalog-showcase-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(40, 21, 111, .1) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(90deg, transparent 28%, #000 68%, #000 100%);
  opacity: .36;
  pointer-events: none;
}
.catalog-showcase-grid {
  position: relative;
  z-index: 1;
  min-height: 455px;
  display: grid;
  grid-template-columns: minmax(330px, .78fr) minmax(500px, 1.22fr);
  gap: 50px;
  align-items: center;
  padding: 48px 0;
}
.catalog-showcase-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 6.2vw, 84px);
  line-height: .94;
  letter-spacing: -.055em;
  font-weight: 500;
}
.catalog-showcase-copy h1 span {
  display: block;
  color: var(--brand-purple);
}
.catalog-showcase-copy > p:not(.hero-overline) {
  max-width: 560px;
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}
.catalog-showcase-copy .hero-actions { margin-top: 29px; }

.catalog-preview {
  position: relative;
  min-height: 355px;
  border-radius: 30px;
  perspective: 1100px;
  isolation: isolate;
}
.catalog-preview-glow {
  position: absolute;
  inset: 9% 7% 5%;
  border-radius: 48%;
  background: radial-gradient(ellipse, rgba(255,255,255,.94), rgba(218,212,242,.28) 53%, transparent 73%);
  filter: blur(9px);
}
.catalog-preview-drawing {
  position: absolute;
  z-index: 1;
  width: 66%;
  height: 80%;
  right: -1%;
  top: 2%;
  object-fit: contain;
  opacity: .14;
  mix-blend-mode: multiply;
  filter: sepia(.2) hue-rotate(190deg) saturate(.5);
  transition: opacity .22s ease, transform .35s ease;
}
.catalog-preview-arc {
  position: absolute;
  z-index: 2;
  width: 62%;
  height: 100%;
  left: 2%;
  top: -2%;
  overflow: visible;
  fill: none;
  stroke: rgba(40,21,111,.43);
  stroke-width: 1.35;
  pointer-events: none;
}
.catalog-preview-arc path { stroke-dasharray: 5 7; }
.catalog-preview-arc text {
  fill: var(--brand-red);
  stroke: none;
  font: 700 15px Arial, sans-serif;
}
.catalog-preview-product {
  position: absolute;
  z-index: 4;
  width: 72%;
  height: 74%;
  left: 7%;
  top: 4%;
  object-fit: contain;
  border-radius: 22px;
  filter: drop-shadow(0 29px 23px rgba(31,24,55,.22));
  transform: translate3d(0,0,58px) rotate(-1deg);
  transition: opacity .18s ease, transform .36s cubic-bezier(.2,.7,.2,1), filter .36s ease;
}
.catalog-preview:hover .catalog-preview-product {
  transform: translate3d(0,-5px,68px) rotate(.35deg) scale(1.012);
  filter: drop-shadow(0 34px 26px rgba(31,24,55,.25));
}
.catalog-preview-shadow {
  position: absolute;
  z-index: 3;
  width: 48%;
  height: 22px;
  left: 17%;
  bottom: 12%;
  border-radius: 50%;
  background: rgba(36,25,67,.16);
  filter: blur(15px);
}
.catalog-preview-label {
  position: absolute;
  z-index: 6;
  right: 1%;
  bottom: 4%;
  width: min(230px, 40%);
  display: grid;
  gap: 4px;
  padding: 15px 17px;
  border: 1px solid rgba(40,21,111,.13);
  border-radius: 15px;
  background: rgba(255,253,250,.82);
  box-shadow: 0 14px 38px rgba(31,24,55,.1);
  backdrop-filter: blur(13px);
}
.catalog-preview-label span {
  color: var(--brand-purple);
  font: 700 8px/1.2 "Courier New", monospace;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.catalog-preview-label strong { font-size: 21px; letter-spacing: -.02em; }
.catalog-preview-label small {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.catalog-preview.is-switching .catalog-preview-product { opacity: .12; transform: translate3d(9px,4px,42px) scale(.985); }
.catalog-preview.is-switching .catalog-preview-drawing { opacity: .04; transform: translateX(8px); }

.catalog-products-section { padding-top: 68px; }
.catalog-products-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 38px;
  margin-bottom: 28px;
}
.catalog-products-heading h2 {
  margin: 0;
  font-size: clamp(38px, 4.3vw, 58px);
  letter-spacing: -.045em;
}
.catalog-products-heading .section-intro { margin-top: 12px; }
.catalog-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 25px;
  padding: 7px;
  border: 1px solid rgba(40,21,111,.1);
  border-radius: 14px;
  background: rgba(255,253,250,.64);
  box-shadow: 0 9px 30px rgba(31,24,55,.055);
}
.catalog-filter-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: transparent;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease, border-color .18s ease;
}
.catalog-filter-button:hover { transform: translateY(-1px); border-color: rgba(40,21,111,.14); }
.catalog-filter-button small {
  min-width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(40,21,111,.07);
  font-size: 9px;
}
.catalog-filter-button.is-active {
  color: #fff;
  background: var(--brand-purple);
  border-color: var(--brand-purple);
}
.catalog-filter-button.is-active small { background: rgba(255,255,255,.18); }
.catalog-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 15px;
}
.catalog-product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(40,21,111,.12);
  border-radius: 17px;
  background: rgba(255,253,250,.86);
  box-shadow: 0 12px 34px rgba(31,24,55,.065);
  outline: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.catalog-product-card:hover,
.catalog-product-card:focus-within,
.catalog-product-card.is-previewed {
  transform: translateY(-4px);
  border-color: rgba(40,21,111,.32);
  box-shadow: 0 20px 48px rgba(31,24,55,.12);
}
.catalog-product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1.42;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(40,21,111,.1);
  background: #f1eee9;
  cursor: pointer;
}
.catalog-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), filter .3s ease;
}
.catalog-product-card:hover .catalog-product-image img,
.catalog-product-card.is-previewed .catalog-product-image img { transform: scale(1.025); filter: saturate(.92) contrast(1.02); }
.catalog-card-open {
  position: absolute;
  right: 11px;
  bottom: 11px;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 50%;
  background: rgba(25,16,70,.72);
  color: #fff;
  font-size: 14px;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .2s ease, transform .2s ease;
  backdrop-filter: blur(8px);
}
.catalog-product-card:hover .catalog-card-open,
.catalog-product-card:focus-within .catalog-card-open { opacity: 1; transform: none; }
.catalog-product-body { padding: 15px 16px 16px; }
.catalog-product-family {
  display: block;
  margin-bottom: 7px;
  color: var(--brand-purple);
  font: 700 8px/1.2 "Courier New", monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.catalog-product-body h3 { margin: 0; font-size: 23px; letter-spacing: -.025em; }
.catalog-product-body p {
  min-height: 30px;
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}
.catalog-product-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 15px;
  padding-top: 12px;
  border-top: 1px solid rgba(40,21,111,.09);
}
.catalog-product-actions .text-button { font-size: 10px; }

@media (max-width: 1000px) {
  .catalog-showcase-grid { grid-template-columns: .82fr 1.18fr; gap: 24px; }
  .catalog-preview-product { width: 78%; left: 2%; }
  .catalog-product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 780px) {
  .catalog-showcase-grid { grid-template-columns: 1fr; min-height: auto; padding: 44px 0 32px; }
  .catalog-showcase-copy h1 { font-size: clamp(48px, 13vw, 68px); }
  .catalog-preview { min-height: 340px; }
  .catalog-products-heading { display: block; }
  .catalog-products-heading .section-jump-links { justify-content: flex-start; margin-top: 20px; }
  .catalog-filter-tabs { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 9px; }
  .catalog-filter-button { flex: 0 0 auto; }
}
@media (max-width: 560px) {
  .catalog-preview { min-height: 285px; }
  .catalog-preview-product { width: 82%; height: 70%; left: 0; }
  .catalog-preview-label { width: 47%; right: 0; padding: 11px 12px; }
  .catalog-preview-label strong { font-size: 17px; }
  .catalog-product-grid { grid-template-columns: 1fr; }
  .catalog-product-image { aspect-ratio: 1.5; }
}

/* V10 preview frame: product photos remain intentional and consistent. */
.catalog-preview-product {
  width: 67%;
  height: 69%;
  left: 5%;
  top: 7%;
  object-fit: cover;
  border: 7px solid rgba(255,253,250,.88);
  background: #fff;
  box-shadow: 0 26px 64px rgba(31,24,55,.16);
}
@media (max-width: 780px) {
  .catalog-preview-product { width: 72%; height: 68%; }
}
@media (max-width: 560px) {
  .catalog-preview-product { width: 76%; height: 66%; left: 0; }
}

/* ============================================================
   V11 — clean product-only views + Accessories Details second tab
   ============================================================ */
.engineering-stage .hero-object img {
  object-fit: contain;
  background: transparent;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 28px 26px rgba(24,18,55,.22));
}
.hero-object-hinge img { transform: scale(1.04); }
.hero-object-damper img { transform: scale(1.02); }

.catalog-preview {
  background: transparent;
}
.catalog-preview-glow {
  inset: 5% 3% 3%;
  background: radial-gradient(ellipse, rgba(255,255,255,.98) 0%, rgba(255,255,255,.86) 47%, rgba(224,218,244,.18) 68%, transparent 78%);
}
.catalog-preview-product {
  width: 76%;
  height: 78%;
  left: 2%;
  top: 0;
  object-fit: contain;
  padding: 4px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 30px 24px rgba(31,24,55,.18));
}
.catalog-preview:hover .catalog-preview-product {
  filter: drop-shadow(0 35px 27px rgba(31,24,55,.22));
}
.catalog-preview-shadow {
  width: 45%;
  height: 16px;
  left: 16%;
  bottom: 14%;
  opacity: .55;
}

.catalog-product-card {
  background: rgba(255,255,255,.92);
}
.catalog-product-image {
  aspect-ratio: 1.42;
  border-bottom-color: rgba(40,21,111,.075);
  background: #fff;
}
.catalog-product-image::before {
  content: "PRODUCT VIEW";
  position: absolute;
  z-index: 2;
  left: 12px;
  top: 11px;
  color: rgba(40,21,111,.54);
  font: 700 7px/1.2 "Courier New", monospace;
  letter-spacing: .13em;
}
.catalog-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px 12px 7px;
  background: #fff;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 13px 13px rgba(28,22,55,.12));
}
.catalog-product-card:hover .catalog-product-image img,
.catalog-product-card.is-previewed .catalog-product-image img {
  transform: translateY(-3px) scale(1.025);
  filter: drop-shadow(0 17px 16px rgba(28,22,55,.16));
}
.catalog-card-open {
  color: var(--brand-purple);
  border-color: rgba(40,21,111,.13);
  background: rgba(255,255,255,.9);
  box-shadow: 0 8px 20px rgba(31,24,55,.1);
}

.product-dialog-main-button {
  background: #fff;
}
.product-dialog-main-button img {
  object-fit: contain;
  background: #fff;
}
.product-dialog-thumb img {
  object-fit: contain;
  background: #fff;
}
.product-dialog-thumb span {
  white-space: normal;
}

@media (max-width: 780px) {
  .catalog-preview-product { width: 82%; height: 75%; left: -2%; }
}
@media (max-width: 560px) {
  .catalog-preview-product { width: 86%; height: 72%; left: -4%; }
  .catalog-product-image img { padding: 8px; }
}

/* ============================================================
   V12 — standardized white-background product presentation
   Every primary product view follows the clean YJ004 visual rule:
   centered product, generous white space, no narrow crop strips.
   ============================================================ */
.catalog-showcase-hero {
  background:
    radial-gradient(circle at 76% 42%, rgba(67,47,142,.10), transparent 31%),
    linear-gradient(120deg, #fcfaf6 0%, #f8f5f0 52%, #f1eef7 100%);
}
.catalog-preview {
  min-height: 390px;
}
.catalog-preview-glow {
  inset: 4% 1% 2%;
  background: radial-gradient(ellipse, rgba(255,255,255,1) 0%, rgba(255,255,255,.96) 56%, rgba(225,219,245,.17) 73%, transparent 83%);
}
.catalog-preview-product {
  width: 79%;
  height: 80%;
  left: 0;
  top: -1%;
  padding: 0;
  object-fit: contain;
  background: #fff;
  mix-blend-mode: normal;
  border-radius: 22px;
  filter: drop-shadow(0 28px 25px rgba(31,24,55,.14));
}
.catalog-preview:hover .catalog-preview-product {
  filter: drop-shadow(0 34px 29px rgba(31,24,55,.18));
}
.catalog-preview-drawing {
  opacity: .08;
}
.catalog-product-card {
  background: #fff;
  border-color: rgba(40,21,111,.11);
}
.catalog-product-image {
  aspect-ratio: 1 / .88;
  min-height: 270px;
  background: #fff;
}
.catalog-product-image::before {
  color: rgba(40,21,111,.42);
}
.catalog-product-image img {
  width: 100%;
  height: 100%;
  padding: 22px 24px 13px;
  object-fit: contain;
  background: #fff;
  mix-blend-mode: normal;
  filter: drop-shadow(0 15px 13px rgba(28,22,55,.12));
}
.catalog-product-card:hover .catalog-product-image img,
.catalog-product-card.is-previewed .catalog-product-image img {
  transform: translateY(-5px) scale(1.045);
  filter: drop-shadow(0 20px 18px rgba(28,22,55,.16));
}
.product-dialog-main-button,
.product-dialog-main-button img,
.product-dialog-thumb,
.product-dialog-thumb img {
  background: #fff;
  mix-blend-mode: normal;
}
.product-dialog-main-button img {
  padding: 22px;
}
@media (max-width: 780px) {
  .catalog-preview-product { width: 84%; height: 78%; left: -2%; }
  .catalog-product-image { min-height: 250px; }
}
@media (max-width: 560px) {
  .catalog-preview-product { width: 88%; height: 74%; left: -4%; }
  .catalog-product-image { min-height: 230px; }
  .catalog-product-image img { padding: 18px 20px 11px; }
}


/* V13 — transparent studio cutouts from supplied white-background source files */
.catalog-preview-product,
.catalog-product-image img,
.product-dialog-main-button img,
.product-dialog-thumb img {
  background: transparent !important;
  border-radius: 0 !important;
  mix-blend-mode: normal !important;
}
.catalog-preview-product {
  width: 83%;
  height: 82%;
  object-fit: contain;
  filter: drop-shadow(0 28px 22px rgba(30,24,62,.18));
}
.catalog-product-image {
  background: radial-gradient(circle at 50% 58%, rgba(67,47,142,.055), transparent 48%);
}
.catalog-product-image img {
  padding: 8px 12px 2px;
  object-fit: contain;
  filter: drop-shadow(0 18px 13px rgba(31,24,55,.17));
}
.catalog-product-card:hover .catalog-product-image img,
.catalog-product-card.is-previewed .catalog-product-image img {
  transform: translateY(-8px) scale(1.055);
  filter: drop-shadow(0 25px 18px rgba(31,24,55,.22));
}
.product-dialog-main-button {
  background: radial-gradient(circle at 50% 55%, rgba(67,47,142,.05), transparent 58%), #fff;
}
.product-dialog-main-button img {
  padding: 12px;
  filter: drop-shadow(0 22px 17px rgba(31,24,55,.17));
}
.product-dialog-thumb img { padding: 4px; object-fit: contain; }
@media (max-width:780px){.catalog-preview-product{width:88%;height:80%;}}

/* ============================================================
   V15 — application-scene homepage with real floating products
   ============================================================ */
.v15-scene-hero {
  min-height: min(820px, calc(100vh - 76px));
  background: #f8f4ee;
  color: #171232;
  border-bottom: 1px solid rgba(40,21,111,.10);
}
.v15-scene-hero .hero-slide {
  background: #ebe5ea;
}
.v15-scene-hero .hero-slide img {
  object-position: 69% center;
  opacity: .50;
  filter: saturate(.78) contrast(.92) brightness(1.04);
  transform: scale(1.03);
}
.v15-scene-hero .hero-slide.is-active img {
  animation: v15SceneDrift 8s ease-out both;
}
@keyframes v15SceneDrift {
  from { transform: scale(1.055) translateX(8px); }
  to { transform: scale(1.015) translateX(0); }
}
.v15-scene-hero .hero-gradient {
  background:
    radial-gradient(circle at 78% 38%, rgba(255,255,255,.12), rgba(49,27,111,.14) 47%, transparent 70%),
    linear-gradient(90deg,
      rgba(250,247,241,.995) 0%,
      rgba(250,247,241,.985) 33%,
      rgba(247,241,246,.91) 51%,
      rgba(61,43,121,.38) 79%,
      rgba(25,17,55,.44) 100%),
    linear-gradient(180deg, rgba(255,255,255,.20), rgba(40,21,111,.08));
}
.v15-scene-hero .hero-dot-field {
  left: 41%;
  width: 420px;
  opacity: .20;
  background-image: radial-gradient(circle, rgba(40,21,111,.50) 1px, transparent 1.5px);
}
.v15-scene-hero .hero-experience-inner {
  min-height: min(820px, calc(100vh - 76px));
  grid-template-columns: minmax(0,.86fr) minmax(500px,1.14fr);
  gap: 22px;
}
.v15-scene-hero .hero-experience-copy {
  max-width: 650px;
  padding: 76px 0 90px;
}
.v15-scene-hero .hero-overline {
  color: #3b247f;
}
.v15-scene-hero .hero-overline::before {
  background: linear-gradient(90deg,#2a176c,#d14b59);
}
.v15-scene-hero h1 {
  color: #171232;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.052em;
  font-size: clamp(57px,6.2vw,94px);
}
.v15-scene-hero h1 span {
  color: transparent;
  background: linear-gradient(100deg,#28156f 8%,#54349c 56%,#bd3c55 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.v15-scene-hero .hero-experience-lead {
  color: rgba(28,24,54,.67);
  max-width: 585px;
}
.v15-scene-hero .hero-primary {
  background: linear-gradient(110deg,#2b176e,#513194);
  border-color: #2b176e;
  color: #fff;
  box-shadow: 0 14px 32px rgba(40,21,111,.18);
}
.v15-scene-hero .hero-primary:hover {
  background: linear-gradient(110deg,#3a2383,#6844a9);
  border-color: #3a2383;
}
.v15-scene-hero .hero-secondary {
  color: #28156f;
  border-color: rgba(40,21,111,.42);
  background: rgba(255,255,255,.42);
  backdrop-filter: blur(12px);
}
.v15-scene-hero .hero-secondary:hover {
  border-color: #28156f;
  background: rgba(255,255,255,.72);
}
.v15-scene-hero .hero-slider-controls > button {
  border-color: rgba(40,21,111,.32);
  color: #28156f;
  background: rgba(255,255,255,.48);
}
.v15-scene-hero .hero-slider-controls > button:hover {
  background: #fff;
  border-color: #28156f;
}
.v15-scene-hero .hero-control-line { background: rgba(40,21,111,.24); }
.v15-scene-hero .hero-dots button { background: rgba(40,21,111,.22); }
.v15-scene-hero .hero-dots button.is-active {
  background: linear-gradient(90deg,#311a76,#c54258);
}
.v15-floating-products {
  min-height: 650px;
}
.v15-floating-products::before {
  content:"";
  position:absolute;
  inset:9% 1% 8% 7%;
  border-radius: 48% 52% 49% 51%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.62), rgba(255,255,255,.14) 55%, transparent 75%);
  filter: blur(1px);
  pointer-events:none;
}
.v15-floating-products .floating-product img {
  filter: drop-shadow(0 34px 30px rgba(26,18,55,.30)) drop-shadow(0 6px 8px rgba(255,255,255,.38));
}
.v15-floating-products .floating-hinge {
  width: min(560px, 75%);
  left: 2%;
  top: 13%;
  transform: translate3d(var(--float-x),var(--float-y),100px) rotateX(var(--float-rx)) rotateY(var(--float-ry)) rotateZ(-4deg);
}
.v15-floating-products .floating-damper {
  width: min(345px, 46%);
  right: 2%;
  bottom: 9%;
  transform: translate3d(calc(var(--float-x) * -.6),calc(var(--float-y) * -.7),160px) rotateX(calc(var(--float-rx) * -.7)) rotateY(calc(var(--float-ry) * -.8)) rotateZ(7deg);
}
.v15-floating-products .floating-hinge:hover {
  transform: translate3d(var(--float-x),calc(var(--float-y) - 10px),145px) rotateX(var(--float-rx)) rotateY(var(--float-ry)) rotateZ(-2deg) scale(1.035);
}
.v15-floating-products .floating-damper:hover {
  transform: translate3d(calc(var(--float-x) * -.6),calc(var(--float-y) * -.7 - 10px),190px) rotateX(calc(var(--float-rx) * -.7)) rotateY(calc(var(--float-ry) * -.8)) rotateZ(5deg) scale(1.045);
}
.v15-orbit {
  position:absolute;
  width:520px;
  height:520px;
  right:4%;
  top:9%;
  border-radius:50%;
  pointer-events:none;
  opacity:.82;
}
.orbit-ring {
  position:absolute;
  inset:0;
  border-radius:50%;
  border:1px solid rgba(54,34,126,.25);
  border-left-color:transparent;
  border-bottom-color:rgba(191,56,79,.22);
  transform:rotate(-18deg);
}
.orbit-ring-two {
  inset:52px;
  border-style:dashed;
  border-color:rgba(54,34,126,.19);
  transform:rotate(24deg);
}
.orbit-angle {
  position:absolute;
  right:27px;
  top:103px;
  color:#321b79;
  font:700 13px/1 "Courier New", monospace;
}
.v15-product-shadow {
  position:absolute;
  height:22px;
  border-radius:50%;
  background:rgba(31,22,67,.22);
  filter:blur(14px);
  pointer-events:none;
}
.v15-shadow-hinge { width:50%; left:10%; top:55%; }
.v15-shadow-damper { width:29%; right:8%; bottom:9%; }

@media (max-width: 980px) {
  .v15-scene-hero .hero-experience-inner { grid-template-columns:.93fr 1.07fr; }
  .v15-floating-products .floating-hinge { width:80%; left:-2%; }
  .v15-floating-products .floating-damper { width:50%; right:-3%; }
  .v15-orbit { width:460px; height:460px; right:-2%; }
}
@media (max-width: 780px) {
  .v15-scene-hero { min-height:auto; }
  .v15-scene-hero .hero-experience-inner { grid-template-columns:1fr; min-height:auto; }
  .v15-scene-hero .hero-experience-copy { padding:54px 0 12px; }
  .v15-scene-hero h1 { font-size:clamp(48px,13vw,70px); }
  .v15-scene-hero .hero-gradient {
    background:linear-gradient(180deg,rgba(250,247,241,.99) 0%,rgba(250,247,241,.96) 44%,rgba(54,35,117,.34) 100%);
  }
  .v15-scene-hero .hero-slide img { object-position:center; opacity:.30; }
  .v15-floating-products { min-height:470px; }
  .v15-floating-products .floating-hinge { width:73%; left:1%; top:8%; }
  .v15-floating-products .floating-damper { width:43%; right:5%; bottom:5%; }
  .v15-orbit { width:390px; height:390px; right:0; top:5%; }
  .v15-scene-hero .hero-slider-controls { margin-top:35px; }
}
@media (max-width: 560px) {
  .v15-floating-products { min-height:390px; }
  .v15-floating-products .floating-hinge { width:82%; left:-5%; top:10%; }
  .v15-floating-products .floating-damper { width:49%; right:-3%; bottom:4%; }
  .v15-orbit { width:330px; height:330px; right:-8%; top:8%; }
  .orbit-angle { right:14px; top:70px; }
}


/* V16 — clean 07-style homepage using only real Uniwise product assets */
.v16-clean-hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: linear-gradient(115deg, #fbfaf8 0%, #f6f2ee 50%, #f0edf7 100%);
  border-bottom: 1px solid rgba(40,21,111,.12);
}
.v16-clean-hero .hero-slides {
  position: absolute;
  inset: 0 0 0 43%;
  width: 57%;
  z-index: 0;
  overflow: hidden;
}
.v16-clean-hero .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 1.05s ease, transform 6.5s ease;
}
.v16-clean-hero .hero-slide.is-active { opacity: 1; transform: scale(1); }
.v16-clean-hero .hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .58;
  filter: saturate(.68) contrast(.94) brightness(1.08);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.76) 25%, #000 58%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.76) 25%, #000 58%);
}
.v16-clean-hero .hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 72% 38%, rgba(255,255,255,.36), transparent 34%),
    linear-gradient(90deg, rgba(251,250,248,1) 0%, rgba(251,250,248,.98) 41%, rgba(248,245,244,.48) 66%, rgba(239,235,247,.28) 100%);
  pointer-events: none;
}
.v16-hero-grid {
  position: relative;
  z-index: 2;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(360px,.82fr) minmax(560px,1.18fr);
  align-items: center;
  gap: 42px;
  padding-block: 70px 52px;
}
.v16-hero-copy { max-width: 560px; }
.v16-clean-hero .hero-overline {
  margin: 0 0 22px;
  color: var(--brand-purple);
  font: 800 12px/1.3 "Courier New", monospace;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.v16-clean-hero h1 {
  max-width: 590px;
  margin: 0;
  color: #151036;
  font-size: clamp(58px,6.5vw,92px);
  line-height: .94;
  letter-spacing: -.065em;
}
.v16-clean-hero h1 span { display:block; color: var(--brand-purple); }
.v16-clean-hero .hero-experience-lead {
  max-width: 470px;
  margin: 25px 0 0;
  color: #666274;
  font-size: 17px;
  line-height: 1.72;
}
.v16-clean-hero .hero-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:30px; }
.v16-clean-hero .hero-primary {
  color:#fff;
  background:var(--brand-purple);
  border-color:var(--brand-purple);
}
.v16-clean-hero .hero-secondary {
  color:var(--brand-purple);
  background:rgba(255,255,255,.76);
  border-color:rgba(40,21,111,.42);
  backdrop-filter:blur(8px);
}
.v16-hero-benefits {
  display:flex;
  flex-wrap:wrap;
  gap:25px;
  margin-top:34px;
  color:#403b50;
}
.v16-hero-benefits span { display:grid; grid-template-columns:28px auto; align-items:center; gap:8px; }
.v16-hero-benefits i {
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
  border:1px solid rgba(40,21,111,.25);
  border-radius:50%;
  color:var(--brand-purple);
  font-style:normal;
}
.v16-hero-benefits strong { font-size:11px; letter-spacing:.02em; }
.v16-clean-hero .hero-slider-controls { margin-top:26px; }
.v16-clean-hero .hero-slider-controls > button {
  color:var(--brand-purple);
  background:rgba(255,255,255,.72);
  border-color:rgba(40,21,111,.24);
}
.v16-clean-hero .hero-control-line { background:rgba(40,21,111,.22); }
.v16-clean-hero .hero-dots button { background:rgba(40,21,111,.22); }
.v16-clean-hero .hero-dots button.is-active { background:var(--brand-purple); }
.v16-product-stage {
  position:relative;
  min-height:500px;
  perspective:1100px;
  transform-style:preserve-3d;
}
.v16-stage-disc {
  position:absolute;
  left:6%;
  right:2%;
  bottom:45px;
  height:190px;
  border-radius:50%;
  background:linear-gradient(180deg,rgba(255,255,255,.92),rgba(232,227,237,.56));
  border:1px solid rgba(40,21,111,.08);
  box-shadow:0 34px 70px rgba(50,35,79,.13), inset 0 1px rgba(255,255,255,.9);
  transform:rotateX(62deg);
}
.v16-product {
  position:absolute;
  display:block;
  transform-style:preserve-3d;
  transition:transform .3s ease, filter .3s ease;
  animation:v16Float 5.4s ease-in-out infinite;
}
.v16-product img {
  width:100%;
  height:100%;
  object-fit:contain;
  filter:drop-shadow(0 25px 19px rgba(22,18,43,.24)) drop-shadow(0 6px 5px rgba(22,18,43,.12));
}
.v16-product:hover { z-index:9; filter:brightness(1.035); }
.v16-hinge-a { width:305px; height:305px; left:0; top:54px; transform:rotate(-8deg); }
.v16-hinge-b { width:280px; height:280px; left:245px; top:35px; transform:rotate(7deg); animation-delay:-1.4s; }
.v16-damper-a { width:150px; height:150px; left:140px; bottom:45px; animation-delay:-2.1s; }
.v16-damper-b { width:145px; height:145px; left:290px; bottom:31px; transform:rotate(10deg); animation-delay:-3.2s; }
.v16-damper-c { width:145px; height:145px; right:8px; bottom:60px; transform:rotate(-9deg); animation-delay:-.8s; }
.v16-hinge-a:hover { transform:translateY(-8px) rotate(-5deg) scale(1.04); }
.v16-hinge-b:hover { transform:translateY(-8px) rotate(4deg) scale(1.04); }
.v16-damper-a:hover { transform:translateY(-7px) scale(1.06); }
.v16-damper-b:hover { transform:translateY(-7px) rotate(6deg) scale(1.06); }
.v16-damper-c:hover { transform:translateY(-7px) rotate(-5deg) scale(1.06); }
@keyframes v16Float { 0%,100%{translate:0 0} 50%{translate:0 -9px} }
.contact-email-list { display:grid; gap:2px; }
.office-details a { color:inherit; border-bottom:1px solid rgba(40,21,111,.18); }
.office-details a:hover { color:var(--brand-purple); border-color:var(--brand-purple); }

@media (max-width: 1050px) {
  .v16-hero-grid { grid-template-columns:.9fr 1.1fr; gap:12px; }
  .v16-hinge-a { width:265px; height:265px; left:0; }
  .v16-hinge-b { width:245px; height:245px; left:205px; }
  .v16-damper-a { left:100px; }
  .v16-damper-b { left:225px; }
}
@media (max-width: 820px) {
  .v16-clean-hero .hero-slides { inset:44% 0 0; width:100%; }
  .v16-clean-hero .hero-slide img {
    opacity:.45;
    mask-image:linear-gradient(180deg,transparent 0%,#000 42%);
    -webkit-mask-image:linear-gradient(180deg,transparent 0%,#000 42%);
  }
  .v16-clean-hero .hero-gradient { background:linear-gradient(180deg,#fbfaf8 0%,rgba(251,250,248,.96) 42%,rgba(244,240,246,.54) 100%); }
  .v16-hero-grid { min-height:auto; grid-template-columns:1fr; gap:10px; padding-block:52px 28px; }
  .v16-hero-copy { max-width:640px; }
  .v16-clean-hero h1 { font-size:clamp(54px,13vw,78px); }
  .v16-product-stage { min-height:430px; max-width:620px; width:100%; margin-inline:auto; }
}
@media (max-width: 560px) {
  .v16-hero-grid { width:min(100% - 30px, var(--wrap)); padding-top:38px; }
  .v16-clean-hero h1 { font-size:clamp(47px,15vw,66px); }
  .v16-clean-hero .hero-experience-lead { font-size:15px; }
  .v16-clean-hero .hero-actions { display:grid; }
  .v16-clean-hero .hero-actions .button { width:100%; }
  .v16-hero-benefits { gap:14px 20px; }
  .v16-product-stage { min-height:345px; }
  .v16-stage-disc { height:130px; bottom:30px; }
  .v16-hinge-a { width:190px; height:190px; left:-10px; top:45px; }
  .v16-hinge-b { width:180px; height:180px; left:130px; top:30px; }
  .v16-damper-a { width:105px; height:105px; left:48px; bottom:26px; }
  .v16-damper-b { width:100px; height:100px; left:135px; bottom:16px; }
  .v16-damper-c { width:100px; height:100px; right:0; bottom:35px; }
}

/* V18 — saved matching requests, file uploads and submission feedback */
.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}
.upload-field input[type="file"] {
  padding: 14px;
  min-height: 58px;
  background: linear-gradient(180deg, #fff, #faf8fc);
  border-style: dashed;
  cursor: pointer;
}
.upload-field small,
.form-note {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}
.upload-list {
  display: grid;
  gap: 6px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}
.upload-list li {
  padding: 8px 10px;
  border: 1px solid rgba(40,21,111,.12);
  border-radius: 8px;
  background: rgba(232,227,246,.34);
  color: var(--ink-soft);
  font-size: 11px;
  overflow-wrap: anywhere;
}
.upload-list .upload-error {
  border-color: rgba(183,35,42,.25);
  background: rgba(215,40,47,.07);
  color: #a11d24;
}
.consent-field label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.55;
}
.consent-field input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin: 2px 0 0;
  padding: 0;
  flex: 0 0 auto;
  accent-color: var(--brand-purple);
}
.consent-field a {
  color: var(--brand-purple);
  border-bottom: 1px solid rgba(40,21,111,.28);
}
.form-submit-area { gap: 10px; }
.form-submit-area .button[disabled] {
  cursor: wait;
  opacity: .7;
  transform: none;
}
.form-status {
  min-height: 22px;
  margin: 4px 0 0;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(40,21,111,.05);
  color: var(--ink-soft);
  line-height: 1.5;
}
.form-status:empty { display: none; }
.form-status[data-state="success"] {
  background: rgba(32,130,83,.09);
  color: #17663f;
}
.form-status[data-state="warning"] {
  background: rgba(184,121,13,.1);
  color: #805406;
}
.form-status[data-state="error"] {
  background: rgba(215,40,47,.09);
  color: #9c1d23;
}
.form-recovery-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.form-recovery-actions[hidden] { display: none; }
.form-recovery-actions .button { min-height: 40px; }
.form-recovery-actions .text-button { border: 0; background: transparent; color: var(--brand-purple); cursor: pointer; font-weight: 700; }

.success-page,
.privacy-page {
  min-height: 100vh;
  background: radial-gradient(circle at 80% 10%, rgba(80,63,150,.12), transparent 30%), var(--paper);
}
.simple-page-main { padding: 90px 0 110px; }
.simple-page-card {
  max-width: 840px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255,253,250,.92);
  box-shadow: var(--shadow);
}
.simple-page-card h1 { margin: 0 0 22px; font-size: clamp(42px, 6vw, 72px); line-height: 1; letter-spacing: -.05em; }
.simple-page-card h2 { margin: 34px 0 12px; font-size: 24px; }
.simple-page-card p,
.simple-page-card li { color: var(--muted); line-height: 1.75; }
.simple-page-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.privacy-page .simple-page-card { max-width: 920px; }

@media (max-width: 600px) {
  .form-recovery-actions { align-items: stretch; }
  .form-recovery-actions > * { width: 100%; }
}


/* V28 Engineering, product detail and SEO pages */
.catalog-sku-link{color:inherit;text-decoration:none}.catalog-sku-link:hover{text-decoration:underline}.catalog-product-actions{gap:12px;flex-wrap:wrap}.catalog-product-actions a.text-button{display:inline-flex;align-items:center}.engineering-teaser-v28,.custom-development-teaser{padding:68px 0}.engineering-teaser-v28{background:linear-gradient(135deg,#f4f0ea 0%,#f5f7fb 52%,#edf5f4 100%)}.custom-development-teaser{background:#fff}.engineering-teaser-grid,.custom-development-grid{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(320px,.8fr);gap:32px;align-items:center}.engineering-tool-card,.custom-development-card{background:rgba(255,255,255,.86);border:1px solid rgba(34,45,69,.12);border-radius:28px;padding:26px;box-shadow:0 22px 60px rgba(24,36,70,.08)}.engineering-tool-card h3,.custom-development-card h3{margin:0 0 10px}.engineering-tool-points{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin:22px 0}.engineering-tool-points span{padding:13px 14px;border-radius:16px;background:#fff;border:1px solid rgba(35,45,70,.1);font-size:.9rem}.company-role-note-v28{margin-top:18px;padding:16px 18px;border-radius:18px;background:#f8f8fb;border:1px solid rgba(35,45,70,.1);color:#555d68}.custom-torque-note{margin:18px 0 28px;padding:16px 18px;border-left:3px solid #2e1b7b;background:#f7f5fb;border-radius:0 16px 16px 0;color:#433b5b}.section-jump-links{flex-wrap:wrap}.catalog-product-actions{display:flex}.product-page-main{padding-top:24px}.product-breadcrumbs{font-size:.9rem;color:#777;margin:14px 0 30px}.product-breadcrumbs a{color:#2e1b7b}.product-detail-hero{display:grid;grid-template-columns:minmax(0,1fr) minmax(360px,.85fr);gap:50px;align-items:center;padding:36px 0 76px}.product-detail-copy h1{font-size:clamp(3rem,7vw,6.4rem);line-height:.9;margin:.2rem 0 1rem}.product-detail-name{font-size:1.3rem;font-weight:700;color:#2e1b7b}.product-detail-lead{font-size:1.08rem;max-width:700px}.product-detail-image{min-height:440px;display:flex;align-items:center;justify-content:center;background:radial-gradient(circle at 50% 52%,#fff 0,#f9f9fb 52%,#f0f0f3 100%);border-radius:32px;overflow:hidden}.product-detail-image img{width:86%;height:390px;object-fit:contain;filter:drop-shadow(0 28px 24px rgba(26,28,34,.16))}.product-detail-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:28px}.product-spec-section{padding:66px 0;background:#fff;border-top:1px solid #ece9e5;border-bottom:1px solid #ece9e5}.product-spec-layout{display:grid;grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr);gap:48px}.product-spec-table-static{margin:0}.product-spec-table-static .row{display:grid;grid-template-columns:180px 1fr;gap:20px;padding:14px 0;border-bottom:1px solid #ece9e5}.product-spec-table-static dt{font-size:.78rem;text-transform:uppercase;letter-spacing:.08em;color:#79717f}.product-spec-table-static dd{margin:0;font-weight:600}.product-gallery-section{padding:70px 0}.product-gallery-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.product-gallery-card{margin:0;background:#fff;border:1px solid #e4e1de;border-radius:24px;padding:16px;overflow:hidden}.product-gallery-card img{width:100%;height:320px;object-fit:contain;background:#fff;border-radius:16px}.product-gallery-card figcaption{font-size:.9rem;font-weight:700;margin-top:12px}.product-source-note{font-size:.88rem;color:#777;margin-top:18px}.product-engineering-note{padding:58px 0;background:linear-gradient(120deg,#f3f0eb,#f4f5fb)}.product-engineering-note .wrap{display:flex;align-items:center;justify-content:space-between;gap:30px}.product-engineering-note h2{margin-top:0}.engineering-hero-v28{padding:76px 0;background:linear-gradient(135deg,#faf8f5,#f6f7fb 58%,#eff8f6)}.engineering-hero-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(420px,.9fr);gap:46px;align-items:center}.engineering-hero-v28 h1{font-size:clamp(2.9rem,5vw,5.6rem);line-height:.94;margin:.4rem 0 1.2rem}.engineering-badges{display:flex;gap:10px;flex-wrap:wrap;margin:20px 0}.engineering-badges span{background:#fff;border:1px solid #dedde6;padding:9px 12px;border-radius:999px;font-size:.84rem;font-weight:700}.motion-explainer{background:#fff;border:1px solid #dedde5;border-radius:28px;padding:20px;box-shadow:0 24px 70px rgba(30,40,70,.08)}.motion-explainer svg{width:100%;height:auto}.motion-lid{transform-origin:110px 310px;animation:uniwiseLid 5.5s ease-in-out infinite}@keyframes uniwiseLid{0%,100%{transform:rotate(-4deg)}45%{transform:rotate(34deg)}70%{transform:rotate(34deg)}}.engineering-presets{padding:52px 0;background:#fff}.preset-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.preset-button{border:1px solid #ddd9e0;background:#fff;border-radius:18px;padding:16px;text-align:left;cursor:pointer;transition:.18s ease}.preset-button:hover,.preset-button.active{border-color:#2e1b7b;background:#f7f5fd;box-shadow:0 12px 30px rgba(46,27,123,.08)}.preset-button strong{display:block}.preset-button span{font-size:.84rem;color:#777}.calculator-section-v28{padding:68px 0}.calculator-layout-v28{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr);gap:24px;align-items:start}.calculator-panel{background:#fff;border:1px solid #e1dfe4;border-radius:26px;padding:24px;box-shadow:0 18px 50px rgba(35,39,58,.06)}.calculator-form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.calculator-field{display:flex;flex-direction:column;gap:6px}.calculator-field.full{grid-column:1/-1}.calculator-field label{font-weight:700;font-size:.92rem}.calculator-field input,.calculator-field select{width:100%;border:1px solid #d8d5db;border-radius:12px;padding:12px 13px;background:#fff;font:inherit}.calculator-field small{font-size:.77rem;color:#7d7781}.cg-quick-buttons{display:flex;gap:8px;flex-wrap:wrap}.cg-quick-buttons button{border:1px solid #d7d4db;background:#fff;border-radius:999px;padding:8px 12px;cursor:pointer}.cg-quick-buttons button.active{background:#2e1b7b;color:#fff;border-color:#2e1b7b}.result-grid-v28{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin:18px 0}.result-kpi{background:#f8f8fb;border:1px solid #e6e4e8;border-radius:18px;padding:14px}.result-kpi span{display:block;font-size:.75rem;color:#777}.result-kpi strong{font-size:1.3rem}.screening-note{background:#fff7dc;border:1px solid #f1d887;color:#6f5411;padding:14px;border-radius:16px;font-size:.88rem}.range-list{margin-top:22px}.range-row{display:grid;grid-template-columns:1fr auto auto;gap:12px;align-items:center;padding:11px 0;border-bottom:1px solid #ece9ee}.range-row .tag{padding:5px 8px;border-radius:999px;font-size:.72rem;font-weight:700;background:#eee}.range-row .tag.match{background:#e9f7f1;color:#146348}.range-row .tag.low{background:#fff2d9;color:#8c6110}.range-row .tag.high{background:#f2ebfa;color:#6c4797}.calculator-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}.engineering-guide-section{padding:70px 0;background:#fff}.engineering-guide-grid{display:grid;grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);gap:36px}.toilet-diagram{background:#fbfbfd;border:1px solid #e7e5e9;border-radius:26px;padding:18px}.toilet-diagram svg{width:100%;height:auto}.info-card-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.info-card{border:1px solid #e4e2e6;background:#fff;border-radius:18px;padding:16px}.formula-box-v28{display:inline-block;margin:12px 0;padding:13px 16px;border-radius:14px;background:#f4f2fb;color:#2e1b7b;font-size:1.15rem;font-weight:800}.custom-support-v28{padding:68px 0;background:linear-gradient(125deg,#f4f1ec,#f2f4fa)}.custom-support-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:32px;align-items:center}.custom-support-card{background:#fff;border-radius:26px;padding:24px;border:1px solid #e3e0e5}.support-list{display:grid;gap:10px;margin-top:16px}.support-list span:before{content:'✓';margin-right:9px;color:#0c7e6f;font-weight:800}.engineering-faq-v28{padding:70px 0}.faq-grid-v28{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.faq-grid-v28 article{background:#fff;border:1px solid #e5e2e7;border-radius:20px;padding:18px}.toilet-calculator-hero{padding:72px 0;background:linear-gradient(135deg,#faf7f1,#f3f6fb)}.dual-calculator-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px}.component-calculator{background:#fff;border:1px solid #e4e0e5;border-radius:24px;padding:22px}.combined-result{margin-top:18px;padding:18px;border-radius:20px;background:#f5f3fb}.application-seo-hero{padding:72px 0;background:linear-gradient(135deg,#faf8f5,#f3f6fb)}.application-seo-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:38px;align-items:center}.application-seo-image img{border-radius:28px;width:100%;height:420px;object-fit:cover}.application-content{padding:70px 0}.application-content-grid{display:grid;grid-template-columns:1fr 1fr;gap:28px}.application-content .info-card{height:100%}.seo-intent-list{display:flex;flex-wrap:wrap;gap:8px;margin-top:14px}.seo-intent-list span{font-size:.77rem;padding:6px 9px;border-radius:999px;background:#f3f1f5;color:#655d6a}.matching-calculator-context{grid-column:1/-1;background:#f5f3fb;border:1px solid #e0d9f2;border-radius:18px;padding:16px;display:none}.matching-calculator-context.is-visible{display:block}.matching-calculator-context strong{display:block;margin-bottom:8px}.matching-calculator-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}.matching-calculator-grid span{font-size:.8rem;color:#777}.matching-calculator-grid b{display:block;color:#292135}.engineering-mini-link{margin-top:18px;display:inline-flex;align-items:center;gap:8px;font-weight:700;color:#2e1b7b}.special-torque-pill{display:inline-flex;align-items:center;padding:7px 10px;border-radius:999px;background:#f0eef8;color:#2e1b7b;font-size:.75rem;font-weight:700;margin-top:8px}
@media(max-width:980px){.engineering-teaser-grid,.custom-development-grid,.product-detail-hero,.product-spec-layout,.engineering-hero-grid,.calculator-layout-v28,.engineering-guide-grid,.custom-support-grid,.application-seo-grid,.application-content-grid{grid-template-columns:1fr}.product-gallery-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.preset-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.product-engineering-note .wrap{align-items:flex-start;flex-direction:column}}
@media(max-width:640px){.engineering-tool-points,.result-grid-v28,.info-card-grid,.faq-grid-v28,.dual-calculator-grid,.calculator-form-grid,.matching-calculator-grid{grid-template-columns:1fr}.preset-grid,.product-gallery-grid{grid-template-columns:1fr}.product-detail-image{min-height:320px}.product-detail-image img{height:300px}.product-spec-table-static .row{grid-template-columns:1fr;gap:4px}.range-row{grid-template-columns:1fr auto}.range-row a{grid-column:1/-1}.engineering-hero-v28 h1{font-size:2.7rem}}

/* V29: simplified matching + SEO intent sections */
.matching-intent-strip{padding:34px 0;background:linear-gradient(120deg,#f6f1eb 0%,#f2f7f5 52%,#eef4f8 100%);border-top:1px solid rgba(20,80,74,.08);border-bottom:1px solid rgba(20,80,74,.08)}
.matching-intent-inner{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:32px;align-items:center}.matching-intent-inner h2{margin:.25rem 0 .55rem;font-size:clamp(1.6rem,2.4vw,2.5rem)}.matching-intent-inner p{max-width:820px;color:#5d655f}.matching-intent-tags,.matching-guide-points{display:flex;flex-wrap:wrap;gap:8px;margin-top:14px}.matching-intent-tags span,.matching-guide-points span{padding:7px 11px;border:1px solid rgba(24,116,103,.18);border-radius:999px;background:rgba(255,255,255,.74);font-size:.78rem;color:#26675e}.matching-intent-actions{display:flex;flex-direction:column;align-items:flex-start;gap:12px;min-width:210px}.matching-seo-guide,.matching-faq-section,.custom-seo-summary{padding:64px 0}.matching-seo-guide{background:#fff}.matching-seo-grid{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(280px,.65fr);gap:42px;align-items:start}.matching-guide-card{padding:26px;border:1px solid #dfe6e1;border-radius:24px;background:#f7faf8;box-shadow:0 18px 45px rgba(32,63,56,.06)}.matching-guide-card ul{padding-left:1.2rem;margin:1rem 0 1.4rem}.matching-guide-card li{margin:.55rem 0}.matching-search-intent{font-size:.88rem;color:#6a716d;border-left:3px solid #20756b;padding-left:12px;margin-top:18px}.matching-faq-section{background:#f7f5f1}.matching-faq-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;margin-top:22px}.matching-faq-grid article{padding:22px;border:1px solid #e4e0d8;border-radius:20px;background:#fff}.matching-faq-grid h3{margin:.1rem 0 .6rem;font-size:1.05rem}.product-matching-strip{padding:40px 0;background:linear-gradient(135deg,#f7f4ef,#eef6f3)}.product-matching-strip>.wrap{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:30px;align-items:center}.product-matching-strip h2{margin:.25rem 0 .55rem}.product-matching-actions{display:flex;flex-direction:column;gap:12px;align-items:flex-start}.custom-seo-summary{background:#f8faf9}.custom-seo-summary h2{max-width:760px}.custom-seo-summary p{max-width:950px;color:#5e6661}
@media(max-width:900px){.matching-intent-inner,.matching-seo-grid,.product-matching-strip>.wrap{grid-template-columns:1fr}.matching-intent-actions,.product-matching-actions{flex-direction:row;flex-wrap:wrap}.matching-faq-grid{grid-template-columns:1fr}}


/* V30 — dimension matching */
.catalog-product-size{margin:.25rem 0 .7rem;color:#24436f;font-weight:700;font-size:.88rem;line-height:1.35}.size-match-hero{padding:70px 0 48px;background:radial-gradient(circle at 80% 20%,#eef4ff 0,transparent 42%),linear-gradient(135deg,#fbfaf7,#f6f8fc)}.size-match-hero-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:36px;align-items:center}.size-match-hero h1{font-size:clamp(2.3rem,5vw,4.6rem);max-width:850px}.size-match-visual{background:#fff;border:1px solid #e1e6ee;border-radius:28px;padding:28px;box-shadow:0 20px 60px rgba(31,48,79,.08)}.size-ruler{display:flex;align-items:flex-end;gap:12px;flex-wrap:wrap;padding:24px 8px 18px;border-bottom:2px solid #163b8d;color:#163b8d}.size-ruler strong{font-size:clamp(1.15rem,2.5vw,2rem)}.size-ruler span{font-size:2.6rem;font-weight:800}.size-ruler small{margin-left:auto;color:#677184}.size-search-panel{background:#fff;border:1px solid #e1e6ee;border-radius:28px;padding:22px;box-shadow:0 18px 50px rgba(31,48,79,.07)}.size-search-top,.size-subfields{display:grid;grid-template-columns:2fr 1fr 1fr;gap:14px}.size-subfields{grid-template-columns:1fr 1fr auto auto;margin-top:14px;align-items:end}.size-field{display:flex;flex-direction:column;gap:6px}.size-field label{font-weight:750;color:#182238}.size-field input,.size-field select{width:100%;padding:12px 14px;border:1px solid #cfd6e0;border-radius:13px;font:inherit;background:#fff}.size-chip-row{display:flex;flex-wrap:wrap;gap:9px;margin-top:18px}.size-chip{border:1px solid #ced7e5;background:#f8faff;color:#173d8e;border-radius:999px;padding:8px 12px;font-weight:700;cursor:pointer}.size-chip:hover{background:#edf3ff}.size-results-line{display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap;margin-top:18px;padding-top:16px;border-top:1px solid #e6e9ef;color:#667084}.size-results-line strong{color:#17233b}.size-products-section{padding-top:10px}.size-product-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.size-product-card{background:#fff;border:1px solid #e0e5ed;border-radius:24px;overflow:hidden;box-shadow:0 14px 44px rgba(31,48,79,.055);display:flex;flex-direction:column}.size-product-card[hidden]{display:none}.size-product-image{height:230px;padding:20px;display:flex;align-items:center;justify-content:center;background:linear-gradient(180deg,#fff,#fafbfc)}.size-product-image img{max-height:100%;max-width:100%;object-fit:contain}.size-product-content{padding:18px;border-top:1px solid #e8ebf0}.size-product-content h3{font-size:1.45rem;margin:.15rem 0}.size-product-content h3 a{color:#151c2a}.size-primary{display:block;margin:11px 0;color:#153e91}.size-product-meta{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:10px}.size-product-meta span{font-size:.79rem;background:#eef3ff;color:#24427c;border-radius:999px;padding:5px 9px}.size-mini-list{padding-left:18px;margin:10px 0 15px;color:#596276;font-size:.88rem}.size-mini-list li{margin:4px 0}.size-no-results{text-align:center;background:#fff;border:1px dashed #bcc8da;border-radius:24px;padding:38px}.size-intent-section{background:#f3f6fb}.size-intent-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}.size-intent-grid article{background:#fff;border:1px solid #e0e6ef;border-radius:20px;padding:20px}.size-intent-grid h3{font-size:1.1rem}.size-fit-inline{margin:22px 0;background:linear-gradient(135deg,#f5f8ff,#fbfcff);border:1px solid #dce5f4;border-radius:24px;padding:22px}.size-dimension-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:9px;margin:16px 0}.size-dimension-list div{background:#fff;border:1px solid #e2e7ef;border-radius:14px;padding:11px 13px;color:#4e596e}.size-fit-actions{display:flex;gap:10px;flex-wrap:wrap}.matching-size-banner{margin:22px 0;background:linear-gradient(135deg,#eff5ff,#fff);border:1px solid #d5e1f5;border-radius:24px;padding:20px;display:flex;align-items:center;justify-content:space-between;gap:20px}.homepage-size-strip{background:#f3f6fb}.homepage-size-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.homepage-size-card{background:#fff;border:1px solid #e1e6ee;border-radius:20px;padding:18px}.homepage-size-card strong{display:block;color:#143c8d;font-size:1.1rem;margin-bottom:5px}
@media(max-width:980px){.size-match-hero-grid{grid-template-columns:1fr}.size-product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.size-intent-grid,.homepage-size-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.size-search-top,.size-subfields{grid-template-columns:1fr 1fr}.size-field-wide{grid-column:1/-1}}
@media(max-width:640px){.size-product-grid,.size-intent-grid,.homepage-size-grid,.size-search-top,.size-subfields,.size-dimension-list{grid-template-columns:1fr}.matching-size-banner{align-items:flex-start;flex-direction:column}}

/* UNIWISE V34 - restrained, product-first visual refinements.
   Kept separate so the original V33 stylesheet remains easy to compare. */
:root {
  --ink:#191c2b; --ink-soft:#343a4a; --muted:#626879;
  --paper:#ffffff; --paper-deep:#f3f4f8; --white:#ffffff;
  --brand-purple:#302078; --green:#302078; --green-dark:#24165f;
  --line:#e3e5ed; --shadow:0 10px 28px rgba(23,26,48,.06);
  --wrap:1200px; --radius-lg:16px; --radius-md:12px;
}
.ui-v34 { background:#fff; color:var(--ink); font-family:Arial,Helvetica,sans-serif; font-size:16px; line-height:1.6; }
.ui-v34 [hidden] { display:none !important; }
.ui-v34 *, .ui-v34 *::before, .ui-v34 *::after { box-sizing:border-box; }
.ui-v34 h1,.ui-v34 h2,.ui-v34 h3 { color:var(--ink); text-wrap:balance; }
.ui-v34 h1 { font-size:clamp(34px,4.5vw,56px); line-height:1.12; letter-spacing:-.04em; }
.ui-v34 h2 { font-size:clamp(27px,3vw,38px); line-height:1.2; letter-spacing:-.035em; }
.ui-v34 h3 { line-height:1.3; letter-spacing:-.015em; }
.ui-v34 p { line-height:1.65; }
.ui-v34 a,.ui-v34 button { -webkit-tap-highlight-color:transparent; }
.ui-v34 a:focus-visible,.ui-v34 button:focus-visible,.ui-v34 input:focus-visible,.ui-v34 select:focus-visible,.ui-v34 textarea:focus-visible,.ui-v34 summary:focus-visible { outline:3px solid #7868be; outline-offset:4px; }
.ui-v34 input,.ui-v34 select,.ui-v34 textarea { min-width:0; }
.ui-v34 .wrap { width:min(var(--wrap),calc(100% - 64px)); }
.ui-v34 section[id],.ui-v34 main[id] { scroll-margin-top:100px; }
.ui-v34 .section { padding-block:76px; }
.ui-v34 .eyebrow,.ui-v34 .hero-overline { color:var(--brand-purple); font-family:Arial,Helvetica,sans-serif; font-size:11px; font-weight:700; letter-spacing:.14em; line-height:1.4; margin-bottom:16px; }
.ui-v34 .site-header { background:rgba(255,255,255,.97); border-bottom:1px solid var(--line); box-shadow:none; }
.ui-v34 .site-header .navbar { min-height:84px; gap:30px; }
.ui-v34 .site-header .brand-v9 { min-width:110px; }
.ui-v34 .site-header .brand-v9 img { width:118px !important; height:64px !important; object-fit:contain; }
.ui-v34 .desktop-nav { gap:26px; font-size:13px; font-weight:600; }
.ui-v34 .desktop-nav > a { white-space:nowrap; }
.ui-v34 .desktop-nav > a[aria-current=page]:not(.button) { color:var(--brand-purple); }
.ui-v34 .desktop-nav > a[aria-current=page]::after { right:0; background:var(--brand-purple); height:2px; }
.ui-v34 .button { border-radius:8px; min-height:46px; padding:11px 19px; line-height:1.3; font-size:13px; box-shadow:none; transform:none; }
.ui-v34 .button:hover { transform:none; }
.ui-v34 .button.dark { background:var(--brand-purple); border-color:var(--brand-purple); color:#fff; }
.ui-v34 .button.dark:hover { background:var(--green-dark); }
.ui-v34 .button:disabled { cursor:default; opacity:.7; }
.ui-v34 .text-button,.ui-v34 .text-link { font-size:13px; line-height:1.5; font-weight:700; color:var(--brand-purple); }
.ui-v34 .text-button { min-height:40px; }
.ui-v34 .hero-actions { gap:12px; margin-top:26px; }
.ui-v34 .hero-secondary { background:#fff; color:var(--brand-purple); border:1px solid #ccc7e0; }
/* Homepage: stable product message, real transparent assets, subtle scene. */
.ui-v34 .v16-clean-hero { background:#fafafe; }
.ui-v34 .v16-hero-grid { grid-template-columns:1.05fr .95fr; min-height:570px; gap:34px; padding-block:58px 48px; }
.ui-v34 .v16-hero-copy { max-width:620px; }
.ui-v34 .v16-clean-hero h1 { font-size:clamp(40px,4.1vw,58px); line-height:1.1; letter-spacing:-.045em; max-width:none; margin:0 0 24px; }
.ui-v34 .v16-clean-hero h1 span { color:var(--brand-purple); }
.ui-v34 .v16-clean-hero .hero-experience-lead { font-size:16px; line-height:1.75; max-width:480px; margin:0; color:var(--muted); }
.ui-v34 .v16-clean-hero .hero-slide img { opacity:.16; }
.ui-v34 .v16-clean-hero .hero-gradient { background:linear-gradient(90deg,#fafafe 0%,rgba(250,250,254,.93) 43%,rgba(249,248,253,.52) 100%); }
.ui-v34 .v16-clean-hero .hero-primary,.ui-v34 .v16-clean-hero .hero-secondary { border-radius:8px; min-height:48px; font-size:14px; }
.ui-v34 .hero-size-link { display:inline-flex; align-items:center; gap:12px; font-size:13px; font-weight:700; color:var(--brand-purple); margin-top:20px; }
.ui-v34 .v16-hero-benefits { margin-top:26px; gap:20px; }
.ui-v34 .v16-hero-benefits span { font-size:11px; gap:7px; color:#616576; }
.ui-v34 .v16-hero-benefits i { font-style:normal; }
.ui-v34 .hero-slider-controls { margin-top:24px; gap:12px; }
.ui-v34 .hero-slider-controls > button { width:34px; height:34px; }
.ui-v34 .v16-product-stage { min-height:410px; width:100%; }
.ui-v34 .v16-product { animation:none; }
.ui-v34 .v16-product img { filter:drop-shadow(0 10px 10px rgba(22,18,43,.13)); }
.ui-v34 .v16-hinge-a { width:230px; height:230px; top:16px; left:0; }
.ui-v34 .v16-hinge-b { width:280px; height:280px; top:-6px; left:auto; right:-4px; }
.ui-v34 .v16-damper-a { width:130px; height:130px; left:58px; bottom:88px; }
.ui-v34 .v16-damper-b { width:130px; height:130px; left:210px; bottom:78px; }
.ui-v34 .v16-damper-c { width:136px; height:136px; right:-8px; bottom:86px; }
.ui-v34 .stage-caption { position:absolute; left:20px; right:10px; bottom:4px; border-top:1px solid #dedbe9; padding-top:17px; display:flex; justify-content:space-between; gap:16px; align-items:center; }
.ui-v34 .stage-caption span { font-size:9px; letter-spacing:.12em; color:#797486; }
.ui-v34 .stage-caption strong { font-size:12px; font-weight:600; color:#575165; }
.ui-v34 .buyer-paths { background:#fff; border-block:1px solid var(--line); }
.ui-v34 .buyer-path-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); }
.ui-v34 .buyer-path-grid > a { display:flex; align-items:center; gap:15px; padding:26px 22px; border-right:1px solid var(--line); }
.ui-v34 .buyer-path-grid > a:first-child { padding-left:0; }
.ui-v34 .buyer-path-grid > a:last-child { border:0; }
.ui-v34 .buyer-path-grid > a:hover strong { color:var(--brand-purple); }
.ui-v34 .buyer-path-grid > a > span:last-child { margin-left:auto; }
.ui-v34 .path-number { color:#938baf; font-size:12px; }
.ui-v34 .buyer-path-grid strong { display:block; font-size:15px; line-height:1.4; }
.ui-v34 .buyer-path-grid small { display:block; font-size:11px; color:var(--muted); margin-top:5px; }
.ui-v34 .company-profile-grid { grid-template-columns:1fr 1fr; gap:62px; align-items:center; }
.ui-v34 .company-building-card { min-height:0; border-radius:14px; box-shadow:none; }
.ui-v34 .company-building-card img { height:360px; object-fit:cover; object-position:center; }
.ui-v34 .company-profile-copy h2 { font-size:38px; margin-block:0 20px; }
.ui-v34 .company-profile-text p { font-size:14px; line-height:1.8; margin:0 0 16px; color:var(--muted); }
.ui-v34 .company-profile-points { gap:10px; margin-block:22px; }
.ui-v34 .company-profile-points span { font-size:12px; }
.ui-v34 .proof-bar { background:#f7f7fb; border-block:1px solid var(--line); }
.ui-v34 .proof-item { padding-block:25px; }
.ui-v34 .proof-item strong { font-size:21px; }
.ui-v34 .proof-item span { font-size:11px; color:var(--muted); }
.ui-v34 .application-card,.ui-v34 .custom-development-card,.ui-v34 .info-card { border-radius:12px; border:1px solid var(--line); box-shadow:none; }
.ui-v34 #applications { background:#fff; }
.ui-v34 .application-image { height:180px; }
.ui-v34 .application-copy { padding:20px; }
.ui-v34 .application-copy h3 { font-size:18px; }
.ui-v34 .application-copy p { font-size:13px; }
.ui-v34 .custom-development-teaser { padding:58px 0; background:#f7f7fb; }
.ui-v34 .custom-development-grid { gap:42px; }
.ui-v34 .custom-development-grid h2 { font-size:30px; }
.ui-v34 .custom-development-grid p { font-size:14px; color:var(--muted); }
.ui-v34 .custom-development-card { padding:26px; background:#fff; }
.ui-v34 .custom-development-card h3 { font-size:20px; }
.ui-v34 .section.dark { background:#24203b; color:#fff; }
.ui-v34 .section.dark h2,.ui-v34 .section.dark h3 { color:#fff; }
.ui-v34 .section.dark .eyebrow { color:#c4bddd; }
.ui-v34 .process-step { min-height:180px; padding:22px; border-color:rgba(255,255,255,.2); }
.ui-v34 .factory-photo { border-radius:10px; box-shadow:none; }
/* Catalog and product details: specifications visible before another click. */
.ui-v34 .catalog-showcase-hero { background:#fafafe; border-bottom:1px solid var(--line); }
.ui-v34 .catalog-showcase-grid { min-height:430px; gap:48px; padding-block:38px; grid-template-columns:1fr 1fr; }
.ui-v34 .catalog-showcase-copy h1 { font-size:54px; line-height:1.12; margin-bottom:20px; }
.ui-v34 .catalog-showcase-copy > p:not(.hero-overline) { font-size:16px; line-height:1.7; max-width:500px; }
.ui-v34 .catalog-preview { min-height:330px; height:330px; border-radius:16px; }
.ui-v34 .catalog-preview-product { max-height:270px; filter:drop-shadow(0 12px 12px rgba(22,18,43,.12)); }
.ui-v34 .catalog-preview-drawing { opacity:.07; }
.ui-v34 .catalog-preview-shadow,.ui-v34 .catalog-preview-glow { opacity:.25; }
.ui-v34 .catalog-preview-label { bottom:0; }
.ui-v34 .catalog-products-section { padding-top:38px; background:#fff; }
.ui-v34 .custom-torque-note { padding:16px 20px; margin-bottom:22px; border-radius:10px; background:#f7f7fb; border-color:var(--line); font-size:13px; line-height:1.65; }
.ui-v34 .catalog-products-heading h2 { font-size:30px; margin:0 0 12px; }
.ui-v34 .catalog-products-heading .section-intro { font-size:14px; max-width:640px; }
.ui-v34 .motion-explainer { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); border:1px solid var(--line); border-radius:10px; margin-bottom:32px; }
.ui-v34 .motion-explainer > div { padding:16px 20px; border-right:1px solid var(--line); }
.ui-v34 .motion-explainer > div:last-child { border:0; }
.ui-v34 .motion-explainer strong { display:block; font-size:13px; margin-bottom:4px; }
.ui-v34 .motion-explainer span { display:block; font-size:12px; color:var(--muted); }
.ui-v34 .catalog-search-row { display:grid; grid-template-columns:auto minmax(200px,420px) 1fr; gap:16px; align-items:center; padding:20px 0 6px; }
.ui-v34 .catalog-search-row label { font-size:13px; font-weight:700; }
.ui-v34 .catalog-search-row input { background:#fff; border:1px solid #ccd0dc; border-radius:8px; min-height:44px; padding:10px 13px; font-size:14px; width:100%; }
.ui-v34 #catalogCount { justify-self:end; font-size:12px; color:var(--muted); }
.ui-v34 .catalog-filter-tabs { flex-wrap:wrap; margin:18px 0 25px; gap:8px; }
.ui-v34 .catalog-filter-button { min-height:40px; padding:8px 12px; border-radius:7px; font-size:12px; border:1px solid var(--line); background:#fff; }
.ui-v34 .catalog-filter-button.is-active { background:var(--brand-purple); color:#fff; border-color:var(--brand-purple); }
.ui-v34 .catalog-product-grid { grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px; }
.ui-v34 .catalog-product-card { background:#fff; border-radius:12px; border:1px solid var(--line); box-shadow:none; overflow:hidden; transition:border-color .18s; }
.ui-v34 .catalog-product-card:hover,.ui-v34 .catalog-product-card.is-previewed { transform:none; border-color:#afa6ce; box-shadow:0 5px 18px rgba(30,24,64,.04); }
.ui-v34 .catalog-product-image { height:215px; min-height:215px; aspect-ratio:auto; background:#fafafe; border-radius:0; }
.ui-v34 .catalog-product-image::before { display:none; }
.ui-v34 .catalog-product-image img { width:100%; height:100%; padding:24px; object-fit:contain; filter:drop-shadow(0 6px 6px rgba(20,15,40,.10)); }
.ui-v34 .catalog-product-body { padding:20px; }
.ui-v34 .catalog-product-family { font-size:10px; text-transform:uppercase; letter-spacing:.09em; color:#6d6680; }
.ui-v34 .catalog-product-body h3 { font-size:24px; margin:5px 0 7px; }
.ui-v34 .catalog-product-body > p { min-height:0; margin:0 0 16px; font-size:12px; color:var(--muted); }
.ui-v34 .catalog-key-specs { display:grid; gap:10px; padding-block:14px; border-top:1px solid var(--line); }
.ui-v34 .catalog-key-specs span { display:grid; grid-template-columns:77px 1fr; gap:12px; align-items:baseline; }
.ui-v34 .catalog-key-specs small { font-size:11px; color:var(--muted); }
.ui-v34 .catalog-key-specs strong { font-size:12px; line-height:1.6; font-weight:600; }
.ui-v34 .catalog-product-actions { display:flex; justify-content:space-between; gap:12px; padding-top:8px; border-top:1px solid var(--line); flex-wrap:wrap; }
.ui-v34 .catalog-product-actions .text-button { font-size:12px; padding:4px 0; background:transparent; }
.ui-v34 .catalog-empty { grid-column:1/-1; padding:40px; border:1px dashed #bab3ce; border-radius:12px; }
.ui-v34 .product-page-main { background:#fff; }
.ui-v34 .product-detail-hero { padding:36px 0 48px; grid-template-columns:1fr 1fr; gap:52px; }
.ui-v34 .product-detail-copy h1 { font-size:52px; margin-bottom:14px; }
.ui-v34 .product-detail-name { font-size:20px; }
.ui-v34 .product-detail-lead { font-size:15px; color:var(--muted); }
.ui-v34 .product-detail-image { min-height:360px; border-radius:14px; background:#fafafe; border:1px solid var(--line); box-shadow:none; }
.ui-v34 .product-detail-image img { height:310px; }
.ui-v34 .product-at-a-glance { display:grid; gap:12px; margin:24px 0; padding:18px 0; border-block:1px solid var(--line); }
.ui-v34 .product-at-a-glance div { display:grid; grid-template-columns:135px 1fr; gap:15px; }
.ui-v34 .product-at-a-glance dt { font-size:12px; color:var(--muted); }
.ui-v34 .product-at-a-glance dd { margin:0; font-size:14px; font-weight:600; }
.ui-v34 .motion-caution { padding:14px 16px; background:#f7f5fc; border-left:3px solid #8674b3; font-size:13px; color:#514867; margin-top:20px; }
.ui-v34 .product-spec-section { padding:52px 0; background:#f7f7fb; }
.ui-v34 .product-spec-layout { grid-template-columns: .8fr 1.2fr; gap:48px; }
.ui-v34 .product-spec-layout > div p { font-size:14px; }
.ui-v34 .product-spec-table-static { border-radius:12px; box-shadow:none; }
.ui-v34 .product-spec-table-static .row { padding:13px 18px; }
.ui-v34 .product-spec-table-static dt,.ui-v34 .product-spec-table-static dd { font-size:13px; }
.ui-v34 .size-fit-inline { margin-block:36px; border-radius:12px; background:#fff; border-color:var(--line); padding:28px; }
.ui-v34 .size-dimension-list div { border-radius:7px; font-size:13px; }
.ui-v34 .product-gallery-section { padding-block:36px 54px; }
.ui-v34 .product-gallery-grid { grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.ui-v34 .product-gallery-card { border-radius:10px; border:1px solid var(--line); box-shadow:none; }
.ui-v34 .product-source-note { font-size:12px; color:var(--muted); margin-top:20px; }
.ui-v34 .procurement-section { padding-bottom:50px; }
.ui-v34 .procurement-panel { border:1px solid var(--line); border-radius:12px; padding:30px; background:#fafafe; }
.ui-v34 .procurement-panel h2 { font-size:28px; margin:0 0 24px; }
.ui-v34 .procurement-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:28px; margin-bottom:14px; }
.ui-v34 .procurement-grid strong { font-size:14px; }
.ui-v34 .procurement-grid p { font-size:13px; color:var(--muted); }
.ui-v34 .product-engineering-note { background:#f3f1f9; padding-block:44px; }
.ui-v34 .product-engineering-note h2 { font-size:28px; }
.ui-v34 .product-engineering-note p { font-size:14px; }
/* Dimension finder */
.ui-v34 .size-match-hero { padding:48px 0; background:#fafafe; border-bottom:1px solid var(--line); }
.ui-v34 .size-match-hero-grid { grid-template-columns:1.15fr .85fr; gap:44px; }
.ui-v34 .size-match-hero h1 { font-size:44px; }
.ui-v34 .size-match-hero p { font-size:14px; color:var(--muted); }
.ui-v34 .size-match-visual { padding:24px; border-radius:12px; box-shadow:none; background:#fff; }
.ui-v34 .size-ruler { gap:12px; padding:10px 0 16px; border-color:var(--brand-purple); color:var(--brand-purple); }
.ui-v34 .size-ruler strong { font-size:21px; }
.ui-v34 .badge { background:#f1eff8; color:#5a4d7b; font-size:10px; }
.ui-v34 .size-search-panel { margin-block:30px; padding:24px; border-radius:12px; border-color:var(--line); box-shadow:none; }
.ui-v34 .size-search-top { grid-template-columns:1.5fr 1fr .8fr 1.2fr; gap:14px; }
.ui-v34 .size-subfields { grid-template-columns:1fr 1fr auto auto; align-items:end; }
.ui-v34 .size-field { gap:8px; }
.ui-v34 .size-field label { font-size:12px; }
.ui-v34 .size-field input,.ui-v34 .size-field select { padding:10px 12px; min-height:43px; border-radius:7px; font-size:13px; }
.ui-v34 .size-chip-row { gap:7px; }
.ui-v34 .size-chip { border-radius:6px; background:#fff; border-color:#d5d0e2; padding:8px 10px; font-size:11px; min-height:38px; color:#514474; }
.ui-v34 .size-chip:hover { background:#f2eff9; }
.ui-v34 .size-filter-note { color:var(--muted); font-size:12px; line-height:1.65; margin-bottom:0; }
.ui-v34 .size-results-line { font-size:12px; }
.ui-v34 .size-product-grid { grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px; }
.ui-v34 .size-product-card { border-radius:12px; box-shadow:none; border-color:var(--line); }
.ui-v34 .size-product-image { background:#fafafe; height:205px; padding:22px; }
.ui-v34 .size-product-content { padding:20px; }
.ui-v34 .size-product-content h3 { font-size:24px; }
.ui-v34 .motion-label { display:block; color:#736488; font-size:10px; letter-spacing:.035em; margin-bottom:7px; }
.ui-v34 .size-product-content .size-primary { font-size:13px; color:#342869; }
.ui-v34 .size-product-meta span { border-radius:5px; background:#f2f0f7; color:#594c77; font-size:11px; }
.ui-v34 .size-mini-list { font-size:12px; padding-left:17px; }
.ui-v34 .variant-note { font-size:11px; color:#79634c; background:#faf7f2; padding:10px; border-radius:6px; }
.ui-v34 .size-no-results { border-radius:12px; }
.ui-v34 .size-intent-section { background:#f7f7fb; }
.ui-v34 .size-intent-grid article { border-radius:10px; box-shadow:none; }
/* Quote / engineering form */
.ui-v34 .matching-case-hero { background:#fafafe; padding:42px 0; border-bottom:1px solid var(--line); }
.ui-v34 .matching-case-grid { grid-template-columns:1.25fr .75fr; gap:52px; }
.ui-v34 .matching-case-copy h1 { font-size:45px; max-width:600px; }
.ui-v34 .matching-case-copy > p:not(.eyebrow) { max-width:620px; font-size:14px; color:var(--muted); }
.ui-v34 .matching-case-gallery { gap:10px; }
.ui-v34 .matching-case-card { border-radius:10px; box-shadow:none; }
.ui-v34 .matching-case-card img { height:112px; }
.ui-v34 .matching-case-card.matching-case-large img { height:185px; }
.ui-v34 .matching-case-card figcaption { padding:10px; }
.ui-v34 .matching-case-card figcaption strong { font-size:12px; }
.ui-v34 .matching-case-card figcaption span { font-size:10px; }
.ui-v34 .matching-data-chips { gap:6px; margin-top:20px; }
.ui-v34 .matching-data-chips span { border-radius:5px; font-size:10px; padding:5px 8px; }
.ui-v34 .matching-hero-links { gap:18px; }
.ui-v34 .matching-hero-links a { font-size:12px; }
.ui-v34 .matching-form-section { background:#fff; padding:58px 0; }
.ui-v34 .matching-form-layout { grid-template-columns:.62fr 1.38fr; gap:50px; align-items:start; }
.ui-v34 .matching-form-copy { position:sticky; top:112px; }
.ui-v34 .matching-form-copy h2 { font-size:31px; }
.ui-v34 .matching-form-copy > p { font-size:14px; color:var(--muted); }
.ui-v34 .matching-contact-mini a { border-radius:9px; border-color:var(--line); background:#fafafe; padding:17px; }
.ui-v34 .matching-contact-mini span { font-size:12px; overflow-wrap:anywhere; }
.ui-v34 .matching-form { padding:28px; border:1px solid var(--line); border-radius:14px; box-shadow:none; background:#fff; min-width:0; }
.ui-v34 .request-mode { margin:0 0 25px; padding:0; border:0; display:grid; grid-template-columns:1fr 1fr; gap:12px; min-width:0; }
.ui-v34 .request-mode legend { font-size:15px; font-weight:700; padding:0 0 13px; }
.ui-v34 .request-mode > label { padding:16px 12px; display:flex; align-items:flex-start; gap:9px; border:1px solid var(--line); border-radius:8px; cursor:pointer; }
.ui-v34 .request-mode > label:has(input:checked) { background:#f7f5fc; border-color:#9f91c3; }
.ui-v34 .request-mode input { margin:4px 0 0; width:16px; height:16px; accent-color:var(--brand-purple); flex-shrink:0; }
.ui-v34 .request-mode strong { display:block; font-size:13px; }
.ui-v34 .request-mode small { display:block; font-size:11px; color:var(--muted); margin-top:4px; line-height:1.5; }
.ui-v34 .form-grid { gap:19px 16px; min-width:0; }
.ui-v34 .form-field { min-width:0; }
.ui-v34 .form-field label { font-size:12px; font-weight:600; }
.ui-v34 .form-field label > span { color:var(--muted); font-weight:400; }
.ui-v34 .form-field input:not([type=checkbox]):not([type=radio]),.ui-v34 .form-field textarea,.ui-v34 .form-field select { width:100%; border:1px solid #ccd0da; border-radius:7px; min-height:44px; padding:11px 12px; background:#fff; font-size:14px; line-height:1.5; }
.ui-v34 .form-field textarea { min-height:116px; resize:vertical; }
.ui-v34 .form-field input::placeholder,.ui-v34 .form-field textarea::placeholder { color:#7e8290; opacity:1; }
.ui-v34 .form-field small { color:var(--muted); font-size:11px; line-height:1.6; }
.ui-v34 .form-details { grid-column:1/-1; padding:0; border:1px solid var(--line); border-radius:9px; background:#fafafe; min-width:0; }
.ui-v34 .form-details > summary { padding:16px; cursor:pointer; font-size:13px; font-weight:700; }
.ui-v34 .form-details > summary span { display:block; padding-left:17px; color:var(--muted); font-size:11px; font-weight:400; margin-top:3px; }
.ui-v34 .form-details > .form-grid,.ui-v34 .form-details > .attachment-grid { padding:16px; background:#fff; border-top:1px solid var(--line); }
.ui-v34 .form-details > p,.ui-v34 .form-details > ul { margin:12px 16px; }
.ui-v34 .attachment-grid { display:grid; grid-template-columns:1fr; gap:15px; }
.ui-v34 .form-field input[type=file] { font-size:12px !important; }
.ui-v34 input[type=file]::file-selector-button { background:#f1eef8; border:0; border-radius:5px; padding:7px 10px; margin-right:10px; color:#463369; cursor:pointer; }
.ui-v34 .consent-field > label { align-items:flex-start; font-size:12px; line-height:1.65; font-weight:400; }
.ui-v34 .consent-field input[type=checkbox] { accent-color:var(--brand-purple); width:17px; height:17px; margin-top:3px; flex-shrink:0; }
.ui-v34 .consent-field .text-button { min-height:26px; border:0; background:none; padding:0 4px; font-size:11px; }
.ui-v34 .form-note { font-size:11px; color:var(--muted); line-height:1.65; }
.ui-v34 .form-status { border-radius:8px; font-size:13px; line-height:1.6; }
.ui-v34 .form-status:empty { display:none; }
.ui-v34 .form-status[data-state=success] { background:#edf7f1; border:1px solid #bfdacb; color:#245741; padding:15px; }
.ui-v34 .form-status[data-state=error] { background:#fff2f0; border:1px solid #eccac4; color:#8e3226; padding:15px; }
.ui-v34 .form-status[data-state=warning] { background:#fcf7e9; border:1px solid #e8d9ae; color:#6e561f; padding:15px; }
.ui-v34 .form-status[data-state=info] { background:#f5f3fb; border:1px solid #ded7ed; color:#4b3a71; padding:15px; }
.ui-v34 .form-recovery-actions { display:flex; flex-wrap:wrap; gap:10px; }
.ui-v34 .form-recovery-actions p { flex-basis:100%; }
.ui-v34 .request-receipt { padding:22px; margin-top:20px; border-radius:10px; background:#f7faf8; border:1px solid #d6e4da; }
.ui-v34 .request-receipt h3 { font-size:21px; margin:0 0 17px; }
.ui-v34 #receiptDetails { margin:0 0 20px; }
.ui-v34 #receiptDetails > div { display:grid; grid-template-columns:95px 1fr; gap:12px; padding:8px 0; border-bottom:1px solid #dde5e0; font-size:12px; }
.ui-v34 #receiptDetails dt { color:var(--muted); }
.ui-v34 #receiptDetails dd { margin:0; overflow-wrap:anywhere; }
.ui-v34 .receipt-actions { display:flex; flex-wrap:wrap; align-items:center; gap:14px; }
.ui-v34 .matching-seo-guide,.ui-v34 .matching-faq-section { padding:50px 0; }
.ui-v34 .matching-faq-section { background:#f7f7fb; }
.ui-v34 .matching-faq-grid article,.ui-v34 .matching-guide-card { border-radius:10px; border-color:var(--line); box-shadow:none; }
.ui-v34 .matching-faq-grid p,.ui-v34 .matching-seo-guide p,.ui-v34 .matching-seo-guide li { font-size:13px; }
.ui-v34 .matching-intent-strip { padding:40px 0; background:#f7f6fb; border-color:var(--line); }
.ui-v34 .matching-intent-inner h2 { font-size:27px; }
.ui-v34 .matching-intent-inner p { font-size:13px; }
.ui-v34 .matching-intent-tags span { border-radius:5px; font-size:10px; }
.ui-v34 .matching-search-intent { font-size:11px !important; }
/* Footer: retain all original contact information with a cleaner hierarchy. */
.ui-v34 .contact-strip-v9 { padding-top:30px; background:#f8f8fb; border-top:1px solid var(--line); }
.ui-v34 .contact-strip-grid { gap:0; }
.ui-v34 .contact-strip-item { padding:22px; border-color:var(--line); min-width:0; }
.ui-v34 .contact-strip-copy strong { font-size:16px; }
.ui-v34 .contact-strip-copy small { font-size:11px; overflow-wrap:anywhere; }
.ui-v34 .contact-strip-icon { width:42px; height:42px; border-radius:10px; }
.ui-v34 .office-details { border-top:1px solid var(--line); margin-top:18px; padding-block:27px; gap:18px 24px; }
.ui-v34 .office-details div { min-width:0; }
.ui-v34 .office-details strong { font-size:11px; font-weight:500; line-height:1.7; overflow-wrap:anywhere; }
.ui-v34 .office-details span { font-size:9px; letter-spacing:.06em; }
.ui-v34 .site-footer { background:#24203b; color:#d9d5e4; padding:23px 0; }
.ui-v34 .footer-inner { font-size:11px; line-height:1.7; gap:20px; }
.ui-v34 .footer-links { display:flex; flex-wrap:wrap; gap:22px; padding-top:14px; font-size:11px; }
.ui-v34 .footer-links a:hover { color:#fff; }
@media (max-width:1060px) {
  .ui-v34 .desktop-nav { display:none; }
  .ui-v34 .mobile-menu-button { display:block; }
  .ui-v34 .mobile-menu.open { display:grid; }
  .ui-v34 .mobile-menu { max-height:calc(100vh - 84px); overflow:auto; background:#fff; }
  .ui-v34 .v16-hero-grid { gap:20px; }
  .ui-v34 .v16-hinge-a { width:200px; height:200px; }
  .ui-v34 .v16-hinge-b { width:235px; height:235px; }
  .ui-v34 .v16-damper-a { left:20px; width:105px; height:105px; }
  .ui-v34 .v16-damper-b { left:130px; width:105px; height:105px; }
  .ui-v34 .v16-damper-c { width:110px; height:110px; right:0; }
  .ui-v34 .catalog-product-grid,.ui-v34 .size-product-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .ui-v34 .size-search-top { grid-template-columns:1fr 1fr; }
  .ui-v34 .size-field-wide { grid-column:auto; }
  .ui-v34 .matching-form-layout { grid-template-columns:.6fr 1.4fr; gap:25px; }
  .ui-v34 .matching-form { padding:22px; }
}
@media (max-width:820px) {
  .ui-v34 .wrap { width:calc(100% - 40px); }
  .ui-v34 .section { padding-block:52px; }
  .ui-v34 .v16-hero-grid { grid-template-columns:1fr; padding-block:42px 24px; gap:5px; }
  .ui-v34 .v16-clean-hero h1 { font-size:clamp(38px,6.5vw,54px); }
  .ui-v34 .v16-clean-hero .hero-experience-lead { max-width:590px; }
  .ui-v34 .v16-product-stage { min-height:320px; max-width:490px; margin-inline:auto; }
  .ui-v34 .v16-hinge-a { width:235px; height:235px; top:-16px; }
  .ui-v34 .v16-hinge-b { width:260px; height:260px; top:-25px; }
  .ui-v34 .v16-damper-a { left:70px; bottom:49px; }
  .ui-v34 .v16-damper-b { left:205px; bottom:42px; }
  .ui-v34 .v16-damper-c { right:40px; bottom:50px; }
  .ui-v34 .stage-caption { bottom:0; }
  .ui-v34 .hero-slider-controls { margin-top:18px; }
  .ui-v34 .buyer-path-grid { grid-template-columns:1fr; }
  .ui-v34 .buyer-path-grid > a,.ui-v34 .buyer-path-grid > a:first-child { padding:20px 0; border:0; border-bottom:1px solid var(--line); }
  .ui-v34 .company-profile-grid,.ui-v34 .custom-development-grid,.ui-v34 .catalog-showcase-grid,.ui-v34 .product-detail-hero,.ui-v34 .product-spec-layout,.ui-v34 .size-match-hero-grid,.ui-v34 .matching-case-grid,.ui-v34 .matching-form-layout { grid-template-columns:1fr; gap:28px; }
  .ui-v34 .company-building-card img { height:310px; }
  .ui-v34 .catalog-showcase-copy h1 { font-size:44px; }
  .ui-v34 .catalog-preview { min-height:270px; height:270px; }
  .ui-v34 .catalog-preview-product { max-height:230px; }
  .ui-v34 .catalog-showcase-grid { padding-block:32px 28px; }
  .ui-v34 .catalog-search-row { grid-template-columns:1fr auto; gap:8px 16px; }
  .ui-v34 .catalog-search-row label { grid-column:1/-1; }
  .ui-v34 .product-detail-copy h1 { font-size:43px; }
  .ui-v34 .product-detail-image { min-height:290px; }
  .ui-v34 .product-detail-image img { height:260px; }
  .ui-v34 .product-gallery-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .ui-v34 .procurement-grid { grid-template-columns:1fr; gap:15px; }
  .ui-v34 .procurement-grid p { margin-bottom:0; }
  .ui-v34 .size-subfields { grid-template-columns:1fr 1fr; }
  .ui-v34 .size-match-hero h1 { font-size:38px; }
  .ui-v34 .matching-case-copy h1 { font-size:38px; }
  .ui-v34 .matching-case-gallery { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .ui-v34 .matching-case-large { grid-column:auto; grid-row:auto; }
  .ui-v34 .matching-case-card img,.ui-v34 .matching-case-card.matching-case-large img { height:115px; }
  .ui-v34 .matching-form-copy { position:static; }
  .ui-v34 .matching-form-copy h2 { font-size:28px; }
  .ui-v34 .matching-contact-mini { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
  .ui-v34 .contact-strip-grid { grid-template-columns:1fr; }
  .ui-v34 .contact-strip-item { padding:18px 0; border-right:0; border-bottom:1px solid var(--line); }
}
@media (max-width:540px) {
  .ui-v34 .wrap { width:calc(100% - 32px); }
  .ui-v34 .site-header .navbar { min-height:72px; }
  .ui-v34 .site-header .brand-v9 img { width:101px !important; height:55px !important; }
  .ui-v34 .v16-hero-grid { width:calc(100% - 32px); padding-top:32px; }
  .ui-v34 .v16-clean-hero h1 { font-size:clamp(32px,8.6vw,42px); line-height:1.15; }
  .ui-v34 .v16-clean-hero .hero-experience-lead { font-size:14px; }
  .ui-v34 .v16-clean-hero .hero-actions { display:flex; flex-wrap:wrap; }
  .ui-v34 .v16-clean-hero .hero-actions .button { width:auto; flex:1; min-width:130px; font-size:12px; padding:12px; }
  .ui-v34 .hero-size-link { font-size:12px; }
  .ui-v34 .v16-hero-benefits { gap:13px; margin-top:20px; }
  .ui-v34 .v16-hero-benefits span { font-size:10px; }
  .ui-v34 .v16-product-stage { min-height:255px; }
  .ui-v34 .v16-hinge-a { width:180px; height:180px; left:-5px; top:-12px; }
  .ui-v34 .v16-hinge-b { width:190px; height:190px; right:-4px; top:-18px; }
  .ui-v34 .v16-damper-a { width:88px; height:88px; left:30px; bottom:47px; }
  .ui-v34 .v16-damper-b { width:90px; height:90px; left:130px; bottom:40px; }
  .ui-v34 .v16-damper-c { width:92px; height:92px; right:7px; bottom:48px; }
  .ui-v34 .stage-caption { left:0; right:0; gap:9px; padding-top:12px; }
  .ui-v34 .stage-caption span { font-size:8px; }
  .ui-v34 .stage-caption strong { font-size:10px; }
  .ui-v34 .company-profile-copy h2 { font-size:32px; }
  .ui-v34 .company-building-card img { height:260px; }
  .ui-v34 .motion-explainer { grid-template-columns:1fr; }
  .ui-v34 .motion-explainer > div { border-right:0; border-bottom:1px solid var(--line); padding:12px 16px; }
  .ui-v34 .catalog-product-grid,.ui-v34 .size-product-grid { grid-template-columns:1fr; gap:18px; }
  .ui-v34 .catalog-product-image { min-height:215px; }
  .ui-v34 .catalog-product-body { padding:19px; }
  .ui-v34 .catalog-search-row input { font-size:16px; }
  .ui-v34 .size-search-top,.ui-v34 .size-subfields { grid-template-columns:1fr; }
  .ui-v34 .size-search-panel { padding:18px; }
  .ui-v34 .size-field input,.ui-v34 .size-field select { font-size:16px; }
  .ui-v34 .size-subfields > button { width:100%; }
  .ui-v34 .product-gallery-grid { grid-template-columns:1fr; }
  .ui-v34 .product-at-a-glance div { grid-template-columns:1fr; gap:3px; }
  .ui-v34 .procurement-panel { padding:22px; }
  .ui-v34 .matching-case-gallery { grid-template-columns:1fr; }
  .ui-v34 .matching-case-card { display:grid; grid-template-columns:100px 1fr; }
  .ui-v34 .matching-case-card img,.ui-v34 .matching-case-card.matching-case-large img { height:90px; width:100px; }
  .ui-v34 .matching-case-card figcaption { align-self:center; }
  .ui-v34 .matching-case-copy h1 { font-size:34px; }
  .ui-v34 .matching-form { padding:18px; }
  .ui-v34 .request-mode { grid-template-columns:1fr; gap:9px; }
  .ui-v34 .request-mode > label { padding:13px; }
  .ui-v34 .form-grid { grid-template-columns:1fr; }
  .ui-v34 .form-field input:not([type=checkbox]):not([type=radio]),.ui-v34 .form-field select,.ui-v34 .form-field textarea { font-size:16px; }
  .ui-v34 .matching-contact-mini { grid-template-columns:1fr; }
  .ui-v34 .form-details > .form-grid,.ui-v34 .form-details > .attachment-grid { padding:13px; }
  .ui-v34 .form-details > summary span { padding-left:0; }
  .ui-v34 #receiptDetails > div { grid-template-columns:1fr; gap:3px; }
  .ui-v34 .request-receipt { padding:17px; }
  .ui-v34 .footer-inner { flex-direction:column; align-items:flex-start; gap:8px; }
}
@media (prefers-reduced-motion:reduce) {
  .ui-v34 *, .ui-v34 *::before, .ui-v34 *::after { animation:none !important; transition:none !important; scroll-behavior:auto !important; }
}

/* Final cross-template normalization: all headings use the same type family. */
.ui-v34 h1,.ui-v34 h2,.ui-v34 h3 { font-family:Arial,Helvetica,sans-serif; }
.ui-v34 .catalog-showcase-copy h1,.ui-v34 .matching-case-copy h1 { font-family:Arial,Helvetica,sans-serif; font-weight:700; line-height:1.12; letter-spacing:-.035em; }
.ui-v34 .site-header { background:#fff !important; }
.ui-v34 .motion-explainer { padding:0; box-shadow:none; }
.ui-v34 .motion-explainer > div { padding:18px 22px; }
.ui-v34 .badge-list { display:flex; flex-wrap:wrap; gap:8px; margin-top:20px; }
.ui-v34 .badge-list .badge { display:inline-flex; padding:7px 10px; font-size:11px; line-height:1.4; border:1px solid #e2dff0; border-radius:5px; background:#fff; color:#554d76; }
.ui-v34 .size-match-hero + .section { padding-top:36px; padding-bottom:28px; }
.ui-v34 .matching-case-gallery { display:grid; grid-template-columns:1fr; grid-template-rows:auto; gap:10px; min-height:0; }
.ui-v34 .matching-case-card,.ui-v34 .matching-case-card.matching-case-large { display:grid; grid-template-columns:108px 1fr; grid-column:auto; grid-row:auto; min-height:0; border:1px solid var(--line); background:#fff; }
.ui-v34 .matching-case-card::after { display:none; }
.ui-v34 .matching-case-card img,.ui-v34 .matching-case-card.matching-case-large img { width:108px; height:84px; object-fit:cover; }
.ui-v34 .matching-case-card figcaption { position:static; align-self:center; padding:14px 17px; color:var(--ink); gap:5px; }
.ui-v34 .matching-case-card figcaption strong { font-size:13px; }
.ui-v34 .matching-case-card figcaption span { font-size:11px; color:var(--muted); }
@media (min-width:541px) and (max-width:820px) {
  .ui-v34 .matching-case-gallery { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .ui-v34 .matching-case-card,.ui-v34 .matching-case-card.matching-case-large { display:block; }
  .ui-v34 .matching-case-card img,.ui-v34 .matching-case-card.matching-case-large img { width:100%; height:105px; }
}

/* Keep comparable product cards and their actions aligned within each row. */
.ui-v34 .catalog-product-card { display:flex; flex-direction:column; }
.ui-v34 .catalog-product-body { display:flex; flex-direction:column; flex:1; }
.ui-v34 .catalog-product-actions { margin-top:auto; }

/* UNIWISE V35. Presentation only, except the removal of duplicate legacy menu handlers.
   Loaded after V34. No technical specifications or enquiry configuration changed. */
:root { --ink:#191d2b; --ink-soft:#394051; --muted:#626b7a; --line:#e3e7ee; --wrap:1240px; }
.ui-v35 { font-family:Arial,Helvetica,sans-serif; color:var(--ink); background:#fff; }
.ui-v35 h1,.ui-v35 h2,.ui-v35 h3 { letter-spacing:-.035em; }
.ui-v35 p { text-wrap:pretty; }
.ui-v35 .section { padding-block:68px; }
.ui-v35 .site-header { background:rgba(255,255,255,.98); }
.ui-v35 .site-header .navbar { min-height:78px; }
.ui-v35 .site-header .brand-v9 img { width:112px !important; height:58px !important; }
.ui-v35 .desktop-nav { font-size:13px; gap:27px; }
.ui-v35 .button { min-height:44px; padding:12px 18px; font-size:13px; font-weight:600; border-radius:7px; transition:background .16s,border-color .16s; }
.ui-v35 .button:not(.dark):not(.hero-primary):not(.hero-secondary) { border-color:#ccd1dd; background:#fff; }
.ui-v35 .button:not(.dark):not(.hero-primary):not(.hero-secondary):hover { background:#f7f7fb; border-color:#b6adc9; }
.ui-v35 .button svg { width:18px; height:18px; stroke:currentColor; stroke-width:1.6; margin-left:10px; }
.ui-v35 .eyebrow { font-size:11px; letter-spacing:.13em; }
.ui-v35 .v16-hero-grid { min-height:555px; padding-block:50px 45px; }
.ui-v35 .v16-clean-hero { background:#f9fafc; }
.ui-v35 .v16-clean-hero .hero-gradient { background:linear-gradient(90deg,#fafbfd 0%,rgba(250,251,253,.95) 43%,rgba(249,249,253,.58) 100%); }
.ui-v35 .v16-clean-hero h1 { font-size:clamp(39px,4.1vw,56px); }
.ui-v35 .v16-hero-benefits { margin-top:24px; }
.ui-v35 .buyer-path-grid > a { padding-block:23px; }
.ui-v35 .buyer-path-grid small { font-size:12px; }
.ui-v35 .company-profile-grid { gap:52px; }
.ui-v35 .company-profile-copy h2 { font-size:36px; }
.ui-v35 .company-building-card img { height:340px; }
.ui-v35 .company-profile-text p { font-size:15px; line-height:1.75; }
.ui-v35 .application-copy p { font-size:14px; }
.ui-v35 .custom-development-grid h2 { font-size:31px; }
.ui-v35 .custom-development-teaser { background:#f6f7fa; }
.ui-v35 .catalog-showcase-grid { min-height:405px; gap:40px; }
.ui-v35 .catalog-showcase-copy h1 { font-size:50px; }
.ui-v35 .catalog-product-grid,.ui-v35 .size-product-grid { gap:20px; }
.ui-v35 .catalog-product-card,.ui-v35 .size-product-card,.ui-v35 .application-card { border-radius:11px; }
.ui-v35 .catalog-product-image,.ui-v35 .size-product-image,.ui-v35 .product-detail-image { background:#f8f9fc; }
.ui-v35 .catalog-product-image img { filter:drop-shadow(0 5px 6px rgba(22,18,41,.07)); }
.ui-v35 .catalog-product-body { padding:20px; }
.ui-v35 .catalog-product-body > p,.ui-v35 .catalog-key-specs strong { font-size:13px; }
.ui-v35 .catalog-key-specs small { font-size:12px; }
.ui-v35 .catalog-product-actions { padding-top:10px; }
.ui-v35 .catalog-product-actions .text-button { font-size:13px; min-height:40px; }
.ui-v35 .catalog-product-card:hover,.ui-v35 .size-product-card:hover { border-color:#b6b0cb; box-shadow:0 6px 22px rgba(35,30,58,.035); }
.ui-v35 .product-detail-copy h1 { font-size:48px; }
.ui-v35 .product-detail-hero { gap:48px; }
.ui-v35 .product-at-a-glance dt { font-size:13px; }
.ui-v35 .product-gallery-card { background:#fff; }
.ui-v35 .size-match-hero h1 { font-size:42px; }
.ui-v35 .size-field label { font-size:13px; }
.ui-v35 .size-product-content .size-primary { font-size:14px; }
.ui-v35 .size-mini-list { font-size:13px; }
.ui-v35 .size-search-panel { border-radius:11px; }
.ui-v35 .matching-case-copy h1 { font-size:43px; }
.ui-v35 .matching-form-copy > p { font-size:15px; }
.ui-v35 .request-mode strong,.ui-v35 .form-field label { font-size:13px; }
.ui-v35 .request-mode small { font-size:12px; }
.ui-v35 .form-details > summary { font-size:14px; }
.ui-v35 .matching-form { border-radius:12px; }
.ui-v35 .contact-strip-copy small { font-size:12px; }
.ui-v35 .site-footer { background:#252239; }
.ui-v35 .footer-inner,.ui-v35 .footer-links { font-size:12px; }

/* Engineering hero: real text, four separate photos, no flattened page screenshot. */
.ui-v35 .engineering-hero-v35 { background:linear-gradient(125deg,#fbfbfd 0%,#f6f7fb 72%,#f6f7fa 100%); border-bottom:1px solid var(--line); padding:66px 0 70px; }
.ui-v35 .engineering-layout-v35 { --wrap:1360px; display:grid; grid-template-columns:minmax(340px,.82fr) minmax(650px,1.45fr); gap:44px; align-items:center; }
.ui-v35 .engineering-intro-v35 { min-width:0; }
.ui-v35 .engineering-intro-v35 .eyebrow { margin:0 0 18px; }
.ui-v35 .engineering-intro-v35 h1 { font-size:clamp(39px,3.65vw,53px); line-height:1.1; font-weight:700; letter-spacing:-.045em; margin:0 0 24px; max-width:470px; text-wrap:balance; }
.ui-v35 .engineering-lead-v35 { font-size:16px; line-height:1.78; color:var(--muted); margin:0; max-width:465px; }
.ui-v35 .engineering-tags-v35 { display:flex; flex-wrap:wrap; gap:8px; margin:24px 0 0; }
.ui-v35 .engineering-tags-v35 span { padding:6px 10px; font-size:12px; line-height:1.5; font-weight:500; color:#55566c; background:rgba(255,255,255,.9); border:1px solid #e0e1eb; border-radius:6px; }
.ui-v35 .engineering-intro-v35 .hero-actions { display:flex; align-items:center; gap:18px; flex-wrap:wrap; margin-top:28px; }
.ui-v35 .engineering-intro-v35 .hero-actions .button { min-height:47px; font-size:14px; }
.ui-v35 .engineering-intro-v35 .text-link { font-size:13px; display:inline-flex; align-items:center; gap:8px; min-height:44px; }
.ui-v35 .engineering-reassurance-v35 { font-size:12px; color:#737b8b; margin:16px 0 0; }
.ui-v35 .development-workflow-v35 { min-width:0; background:#fff; border:1px solid #e1e4ed; border-radius:16px; padding:26px; box-shadow:0 16px 42px rgba(35,30,64,.035); }
.ui-v35 .workflow-heading { display:flex; align-items:flex-start; justify-content:space-between; gap:16px; margin-bottom:29px; }
.ui-v35 .workflow-heading .workflow-eyebrow { font-size:10px; line-height:1.4; letter-spacing:.115em; font-weight:700; text-transform:uppercase; color:#7a7197; margin:0 0 9px; }
.ui-v35 .workflow-heading h2 { font-size:29px; line-height:1.16; letter-spacing:-.04em; margin:0 0 9px; text-wrap:balance; }
.ui-v35 .workflow-heading p { font-size:14px; color:var(--muted); margin:0; line-height:1.5; }
.ui-v35 .workflow-count { flex-shrink:0; border:1px solid #e8e5f1; border-radius:5px; padding:4px 8px; font-size:10px; line-height:1.5; color:#7b7291; background:#faf9fd; }
.ui-v35 .workflow-steps { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); column-gap:12px; list-style:none; padding:0; margin:0; }
.ui-v35 .workflow-step { min-width:0; display:grid; grid-template-rows:1fr auto; }
.ui-v35 .workflow-step-copy { padding:0 2px; }
.ui-v35 .workflow-step-top { display:flex; justify-content:space-between; align-items:center; margin:0 0 13px; padding-right:9px; }
.ui-v35 .workflow-number { display:grid; place-items:center; width:31px; height:31px; font-size:12px; font-weight:700; border-radius:50%; color:#554083; background:#f0ebf9; }
.ui-v35 .workflow-arrow { color:#b4accb; }
.ui-v35 .workflow-arrow svg { display:block; height:20px; width:20px; stroke:currentColor; stroke-width:1.4; }
.ui-v35 .workflow-step:last-child .workflow-arrow { visibility:hidden; }
.ui-v35 .workflow-step h3 { font-size:16px; line-height:1.3; letter-spacing:-.025em; margin:0 0 9px; font-weight:700; }
.ui-v35 .workflow-step p { font-size:12px; line-height:1.65; margin:0 0 19px; color:#697284; text-wrap:pretty; }
.ui-v35 .workflow-photo { aspect-ratio:4/5; width:100%; margin:0; overflow:hidden; background:#f2f3f6; border-radius:8px; }
.ui-v35 .workflow-photo img { width:100%; height:100%; display:block; object-fit:cover; object-position:center; }
.ui-v35 .workflow-step--prototype .workflow-photo img { object-position:45% 74%; }
.ui-v35 .workflow-step--testing .workflow-photo img { object-position:50% 30%; }
.ui-v35 .workflow-benefits { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); margin-top:23px; padding:15px 0 0; border-top:1px solid #eceaf2; gap:12px; }
.ui-v35 .workflow-benefits > div { display:flex; align-items:center; gap:7px; min-width:0; color:#68607f; }
.ui-v35 .workflow-benefits svg { flex-shrink:0; width:18px; height:18px; stroke:currentColor; stroke-width:1.45; stroke-linecap:round; stroke-linejoin:round; }
.ui-v35 .workflow-benefits span { font-size:10px; line-height:1.5; }

/* A concise supporting page, with one obvious enquiry route. */
.ui-v35 .engineering-guide-section { padding:64px 0; background:#fff; }
.ui-v35 .engineering-guide-section h2 { font-size:33px; margin:0 0 15px; max-width:760px; }
.ui-v35 .engineering-section-lead-v35 { max-width:750px; font-size:15px; color:var(--muted); margin:0 0 28px; }
.ui-v35 .engineering-capabilities-v35 { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:18px; }
.ui-v35 .engineering-capabilities-v35 .info-card { padding:23px; border-radius:11px; background:#fff; box-shadow:none; }
.ui-v35 .support-card-number-v35 { color:#9a90b2; font-size:11px; font-weight:700; letter-spacing:.06em; display:block; margin-bottom:20px; }
.ui-v35 .engineering-capabilities-v35 h3 { font-size:18px; margin:0 0 12px; }
.ui-v35 .engineering-capabilities-v35 p { color:var(--muted); font-size:14px; margin:0; line-height:1.75; }
.ui-v35 .custom-support-v28 { padding:55px 0; background:#f7f8fb; border-block:1px solid var(--line); }
.ui-v35 .custom-support-grid { gap:60px; align-items:center; }
.ui-v35 .custom-support-v28 h2 { font-size:31px; max-width:560px; margin:0 0 18px; }
.ui-v35 .custom-support-v28 p { color:var(--muted); font-size:15px; }
.ui-v35 .support-list { gap:9px; }
.ui-v35 .support-list span { font-size:13px; border-radius:6px; padding:10px 13px; background:#fff; }
.ui-v35 .custom-support-card { border:1px solid var(--line); border-radius:12px; box-shadow:none; padding:30px; background:#fff; }
.ui-v35 .custom-support-card h3 { font-size:24px; margin:0 0 15px; }
.ui-v35 .custom-seo-summary { padding:48px 0; background:#fff; }
.ui-v35 .custom-seo-summary h2 { font-size:28px; max-width:760px; }
.ui-v35 .custom-seo-summary p:not(.eyebrow) { font-size:14px; color:var(--muted); max-width:880px; }
.ui-v35 .custom-seo-summary .matching-intent-tags { display:flex; flex-wrap:wrap; gap:22px; }
.ui-v35 .custom-seo-summary .text-link { font-size:13px; }

@media (min-width:1600px) {
 .ui-v35 .engineering-hero-v35 { padding-block:82px; }
 .ui-v35 .engineering-layout-v35 { gap:54px; }
 .ui-v35 .workflow-step p { font-size:13px; }
}
@media (max-width:1190px) {
 .ui-v35 .engineering-layout-v35 { display:grid; grid-template-columns:1fr; gap:34px; --wrap:1020px; }
 .ui-v35 .engineering-hero-v35 { padding:46px 0 50px; }
 .ui-v35 .engineering-intro-v35 { display:grid; grid-template-columns:1.1fr 1fr; gap:0 42px; align-items:start; }
 .ui-v35 .engineering-intro-v35 .eyebrow { grid-column:1/-1; }
 .ui-v35 .engineering-intro-v35 h1 { grid-column:1; grid-row:2/5; font-size:42px; max-width:470px; margin-bottom:0; }
 .ui-v35 .engineering-lead-v35 { grid-column:2; font-size:15px; }
 .ui-v35 .engineering-tags-v35 { grid-column:2; margin-top:18px; }
 .ui-v35 .engineering-intro-v35 .hero-actions { grid-column:1/-1; margin-top:22px; }
 .ui-v35 .engineering-reassurance-v35 { grid-column:1/-1; margin-top:11px; }
 .ui-v35 .workflow-photo { aspect-ratio:1/1.06; }
 .ui-v35 .workflow-step h3 { font-size:17px; }
 .ui-v35 .workflow-step p { font-size:13px; }
 .ui-v35 .workflow-benefits span { font-size:12px; }
 .ui-v35 .engineering-capabilities-v35 { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:1060px) {
 .ui-v35 .mobile-menu { max-height:calc(100dvh - 78px); }
 .ui-v35 .catalog-product-grid,.ui-v35 .size-product-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:800px) {
 .ui-v35 .wrap { width:calc(100% - 40px); }
 .ui-v35 .section { padding-block:46px; }
 .ui-v35 .v16-hero-grid { padding-block:34px; min-height:0; }
 .ui-v35 .v16-clean-hero h1 { font-size:42px; }
 .ui-v35 .company-profile-grid,.ui-v35 .product-detail-hero,.ui-v35 .custom-support-grid { gap:30px; }
 .ui-v35 .company-profile-copy h2 { font-size:31px; }
 .ui-v35 .company-building-card img { height:290px; }
 .ui-v35 .catalog-showcase-copy h1 { font-size:39px; }
 .ui-v35 .product-detail-copy h1 { font-size:38px; }
 .ui-v35 .size-match-hero h1,.ui-v35 .matching-case-copy h1 { font-size:36px; }
 .ui-v35 .engineering-hero-v35 { padding:34px 0 40px; }
 .ui-v35 .engineering-intro-v35 { display:block; }
 .ui-v35 .engineering-intro-v35 h1 { max-width:620px; font-size:42px; margin-bottom:20px; }
 .ui-v35 .engineering-lead-v35 { max-width:630px; font-size:15px; }
 .ui-v35 .engineering-tags-v35 { margin-top:20px; }
 .ui-v35 .engineering-layout-v35 { gap:29px; }
 .ui-v35 .development-workflow-v35 { padding:23px; }
 .ui-v35 .workflow-steps { grid-template-columns:repeat(2,minmax(0,1fr)); gap:25px 20px; }
 .ui-v35 .workflow-step-top { margin-bottom:12px; }
 .ui-v35 .workflow-step:nth-child(2) .workflow-arrow { transform:rotate(90deg); }
 .ui-v35 .workflow-step h3 { font-size:19px; }
 .ui-v35 .workflow-step p { font-size:14px; margin-bottom:16px; }
 .ui-v35 .workflow-photo { aspect-ratio:1.18/1; }
 .ui-v35 .workflow-step--engineering .workflow-photo img { object-position:50% 30%; }
 .ui-v35 .workflow-benefits { grid-template-columns:repeat(2,minmax(0,1fr)); gap:13px 20px; }
 .ui-v35 .workflow-benefits span { font-size:12px; }
 .ui-v35 .engineering-guide-section { padding:44px 0; }
 .ui-v35 .engineering-guide-section h2 { font-size:29px; }
 .ui-v35 .custom-support-v28 { padding:42px 0; }
 .ui-v35 .custom-support-grid { grid-template-columns:1fr; }
 .ui-v35 .custom-support-v28 h2 { font-size:29px; }
}
@media (max-width:560px) {
 .ui-v35 .wrap { width:calc(100% - 32px); }
 .ui-v35 .site-header .navbar { min-height:70px; }
 .ui-v35 .site-header .brand-v9 img { width:100px !important; height:52px !important; }
 .ui-v35 .mobile-menu { max-height:calc(100dvh - 70px); }
 .ui-v35 .button { min-height:44px; }
 .ui-v35 .v16-clean-hero h1 { font-size:39px; }
 .ui-v35 .catalog-product-grid,.ui-v35 .size-product-grid { grid-template-columns:1fr; }
 .ui-v35 .catalog-showcase-copy h1 { font-size:36px; }
 .ui-v35 .catalog-product-image { height:240px; }
 .ui-v35 .product-detail-copy h1 { font-size:35px; }
 .ui-v35 .size-match-hero h1,.ui-v35 .matching-case-copy h1 { font-size:32px; }
 .ui-v35 .engineering-intro-v35 h1 { font-size:37px; line-height:1.1; }
 .ui-v35 .engineering-intro-v35 .hero-actions { gap:9px 17px; }
 .ui-v35 .engineering-tags-v35 span { font-size:11px; padding:6px 8px; }
 .ui-v35 .engineering-intro-v35 .hero-actions .button { font-size:13px; }
 .ui-v35 .engineering-intro-v35 .text-link { font-size:12px; }
 .ui-v35 .development-workflow-v35 { padding:20px 17px; border-radius:12px; }
 .ui-v35 .workflow-heading { margin-bottom:22px; }
 .ui-v35 .workflow-heading h2 { font-size:26px; }
 .ui-v35 .workflow-heading p { font-size:13px; }
 .ui-v35 .workflow-count { display:none; }
 .ui-v35 .workflow-steps { grid-template-columns:1fr; gap:0; }
 .ui-v35 .workflow-step { display:grid; grid-template-columns:minmax(0,1fr) minmax(108px,.88fr); grid-template-rows:auto; gap:16px; padding:18px 0; border-bottom:1px solid #ebedf2; align-items:center; }
 .ui-v35 .workflow-step:first-child { padding-top:0; }
 .ui-v35 .workflow-step:last-child { padding-bottom:0; border-bottom:0; }
 .ui-v35 .workflow-step-copy { padding:0; }
 .ui-v35 .workflow-step-top { margin-bottom:10px; padding:0; }
 .ui-v35 .workflow-number { width:26px; height:26px; font-size:10px; }
 .ui-v35 .workflow-arrow { display:none; }
 .ui-v35 .workflow-step h3 { font-size:16px; margin-bottom:7px; }
 .ui-v35 .workflow-step p { font-size:12px; margin:0; line-height:1.65; }
 .ui-v35 .workflow-photo { aspect-ratio:4/5; border-radius:7px; }
 .ui-v35 .workflow-benefits { margin-top:20px; padding-top:17px; column-gap:9px; }
 .ui-v35 .workflow-benefits span { font-size:10px; }
 .ui-v35 .workflow-benefits svg { width:16px; height:16px; }
 .ui-v35 .engineering-capabilities-v35 { grid-template-columns:1fr; gap:12px; }
 .ui-v35 .engineering-capabilities-v35 .info-card { padding:20px; }
 .ui-v35 .support-card-number-v35 { margin-bottom:12px; }
 .ui-v35 .custom-support-card { padding:24px; }
 .ui-v35 .custom-seo-summary { padding:35px 0; }
 .ui-v35 .custom-seo-summary h2 { font-size:26px; }
 .ui-v35 .footer-inner { gap:9px; }
}
@media (prefers-reduced-motion:reduce) {
 html { scroll-behavior:auto; }
 .ui-v35 *, .ui-v35 *::before, .ui-v35 *::after { animation-duration:.01ms !important; transition-duration:.01ms !important; animation-iteration-count:1 !important; }
}
/* Text-only contact links must not occupy the icon column of the legacy grid. */
.ui-v35 .contact-strip-item--text-only { display:block; }
.ui-v35 .contact-strip-item--text-only .contact-strip-copy { width:100%; min-width:0; }
.ui-v35 .workflow-step--prototype .workflow-photo img { object-position:43% 50%; }
/* A clear text menu control instead of decorative bars around the word Menu. */
.ui-v35 .mobile-menu-button { width:auto; min-width:64px; height:44px; min-height:44px; padding:0 13px; border:1px solid var(--line); border-radius:7px; background:#fff; font-size:12px; font-weight:600; line-height:1; }
.ui-v35 .mobile-menu-button::before,.ui-v35 .mobile-menu-button::after { display:none; }

/* V36 redesign. One restrained design system, with original data/form styles retained. */
:root{--ink:#202733;--ink-soft:#3d4654;--muted:#68717e;--line:#e1e5e9;--paper:#fff;--paper-deep:#f4f5f7;--brand-purple:#37316f;--green:#37316f;--green-dark:#292451;--wrap:1200px;--shadow:none;--radius-lg:8px;--radius-md:6px;--radius-sm:4px}
html{scroll-behavior:smooth}
body.ui-v36{background:#fff;color:var(--ink);font-family:Arial,Helvetica,sans-serif;line-height:1.65}
.ui-v36 h1,.ui-v36 h2,.ui-v36 h3{font-weight:600;color:var(--ink);text-wrap:balance;letter-spacing:-.035em}
.ui-v36 h1{font-size:clamp(36px,4.1vw,56px);line-height:1.13;margin:0 0 22px}
.ui-v36 h2{font-size:clamp(28px,2.7vw,36px);line-height:1.22;margin:0 0 20px}
.ui-v36 h3{font-size:20px;line-height:1.35;letter-spacing:-.02em;margin:0 0 12px}
.ui-v36 p{margin:0 0 18px;line-height:1.75;color:var(--muted);text-wrap:pretty}
.ui-v36 figure{margin:0}
.ui-v36 figcaption{font-size:12px;line-height:1.6;color:var(--muted);margin-top:12px}
.ui-v36 .wrap{width:min(var(--wrap),calc(100% - 80px));margin-inline:auto}
.ui-v36 .eyebrow,.ui-v36 .hero-overline{font-size:10px;font-weight:700;letter-spacing:.17em;line-height:1.5;text-transform:uppercase;color:var(--brand-purple);margin:0 0 20px}
.ui-v36 .button{min-height:46px;padding:12px 20px;border-radius:4px;border:1px solid #c8cdd5;font-size:13px;font-weight:600;line-height:1.5;display:inline-flex;align-items:center;justify-content:center;gap:15px;box-shadow:none;transform:none;white-space:normal;text-align:center}
.ui-v36 .button:hover{box-shadow:none;transform:none}
.ui-v36 .button.dark,.ui-v36 .button.primary{background:var(--brand-purple);border-color:var(--brand-purple);color:#fff}
.ui-v36 .button.dark:hover,.ui-v36 .button.primary:hover{background:var(--green-dark);border-color:var(--green-dark)}
.ui-v36 .button:not(.dark):not(.primary):not(.hero-primary):not(.hero-secondary){background:#fff;border-color:#c8cdd5;color:var(--ink)}
.ui-v36 .text-link,.ui-v36 .text-button{font-size:13px;font-weight:600;line-height:1.6;color:var(--brand-purple);text-decoration:none;display:inline-flex;align-items:center;min-height:36px}
.ui-v36 .text-link:hover,.ui-v36 .text-button:hover{text-decoration:underline;text-underline-offset:4px}
.ui-v36 .hero-actions{display:flex;align-items:center;gap:25px;margin-top:28px;flex-wrap:wrap}
.ui-v36 .site-header{background:#fff;border-bottom:1px solid var(--line);backdrop-filter:none;box-shadow:none}
.ui-v36 .site-header .navbar{min-height:78px;gap:28px}
.ui-v36 .site-header .brand-v9{min-width:110px}
.ui-v36 .site-header .brand-v9 img{width:110px!important;height:60px!important;object-fit:contain}
.ui-v36 .desktop-nav{gap:26px;font-size:13px;font-weight:500}
.ui-v36 .desktop-nav>a:not(.button){color:#515a68}
.ui-v36 .desktop-nav>a:not(.button):hover,.ui-v36 .desktop-nav>a[aria-current=page]:not(.button){color:var(--brand-purple)}
.ui-v36 .desktop-nav .button{min-height:40px;padding:10px 16px;font-size:12px}
.ui-v36 .mobile-menu{display:none}
.ui-v36 .mobile-menu-button{display:none;border:1px solid var(--line);padding:8px 12px;border-radius:4px;font-size:13px;min-height:42px;background:#fff;width:auto}
.ui-v36 section[id],.ui-v36 main[id],.ui-v36 footer[id]{scroll-margin-top:92px}
.ui-v36 .v36-section{padding:80px 0}
.ui-v36 .v36-tinted{background:#f5f6f8}
.ui-v36 .v36-lead{font-size:17px;line-height:1.8;color:#5d6775;max-width:610px}
.ui-v36 .v36-body-lead{font-size:16px;line-height:1.85;max-width:510px}
.ui-v36 .v36-small{font-size:12px;line-height:1.75;color:#727987}
.ui-v36 .v36-section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:40px;margin-bottom:36px}
.ui-v36 .v36-section-head h2,.ui-v36 .v36-section-head h1{margin-bottom:0}
.ui-v36 .v36-section-head>p{font-size:13px;margin:0;max-width:360px}
.ui-v36 .v36-split{display:grid;grid-template-columns:1fr 1fr;gap:90px;align-items:start}
.ui-v36 .v36-split>*{min-width:0}
/* Homepage: only real product photography, no rotating collage or duplicated badges. */
.ui-v36 .v36-home-hero{border-bottom:1px solid var(--line);background:#f6f7f9}
.ui-v36 .v36-hero-grid{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:center;padding-block:68px 60px;min-height:535px}
.ui-v36 .v36-hero-copy h1{font-size:clamp(39px,4.1vw,56px);line-height:1.15;letter-spacing:-.045em;font-weight:600;margin-bottom:24px}
.ui-v36 .v36-hero-copy .v36-lead{max-width:490px;font-size:16px}
.ui-v36 .v36-hero-footnote{margin:26px 0 0;font-size:12px;color:#7b8491}
.ui-v36 .v36-hero-products{display:grid;grid-template-columns:1fr 1fr;background:#fff;border:1px solid #e6e8ed;border-radius:6px;overflow:hidden}
.ui-v36 .v36-hero-part{padding:23px 20px 22px;min-width:0;display:flex;flex-direction:column}
.ui-v36 .v36-hero-part+.v36-hero-part{border-left:1px solid var(--line)}
.ui-v36 .v36-part-kicker{font-size:9px;letter-spacing:.1em;color:#858b96;text-transform:uppercase}
.ui-v36 .v36-hero-part img{width:100%;height:230px;object-fit:contain;padding:30px 0;transition:transform .2s;filter:none}
.ui-v36 .v36-hero-part:hover img{transform:translateY(-3px)}
.ui-v36 .v36-part-caption{display:flex;flex-direction:column;gap:3px;border-top:1px solid #eceef1;padding-top:16px}
.ui-v36 .v36-part-caption strong{font-size:15px;font-weight:600}
.ui-v36 .v36-part-caption>span{font-size:11px;color:var(--muted)}
.ui-v36 .v36-range-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:28px}
.ui-v36 .v36-range{border:1px solid var(--line);border-radius:5px;overflow:hidden;display:flex;flex-direction:column;background:white}
.ui-v36 .v36-range-img{height:215px;padding:36px 38px;border-bottom:1px solid #eef0f3}
.ui-v36 .v36-range-img img{height:100%;width:100%;object-fit:contain}
.ui-v36 .v36-range-copy{padding:22px 25px;position:relative;display:flex;flex-direction:column;flex:1}
.ui-v36 .v36-range-index{position:absolute;top:24px;right:22px;font-size:10px;color:#959ba5}
.ui-v36 .v36-range h3{font-size:20px;padding-right:24px;margin-bottom:12px}
.ui-v36 .v36-range p{font-size:13px;line-height:1.8;margin-bottom:20px}
.ui-v36 .v36-range .text-link{margin-top:auto;font-size:12px}
.ui-v36 .v36-range:hover{border-color:#a2a1b5}
.ui-v36 .v36-inline-resource{display:flex;justify-content:space-between;gap:25px;border-top:1px solid var(--line);margin-top:28px;padding-top:20px;font-size:12px;color:var(--muted)}
.ui-v36 .v36-inline-resource a{color:var(--brand-purple);font-weight:600}
.ui-v36 .v36-route-list{border-top:1px solid #d9dce3}
.ui-v36 .v36-route-list>a{display:grid;grid-template-columns:24px 1fr 20px;align-items:start;gap:20px;padding:26px 0;border-bottom:1px solid #d9dce3}
.ui-v36 .v36-route-list>a>span{font-size:11px;color:#8b8e9e;margin-top:3px}
.ui-v36 .v36-route-list h3{font-size:18px;margin-bottom:7px}
.ui-v36 .v36-route-list p{font-size:13px;margin:0}
.ui-v36 .v36-route-list b{font-weight:400;color:var(--brand-purple)}
.ui-v36 .v36-company-teaser{display:grid;grid-template-columns:1fr 1fr;gap:70px;align-items:center}
.ui-v36 .v36-company-teaser>figure img{width:100%;height:385px;object-fit:cover;border-radius:4px}
.ui-v36 .v36-company-teaser>div>p:not(.eyebrow):not(.v36-small){font-size:14px}
.ui-v36 .v36-company-teaser .v36-experience-line{border-top:1px solid var(--line);padding-top:22px;margin-bottom:8px;color:var(--ink)}
.ui-v36 .v36-company-teaser .v36-small{max-width:460px;margin-bottom:14px}
.ui-v36 .v36-applications{background:#252b37;color:#fff;padding:60px 0}
.ui-v36 .v36-applications>.wrap{display:grid;grid-template-columns:1fr 1fr;gap:90px}
.ui-v36 .v36-applications h2{color:#fff;font-size:30px}
.ui-v36 .v36-applications .eyebrow{color:#aaa8ca}
.ui-v36 .v36-applications nav{border-top:1px solid #49505c}
.ui-v36 .v36-applications nav a{display:flex;justify-content:space-between;gap:15px;font-size:14px;padding:17px 0;border-bottom:1px solid #49505c}
.ui-v36 .v36-applications nav a:hover{color:#d6d4f1}
.ui-v36 .v36-applications nav b{font-weight:400;color:#aaa8ca}
.ui-v36 .v36-supply-home{padding:46px 0;border-bottom:1px solid var(--line)}
.ui-v36 .v36-supply-home>.wrap{display:grid;grid-template-columns:1.2fr 1fr auto;gap:30px;align-items:center}
.ui-v36 .v36-supply-home h2{font-size:22px;max-width:360px;margin:0}
.ui-v36 .v36-supply-home p:not(.eyebrow){font-size:13px;margin:0}
.ui-v36 .v36-supply-home .eyebrow{margin-bottom:10px}
/* Page intros deliberately compact, not a second splash screen. */
.ui-v36 .v36-page-intro{padding:58px 0 48px;background:#f6f7f9;border-bottom:1px solid var(--line)}
.ui-v36 .v36-page-intro .v36-lead{margin-bottom:0}
.ui-v36 .v36-company-intro{display:grid;grid-template-columns:1.2fr 1fr;gap:70px;align-items:end}
.ui-v36 .v36-company-intro h1{font-size:45px;margin:0}
.ui-v36 .v36-company-intro .v36-lead{font-size:16px}
.ui-v36 .v36-figure img{width:100%;height:auto;border-radius:4px}
.ui-v36 .v36-company-overview .v36-split{gap:65px;align-items:center}
.ui-v36 .v36-company-overview p{font-size:14px}
.ui-v36 .v36-company-overview h2{font-size:34px}
.ui-v36 .v36-company-entities{margin:24px 0 0;border-top:1px solid var(--line);padding-top:8px}
.ui-v36 .v36-company-entities>div{margin-top:14px}
.ui-v36 .v36-company-entities dt{font-size:11px;color:var(--muted);margin-bottom:3px}
.ui-v36 .v36-company-entities dd{margin:0;font-size:13px;font-weight:500}
.ui-v36 .v36-project-reference{background:#f5f4f8;padding:50px 0;border-block:1px solid #e7e5ed}
.ui-v36 .v36-reference-grid{display:grid;grid-template-columns:1fr 1.2fr;gap:80px;align-items:start}
.ui-v36 .v36-reference-grid h2{font-size:28px;margin:0}
.ui-v36 .v36-reference-grid p{font-size:14px}
.ui-v36 .v36-reference-grid .v36-reference-statement{font-size:21px;line-height:1.5;color:var(--ink);margin-bottom:14px}
.ui-v36 .v36-reference-grid .v36-small{font-size:12px;margin-bottom:0}
.ui-v36 .v36-evidence-grid{display:grid;grid-template-columns:1fr 1fr;gap:32px}
.ui-v36 .v36-evidence-grid figure{width:100%;height:310px;overflow:hidden;border-radius:4px;margin-bottom:22px}
.ui-v36 .v36-evidence-grid img{width:100%;height:100%;object-fit:cover}
.ui-v36 .v36-evidence-grid article:first-child img{object-position:50% 65%}
.ui-v36 .v36-evidence-number{font-size:10px;letter-spacing:.08em;color:#7a8390;text-transform:uppercase;display:block;margin-bottom:10px}
.ui-v36 .v36-evidence-grid h3{font-size:21px}
.ui-v36 .v36-evidence-grid p{max-width:500px;font-size:14px;margin-bottom:0}
.ui-v36 .v36-stock{display:grid;grid-template-columns:185px 1fr;gap:38px;margin-top:42px;border-top:1px solid var(--line);padding:36px 0 0;align-items:center}
.ui-v36 .v36-stock-image{width:185px;max-width:100%;display:block}
.ui-v36 .v36-stock-image img{width:100%;height:auto;border-radius:4px}
.ui-v36 .v36-stock .eyebrow{margin-bottom:12px}
.ui-v36 .v36-stock h3{font-size:23px}
.ui-v36 .v36-stock p{font-size:14px;max-width:820px;margin-bottom:10px}
.ui-v36 .v36-stock .v36-small{font-size:12px}
.ui-v36 .v36-documentation{display:grid;grid-template-columns:1fr 1fr;gap:85px;align-items:center}
.ui-v36 .v36-documentation>div>p:not(.eyebrow){font-size:14px}
.ui-v36 .v36-documentation>div>.v36-small{font-size:12px}
.ui-v36 .v36-patents{padding:24px;background:#fff;border:1px solid var(--line);border-radius:4px}
.ui-v36 .v36-patents img{width:100%;max-width:478px;height:auto;margin-inline:auto}
.ui-v36 .v36-patents figcaption{padding-top:16px;border-top:1px solid var(--line);display:flex;justify-content:space-between;gap:15px;margin-top:20px;font-size:11px}
.ui-v36 .v36-patents figcaption a{color:var(--brand-purple)}
.ui-v36 .v36-patents p{margin:12px 0 0;font-size:11px}
/* Engineering: horizontal process, legible pictures and no extra benefit icon strip. */
.ui-v36 .v36-engineering-intro{display:grid;grid-template-columns:1.25fr .8fr;gap:80px;align-items:center}
.ui-v36 .v36-engineering-intro h1{font-size:46px;line-height:1.17;margin:0}
.ui-v36 .v36-engineering-intro .v36-lead{font-size:16px;margin-bottom:22px}
.ui-v36 .v36-workflow{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:28px}
.ui-v36 .v36-workflow li{min-width:0}
.ui-v36 .v36-step-top{display:flex;align-items:center;justify-content:space-between;border-top:1px solid #cfd3db;margin-bottom:20px;padding-top:12px;font-size:12px;color:#69647f}
.ui-v36 .v36-step-top>span:last-child{font-size:20px;line-height:1;color:#b1acbf}
.ui-v36 .v36-workflow li:last-child .v36-step-top>span:last-child{visibility:hidden}
.ui-v36 .v36-workflow figure{aspect-ratio:1/1.03;overflow:hidden;border-radius:4px;background:#f0f2f4;margin-bottom:21px}
.ui-v36 .v36-workflow img{width:100%;height:100%;object-fit:cover;object-position:50% 35%}
.ui-v36 .v36-workflow h3{font-size:18px;margin:0 0 10px;line-height:1.4;text-wrap:initial}
.ui-v36 .v36-workflow p{font-size:13px;line-height:1.8;margin:0}
.ui-v36 .v36-service-list{border-top:1px solid #d6dae2}
.ui-v36 .v36-service-list article{display:grid;grid-template-columns:25px 1fr;gap:22px;border-bottom:1px solid #d6dae2;padding:24px 0}
.ui-v36 .v36-service-list article>span{font-size:11px;color:#7c8290;margin-top:4px}
.ui-v36 .v36-service-list h3{font-size:18px;margin-bottom:8px}
.ui-v36 .v36-service-list p{font-size:14px;margin:0}
.ui-v36 .v36-qa-list details{border-top:1px solid var(--line);padding:0}
.ui-v36 .v36-qa-list details:last-child{border-bottom:1px solid var(--line)}
.ui-v36 .v36-qa-list summary{font-size:14px;font-weight:600;padding:20px 26px 20px 0;cursor:pointer;list-style:none;position:relative}
.ui-v36 .v36-qa-list summary::after{content:'+';position:absolute;right:0;font-weight:400;color:#807993}
.ui-v36 .v36-qa-list details[open]>summary::after{content:'-'}
.ui-v36 .v36-qa-list p{font-size:13px;margin-bottom:20px}
/* Existing catalogue: concise intro, useful data, deliberate neutral surfaces. */
.ui-v36 .v36-catalog-intro{padding:44px 0 38px}
.ui-v36 .v36-catalog-intro .v36-section-head{margin:0}
.ui-v36 .v36-catalog-intro h1{font-size:42px;margin-bottom:15px}
.ui-v36 .v36-catalog-intro .v36-lead{font-size:15px;max-width:640px}
.ui-v36 .catalog-products-section{padding:25px 0 64px}
.ui-v36 .catalog-search-row{padding:0;margin:0 0 20px;grid-template-columns:auto minmax(200px,440px) 1fr}
.ui-v36 .catalog-search-row label{font-size:12px}
.ui-v36 .catalog-search-row input{border-radius:4px;min-height:44px;font-size:13px}
.ui-v36 .catalog-filter-tabs{gap:0;border-bottom:1px solid var(--line);margin:0;flex-wrap:wrap}
.ui-v36 .catalog-filter-button{background:none;border:0;border-bottom:2px solid transparent;border-radius:0;padding:13px 16px;font-size:12px;min-height:46px;margin-bottom:-1px;color:#65707f;white-space:nowrap}
.ui-v36 .catalog-filter-button small{font-size:10px;opacity:.65}
.ui-v36 .catalog-filter-button.is-active{background:none;color:var(--brand-purple);border-bottom-color:var(--brand-purple)}
.ui-v36 .catalog-filter-button:hover{background:#f7f7f9}
.ui-v36 .v36-catalog-help{font-size:12px;padding:13px 0 24px;color:var(--muted)}
.ui-v36 .v36-catalog-help summary{cursor:pointer;min-height:24px}
.ui-v36 .v36-catalog-help>div{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;padding-top:16px}
.ui-v36 .v36-catalog-help p{font-size:12px;line-height:1.7;margin:0}
.ui-v36 .catalog-product-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:26px}
.ui-v36 .catalog-product-card{border-radius:5px;border:1px solid var(--line);box-shadow:none;background:#fff}
.ui-v36 .catalog-product-card:hover,.ui-v36 .catalog-product-card.is-previewed{border-color:#acabbc;box-shadow:none;transform:none}
.ui-v36 .catalog-product-image{height:210px;min-height:210px;background:#fff;border-bottom:1px solid #edf0f3}
.ui-v36 .catalog-product-image img{filter:none;padding:20px;transform:none}
.ui-v36 .catalog-product-body{padding:20px 22px}
.ui-v36 .catalog-product-body h3{font-size:23px;margin:8px 0}
.ui-v36 .catalog-product-family{font-size:9px;color:#7b8290;letter-spacing:.12em}
.ui-v36 .catalog-product-body>p{font-size:12px;margin-bottom:16px}
.ui-v36 .catalog-key-specs{gap:10px;border-top:1px solid var(--line);padding:14px 0}
.ui-v36 .catalog-key-specs small{font-size:11px}
.ui-v36 .catalog-key-specs strong{font-size:12px;font-weight:500}
.ui-v36 .catalog-product-actions{gap:12px;border-top:1px solid var(--line);padding-top:10px}
.ui-v36 .catalog-product-actions .text-button{font-size:12px;min-height:32px}
.ui-v36 .catalog-card-open{width:25px;height:25px;font-size:13px;border-radius:3px;background:#f5f6f8;color:#68707e}
/* Specification pages keep the complete technical content. */
.ui-v36 .product-breadcrumbs{font-size:12px;padding-top:24px;margin-bottom:0;color:#7e8692}
.ui-v36 .product-detail-hero{padding:35px 0 48px;gap:70px;grid-template-columns:1fr 1fr}
.ui-v36 .product-detail-copy h1{font-size:47px;margin-bottom:12px}
.ui-v36 .product-detail-name{font-size:18px;font-weight:500;margin-bottom:15px}
.ui-v36 .product-detail-lead{font-size:14px;line-height:1.8}
.ui-v36 .product-detail-image{border:1px solid var(--line);background:#fff;min-height:360px;border-radius:5px;box-shadow:none}
.ui-v36 .product-detail-image img{height:330px;filter:none}
.ui-v36 .special-torque-pill{padding:0;background:none;border:0;color:#736c87;border-radius:0;font-size:12px;line-height:1.6}
.ui-v36 .product-at-a-glance{padding:17px 0;margin:22px 0;gap:12px}
.ui-v36 .product-at-a-glance div{grid-template-columns:135px 1fr}
.ui-v36 .product-at-a-glance dd{font-size:14px;font-weight:500}
.ui-v36 .product-at-a-glance dt{font-size:12px}
.ui-v36 .product-detail-actions{gap:12px;display:flex;flex-wrap:wrap;align-items:center}
.ui-v36 .product-detail-actions .text-link{flex-basis:100%;margin-top:5px}
.ui-v36 .product-spec-section{padding:48px 0;background:#f6f7f9}
.ui-v36 .product-spec-layout{grid-template-columns:.8fr 1.2fr;gap:60px}
.ui-v36 .product-spec-layout p{font-size:14px;max-width:365px}
.ui-v36 .product-spec-table-static{box-shadow:none;border-radius:4px;background:#fff;overflow:hidden}
.ui-v36 .product-spec-table-static .row{padding:11px 17px;border-color:#e8ebef}
.ui-v36 .product-spec-table-static dt{font-size:12px;color:#747d89;font-weight:500}
.ui-v36 .product-spec-table-static dd{font-size:13px;font-weight:500}
.ui-v36 .size-fit-inline{padding:0;border:0;border-radius:0;margin:42px 0}
.ui-v36 .size-fit-inline h2{font-size:26px;margin-bottom:15px}
.ui-v36 .size-fit-inline>p{font-size:13px;max-width:850px}
.ui-v36 .size-dimension-list{grid-template-columns:repeat(3,minmax(0,1fr));gap:0;border-top:1px solid var(--line);margin:24px 0}
.ui-v36 .size-dimension-list div{font-size:12px;border:0;border-bottom:1px solid var(--line);border-radius:0;padding:13px 12px 13px 0;background:none}
.ui-v36 .size-fit-actions .button{min-height:40px;font-size:12px;padding:9px 15px}
.ui-v36 .product-gallery-section{padding:18px 0 46px}
.ui-v36 .product-gallery-section h2{font-size:28px}
.ui-v36 .product-gallery-grid{gap:20px;grid-template-columns:repeat(3,minmax(0,1fr))}
.ui-v36 .product-gallery-card{border-radius:4px;box-shadow:none;background:white;border-color:var(--line)}
.ui-v36 .product-gallery-card>a{background:white}
.ui-v36 .product-gallery-card img{height:225px;object-fit:contain;padding:10px;width:100%}
.ui-v36 .product-gallery-card figcaption{font-size:12px;margin:0;padding:13px 15px;border-top:1px solid var(--line)}
.ui-v36 .product-source-note{font-size:12px;margin-top:17px}
.ui-v36 .procurement-section{padding-bottom:25px}
.ui-v36 .v36-order-details{border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.ui-v36 .v36-order-details>summary{padding:19px 0;cursor:pointer;font-size:14px;font-weight:600}
.ui-v36 .procurement-panel{border:0;border-radius:0;background:#fff;padding:8px 0 25px}
.ui-v36 .procurement-grid{gap:30px;margin-bottom:10px}
.ui-v36 .procurement-grid strong{font-size:13px;font-weight:600}
.ui-v36 .procurement-grid p{font-size:13px}
/* Dimension finder and enquiry use the same compact controls. */
.ui-v36 .section{padding-block:46px}
.ui-v36 .size-search-panel{padding:25px;border-radius:5px;box-shadow:none;background:#f6f7f9;border:1px solid var(--line)}
.ui-v36 .size-field label{font-size:12px;font-weight:600}
.ui-v36 .size-field input,.ui-v36 .size-field select{padding:11px 12px;border-radius:4px;font-size:13px;min-height:43px}
.ui-v36 .size-chip{padding:6px 10px;border-radius:4px;background:#fff;color:#655d7c;font-size:12px;font-weight:500}
.ui-v36 .size-results-line{font-size:12px}
.ui-v36 .size-filter-note{font-size:12px;color:#737b87}
.ui-v36 .size-product-card{border-radius:5px;box-shadow:none}
.ui-v36 .size-product-card:hover{box-shadow:none;border-color:#a2a1b5}
.ui-v36 .size-product-grid{gap:24px}
.ui-v36 .size-product-image{height:210px;background:#fff}
.ui-v36 .size-product-content{padding:20px}
.ui-v36 .size-product-content h3{font-size:22px}
.ui-v36 .size-product-content .size-primary{font-size:13px;color:#464e5c}
.ui-v36 .size-mini-list{font-size:12px}
.ui-v36 .size-product-meta span{font-size:11px;border-radius:3px;background:#f3f4f7;color:#686578;padding:4px 7px}
.ui-v36 .size-products-section{padding-top:0}
.ui-v36 .v36-enquiry-intro{padding:40px 0 35px}
.ui-v36 .v36-enquiry-intro h1{font-size:42px;margin-bottom:13px}
.ui-v36 .v36-enquiry-intro .v36-lead{font-size:15px}
.ui-v36 .matching-form-section{padding:48px 0 64px;background:#fff}
.ui-v36 .matching-form-layout{grid-template-columns:.7fr 1.3fr;gap:65px;align-items:start}
.ui-v36 .matching-form-copy{position:static;padding-top:6px}
.ui-v36 .matching-form-copy h2{font-size:29px}
.ui-v36 .matching-form-copy>p{font-size:14px}
.ui-v36 .matching-form-copy>.v36-small{font-size:12px}
.ui-v36 .matching-form{padding:28px;border:1px solid var(--line);border-radius:5px;background:#fff;box-shadow:none}
.ui-v36 .v36-enquiry-info{margin:30px 0;padding:0}
.ui-v36 .v36-enquiry-info div{margin:18px 0}
.ui-v36 .v36-enquiry-info dt{font-size:11px;color:var(--muted)}
.ui-v36 .v36-enquiry-info dd{font-size:14px;margin:5px 0 0;overflow-wrap:anywhere}
.ui-v36 .form-field input,.ui-v36 .form-field select,.ui-v36 .form-field textarea{font-size:13px;border-radius:4px;border-color:#cfd4dc;background:#fff}
.ui-v36 .form-field label{font-size:12px;line-height:1.6}
.ui-v36 .request-mode{border-radius:4px;background:#f6f7f9}
.ui-v36 .form-details{border-radius:4px;background:#fff}
.ui-v36 .request-mode label:has(input:checked){border-color:#726b8c;background:#f5f4f8}
.ui-v36 .request-mode strong{font-size:13px}
.ui-v36 .form-details summary{font-size:13px}
.ui-v36 .form-note,.ui-v36 .consent-field,.ui-v36 .form-status{font-size:12px}
.ui-v36 .request-receipt{border-radius:4px}
/* Existing application and legal pages receive the same hierarchy. */
.ui-v36 .application-seo-hero{background:#f6f7f9;padding:48px 0;border-bottom:1px solid var(--line)}
.ui-v36 .application-seo-hero h1{font-size:42px}
.ui-v36 .application-seo-hero p{font-size:15px}
.ui-v36 .application-seo-hero img{border-radius:5px;box-shadow:none}
.ui-v36 .application-content{padding:54px 0}
.ui-v36 .application-content h2{font-size:30px}
.ui-v36 .info-card{background:#fff;border-radius:4px;box-shadow:none;border-color:var(--line)}
.ui-v36 .badge-list{gap:8px}
.ui-v36 .badge{background:#fff;border-radius:3px;color:#696578;font-size:12px}
/* A single conversion strip and a compact, consistent site footer. */
.ui-v36 .v36-cta{padding:50px 0;background:#f5f6f8;border-top:1px solid var(--line)}
.ui-v36 .v36-cta>.wrap{display:flex;align-items:center;justify-content:space-between;gap:35px}
.ui-v36 .v36-cta h2{font-size:29px;margin-bottom:12px}
.ui-v36 .v36-cta .eyebrow{margin-bottom:12px}
.ui-v36 .v36-cta p:not(.eyebrow){font-size:14px;margin:0}
.ui-v36 .v36-cta .button{flex-shrink:0}
.ui-v36 .v36-footer{background:#fff;border-top:1px solid var(--line);padding:46px 0 20px}
.ui-v36 .v36-footer-main{display:grid;grid-template-columns:1fr 1fr 1fr 1.35fr;gap:38px;margin-bottom:35px}
.ui-v36 .v36-footer-main>*{min-width:0}
.ui-v36 .v36-footer-brand>a img{width:100px;height:54px;object-fit:contain;margin-top:-12px;margin-bottom:10px}
.ui-v36 .v36-footer-brand p{font-size:12px;color:#848a95;line-height:1.85}
.ui-v36 .v36-footer-main h2{font-size:11px;letter-spacing:.015em;font-weight:600;margin:0 0 17px;color:#343d4a}
.ui-v36 .v36-footer-main>div>a:not(:first-child){display:block}
.ui-v36 .v36-footer-main>div>a{font-size:12px;color:#737b87;margin-bottom:8px;line-height:1.7;overflow-wrap:anywhere}
.ui-v36 .v36-footer-main a:hover{color:var(--brand-purple)}
.ui-v36 .v36-footer-main .v36-footer-quote{font-weight:600;color:var(--brand-purple);margin-top:15px}
.ui-v36 .v36-footer-legal{display:grid;grid-template-columns:1.3fr 1fr;gap:40px;border-top:1px solid var(--line);padding-top:23px}
.ui-v36 .v36-footer-legal p{font-size:11px;line-height:1.85;color:#8a9099;margin:0}
.ui-v36 .v36-footer-bottom{display:flex;justify-content:space-between;gap:25px;font-size:10px;color:#8a9099;padding-top:23px}
.ui-v36 .product-dialog,.ui-v36 .lightbox{border-radius:8px;border-color:var(--line);box-shadow:0 20px 70px #20273322}
.ui-v36 .dialog-spec-sheet{font-size:13px}
.ui-v36 a:focus-visible,.ui-v36 button:focus-visible,.ui-v36 summary:focus-visible{outline:2px solid #8178a3;outline-offset:4px}
.ui-v36 [hidden]{display:none!important}
@media(min-width:1061px){.ui-v36 .desktop-nav{display:flex}.ui-v36 .mobile-menu,.ui-v36 .mobile-menu-button{display:none!important}}
@media(max-width:1060px){
 .ui-v36 .wrap{width:calc(100% - 56px)}
 .ui-v36 .desktop-nav{display:none!important}
 .ui-v36 .mobile-menu-button{display:block!important}
 .ui-v36 .mobile-menu.open{display:flex;flex-direction:column;padding:16px 28px 24px;border-top:1px solid var(--line);gap:0;background:#fff;max-height:calc(100dvh - 78px);overflow:auto}
 .ui-v36 .mobile-menu a{padding:12px 8px;font-size:14px}
 .ui-v36 .mobile-menu .button{margin-top:9px;display:inline-flex;color:#fff;align-self:stretch}
 .ui-v36 .v36-hero-grid{gap:30px;padding-block:50px;min-height:470px}
 .ui-v36 .v36-hero-copy h1{font-size:42px}
 .ui-v36 .v36-hero-part{padding:20px 15px}
 .ui-v36 .v36-hero-part img{height:190px;padding:25px 0}
 .ui-v36 .v36-part-kicker{font-size:8px}
 .ui-v36 .v36-part-caption>span{font-size:10px}
 .ui-v36 .v36-split,.ui-v36 .v36-company-teaser{gap:42px}
 .ui-v36 .v36-range-grid{gap:18px}
 .ui-v36 .v36-range-img{height:185px;padding:30px}
 .ui-v36 .v36-range-copy{padding:20px}
 .ui-v36 .v36-range h3{font-size:18px}
 .ui-v36 .v36-range-index{display:none}
 .ui-v36 .v36-company-teaser>figure img{height:350px}
 .ui-v36 .v36-supply-home>.wrap{grid-template-columns:1fr 1fr}
 .ui-v36 .v36-supply-home .text-link{grid-column:2}
 .ui-v36 .v36-company-intro{gap:40px;grid-template-columns:1.1fr 1fr}
 .ui-v36 .v36-company-intro h1{font-size:37px}
 .ui-v36 .v36-company-overview .v36-split{gap:38px}
 .ui-v36 .v36-reference-grid{gap:40px}
 .ui-v36 .v36-documentation{gap:40px}
 .ui-v36 .v36-engineering-intro{gap:40px;grid-template-columns:1.2fr .8fr}
 .ui-v36 .v36-engineering-intro h1{font-size:38px}
 .ui-v36 .v36-workflow{gap:20px}
 .ui-v36 .v36-workflow h3{font-size:16px}
 .ui-v36 .v36-workflow p{font-size:12px}
 .ui-v36 .catalog-product-grid,.ui-v36 .size-product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
 .ui-v36 .product-detail-hero{gap:38px}
 .ui-v36 .product-spec-layout{gap:35px}
 .ui-v36 .matching-form-layout{gap:35px;grid-template-columns:.65fr 1.35fr}
 .ui-v36 .v36-footer-main{gap:24px;grid-template-columns:.8fr 1fr 1fr 1.25fr}
}
@media(max-width:800px){
 .ui-v36 .v36-section{padding:54px 0}
 .ui-v36 .v36-hero-grid{grid-template-columns:1fr;padding:40px 0;gap:30px}
 .ui-v36 .v36-hero-copy h1{font-size:45px}
 .ui-v36 .v36-hero-copy .v36-lead{max-width:590px}
 .ui-v36 .v36-hero-footnote{margin-top:18px}
 .ui-v36 .v36-hero-products{max-width:630px}
 .ui-v36 .v36-hero-part{padding:18px 22px}
 .ui-v36 .v36-hero-part img{height:190px;padding:18px 15px}
 .ui-v36 .v36-section-head{gap:25px;align-items:flex-start;flex-direction:column;margin-bottom:28px}
 .ui-v36 .v36-section-head>p{font-size:13px;max-width:none}
 .ui-v36 .v36-section-head>p br{display:none}
 .ui-v36 .v36-split,.ui-v36 .v36-company-teaser,.ui-v36 .v36-company-intro,.ui-v36 .v36-reference-grid,.ui-v36 .v36-documentation{grid-template-columns:1fr;gap:32px}
 .ui-v36 .v36-range-grid{gap:15px}
 .ui-v36 .v36-range-img{padding:22px;height:155px}
 .ui-v36 .v36-range-copy{padding:17px}
 .ui-v36 .v36-range h3{font-size:17px;padding:0}
 .ui-v36 .v36-range p{font-size:12px}
 .ui-v36 .v36-range .text-link{font-size:11px}
 .ui-v36 .v36-company-teaser>figure img{height:320px}
 .ui-v36 .v36-applications>.wrap{gap:30px;grid-template-columns:1fr}
 .ui-v36 .v36-supply-home>.wrap{grid-template-columns:1fr;gap:20px}
 .ui-v36 .v36-supply-home .text-link{grid-column:auto}
 .ui-v36 .v36-company-overview .v36-split{grid-template-columns:1fr;gap:34px}
 .ui-v36 .v36-evidence-grid figure{height:240px}
 .ui-v36 .v36-stock{gap:26px;grid-template-columns:150px 1fr}
 .ui-v36 .v36-stock-image{width:150px}
 .ui-v36 .v36-patents{max-width:525px}
 .ui-v36 .v36-engineering-intro{grid-template-columns:1fr;gap:22px}
 .ui-v36 .v36-engineering-intro h1{font-size:40px}
 .ui-v36 .v36-workflow{grid-template-columns:repeat(2,minmax(0,1fr));gap:32px 25px}
 .ui-v36 .v36-workflow figure{aspect-ratio:1.18}
 .ui-v36 .v36-workflow h3{font-size:19px}
 .ui-v36 .v36-workflow p{font-size:13px}
 .ui-v36 .v36-page-intro{padding:38px 0}
 .ui-v36 .v36-catalog-intro .v36-section-head{flex-direction:row;align-items:flex-end;gap:20px}
 .ui-v36 .v36-catalog-intro .button{flex-shrink:0;font-size:12px}
 .ui-v36 .v36-catalog-intro h1{font-size:36px}
 .ui-v36 .v36-catalog-intro .v36-lead{font-size:14px}
 .ui-v36 .catalog-search-row{grid-template-columns:1fr auto;gap:10px}
 .ui-v36 .catalog-search-row label{grid-column:1/-1}
 .ui-v36 .catalog-filter-button{font-size:11px;padding:11px 10px}
 .ui-v36 .v36-catalog-help>div{grid-template-columns:1fr;gap:12px}
 .ui-v36 .product-detail-hero{grid-template-columns:1fr;gap:30px}
 .ui-v36 .product-detail-image{min-height:300px}
 .ui-v36 .product-detail-image img{height:285px}
 .ui-v36 .product-spec-layout{grid-template-columns:1fr;gap:22px}
 .ui-v36 .product-spec-layout p{max-width:none}
 .ui-v36 .size-dimension-list{grid-template-columns:1fr 1fr}
 .ui-v36 .product-gallery-grid{grid-template-columns:1fr 1fr}
 .ui-v36 .matching-form-layout{grid-template-columns:1fr;gap:30px}
 .ui-v36 .matching-form-copy h2 br{display:none}
 .ui-v36 .v36-enquiry-info{display:flex;gap:30px;flex-wrap:wrap;margin:20px 0}
 .ui-v36 .v36-enquiry-info div{margin:0}
 .ui-v36 .v36-cta>.wrap{align-items:flex-start;flex-direction:column;gap:25px}
 .ui-v36 .v36-footer-main{grid-template-columns:1fr 1fr;gap:30px 40px}
 .ui-v36 .v36-footer-legal{grid-template-columns:1fr;gap:16px}
}
@media(max-width:560px){
 .ui-v36 .wrap{width:calc(100% - 40px)}
 .ui-v36 .site-header .navbar{min-height:67px}
 .ui-v36 .site-header .brand-v9 img{width:96px!important;height:52px!important}
 .ui-v36 .mobile-menu.open{max-height:calc(100dvh - 67px);padding-inline:20px}
 .ui-v36 .v36-section{padding:44px 0}
 .ui-v36 .eyebrow{font-size:9px;margin-bottom:16px}
 .ui-v36 .v36-hero-copy h1{font-size:38px;line-height:1.13}
 .ui-v36 .v36-hero-copy .v36-lead{font-size:14px}
 .ui-v36 .v36-hero-footnote{font-size:11px}
 .ui-v36 .v36-hero-grid{padding:32px 0;gap:26px}
 .ui-v36 .hero-actions{gap:20px;margin-top:22px}
 .ui-v36 .button{padding:11px 16px;font-size:12px;gap:10px;min-height:44px}
 .ui-v36 .v36-hero-part{padding:16px 12px}
 .ui-v36 .v36-hero-part img{height:155px;padding:20px 0}
 .ui-v36 .v36-part-kicker{font-size:7px}
 .ui-v36 .v36-part-caption strong{font-size:13px}
 .ui-v36 .v36-part-caption>span{font-size:10px}
 .ui-v36 .v36-range-grid{grid-template-columns:1fr;gap:18px}
 .ui-v36 .v36-range{display:grid;grid-template-columns:115px 1fr}
 .ui-v36 .v36-range-img{height:100%;min-height:185px;border:0;padding:18px}
 .ui-v36 .v36-range-copy{padding:19px 18px 19px 0}
 .ui-v36 .v36-range h3{font-size:18px;margin-bottom:9px}
 .ui-v36 .v36-range p{font-size:12px;margin-bottom:12px}
 .ui-v36 .v36-range .text-link{font-size:11px}
 .ui-v36 .v36-inline-resource{flex-direction:column;gap:10px;font-size:11px;margin-top:23px}
 .ui-v36 .v36-route-list>a{gap:15px;padding:22px 0}
 .ui-v36 .v36-route-list h3{font-size:17px}
 .ui-v36 .v36-route-list p{font-size:12px}
 .ui-v36 .v36-company-teaser>figure img{height:245px}
 .ui-v36 .v36-company-teaser h2{font-size:29px}
 .ui-v36 .v36-company-teaser>div>p:not(.eyebrow):not(.v36-small){font-size:14px}
 .ui-v36 .v36-applications{padding:40px 0}
 .ui-v36 .v36-applications h2{font-size:27px}
 .ui-v36 .v36-supply-home{padding:35px 0}
 .ui-v36 .v36-supply-home h2{font-size:23px}
 .ui-v36 .v36-company-intro h1{font-size:34px}
 .ui-v36 .v36-company-intro .v36-lead{font-size:14px}
 .ui-v36 .v36-company-overview h2{font-size:29px}
 .ui-v36 .v36-project-reference{padding:36px 0}
 .ui-v36 .v36-reference-grid h2{font-size:26px}
 .ui-v36 .v36-reference-grid .v36-reference-statement{font-size:19px}
 .ui-v36 .v36-evidence-grid{grid-template-columns:1fr;gap:30px}
 .ui-v36 .v36-evidence-grid figure{height:245px;margin-bottom:18px}
 .ui-v36 .v36-stock{grid-template-columns:100px 1fr;gap:20px;margin-top:30px;padding-top:28px;align-items:start}
 .ui-v36 .v36-stock-image{width:100px}
 .ui-v36 .v36-stock h3{font-size:19px}
 .ui-v36 .v36-stock p{font-size:12px}
 .ui-v36 .v36-stock .v36-small{font-size:11px}
 .ui-v36 .v36-stock .text-link{font-size:12px}
 .ui-v36 .v36-patents{padding:17px}
 .ui-v36 .v36-documentation h2{font-size:29px}
 .ui-v36 .v36-engineering-intro h1{font-size:35px}
 .ui-v36 .v36-engineering-intro h1 br{display:none}
 .ui-v36 .v36-engineering-intro .v36-lead{font-size:14px}
 .ui-v36 .v36-workflow{gap:28px 17px}
 .ui-v36 .v36-workflow figure{aspect-ratio:.88}
 .ui-v36 .v36-workflow h3{font-size:16px;line-height:1.4}
 .ui-v36 .v36-workflow p{font-size:12px;line-height:1.75}
 .ui-v36 .v36-step-top{padding-top:9px;margin-bottom:12px;font-size:10px}
 .ui-v36 .v36-service-list article{gap:16px}
 .ui-v36 .v36-service-list h3{font-size:17px}
 .ui-v36 .v36-service-list p{font-size:13px}
 .ui-v36 .v36-catalog-intro .v36-section-head{flex-direction:column;align-items:flex-start}
 .ui-v36 .v36-catalog-intro h1,.ui-v36 .v36-enquiry-intro h1{font-size:34px}
 .ui-v36 .catalog-product-grid,.ui-v36 .size-product-grid{grid-template-columns:1fr}
 .ui-v36 .catalog-search-row{grid-template-columns:1fr}
 .ui-v36 #catalogCount{justify-self:start}
 .ui-v36 .catalog-filter-tabs{gap:0}
 .ui-v36 .catalog-filter-button{font-size:11px;padding:10px;min-height:43px}
 .ui-v36 .catalog-product-image{height:225px}
 .ui-v36 .catalog-product-body{padding:19px 21px}
 .ui-v36 .product-detail-copy h1{font-size:39px}
 .ui-v36 .product-detail-image{min-height:270px}
 .ui-v36 .product-detail-image img{height:260px}
 .ui-v36 .product-at-a-glance div{grid-template-columns:110px 1fr;gap:14px}
 .ui-v36 .product-at-a-glance dt{font-size:11px}
 .ui-v36 .product-at-a-glance dd{font-size:13px}
 .ui-v36 .product-spec-section{padding:34px 0}
 .ui-v36 .product-spec-table-static .row{grid-template-columns:112px 1fr;gap:12px;padding:11px 14px}
 .ui-v36 .size-dimension-list{grid-template-columns:1fr}
 .ui-v36 .size-fit-inline{margin:32px 0}
 .ui-v36 .product-gallery-grid{grid-template-columns:1fr 1fr;gap:13px}
 .ui-v36 .product-gallery-card img{height:140px;padding:7px}
 .ui-v36 .product-gallery-card figcaption{padding:9px;font-size:11px}
 .ui-v36 .procurement-grid{grid-template-columns:1fr;gap:18px}
 .ui-v36 .size-search-panel{padding:18px}
 .ui-v36 .size-subfields,.ui-v36 .size-search-top{grid-template-columns:1fr}
 .ui-v36 .size-search-panel .two-col{grid-template-columns:1fr 1fr}
 .ui-v36 .size-results-line{font-size:11px}
 .ui-v36 .size-filter-note{font-size:11px}
 .ui-v36 .matching-form-section{padding:30px 0 42px}
 .ui-v36 .matching-form-copy h2{font-size:25px}
 .ui-v36 .matching-form{padding:19px}
 .ui-v36 .v36-enquiry-info{gap:18px}
 .ui-v36 .v36-enquiry-info dd{font-size:13px}
 .ui-v36 .form-grid{gap:16px}
 .ui-v36 .request-mode{gap:10px}
 .ui-v36 .request-mode label{padding:12px}
 .ui-v36 .application-seo-hero h1{font-size:33px}
 .ui-v36 .v36-cta{padding:36px 0}
 .ui-v36 .v36-cta h2{font-size:27px}
 .ui-v36 .v36-cta p:not(.eyebrow){font-size:13px}
 .ui-v36 .v36-footer{padding:36px 0 20px}
 .ui-v36 .v36-footer-main{grid-template-columns:1fr 1fr;gap:27px 24px;margin-bottom:28px}
 .ui-v36 .v36-footer-brand{grid-column:1/-1;display:flex;align-items:center;gap:20px}
 .ui-v36 .v36-footer-brand p{margin:0;font-size:11px}
 .ui-v36 .v36-footer-brand>a img{margin:0;width:90px;height:50px}
 .ui-v36 .v36-footer-contact{grid-column:1/-1}
 .ui-v36 .v36-footer-main h2{margin-bottom:13px}
 .ui-v36 .v36-footer-main>div>a{font-size:11px}
 .ui-v36 .v36-footer-legal p{font-size:10px}
 .ui-v36 .v36-footer-bottom{font-size:9px}
}
@media(max-width:360px){.ui-v36 .v36-hero-copy h1{font-size:34px}.ui-v36 .v36-range{grid-template-columns:92px 1fr}.ui-v36 .v36-range-img{padding:13px}.ui-v36 .v36-stock{grid-template-columns:1fr}.ui-v36 .v36-stock-image{width:140px}.ui-v36 .v36-hero-part img{height:135px}.ui-v36 .v36-part-caption>span{font-size:9px}.ui-v36 .product-gallery-grid{grid-template-columns:1fr}}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}.ui-v36 *{animation:none!important;transition:none!important}}
/* Remove the final legacy ID and underline overrides. */
.ui-v36 #applications.v36-applications{background:#252b37}
.ui-v36 .text-link{border:0;padding-bottom:0}
.ui-v36 .product-source-note{background:none;border-radius:0;padding:0;line-height:1.75!important;margin-top:18px!important}
.ui-v36 .product-gallery-card{padding:0}
.ui-v36 .mobile-menu.open{background:#fff!important}

/* Final contrast and source-photo framing. */
.ui-v36 #applications .eyebrow{color:#bab7d2!important;}
