:root {
  --ink: #111317;
  --ink-soft: #343941;
  --paper: #f7f8f5;
  --paper-2: #eef2ee;
  --line: rgba(17, 19, 23, 0.14);
  --line-dark: rgba(255, 255, 255, 0.16);
  --orange: #f28a13;
  --orange-dark: #b9570d;
  --green: #166b51;
  --teal: #1c7f8c;
  --blue: #2f5f9d;
  --red: #9c312c;
  --gold: #c98c13;
  --steel: #68727f;
  --shadow: 0 18px 45px rgba(17, 19, 23, 0.16);
  --max: 1180px;
  --header-h: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid rgba(242, 138, 19, 0.62);
  outline-offset: 3px;
}

.is-scroll-target {
  outline: 2px solid rgba(242, 138, 19, 0.42);
  outline-offset: 8px;
  transition: outline-color 220ms ease;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px clamp(16px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17, 19, 23, 0.08);
  transition: height 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  height: 68px;
  background: rgba(247, 248, 245, 0.96);
  box-shadow: 0 10px 30px rgba(17, 19, 23, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: clamp(140px, 16vw, 194px);
  height: auto;
  transition: width 180ms ease;
}

.site-header.is-scrolled .brand img {
  width: clamp(128px, 14vw, 164px);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  min-width: 0;
}

.site-nav > a,
.nav-trigger {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--ink-soft);
  background: transparent;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 750;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav > a:hover,
.nav-trigger:hover,
.nav-trigger[aria-expanded="true"] {
  background: rgba(17, 19, 23, 0.07);
  color: var(--ink);
}

.nav-trigger svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  transition: transform 160ms ease;
}

.nav-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.nav-group {
  position: relative;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: min(780px, calc(100vw - 44px));
  transform: translate(-50%, 10px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  border: 1px solid rgba(17, 19, 23, 0.1);
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(17, 19, 23, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-group:hover .nav-menu,
.nav-trigger[aria-expanded="true"] + .nav-menu,
.nav-group:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-card {
  min-height: 92px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 13px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(17, 19, 23, 0.1);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.mega-card:hover {
  background: var(--paper-2);
  border-color: rgba(242, 138, 19, 0.36);
  transform: translateY(-1px);
}

.mega-card-feature {
  grid-column: 1 / -1;
  min-height: 82px;
  background: linear-gradient(135deg, #111317, #17352c);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}

.menu-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(242, 138, 19, 0.13);
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 950;
}

.mega-card-feature .menu-icon {
  background: var(--orange);
  color: #111;
}

.nav-menu strong {
  display: block;
  font-size: 0.94rem;
  line-height: 1.25;
}

.nav-menu em {
  display: block;
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.35;
  font-style: normal;
}

.mega-card-feature em {
  color: rgba(255, 255, 255, 0.72);
}

.nav-cta {
  background: var(--orange) !important;
  color: #111 !important;
  font-weight: 800;
  padding-inline: 16px !important;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  position: relative;
  flex: 0 0 auto;
}

.menu-button span:not(.sr-only) {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: currentColor;
  transform-origin: center;
  transition: transform 180ms ease, top 180ms ease, opacity 180ms ease;
}

.menu-button span:nth-child(1) {
  top: 15px;
}

.menu-button span:nth-child(2) {
  top: 22px;
}

.menu-button span:nth-child(3) {
  top: 29px;
}

.menu-open .menu-button span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}

.menu-open .menu-button span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-button span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

main {
  min-height: 70vh;
}

.hero {
  min-height: min(780px, 86vh);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.8fr);
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
  padding: calc(var(--header-h) + 42px) clamp(18px, 5vw, 64px) 58px;
  color: #fff;
  overflow: hidden;
  background-color: #111317;
  background-image:
    linear-gradient(135deg, rgba(17, 19, 23, 0.94) 0%, rgba(24, 37, 31, 0.92) 48%, rgba(13, 17, 20, 0.98) 100%),
    repeating-linear-gradient(90deg, rgba(242, 138, 19, 0.12) 0 1px, transparent 1px 84px),
    repeating-linear-gradient(0deg, rgba(28, 127, 140, 0.1) 0 1px, transparent 1px 84px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0,0,0,0.5) 58%, transparent 100%);
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--orange), var(--green), var(--teal), var(--orange));
  opacity: 0.96;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
  padding-top: 20px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

html,
body,
#main,
#app {
  max-width: 100%;
  overflow-x: clip;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(2.5rem, 7vw, 5.9rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow),
.page-hero-copy > p {
  max-width: 650px;
  margin: 22px 0 0;
  font-size: clamp(1rem, 2vw, 1.22rem);
  color: rgba(255, 255, 255, 0.82);
}

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

.hero-application-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 24px;
}

.hero-application-list a {
  min-height: 74px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
}

.hero-application-list strong {
  font-size: 0.88rem;
}

.hero-application-list span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  color: #111;
  background: var(--orange);
  border-color: rgba(255, 255, 255, 0.12);
}

.button.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.button.ghost.dark {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.hero-proof {
  position: absolute;
  z-index: 2;
  left: clamp(18px, 5vw, 64px);
  right: clamp(18px, 5vw, 64px);
  bottom: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 940px;
}

.hero-proof span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(17, 19, 23, 0.48);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
}

.product-cockpit {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(17, 19, 23, 0.46);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.32);
  clip-path: polygon(7% 0, 100% 0, 100% 91%, 92% 100%, 0 100%, 0 7%);
}

.cockpit-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
}

.cockpit-rail {
  position: absolute;
  inset: 15%;
  border: 1px solid rgba(242, 138, 19, 0.42);
  border-radius: 50%;
}

.cockpit-rail::before,
.cockpit-rail::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(28, 127, 140, 0.46);
  border-radius: 50%;
}

.cockpit-rail::after {
  inset: 26%;
  border-color: rgba(255, 255, 255, 0.2);
}

.cockpit-core {
  position: absolute;
  inset: 36%;
  display: grid;
  place-items: center;
  gap: 4px;
  color: #fff;
  text-align: center;
  font-weight: 900;
  font-size: 0.74rem;
  text-transform: uppercase;
}

.brand-drop {
  width: 48%;
  aspect-ratio: 0.72;
  background: linear-gradient(180deg, #ffd26a 0%, var(--orange) 58%, #e55113 100%);
  clip-path: polygon(50% 0, 72% 28%, 93% 58%, 93% 78%, 78% 95%, 50% 100%, 22% 95%, 7% 78%, 7% 58%, 28% 28%);
  filter: drop-shadow(0 0 22px rgba(242, 138, 19, 0.48));
}

.cockpit-product {
  position: absolute;
  width: 34%;
  min-height: 92px;
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 8px;
  padding: 9px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--ink);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease;
}

.cockpit-product:hover {
  transform: translateY(-4px);
}

.cockpit-product img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.cockpit-product.cp-1 {
  left: 6%;
  top: 10%;
}

.cockpit-product.cp-2 {
  right: 5%;
  top: 20%;
}

.cockpit-product.cp-3 {
  left: 9%;
  bottom: 19%;
}

.cockpit-product.cp-4 {
  right: 7%;
  bottom: 10%;
}

.cockpit-readout {
  position: absolute;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  display: grid;
  gap: 2px;
  min-width: 148px;
  padding: 10px;
  text-align: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(17, 19, 23, 0.72);
  border-radius: 8px;
}

.cockpit-readout span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 900;
}

.cockpit-readout strong {
  color: var(--orange);
}

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

.quick-strip div {
  padding: 20px;
  display: grid;
  gap: 2px;
  border-right: 1px solid var(--line);
}

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

.quick-strip strong {
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1;
  color: var(--orange-dark);
}

.quick-strip span {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.section {
  padding: clamp(62px, 8vw, 110px) clamp(18px, 5vw, 64px);
}

.section-head {
  width: min(760px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.section-head h2,
.cta-copy h2,
.detail-copy h2,
.career-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-head p:not(.eyebrow),
.detail-copy p,
.cta-copy p,
.career-panel p,
.contact-copy p {
  color: var(--ink-soft);
  font-size: 1rem;
}

.intro-band {
  background: var(--paper);
}

.process-grid,
.product-grid,
.testimonial-grid,
.range-grid,
.insight-grid,
.values-grid,
.mini-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.process-step,
.value-card,
.range-item,
.insight-card,
.product-card,
.mini-card,
blockquote {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
}

.process-step {
  min-height: 220px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.process-step span,
.range-item span,
.value-card span {
  color: var(--orange-dark);
  font-weight: 900;
  font-size: 0.78rem;
}

.process-step h3,
.range-item h3,
.value-card h3,
.insight-card h3,
.product-body h3,
.mini-card strong {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

.process-step p,
.range-item p,
.value-card p,
.insight-card p,
.product-body p,
.mini-card span {
  color: var(--ink-soft);
  margin: 10px 0 0;
}

.products-band,
.range-band,
.contact-band,
.application-band {
  background: var(--paper-2);
}

.application-grid,
.featured-system-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

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

.application-card {
  min-height: 156px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 112px;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.application-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.application-card > span {
  color: var(--orange-dark);
  font-weight: 900;
  font-size: 0.78rem;
}

.application-card h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.1;
}

.application-card p {
  margin: 8px 0;
  color: var(--ink-soft);
}

.application-card strong {
  color: var(--green);
}

.application-card img {
  width: 112px;
  height: 104px;
  object-fit: contain;
}

.product-preview-band {
  background: #fff;
}

.featured-system-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.featured-system {
  min-height: 330px;
  display: grid;
  grid-template-rows: 170px minmax(0, 1fr);
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.featured-system:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.featured-system img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  padding: 14px;
  background: #fff;
}

.featured-system div {
  padding: 18px;
}

.featured-system span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 8px;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}

.featured-system h3 {
  margin: 12px 0 0;
  line-height: 1.12;
}

.featured-system p {
  margin: 8px 0 0;
  color: var(--ink-soft);
}

.center-action {
  width: min(var(--max), 100%);
  margin: 18px auto 0;
  display: flex;
  justify-content: center;
}

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

.product-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-image {
  position: relative;
  display: block;
  aspect-ratio: 1.32;
  overflow: hidden;
  background: #fff;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  transition: transform 220ms ease;
}

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

.image-chip {
  position: absolute;
  left: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 7px 9px;
  border-radius: 6px;
  color: #fff;
  font-weight: 900;
  font-size: 0.72rem;
  background: var(--ink);
}

.image-chip.amber,
.image-chip.gold {
  background: var(--orange-dark);
}

.image-chip.blue {
  background: var(--blue);
}

.image-chip.green {
  background: var(--green);
}

.image-chip.steel {
  background: var(--steel);
}

.image-chip.red {
  background: var(--red);
}

.product-body {
  padding: 18px;
}

.product-body h3 {
  font-size: 1.28rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 16px 0;
}

.tag-row span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.75rem;
  background: var(--paper);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: var(--orange-dark);
  font-weight: 900;
}

.text-link::after {
  content: "";
  width: 24px;
  height: 1px;
  margin-left: 8px;
  background: currentColor;
  transform-origin: left;
  transition: transform 160ms ease;
}

.text-link:hover::after {
  transform: scaleX(1.35);
}

.panel-band {
  background: #fff;
}

.decision-panel,
.career-panel {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.decision-list,
.career-list,
.faq-list {
  display: grid;
  gap: 10px;
}

.decision-link-card {
  min-height: 68px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.decision-link-card:hover {
  border-color: rgba(22, 107, 81, 0.42);
  box-shadow: 0 12px 26px rgba(17, 19, 23, 0.08);
  transform: translateY(-1px);
}

.decision-link-card strong {
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.16;
}

.decision-link-card span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.3;
}

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

summary {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 16px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--paper-2);
  color: var(--orange-dark);
}

details[open] summary::after {
  content: "-";
}

details p,
details a {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--ink-soft);
}

details a {
  display: inline-flex;
  font-weight: 900;
  color: var(--orange-dark);
}

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

blockquote {
  margin: 0;
  padding: 24px;
}

blockquote p {
  margin: 0;
  font-size: 1.02rem;
}

blockquote cite {
  display: block;
  margin-top: 18px;
  color: var(--orange-dark);
  font-style: normal;
  font-weight: 900;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(42px, 6vw, 70px) clamp(18px, 5vw, 64px);
  background:
    linear-gradient(90deg, rgba(17, 19, 23, 0.92), rgba(17, 19, 23, 0.8)),
    url("/assets/hero-4.jpg") center / cover;
  color: #fff;
}

.cta-copy {
  width: min(760px, 100%);
}

.cta-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.page-hero {
  min-height: auto;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 6vw, 82px);
  padding: calc(var(--header-h) + 54px) clamp(18px, 5vw, 64px) clamp(54px, 7vw, 86px);
  color: var(--ink);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 248, 245, 0.96), rgba(238, 242, 238, 0.86)),
    repeating-linear-gradient(90deg, rgba(17, 19, 23, 0.045) 0 1px, transparent 1px 96px);
}

.page-hero > img {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: min(380px, 46vh);
  object-fit: contain;
  padding: clamp(18px, 4vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 22px 70px rgba(17, 19, 23, 0.12);
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--orange), var(--green), var(--teal));
}

.page-hero-copy {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  width: min(840px, 100%);
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 5rem);
}

.page-hero-copy > p {
  color: var(--ink-soft);
}

.page-hero-copy span {
  display: inline-flex;
  margin-top: 18px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 6px;
  color: var(--ink-soft);
  font-weight: 800;
}

.compare-band,
.faq-band,
.related-band,
.about-band,
.career-band,
.insights-band {
  background: #fff;
}

.comparison-table {
  width: min(var(--max), 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.comparison-table > div,
.comparison-table > a {
  display: grid;
  grid-template-columns: 1.1fr 0.85fr 1.4fr;
  gap: 16px;
  align-items: center;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
}

.comparison-table > a:hover {
  background: var(--paper-2);
}

.comparison-table > *:last-child {
  border-bottom: 0;
}

.table-head {
  color: #fff;
  background: var(--ink);
  font-weight: 900;
}

.detail-grid,
.contact-grid,
.about-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

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

.check-list li {
  position: relative;
  padding: 0 0 0 30px;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.36em;
  width: 14px;
  height: 14px;
  border: 3px solid var(--orange);
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
}

.product-showcase {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(90deg, rgba(17, 19, 23, 0.04) 0 1px, transparent 1px 64px),
    #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.product-showcase img {
  max-height: 360px;
  width: auto;
  object-fit: contain;
  padding: 26px;
  filter: drop-shadow(0 16px 28px rgba(17, 19, 23, 0.18));
}

.showcase-readout {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 2px;
  padding: 14px;
  background: rgba(17, 19, 23, 0.9);
  color: #fff;
  border-radius: 6px;
}

.showcase-readout span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  text-transform: uppercase;
  font-weight: 900;
}

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

.range-item {
  min-height: 132px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.faq-list {
  width: min(840px, 100%);
  margin: 0 auto;
}

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

.mini-card {
  min-height: 250px;
  display: grid;
  grid-template-rows: 150px auto auto;
  gap: 10px;
  padding: 14px;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.mini-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.mini-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  transition: transform 180ms ease;
}

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

.value-card,
.insight-card {
  padding: 20px;
}

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

.insight-card span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--orange-dark);
  font-weight: 900;
  font-size: 0.76rem;
}

.career-panel {
  align-items: center;
}

.distributor-band {
  background: var(--paper-2);
}

.distributor-panel {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
}

.distributor-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.02;
}

.distributor-panel p {
  color: var(--ink-soft);
}

.distributor-steps {
  display: grid;
  gap: 10px;
}

.distributor-steps article {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
}

.distributor-steps span {
  color: var(--orange-dark);
  font-weight: 900;
}

.contact-copy {
  align-self: start;
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.contact-methods a,
.contact-methods span {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.enquiry-prep {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.enquiry-prep h3 {
  margin: 0 0 10px;
}

.enquiry-prep ul {
  margin: 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--ink-soft);
  font-weight: 800;
  font-size: 0.88rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 19, 23, 0.2);
  background: var(--paper);
  color: var(--ink);
  border-radius: 6px;
  padding: 12px;
  min-height: 46px;
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  color: #fff;
  background: #111317;
}

.footer-command {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: 24px;
  align-items: start;
  padding: 48px clamp(18px, 5vw, 64px) 32px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-command img {
  width: 210px;
  background: #fff;
  padding: 8px;
  border-radius: 6px;
}

.footer-command p {
  max-width: 640px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-contact a,
.footer-contact span {
  padding: 12px;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 32px clamp(18px, 5vw, 64px);
}

.footer-grid section {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-grid h2 {
  margin: 0 0 4px;
  color: var(--orange);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.76);
  min-height: 30px;
}

.footer-grid a:hover,
.footer-bottom a:hover,
.social-link:hover {
  color: #fff;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.social-link {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.035);
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.social-link:hover {
  background: rgba(242, 138, 19, 0.16);
  border-color: rgba(242, 138, 19, 0.5);
  transform: translateY(-2px);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.58);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 900;
}

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

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 1;
    transform: translateY(14px);
    transition: transform 520ms ease;
    transition-delay: var(--delay, 0ms);
  }

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

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 44px 44px, 44px 44px;
  }
}

@keyframes dropFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8%) scale(1.05);
  }
}

@keyframes railSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  45% {
    opacity: 0.78;
  }
  100% {
    opacity: 0;
    transform: scale(1.22);
  }
}

@keyframes flowScale {
  0%,
  100% {
    transform: scaleX(0.42);
  }
  50% {
    transform: scaleX(1);
  }
}

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

  .site-nav > a,
  .nav-trigger {
    padding-inline: 9px;
    font-size: 0.92rem;
  }

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

  .product-grid,
  .featured-system-grid,
  .range-grid,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  }

  .product-cockpit {
    width: min(100%, 420px);
  }
}

@media (max-width: 860px) {
  :root {
    --header-h: 72px;
  }

  .site-header {
    height: var(--header-h);
    padding-inline: 16px;
  }

  .brand img,
  .site-header.is-scrolled .brand img {
    width: min(154px, 48vw);
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 16px 16px 28px;
    background: rgba(255, 255, 255, 0.99);
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 220ms ease, visibility 0ms linear 220ms;
  }

  .menu-open .site-nav {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 220ms ease;
  }

  .site-nav > a,
  .nav-trigger,
  .nav-cta {
    width: 100%;
    min-height: 50px;
    justify-content: space-between;
    border: 1px solid var(--line);
    background: var(--paper);
    border-radius: 8px;
    padding-inline: 14px;
    font-size: 0.96rem;
  }

  .nav-group {
    display: grid;
    gap: 10px;
  }

  .nav-menu {
    position: static;
    width: 100%;
    transform: none;
    display: none;
    grid-template-columns: 1fr;
    gap: 8px;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    background: transparent;
    border: 0;
    padding: 0;
    color: var(--ink);
  }

  .nav-trigger[aria-expanded="true"] + .nav-menu {
    display: grid;
    transform: none;
  }

  .nav-group:hover .nav-menu {
    display: none;
  }

  .nav-group:hover .nav-trigger[aria-expanded="true"] + .nav-menu,
  .nav-group:focus-within .nav-trigger[aria-expanded="true"] + .nav-menu {
    display: grid;
  }

  .nav-menu a {
    min-height: 68px;
  }

  .mega-card {
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 68px;
    padding: 10px;
    border-radius: 8px;
  }

  .mega-card-feature {
    color: var(--ink);
    background: #fff;
    border-color: rgba(242, 138, 19, 0.34);
  }

  .mega-card-feature em {
    color: var(--ink-soft);
  }

  .menu-icon {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-inline: 18px;
    padding-bottom: 126px;
    align-items: start;
    gap: 24px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.4rem, 12vw, 4.2rem);
  }

  .page-hero {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: calc(var(--header-h) + 34px) 18px 42px;
  }

  .page-hero-copy,
  .page-hero > img {
    grid-column: 1;
  }

  .page-hero-copy {
    grid-row: 1;
  }

  .page-hero > img {
    grid-row: 2;
    height: min(310px, 38vh);
  }

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

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

  .hero-proof {
    bottom: 20px;
    left: 18px;
    right: 18px;
  }

  .product-cockpit {
    width: min(430px, calc(100vw - 36px));
    justify-self: center;
    aspect-ratio: 1.05;
  }

  .cockpit-product {
    grid-template-columns: 56px 1fr;
    min-height: 78px;
    width: 39%;
  }

  .cockpit-product img {
    width: 56px;
    height: 56px;
  }

  .quick-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
    width: 100%;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .quick-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .decision-panel,
  .career-panel,
  .distributor-panel,
  .detail-grid,
  .contact-grid,
  .about-grid,
  .footer-command,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .cta-band {
    align-items: start;
  }

  .cta-actions {
    margin-top: 0;
  }

  .process-grid,
  .product-grid,
  .application-grid,
  .featured-system-grid,
  .range-grid,
  .testimonial-grid,
  .mini-grid,
  .values-grid,
  .insight-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .process-step,
  .range-item {
    min-height: 150px;
  }

  .comparison-table > div,
  .comparison-table > a {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .product-showcase {
    min-height: 370px;
  }

  .product-showcase img {
    max-height: 280px;
  }

  .footer-bottom {
    min-height: auto;
    align-items: start;
    flex-direction: column;
    padding-block: 18px;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-bottom: 172px;
  }

  .hero-actions,
  .route-actions,
  .cta-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-proof span {
    width: 100%;
    justify-content: center;
  }

  .hero-application-list a {
    min-height: 62px;
  }

  .product-cockpit {
    aspect-ratio: 0.92;
  }

  .cockpit-product {
    position: static;
    width: 100%;
    min-height: 70px;
  }

  .product-cockpit {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px;
    clip-path: none;
    border-radius: 8px;
  }

  .cockpit-grid,
  .cockpit-rail,
  .cockpit-core,
  .cockpit-readout {
    display: none;
  }

  .application-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .application-card img {
    display: none;
  }

  .featured-system {
    min-height: 260px;
  }

  .featured-system img {
    height: 138px;
  }

  .page-hero > img {
    height: 230px;
    padding: 16px;
  }

  .section {
    padding-block: 56px;
  }

  .section-head {
    text-align: left;
  }

  .contact-form {
    padding: 16px;
  }
}

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

/* Global restraint pass: compact, professional, and quiet across all routes. */
:root {
  --max: 1120px;
  --header-h: 70px;
  --shadow: 0 14px 34px rgba(17, 19, 23, 0.1);
}

body {
  line-height: 1.5;
}

.site-header,
.site-header.is-scrolled {
  height: var(--header-h);
}

.brand img,
.site-header.is-scrolled .brand img {
  width: clamp(128px, 13vw, 168px);
}

.site-nav > a,
.nav-trigger {
  min-height: 40px;
  font-size: 0.86rem;
}

.hero {
  min-height: 600px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: clamp(22px, 4vw, 52px);
  padding: calc(var(--header-h) + 34px) clamp(18px, 5vw, 58px) 44px;
}

.hero::after {
  opacity: 0.32;
}

.hero::before,
.page-hero::after {
  height: 4px;
}

.hero-copy {
  width: min(620px, 100%);
  padding-top: 0;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(2.35rem, 4.8vw, 4.25rem);
  line-height: 1.02;
}

.page-hero h1 {
  max-width: 720px;
  font-size: clamp(2.15rem, 4.2vw, 3.8rem);
  line-height: 1.04;
}

.section-head h2,
.cta-copy h2,
.detail-copy h2,
.career-panel h2,
.distributor-panel h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.9rem);
  line-height: 1.08;
}

.hero-copy > p:not(.eyebrow),
.page-hero-copy > p {
  max-width: 560px;
  margin-top: 14px;
  font-size: 1rem;
}

.hero-actions,
.route-actions,
.cta-actions {
  margin-top: 22px;
}

.button {
  min-height: 42px;
  padding-inline: 15px;
  border-radius: 7px;
}

.hero-application-list {
  margin-top: 18px;
}

.hero-application-list a {
  min-height: 58px;
  padding: 10px;
}

.hero-proof {
  bottom: 16px;
}

.hero-proof span {
  min-height: 30px;
  font-size: 0.78rem;
}

.product-cockpit {
  width: min(100%, 440px);
  aspect-ratio: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  clip-path: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.cockpit-grid,
.cockpit-rail,
.cockpit-core,
.cockpit-readout {
  display: none;
}

.cockpit-product,
.cockpit-product.cp-1,
.cockpit-product.cp-2,
.cockpit-product.cp-3,
.cockpit-product.cp-4 {
  position: static;
  width: auto;
  min-height: 88px;
  grid-template-columns: 58px minmax(0, 1fr);
  padding: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
  font-size: 0.76rem;
}

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

.cockpit-product img {
  width: 58px;
  height: 58px;
}

.quick-strip {
  width: min(980px, calc(100% - 36px));
  margin-top: -16px;
}

.quick-strip div {
  padding: 15px 18px;
}

.quick-strip strong {
  font-size: clamp(1.45rem, 2.8vw, 2.2rem);
}

.section {
  padding: clamp(42px, 5.6vw, 76px) clamp(18px, 5vw, 58px);
}

.section-head {
  width: min(680px, 100%);
  margin-bottom: 24px;
}

.application-grid,
.featured-system-grid,
.product-grid,
.process-grid,
.testimonial-grid,
.range-grid,
.values-grid,
.insight-grid,
.mini-grid {
  gap: 12px;
}

.application-card {
  min-height: 128px;
  grid-template-columns: auto minmax(0, 1fr) 92px;
  gap: 12px;
  padding: 14px;
}

.application-card h3,
.product-body h3 {
  font-size: 1.08rem;
}

.application-card p,
.product-body p,
.featured-system p,
.process-step p,
.value-card p,
.insight-card p {
  font-size: 0.88rem;
}

.application-card img {
  width: 92px;
  height: 82px;
}

.process-step {
  min-height: 160px;
  padding: 15px;
}

.featured-system {
  min-height: 270px;
  grid-template-rows: 132px minmax(0, 1fr);
}

.featured-system img {
  height: 132px;
}

.featured-system div,
.product-body,
.value-card,
.insight-card,
blockquote {
  padding: 16px;
}

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

.product-image {
  aspect-ratio: 1.42;
}

.tag-row {
  margin: 12px 0;
}

.panel-band,
.testimonials-band,
.product-preview-band {
  padding-block: clamp(42px, 5vw, 68px);
}

.decision-panel,
.career-panel,
.detail-grid,
.contact-grid,
.about-grid,
.distributor-panel {
  gap: clamp(20px, 4vw, 44px);
}

.page-hero {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: clamp(20px, 4vw, 48px);
  padding: calc(var(--header-h) + 36px) clamp(18px, 5vw, 58px) 42px;
}

.page-hero > img {
  height: min(280px, 38vh);
  padding: 20px;
  box-shadow: 0 14px 36px rgba(17, 19, 23, 0.1);
}

.page-hero-copy span {
  margin-top: 14px;
  font-size: 0.86rem;
}

.product-showcase {
  min-height: 320px;
}

.product-showcase img {
  max-height: 260px;
}

.range-item {
  min-height: 104px;
  padding: 15px;
}

.faq-list {
  width: min(740px, 100%);
}

summary {
  min-height: 48px;
}

.cta-band {
  padding: clamp(32px, 4.8vw, 52px) clamp(18px, 5vw, 58px);
}

.footer-command,
.footer-grid {
  padding-inline: clamp(18px, 5vw, 58px);
}

@media (max-width: 860px) {
  :root {
    --header-h: 64px;
  }

  .site-header,
  .site-header.is-scrolled {
    height: var(--header-h);
    padding-inline: 12px;
  }

  .brand img,
  .site-header.is-scrolled .brand img {
    width: min(128px, 42vw);
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }

  .site-nav {
    inset: var(--header-h) 0 0 0;
    gap: 8px;
    padding: 12px 12px 22px;
  }

  .site-nav > a,
  .nav-trigger,
  .nav-cta {
    min-height: 46px;
  }

  .mega-card {
    min-height: 58px;
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 8px;
  }

  .menu-icon {
    width: 34px;
    height: 34px;
  }

  .nav-menu strong {
    font-size: 0.88rem;
  }

  .nav-menu em {
    font-size: 0.74rem;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: calc(var(--header-h) + 24px) 14px 28px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2rem, 9vw, 2.85rem);
    line-height: 1.06;
  }

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

  .hero-copy > p:not(.eyebrow),
  .page-hero-copy > p {
    margin-top: 12px;
    font-size: 0.93rem;
  }

  .hero-actions {
    margin-top: 16px;
  }

  .hero-application-list {
    grid-template-columns: 1fr;
    margin-top: 14px;
  }

  .hero-application-list a {
    min-height: 48px;
  }

  .product-cockpit {
    width: auto;
    min-width: 0;
    justify-self: stretch;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px;
  }

  .cockpit-product,
  .cockpit-product.cp-1,
  .cockpit-product.cp-2,
  .cockpit-product.cp-3,
  .cockpit-product.cp-4 {
    min-height: 58px;
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 8px;
    min-width: 0;
  }

  .cockpit-product span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .cockpit-product img {
    width: 44px;
    height: 44px;
  }

  .hero-proof {
    display: none;
  }

  .quick-strip {
    width: 100%;
  }

  .quick-strip div {
    padding: 12px 16px;
  }

  .section {
    padding: 40px 14px;
  }

  .section-head {
    text-align: left;
    margin-bottom: 18px;
  }

  .section-head h2,
  .cta-copy h2,
  .detail-copy h2,
  .career-panel h2,
  .distributor-panel h2 {
    font-size: clamp(1.55rem, 7vw, 2.2rem);
  }

  .application-card {
    grid-template-columns: auto minmax(0, 1fr) 72px;
    min-height: 100px;
    padding: 12px;
  }

  .application-card img {
    width: 72px;
    height: 66px;
  }

  .process-step,
  .range-item {
    min-height: 112px;
  }

  .featured-system {
    min-height: 230px;
  }

  .page-hero {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: calc(var(--header-h) + 24px) 14px 34px;
  }

  .page-hero-copy,
  .page-hero > img {
    grid-column: 1;
  }

  .page-hero-copy {
    grid-row: 1;
  }

  .page-hero > img {
    grid-row: 2;
    height: 210px;
    padding: 14px;
  }

  .product-showcase {
    min-height: 250px;
  }

  .product-showcase img {
    max-height: 200px;
  }

  .showcase-readout {
    position: static;
    margin: 0 12px 12px;
  }

  .footer-command,
  .footer-grid,
  .footer-bottom {
    padding-inline: 14px;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-bottom: 24px;
  }

  .button {
    width: 100%;
  }

  .application-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .application-card img {
    display: none;
  }

  .featured-system img {
    height: 118px;
  }

  .cta-band {
    padding-block: 30px;
  }
}

/* Executive redesign pass: light, restrained, responsive, and product-led. */
:root {
  --ink: #17191c;
  --ink-soft: #515962;
  --paper: #ffffff;
  --paper-2: #f4f6f4;
  --line: rgba(23, 25, 28, 0.12);
  --orange: #f28a13;
  --orange-dark: #a84e0b;
  --green: #165f49;
  --teal: #19727d;
  --max: 1160px;
  --header-h: 68px;
  --shadow: 0 16px 40px rgba(23, 25, 28, 0.1);
}

body {
  background: #fff;
  color: var(--ink);
  font-size: 15px;
}

.site-header,
.site-header.is-scrolled {
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: none;
}

.brand img,
.site-header.is-scrolled .brand img {
  width: clamp(128px, 12vw, 158px);
}

.site-nav > a,
.nav-trigger {
  font-size: 0.84rem;
  font-weight: 700;
}

.nav-cta {
  border-radius: 999px !important;
}

.hero {
  min-height: auto;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.85fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  padding: calc(var(--header-h) + 42px) clamp(18px, 5vw, 58px) 54px;
  color: var(--ink);
  background:
    linear-gradient(90deg, #fff 0%, #fff 58%, #f2f5f2 58%, #f2f5f2 100%);
  border-bottom: 1px solid var(--line);
}

.hero::before,
.hero::after {
  display: none;
}

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

.eyebrow {
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 800;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(2.2rem, 4.4vw, 3.9rem);
  line-height: 1.06;
  font-weight: 720;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--ink-soft);
  font-size: 1rem;
}

.button {
  border-radius: 6px;
  font-weight: 760;
}

.button.ghost {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.hero-application-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.hero-application-list a {
  min-height: 62px;
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.hero-application-list span {
  color: var(--ink-soft);
}

.product-cockpit {
  width: min(100%, 520px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.hero-panel-image {
  min-height: 320px;
  position: relative;
  display: grid;
  place-items: center;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.hero-panel-image img {
  width: 100%;
  max-height: 270px;
  object-fit: contain;
}

.hero-panel-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-panel-caption span {
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel-caption strong {
  font-size: 0.92rem;
}

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

.hero-panel-list a {
  min-height: 62px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-panel-list span {
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 800;
}

.hero-panel-list strong {
  font-size: 0.86rem;
  line-height: 1.2;
}

.hero-proof {
  display: none;
}

.quick-strip {
  position: relative;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  transform: translateY(-1px);
  box-shadow: none;
  border-top: 0;
  border-radius: 0 0 8px 8px;
}

.quick-strip div {
  padding: 14px 18px;
}

.quick-strip strong {
  font-size: 1.55rem;
  font-weight: 720;
}

.section {
  padding: clamp(42px, 5vw, 70px) clamp(18px, 5vw, 58px);
}

.section-head {
  width: min(660px, 100%);
  margin-bottom: 24px;
}

.section-head h2,
.cta-copy h2,
.detail-copy h2,
.career-panel h2,
.distributor-panel h2 {
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  font-weight: 700;
  line-height: 1.12;
}

.section-head p:not(.eyebrow),
.detail-copy p,
.cta-copy p,
.career-panel p,
.contact-copy p {
  color: var(--ink-soft);
}

.application-band,
.products-band,
.range-band,
.contact-band {
  background: var(--paper-2);
}

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

.application-card {
  min-height: 150px;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  padding: 16px;
  box-shadow: none;
}

.application-card img {
  display: none;
}

.application-card h3 {
  font-size: 1.04rem;
}

.application-card p {
  margin: 8px 0 10px;
}

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

.process-step {
  min-height: 150px;
  background: #fff;
}

.product-grid {
  gap: 14px;
}

.featured-system-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

.featured-system {
  min-height: 250px;
  background: #fff;
}

.featured-primary {
  grid-row: span 2;
  min-height: 420px;
}

.featured-system:not(.featured-primary) {
  min-height: 203px;
  grid-template-columns: 150px minmax(0, 1fr);
  grid-template-rows: 1fr;
}

.featured-system:not(.featured-primary) img {
  height: 100%;
  min-height: 203px;
}

.featured-system img {
  height: 124px;
}

.featured-primary img {
  height: 250px;
  padding: 22px;
}

.product-card,
.featured-system,
.process-step,
.application-card,
.value-card,
.range-item,
.insight-card,
.mini-card,
blockquote,
details,
.contact-form,
.enquiry-prep,
.contact-methods a,
.contact-methods span {
  border-radius: 7px;
  box-shadow: none;
}

.product-card:hover,
.featured-system:hover,
.application-card:hover,
.mini-card:hover {
  box-shadow: 0 12px 26px rgba(23, 25, 28, 0.09);
}

.decision-panel,
.career-panel,
.detail-grid,
.contact-grid,
.about-grid,
.distributor-panel {
  width: min(var(--max), 100%);
}

.page-hero {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.56fr);
  gap: clamp(24px, 4vw, 54px);
  padding: calc(var(--header-h) + 34px) clamp(18px, 5vw, 58px) 42px;
  background:
    linear-gradient(90deg, #fff 0%, #fff 58%, #f2f5f2 58%, #f2f5f2 100%);
}

.page-hero h1 {
  font-size: clamp(2rem, 3.9vw, 3.45rem);
  font-weight: 720;
}

.page-hero > img {
  height: min(250px, 34vh);
  padding: 18px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.page-hero-copy span {
  font-weight: 720;
  color: var(--ink);
}

.product-showcase {
  min-height: 290px;
}

.product-showcase img {
  max-height: 230px;
}

.showcase-readout {
  background: rgba(23, 25, 28, 0.88);
}

.cta-band {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr) auto;
  background: #111317;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  gap: 20px;
  align-items: center;
  padding-top: clamp(36px, 4vw, 54px);
  padding-bottom: clamp(28px, 3vw, 42px);
}

.cta-band .eyebrow {
  color: var(--orange);
}

.cta-copy p {
  max-width: 760px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.cta-proof {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.cta-proof span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.cta-proof strong {
  font-size: 0.86rem;
  line-height: 1.2;
}

.cta-band .button.ghost.dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  background: transparent;
}

.footer-bottom a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 860px) {
  :root {
    --header-h: 62px;
  }

  .site-header,
  .site-header.is-scrolled {
    padding-inline: 12px;
  }

  .brand img,
  .site-header.is-scrolled .brand img {
    width: min(118px, 38vw);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: calc(var(--header-h) + 24px) 14px 30px;
    background: #fff;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(1.9rem, 8vw, 2.65rem);
  }

  .hero-copy > p:not(.eyebrow),
  .page-hero-copy > p {
    font-size: 0.92rem;
  }

  .hero-application-list,
  .hero-panel-list {
    grid-template-columns: 1fr;
  }

  .hero-application-list {
    display: none;
  }

  .hero-application-list a,
  .hero-panel-list a {
    min-height: 48px;
  }

  .hero-panel-image {
    min-height: 174px;
    padding: 14px;
  }

  .hero-panel-image img {
    max-height: 160px;
  }

  .hero-panel-caption {
    position: static;
    margin-top: 10px;
  }

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

  .quick-strip div {
    padding: 10px 12px;
  }

  .quick-strip strong {
    font-size: 1.2rem;
  }

  .quick-strip span {
    font-size: 0.72rem;
  }

  .section {
    padding: 34px 14px;
  }

  .section-head {
    text-align: left;
    margin-bottom: 18px;
  }

  .section-head h2,
  .cta-copy h2,
  .detail-copy h2,
  .career-panel h2,
  .distributor-panel h2 {
    font-size: clamp(1.45rem, 6vw, 2rem);
  }

  .application-grid,
  .process-grid,
  .product-grid,
  .featured-system-grid,
  .testimonial-grid,
  .range-grid,
  .values-grid,
  .insight-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .featured-system:not(.featured-primary) {
    min-height: 230px;
    grid-template-columns: 1fr;
    grid-template-rows: 118px minmax(0, 1fr);
  }

  .featured-system:not(.featured-primary) img {
    min-height: 0;
    height: 118px;
  }

  .featured-primary {
    grid-row: auto;
    min-height: 230px;
  }

  .featured-primary img {
    height: 128px;
    padding: 14px;
  }

  .application-card,
  .process-step {
    min-height: 0;
  }

  .page-hero {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: calc(var(--header-h) + 24px) 14px 30px;
    background: #fff;
  }

  .page-hero > img {
    height: 190px;
    padding: 14px;
  }

  .detail-grid,
  .contact-grid,
  .about-grid,
  .decision-panel,
  .career-panel,
  .distributor-panel,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .cta-proof {
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .route-actions,
  .cta-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .quick-strip div {
    border-right: 0;
  }

  .featured-system img {
    height: 112px;
  }
}

@media (max-width: 860px) {
  .menu-open .site-header,
  .menu-open .site-header.is-scrolled {
    background: #fff;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: auto;
    left: 0;
    z-index: 120;
    height: calc(100dvh - var(--header-h));
    max-height: calc(100dvh - var(--header-h));
    padding: 12px 12px calc(22px + env(safe-area-inset-bottom));
    overflow-y: auto;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 24px 48px rgba(23, 25, 28, 0.14);
  }

  .menu-open .site-nav {
    display: grid;
    align-content: start;
  }

  .nav-menu {
    max-width: none;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 14px;
  }

  .hero {
    gap: 12px;
    padding: calc(var(--header-h) + 14px) 12px 18px;
  }

  .eyebrow {
    margin-bottom: 6px;
    font-size: 0.64rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(1.55rem, 7vw, 2.05rem);
    line-height: 1.06;
  }

  .hero-copy > p:not(.eyebrow),
  .page-hero-copy > p {
    margin-top: 8px;
    font-size: 0.84rem;
    line-height: 1.42;
  }

  .hero-actions,
  .route-actions,
  .cta-actions {
    gap: 7px;
    margin-top: 12px;
  }

  .button {
    min-height: 44px;
    padding-inline: 12px;
  }

  .hero-panel-image {
    min-height: 132px;
    padding: 10px;
  }

  .hero-panel-image img {
    max-height: 112px;
  }

  .hero-panel-caption {
    margin-top: 8px;
    padding: 8px 10px;
  }

  .hero-panel-caption strong {
    font-size: 0.8rem;
  }

  .hero-panel-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .hero-panel-list a {
    min-height: 48px;
    padding: 8px 7px;
  }

  .hero-panel-list strong {
    font-size: 0.72rem;
  }

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

  .quick-strip div {
    padding: 8px 6px;
    border-right: 1px solid var(--line);
  }

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

  .quick-strip strong {
    font-size: 0.98rem;
  }

  .quick-strip span {
    font-size: 0.62rem;
    line-height: 1.2;
  }

  .section {
    padding: 24px 12px;
  }

  .section-head {
    margin-bottom: 12px;
  }

  .section-head h2,
  .cta-copy h2,
  .detail-copy h2,
  .career-panel h2,
  .distributor-panel h2 {
    font-size: clamp(1.2rem, 5.4vw, 1.55rem);
    line-height: 1.12;
  }

  .section-head p:not(.eyebrow) {
    font-size: 0.8rem;
    line-height: 1.4;
  }

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

  .application-card {
    min-height: 96px;
    padding: 10px;
    gap: 7px;
  }

  .application-card > span {
    font-size: 0.64rem;
  }

  .application-card h3 {
    font-size: 0.86rem;
  }

  .application-card p {
    display: none;
  }

  .application-card strong {
    display: block;
    margin-top: 6px;
    font-size: 0.7rem;
    line-height: 1.25;
  }

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

  .process-step {
    min-height: 104px;
    padding: 10px;
  }

  .process-step h3 {
    font-size: 0.86rem;
  }

  .process-step p {
    margin-top: 6px;
    font-size: 0.72rem;
    line-height: 1.32;
  }

  .featured-system,
  .featured-primary,
  .featured-system:not(.featured-primary) {
    min-height: 96px;
    grid-template-columns: 82px minmax(0, 1fr);
    grid-template-rows: 1fr;
  }

  .featured-system img,
  .featured-primary img,
  .featured-system:not(.featured-primary) img {
    width: 82px;
    height: 96px;
    min-height: 0;
    padding: 8px;
  }

  .featured-system div {
    padding: 10px;
  }

  .featured-system span {
    min-height: 22px;
    font-size: 0.6rem;
  }

  .featured-system h3 {
    margin-top: 7px;
    font-size: 0.9rem;
  }

  .featured-system p {
    display: none;
  }

  .center-action {
    margin-top: 10px;
  }

  .decision-panel,
  .career-panel,
  .detail-grid,
  .contact-grid,
  .about-grid,
  .distributor-panel {
    gap: 14px;
  }

  .decision-list {
    gap: 6px;
  }

  summary {
    min-height: 44px;
    padding: 0 10px;
    font-size: 0.84rem;
  }

  blockquote,
  .value-card,
  .range-item,
  .insight-card,
  .mini-card {
    padding: 10px;
  }

  blockquote p {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.35;
  }

  blockquote cite {
    margin-top: 8px;
    font-size: 0.72rem;
  }

  .cta-band {
    gap: 12px;
    padding: 24px 12px;
  }

  .cta-proof {
    min-height: 0;
    padding: 10px;
  }

  .cta-proof strong {
    font-size: 0.8rem;
  }

  .footer-command,
  .footer-grid,
  .footer-bottom {
    padding-inline: 12px;
  }

  .footer-command {
    gap: 14px;
    padding-block: 24px;
  }

  .footer-brand img {
    width: 128px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding-block: 22px;
  }
}

@media (max-width: 640px) {
  .page-hero {
    gap: 12px;
    padding: calc(var(--header-h) + 16px) 12px 22px;
  }

  .page-hero > img {
    height: 148px;
    padding: 10px;
  }

  .page-hero-copy span {
    margin-top: 10px;
    padding: 8px 10px;
    font-size: 0.74rem;
    line-height: 1.3;
  }

  .product-grid {
    gap: 8px;
  }

  .product-card {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    min-height: 132px;
  }

  .product-image {
    height: 100%;
    min-height: 132px;
    aspect-ratio: auto;
  }

  .product-image img {
    padding: 8px;
  }

  .image-chip {
    left: 6px;
    right: 6px;
    bottom: 6px;
    max-width: none;
    padding: 5px 6px;
    font-size: 0.56rem;
    line-height: 1.15;
  }

  .product-body {
    padding: 10px;
  }

  .product-body .eyebrow {
    margin-bottom: 5px;
    font-size: 0.58rem;
  }

  .product-body h3 {
    font-size: 0.92rem;
  }

  .product-body p {
    margin-top: 5px;
    font-size: 0.74rem;
    line-height: 1.3;
  }

  .tag-row {
    display: none;
  }

  .text-link {
    min-height: 34px;
    margin-top: 6px;
    font-size: 0.74rem;
  }

  .comparison-table {
    font-size: 0.72rem;
  }

  .comparison-table a,
  .comparison-table div[role="row"] {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px;
  }

  .detail-grid {
    gap: 12px;
  }

  .check-list {
    margin: 12px 0;
  }

  .check-list li {
    margin-top: 7px;
    font-size: 0.8rem;
  }

  .product-showcase {
    min-height: 198px;
  }

  .product-showcase img {
    max-height: 146px;
  }

  .showcase-readout {
    padding: 9px;
    font-size: 0.74rem;
  }

  .range-grid,
  .mini-grid {
    gap: 8px;
  }

  .range-item {
    min-height: 76px;
  }

  .mini-card {
    display: grid;
    grid-template-columns: 94px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-height: 108px;
  }

  .mini-card img {
    grid-row: 1 / span 2;
    width: 94px;
    height: 94px;
    object-fit: contain;
    margin: 0;
  }

  .mini-card strong {
    grid-column: 2;
    font-size: 0.86rem;
  }

  .mini-card span {
    grid-column: 2;
    margin-top: 5px;
    font-size: 0.72rem;
    line-height: 1.3;
  }

  .contact-form,
  .enquiry-prep {
    padding: 14px;
  }

  .contact-methods {
    gap: 7px;
  }

  .contact-methods a,
  .contact-methods span {
    min-height: 44px;
    padding: 9px 11px;
  }
}

@media (max-width: 860px) {
  .site-header,
  .site-header.is-scrolled {
    padding-left: 12px;
    padding-right: 28px;
  }

  .menu-button {
    margin-right: 0;
  }
}

@media (max-width: 420px) {
  .site-header,
  .site-header.is-scrolled {
    padding-right: 24px;
  }
}

.nested-product-band {
  background: #fff;
}

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

.subproduct-card,
.legacy-spec-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 7px;
  box-shadow: none;
}

.subproduct-card {
  min-height: 132px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 14px;
}

.subproduct-card span,
.legacy-spec-card span {
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.subproduct-card strong,
.legacy-spec-card strong {
  display: block;
  font-size: 1rem;
  line-height: 1.15;
}

.subproduct-card em {
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.35;
  font-style: normal;
}

.legacy-detail-band {
  background: var(--paper-2);
}

.legacy-detail-panel {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: start;
}

.legacy-detail-panel h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3.2vw, 2.7rem);
  line-height: 1.1;
}

.legacy-detail-panel p {
  color: var(--ink-soft);
}

.legacy-spec-card {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.legacy-spec-card p {
  margin: 0;
  color: var(--ink-soft);
}

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

  .legacy-detail-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .subproduct-grid {
    gap: 8px;
  }

  .subproduct-card {
    min-height: 118px;
    padding: 10px;
  }

  .subproduct-card strong,
  .legacy-spec-card strong {
    font-size: 0.86rem;
  }

  .subproduct-card em {
    font-size: 0.72rem;
  }

  .legacy-detail-panel h2 {
    font-size: clamp(1.2rem, 5.4vw, 1.55rem);
  }

  .legacy-spec-card {
    padding: 12px;
  }
}



.button.ghost.compact {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.trust-strip {
  width: min(var(--max), calc(100% - 36px));
  margin: 16px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.trust-strip div {
  min-height: 118px;
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}

.trust-strip span {
  color: var(--orange-dark);
  font-size: 0.7rem;
  font-weight: 900;
}

.trust-strip strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.12;
}

.trust-strip em {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-style: normal;
  line-height: 1.35;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.legal-links a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
}

.legal-band {
  background: #fff;
}

.legal-grid {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.legal-card {
  min-height: 178px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}

.legal-card span {
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.legal-card h2 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.14;
}

.legal-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

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

@media (max-width: 860px) {
  .site-nav .nav-menu em {
    display: none;
  }

  .site-nav .nav-menu a,
  .site-nav .mega-card {
    min-height: 52px;
  }

  .site-nav .mega-card-feature {
    min-height: 56px;
  }
}

@media (max-width: 640px) {
  .trust-strip {
    width: calc(100% - 24px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 10px;
    gap: 7px;
  }

  .trust-strip div {
    min-height: 82px;
    padding: 10px;
  }

  .trust-strip strong {
    font-size: 0.84rem;
  }

  .trust-strip em {
    display: none;
  }

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

  .legal-card {
    min-height: 0;
    padding: 13px;
  }

  .legal-card h2 {
    font-size: 0.95rem;
  }

  .legal-card p {
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .legal-links {
    width: 100%;
    justify-content: flex-start;
    gap: 8px 14px;
  }

  .legal-links a {
    min-height: 36px;
  }
}

/* Final cohesive pass */
.nav-group::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 16px;
  opacity: 0;
  pointer-events: none;
}

.nav-group:hover::after,
.nav-group.nav-group-open::after,
.nav-group:focus-within::after {
  pointer-events: auto;
}

.nav-group.nav-group-open .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-menu {
  top: calc(100% + 8px);
  width: min(740px, calc(100vw - 44px));
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(17, 19, 23, 0.16);
}

.mega-card {
  min-height: 84px;
  grid-template-columns: 38px minmax(0, 1fr);
  border-radius: 8px;
}

.mega-card-feature {
  min-height: 74px;
  background: linear-gradient(135deg, #0d3329, #123f39);
}

.menu-icon {
  position: relative;
  width: 38px;
  height: 38px;
  overflow: hidden;
  border-radius: 12px;
  background: #f7efe5;
  color: transparent;
  font-size: 0;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: inherit;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mega-card:hover .menu-icon::before {
  transform: translateX(3px) rotate(8deg);
}

.mega-card:hover .menu-icon::after {
  transform: translateX(-2px) rotate(-8deg);
}

.menu-all {
  background: conic-gradient(from 45deg, var(--orange), var(--green), var(--teal), var(--orange));
}

.menu-all::before {
  inset: 8px;
  background: #fff;
}

.menu-all::after {
  inset: 14px;
  background: var(--orange);
}

.menu-transfer::before {
  inset: 10px 7px;
  background: linear-gradient(90deg, var(--orange) 0 28%, var(--green) 28% 52%, var(--blue) 52% 76%, var(--teal) 76%);
  border-radius: 999px;
}

.menu-transfer::after {
  inset: 15px 8px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
}

.menu-breather::before {
  inset: 7px 11px;
  border: 3px solid var(--orange);
  border-top-color: var(--green);
  border-bottom-color: var(--teal);
  border-radius: 999px;
}

.menu-breather::after {
  inset: 13px 17px;
  background: var(--green);
  border-radius: 999px;
}

.menu-sight::before {
  inset: 7px;
  border: 3px solid var(--gold);
  border-radius: 50%;
}

.menu-sight::after {
  inset: 14px 8px;
  background: rgba(28, 127, 140, 0.28);
  border-radius: 999px;
}

.menu-lube::before {
  inset: 7px 12px;
  background: linear-gradient(180deg, #ffd069, var(--orange));
  clip-path: polygon(50% 0, 78% 34%, 92% 68%, 78% 92%, 50% 100%, 22% 92%, 8% 68%, 22% 34%);
}

.menu-lube::after {
  inset: 19px 18px 8px 18px;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
}

.menu-clean::before {
  inset: 9px 8px;
  background:
    linear-gradient(var(--green), var(--green)) 0 0 / 100% 4px,
    linear-gradient(var(--teal), var(--teal)) 0 8px / 100% 4px,
    linear-gradient(var(--orange), var(--orange)) 0 16px / 100% 4px;
  background-repeat: no-repeat;
}

.menu-clean::after {
  inset: 7px 16px;
  background: rgba(17, 19, 23, 0.18);
  border-radius: 999px;
}

.menu-sample::before {
  inset: 8px 13px;
  border: 2px solid var(--teal);
  border-top: 5px solid var(--green);
  border-radius: 5px 5px 9px 9px;
}

.menu-sample::after {
  inset: 22px 15px 8px;
  background: var(--orange);
  border-radius: 0 0 7px 7px;
}

.hero {
  min-height: min(710px, 88vh);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(9, 33, 27, 0.96) 0%, rgba(13, 57, 48, 0.9) 48%, rgba(9, 33, 27, 0.72) 100%),
    url("/assets/hero-1.jpg") center / cover;
  padding: calc(var(--header-h) + 34px) clamp(18px, 5vw, 64px) 56px;
}

.hero::after {
  display: none;
}

.hero h1 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(2.35rem, 5.2vw, 4.65rem);
  line-height: 1.02;
}

.hero-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.hero .button.ghost,
.hero .button.ghost.compact {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
}

.hero-application-list a {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-application-list span {
  color: rgba(255, 255, 255, 0.68);
}

.product-cockpit {
  width: min(100%, 500px);
  gap: 10px;
}

.hero-workflow-card {
  display: grid;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(4, 24, 20, 0.78);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
}

.workflow-head {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.workflow-head .eyebrow {
  margin-bottom: 2px;
}

.workflow-head strong {
  display: block;
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.28;
}

.workflow-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: conic-gradient(from 90deg, var(--orange), var(--green), var(--teal), var(--orange));
  position: relative;
}

.workflow-mark::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: #fff;
}

.hero-workflow-card img {
  width: 100%;
  height: 244px;
  object-fit: cover;
  border-radius: 9px;
  background: #fff;
}

.hero-panel-list a {
  min-height: 54px;
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-panel-list strong {
  color: #fff;
}

.quick-strip {
  position: relative;
  z-index: 3;
  width: min(var(--max), calc(100% - 36px));
  margin: -24px auto 0;
  transform: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 36px rgba(17, 19, 23, 0.1);
}

.quick-strip a {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 15px 16px;
  border-right: 1px solid var(--line);
}

.quick-strip a:last-child {
  border-right: 0;
}

.quick-strip strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.14;
}

.quick-strip span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.35;
}

.section {
  padding: clamp(30px, 4vw, 52px) clamp(18px, 5vw, 58px);
}

.application-band {
  padding-top: clamp(38px, 4.5vw, 58px);
}

.intro-band,
.product-preview-band,
.panel-band {
  padding-top: clamp(28px, 3.5vw, 48px);
  padding-bottom: clamp(28px, 3.5vw, 48px);
}

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

.process-step {
  min-height: 124px;
  padding: 14px;
}

.featured-system-grid {
  gap: 10px;
}

.featured-primary {
  min-height: 360px;
}

.featured-system:not(.featured-primary) {
  min-height: 174px;
}

.featured-system:not(.featured-primary) img {
  min-height: 174px;
}

.site-footer {
  background:
    linear-gradient(135deg, #0f1412 0%, #0d241e 100%);
}

.footer-command {
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.82fr);
  gap: 22px;
  padding: 24px clamp(18px, 5vw, 64px) 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-command p {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

.footer-grid {
  padding-block: 24px;
}

@media (max-width: 860px) {
  .nav-group::after {
    display: none;
  }

  .nav-group.nav-group-open .nav-menu {
    transform: none;
  }

  .mega-card,
  .site-nav .mega-card {
    grid-template-columns: 36px minmax(0, 1fr);
    min-height: 52px;
    padding: 8px 10px;
  }

  .menu-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .site-nav .mega-card-feature,
  .site-nav .mega-card-feature strong {
    color: #fff;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    gap: 14px;
    padding: calc(var(--header-h) + 16px) 12px 28px;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.45rem);
  }

  .hero-copy > p:not(.eyebrow) {
    margin-top: 10px;
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .hero-actions {
    margin-top: 14px;
    gap: 7px;
  }

  .hero-application-list {
    margin-top: 12px;
    gap: 6px;
  }

  .hero-application-list a {
    min-height: 50px;
    padding: 8px;
  }

  .product-cockpit {
    gap: 8px;
  }

  .hero-workflow-card {
    gap: 10px;
    padding: 10px;
    border-radius: 9px;
  }

  .workflow-head {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 9px;
  }

  .workflow-mark {
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }

  .workflow-head strong {
    font-size: 0.8rem;
  }

  .hero-workflow-card img {
    height: 112px;
  }

  .hero-panel-list {
    gap: 6px;
  }

  .hero-panel-list a {
    min-height: 44px;
    padding: 8px;
  }

  .hero-panel-list strong {
    font-size: 0.68rem;
    line-height: 1.18;
  }

  .quick-strip {
    width: calc(100% - 24px);
    margin-top: -10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-strip a {
    min-height: 76px;
    padding: 10px;
  }

  .quick-strip a:nth-child(2) {
    border-right: 0;
  }

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

  .quick-strip strong {
    font-size: 0.78rem;
  }

  .quick-strip span {
    font-size: 0.66rem;
  }

  .section {
    padding: 26px 12px;
  }

  .application-band {
    padding-top: 30px;
  }

  .section-head {
    margin-bottom: 12px;
  }

  .process-step {
    min-height: 108px;
  }

  .footer-command {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-block: 24px;
  }

  .footer-contact {
    width: 100%;
  }

  .footer-contact a,
  .footer-contact span {
    min-height: 42px;
    padding: 10px;
  }

  .featured-system-grid {
    gap: 8px;
  }

  .featured-system,
  .featured-primary,
  .featured-system:not(.featured-primary) {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    align-items: center;
    min-height: 108px;
  }

  .featured-system img,
  .featured-primary img,
  .featured-system:not(.featured-primary) img {
    width: 92px;
    height: 92px;
    min-height: 92px;
    padding: 8px;
    object-fit: contain;
  }

  .featured-system div {
    padding: 10px;
  }

  .featured-system p {
    display: none;
  }

  .decision-link-card {
    min-height: 58px;
    padding: 10px 12px;
  }

  .decision-link-card strong {
    font-size: 0.84rem;
  }

  .decision-link-card span {
    font-size: 0.68rem;
  }

  .cta-band {
    gap: 10px;
    padding-top: 24px;
    padding-bottom: 18px;
  }

  .cta-copy p {
    margin-top: 8px;
  }

  .cta-proof {
    width: 100%;
    min-height: 42px;
  }

  .footer-command {
    padding-top: 18px;
  }
}

/* Final balance pass: neutral palette, smaller type, cleaner stacking */
.hero {
  min-height: min(620px, 78vh);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(22px, 4vw, 54px);
  padding: calc(var(--header-h) + 30px) clamp(18px, 5vw, 58px) 44px;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(248, 249, 247, 0.98) 0%, rgba(248, 249, 247, 0.95) 54%, rgba(238, 242, 238, 0.88) 54%, rgba(238, 242, 238, 0.78) 100%),
    url("/assets/hero-1.jpg") right center / cover;
}

.hero::before {
  height: 5px;
  background: linear-gradient(90deg, var(--orange), #68727f, var(--teal));
  opacity: 0.72;
}

.hero h1 {
  max-width: 680px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.04;
}

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

.hero-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: clamp(0.92rem, 1.35vw, 1.02rem);
  line-height: 1.52;
}

.hero .button.ghost,
.hero .button.ghost.compact {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.hero-actions {
  margin-top: 20px;
}

.hero-application-list {
  margin-top: 18px;
}

.hero-application-list a {
  min-height: 58px;
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 8px 20px rgba(17, 19, 23, 0.05);
}

.hero-application-list span {
  color: var(--ink-soft);
}

.product-cockpit {
  width: min(100%, 470px);
}

.hero-workflow-card {
  gap: 12px;
  padding: 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(17, 19, 23, 0.12);
  box-shadow: 0 18px 42px rgba(17, 19, 23, 0.13);
  backdrop-filter: none;
}

.workflow-head strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.workflow-mark {
  background: linear-gradient(135deg, var(--orange), #68727f);
}

.workflow-mark::after {
  background: #fff;
}

.hero-workflow-card img {
  height: 210px;
}

.hero-panel-list {
  gap: 7px;
}

.hero-panel-list a {
  min-height: 50px;
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 8px 18px rgba(17, 19, 23, 0.05);
}

.hero-panel-list strong {
  color: var(--ink);
  font-size: 0.78rem;
}

.quick-strip {
  margin-top: -18px;
  box-shadow: 0 14px 34px rgba(17, 19, 23, 0.08);
}

.quick-strip a {
  min-height: 82px;
}

.section {
  padding-top: clamp(26px, 3.6vw, 46px);
  padding-bottom: clamp(26px, 3.6vw, 46px);
}

.section-head {
  width: min(620px, 100%);
  margin-bottom: 16px;
}

.section-head h2,
.cta-copy h2,
.detail-copy h2,
.career-panel h2,
.distributor-panel h2 {
  font-size: clamp(1.45rem, 2.35vw, 2.15rem);
  line-height: 1.15;
}

.section-head p:not(.eyebrow) {
  font-size: 0.92rem;
}

.application-grid,
.featured-system-grid {
  gap: 10px;
}

.application-card {
  min-height: 132px;
}

.process-grid {
  gap: 9px;
}

.process-step {
  min-height: 118px;
}

.featured-primary {
  min-height: 330px;
}

.featured-system:not(.featured-primary) {
  min-height: 158px;
}

.featured-system:not(.featured-primary) img {
  min-height: 158px;
}

.page-hero {
  padding-top: calc(var(--header-h) + 26px);
  padding-bottom: 34px;
}

.page-hero h1 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.08;
}

.page-hero > img {
  height: min(220px, 30vh);
}

.cta-band {
  background: #121417;
}

.site-footer {
  background: #111317;
}

.footer-command {
  background: #15181b;
}

.footer-grid,
.footer-bottom {
  background: #111317;
}

.menu-all {
  background: conic-gradient(from 45deg, var(--orange), #68727f, var(--teal), var(--orange));
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    background:
      linear-gradient(rgba(248, 249, 247, 0.96), rgba(248, 249, 247, 0.96)),
      url("/assets/hero-1.jpg") center / cover;
  }

  .product-cockpit {
    width: min(100%, 560px);
  }
}

@media (max-width: 640px) {
  .hero {
    padding: calc(var(--header-h) + 14px) 12px 20px;
  }

  .hero h1 {
    font-size: clamp(1.45rem, 6.7vw, 1.95rem);
    line-height: 1.08;
  }

  .hero-copy > p:not(.eyebrow) {
    margin-top: 8px;
    font-size: 0.8rem;
    line-height: 1.42;
  }

  .hero-actions {
    margin-top: 12px;
  }

  .hero-workflow-card img {
    height: 104px;
  }

  .workflow-head strong {
    font-size: 0.76rem;
  }

  .quick-strip {
    margin-top: -8px;
  }

  .quick-strip a {
    min-height: 66px;
  }

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

  .section-head h2,
  .cta-copy h2,
  .detail-copy h2,
  .career-panel h2,
  .distributor-panel h2 {
    font-size: clamp(1.1rem, 5.2vw, 1.45rem);
  }

  .application-card {
    min-height: 112px;
  }

  .featured-system,
  .featured-primary,
  .featured-system:not(.featured-primary) {
    min-height: 104px;
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .featured-system img,
  .featured-primary img,
  .featured-system:not(.featured-primary) img {
    width: 86px;
    height: 86px;
    min-height: 86px;
    padding: 8px;
  }

  .featured-system div {
    min-width: 0;
    padding: 10px;
  }

  .page-hero h1 {
    font-size: clamp(1.4rem, 6.4vw, 1.9rem);
  }
}

/* Critical nav QA: the featured product card must never flip into a black hover slab. */
.nav-menu .mega-card-feature,
.nav-menu .mega-card-feature:hover,
.nav-menu .mega-card-feature:focus-visible {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(242, 138, 19, 0.14), rgba(255, 255, 255, 0.98) 46%, rgba(28, 127, 140, 0.08)),
    #ffffff;
  border-color: rgba(242, 138, 19, 0.34);
}

.nav-menu .mega-card-feature:hover,
.nav-menu .mega-card-feature:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(17, 19, 23, 0.11);
}

.nav-menu .mega-card-feature strong {
  color: var(--ink);
}

.nav-menu .mega-card-feature em {
  color: var(--ink-soft);
}

.nav-menu .mega-card-feature .menu-icon {
  background: conic-gradient(from 45deg, var(--orange), var(--green), var(--teal), var(--orange));
}

/* Final UI QA: compact the decision list and prevent preview badge overlap. */
.decision-panel {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
}

.decision-panel > div:first-child {
  max-width: 430px;
}

.decision-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.decision-link-card {
  min-height: 64px;
  gap: 4px;
  padding: 10px 12px;
}

.decision-link-card strong {
  font-size: 0.88rem;
  line-height: 1.12;
}

.decision-link-card span {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 0.72rem;
  line-height: 1.24;
}

.featured-system span {
  max-width: 100%;
  min-width: 0;
  min-height: 0;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  white-space: normal;
  overflow-wrap: anywhere;
  font-size: 0.66rem;
  line-height: 1.08;
}

.featured-system h3 {
  margin-top: 8px;
}

@media (min-width: 861px) {
  .featured-primary {
    grid-template-columns: minmax(230px, 0.9fr) minmax(0, 1fr);
    grid-template-rows: 1fr;
    align-items: stretch;
    min-height: 250px;
  }

  .featured-primary img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    padding: 18px;
    object-fit: contain;
  }

  .featured-primary div {
    min-width: 0;
    align-self: center;
    padding: 18px 20px 18px 0;
    background: #fff;
  }
}

@media (max-width: 760px) {
  .decision-panel {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .decision-panel > div:first-child {
    max-width: none;
  }

  .decision-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .decision-link-card {
    min-height: 46px;
    padding: 9px 10px;
  }

  .decision-link-card strong {
    font-size: 0.78rem;
    line-height: 1.1;
  }

  .decision-link-card span {
    display: none;
  }

  .featured-system span {
    padding: 3px 6px;
    font-size: 0.58rem;
    line-height: 1.08;
  }
}

@media (max-width: 350px) {
  .decision-list {
    grid-template-columns: 1fr;
  }
}

/* Boss feedback pass: guided selling, compact hierarchy, less form anxiety. */
.section {
  padding-top: clamp(24px, 3.2vw, 42px);
  padding-bottom: clamp(24px, 3.2vw, 42px);
}

.page-hero {
  min-height: clamp(280px, 36vw, 430px);
}

.page-hero-copy {
  max-width: 720px;
}

.page-hero h1 {
  max-width: 780px;
  font-size: clamp(2rem, 4.8vw, 4.7rem);
}

.page-hero-copy > p {
  max-width: 640px;
  font-size: clamp(0.94rem, 1.3vw, 1.08rem);
}

.contact-band {
  background:
    linear-gradient(180deg, rgba(248, 249, 247, 0.96), rgba(255, 255, 255, 0.98)),
    var(--paper);
}

.contact-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  grid-template-columns: minmax(280px, 0.86fr) minmax(360px, 1.05fr);
  gap: clamp(18px, 3.2vw, 36px);
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 14px;
}

.contact-copy h2 {
  margin: 0;
  max-width: 540px;
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  line-height: 1.04;
}

.contact-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--ink-soft);
}

.enquiry-path {
  display: grid;
  gap: 8px;
}

.enquiry-path span {
  min-height: 44px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-weight: 850;
  box-shadow: 0 10px 22px rgba(17, 19, 23, 0.05);
}

.enquiry-path b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 0.78rem;
}

.contact-methods {
  margin-top: 0;
  gap: 8px;
}

.contact-methods a,
.contact-methods span,
.enquiry-prep {
  border-radius: 10px;
  box-shadow: none;
}

.enquiry-prep {
  margin-top: 0;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.72);
}

.enquiry-prep h3 {
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.enquiry-prep p {
  max-width: none;
  font-size: 0.88rem;
}

.contact-form {
  gap: 11px;
  padding: clamp(16px, 2.2vw, 22px);
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(17, 19, 23, 0.11);
}

.guided-form-head {
  display: grid;
  gap: 4px;
}

.guided-form-head .eyebrow {
  margin-bottom: 0;
}

.guided-form-head h3 {
  margin: 0;
  font-size: clamp(1.1rem, 1.7vw, 1.34rem);
  line-height: 1.08;
}

.guided-form-head p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.starter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 2px 0 4px;
}

.starter-chip {
  min-height: 74px;
  display: grid;
  gap: 4px;
  align-content: start;
  padding: 11px;
  border: 1px solid rgba(28, 127, 140, 0.18);
  border-radius: 10px;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff, rgba(248, 249, 247, 0.92));
  text-align: left;
  cursor: pointer;
}

.starter-chip strong {
  font-size: 0.88rem;
  line-height: 1.15;
}

.starter-chip span {
  color: var(--ink-soft);
  font-size: 0.74rem;
  line-height: 1.28;
}

.starter-chip:hover,
.starter-chip:focus-visible,
.starter-chip.is-selected {
  border-color: rgba(242, 138, 19, 0.62);
  background: linear-gradient(135deg, rgba(242, 138, 19, 0.12), #fff 62%);
  box-shadow: 0 10px 22px rgba(17, 19, 23, 0.08);
}

.contact-form label {
  gap: 5px;
  font-size: 0.82rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 42px;
  padding: 10px 11px;
  border-radius: 8px;
}

.contact-form textarea {
  min-height: 104px;
}

.contact-form .button {
  min-height: 44px;
}

.product-detail,
.range-band,
.nested-product-band,
.faq-band,
.related-band {
  padding-top: clamp(22px, 3vw, 40px);
  padding-bottom: clamp(22px, 3vw, 40px);
}

.detail-grid {
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
}

.detail-copy h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.45rem);
}

.detail-copy p {
  max-width: 620px;
}

.range-grid {
  gap: 8px;
}

.range-item {
  min-height: 76px;
  padding: 12px;
}

.range-item h3 {
  font-size: 0.9rem;
  line-height: 1.18;
}

.application-grid {
  gap: 10px;
}

.application-card {
  min-height: 136px;
  grid-template-columns: auto minmax(0, 1fr) 104px;
}

.application-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .enquiry-path span {
    min-height: 58px;
    grid-template-columns: 1fr;
    gap: 6px;
    align-content: start;
  }
}

@media (max-width: 640px) {
  .section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .page-hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 18px);
  }

  .page-hero h1 {
    font-size: clamp(1.55rem, 7vw, 2.05rem);
  }

  .page-hero > img {
    min-height: 0;
    max-height: 124px;
    object-fit: cover;
  }

  .contact-copy {
    gap: 10px;
  }

  .contact-copy h2 {
    font-size: clamp(1.24rem, 5.6vw, 1.65rem);
  }

  .enquiry-path {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .enquiry-path span {
    min-height: 48px;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 7px;
    font-size: 0.68rem;
    line-height: 1.12;
  }

  .enquiry-path b {
    width: 24px;
    height: 24px;
  }

  .contact-methods {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .contact-methods a {
    min-height: 38px;
    padding: 8px;
    font-size: 0.76rem;
    overflow-wrap: anywhere;
  }

  .contact-methods span,
  .enquiry-prep {
    display: none;
  }

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

  .starter-chip {
    min-height: 0;
  }

  .contact-form {
    padding: 14px;
    gap: 10px;
  }

  .application-card {
    min-height: 104px;
    grid-template-columns: auto minmax(0, 1fr);
  }

  .application-card img {
    display: none;
  }

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

/* Final QA polish: tighter heroes, clearer labels and mobile-safe controls. */
.page-hero {
  min-height: clamp(240px, 29vw, 350px);
  gap: clamp(22px, 4vw, 64px);
  padding-top: calc(var(--header-h) + clamp(16px, 2vw, 24px));
  padding-bottom: clamp(24px, 3vw, 34px);
}

.page-hero h1 {
  font-size: clamp(2rem, 4.25vw, 4.05rem);
  line-height: 0.98;
}

.page-hero > img {
  height: min(240px, 30vh);
  padding: clamp(14px, 2.6vw, 26px);
}

.image-chip {
  font-size: 0.76rem;
  line-height: 1.14;
}

.footer-grid a,
.footer-bottom a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
}

.footer-bottom {
  row-gap: 8px;
}

@media (max-width: 640px) {
  .eyebrow {
    font-size: 0.7rem;
    line-height: 1.18;
  }

  .page-hero {
    gap: 10px;
    padding-top: calc(var(--header-h) + 14px);
    padding-bottom: 18px;
  }

  .page-hero h1 {
    font-size: clamp(1.52rem, 6.3vw, 1.9rem);
    line-height: 1.05;
  }

  .page-hero-copy > p {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .page-hero-copy span {
    font-size: 0.78rem;
  }

  .page-hero > img {
    max-height: 118px;
  }

  .quick-strip span,
  .hero-panel-list span,
  .featured-system span,
  .application-card > span,
  .product-body .eyebrow {
    font-size: 0.7rem;
  }

  .page-hero-copy,
  .page-hero-copy > p,
  .page-hero-copy span,
  .section-head,
  .section-head h2,
  .section-head p,
  .product-card,
  .product-body,
  .product-body h3,
  .product-body p,
  .application-card,
  .application-card h3,
  .application-card p,
  .application-card strong,
  .contact-copy,
  .contact-copy h2,
  .contact-copy p,
  .contact-form,
  .guided-form-head,
  .guided-form-head p,
  .starter-chip,
  .starter-chip strong,
  .starter-chip span,
  .enquiry-path span,
  .contact-methods a {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .page-hero-copy span {
    white-space: normal;
  }

  .image-chip {
    display: none;
  }

  .enquiry-path span {
    min-height: 46px;
    align-content: center;
    font-size: 0.78rem;
    line-height: 1.16;
  }

  .contact-methods a,
  .footer-grid a,
  .footer-bottom a {
    min-height: 40px;
  }
}

@media (max-width: 430px) {
  .contact-methods {
    grid-template-columns: 1fr;
  }

  .contact-methods a {
    justify-content: center;
  }
}

/* Compact mobile reading pass */
@media (max-width: 640px) {
  .hero-copy > p:not(.eyebrow),
  .page-hero-copy > p,
  .section-head p:not(.eyebrow),
  .product-body p,
  .application-card p,
  .decision-panel p,
  .cta-copy p {
    font-size: 0.84rem;
    line-height: 1.42;
  }

  .section-head h2 {
    font-size: clamp(1.26rem, 5.8vw, 1.72rem);
  }

  .product-card {
    grid-template-columns: 96px minmax(0, 1fr);
    min-height: 122px;
  }

  .product-image {
    min-height: 122px;
  }

  .product-body {
    padding: 9px 10px;
  }

  .product-body h3 {
    font-size: 0.9rem;
  }

  .application-card {
    padding: 10px;
  }

  .footer-grid {
    gap: 14px;
  }

  .social-links {
    gap: 7px;
  }

  .social-link {
    width: 36px;
    height: 36px;
  }
}

/* Product Advisor */
.product-advisor {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  display: grid;
  justify-items: end;
  pointer-events: none;
}

body[data-page="product"] .product-advisor,
body[data-page="legacy-product"] .product-advisor {
  display: none !important;
}

.advisor-launch,
.advisor-panel {
  pointer-events: auto;
}

.product-advisor.is-open .advisor-launch {
  display: none;
}

.advisor-launch {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  border: 1px solid rgba(17, 19, 23, 0.12);
  border-radius: 999px;
  color: #fff;
  background: #111317;
  box-shadow: 0 18px 42px rgba(17, 19, 23, 0.22);
  cursor: pointer;
}

.advisor-launch-mark,
.advisor-mark {
  display: grid;
  place-items: center;
  font-weight: 950;
}

.advisor-launch-mark svg,
.advisor-mark svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.advisor-launch-mark circle,
.advisor-mark circle {
  fill: rgba(17, 19, 23, 0.12);
}

.advisor-launch-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  color: #111317;
  background: var(--orange);
}

.advisor-launch span:last-child {
  font-weight: 900;
  font-size: 0.9rem;
}

.advisor-panel {
  width: min(360px, calc(100vw - 28px));
  max-height: min(560px, calc(100dvh - 92px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 23, 0.14);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(17, 19, 23, 0.24);
}

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

.advisor-head {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 34px;
  gap: 10px;
  align-items: center;
  padding: 12px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(17, 19, 23, 0.96), rgba(17, 56, 46, 0.94));
}

.advisor-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: #111317;
  background: linear-gradient(135deg, var(--orange), #ffd078);
  font-size: 0.82rem;
}

.advisor-head strong {
  display: block;
  font-size: 0.96rem;
}

.advisor-head p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
}

.advisor-close {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 1.25rem;
  cursor: pointer;
}

.advisor-body {
  display: grid;
  gap: 8px;
  padding: 12px;
  overflow: auto;
}

.advisor-intro {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

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

.advisor-quick-grid button,
.advisor-result-card {
  border: 1px solid rgba(28, 127, 140, 0.18);
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, rgba(248, 249, 247, 0.92));
}

.advisor-quick-grid button {
  min-height: 58px;
  display: grid;
  gap: 4px;
  align-content: start;
  padding: 9px;
  text-align: left;
  cursor: pointer;
}

.advisor-quick-grid button:hover,
.advisor-quick-grid button:focus-visible,
.advisor-quick-grid button.is-selected {
  border-color: rgba(242, 138, 19, 0.62);
  background: linear-gradient(135deg, rgba(242, 138, 19, 0.12), #fff 62%);
}

.advisor-quick-grid strong {
  font-size: 0.8rem;
  line-height: 1.16;
}

.advisor-quick-grid span {
  color: var(--ink-soft);
  font-size: 0.68rem;
  line-height: 1.28;
}

.advisor-query {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 850;
  font-size: 0.82rem;
}

.advisor-query textarea {
  width: 100%;
  min-height: 58px;
  resize: vertical;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: #fff;
}

.advisor-check {
  min-height: 40px;
  border-radius: 9px;
  color: #111317;
  background: var(--orange);
  font-weight: 900;
  cursor: pointer;
}

.advisor-result {
  display: grid;
  gap: 10px;
}

.advisor-result-card {
  display: grid;
  gap: 4px;
  padding: 10px;
}

.advisor-result-card span {
  color: var(--orange-dark);
  font-size: 0.7rem;
  font-weight: 950;
  text-transform: uppercase;
}

.advisor-result-card h3 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.14;
}

.advisor-result-card p,
.advisor-result-card small {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.38;
}

.advisor-result-card p {
  font-size: 0.84rem;
}

.advisor-result-card small {
  font-size: 0.76rem;
}

.advisor-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.advisor-actions .button {
  min-height: 38px;
  padding-inline: 10px;
  font-size: 0.82rem;
}

@media (max-width: 640px) {
  .product-advisor {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .advisor-launch {
    justify-self: end;
    width: 46px;
    height: 46px;
    min-height: 46px;
    justify-content: center;
    gap: 0;
    padding: 6px;
  }

  .advisor-launch span:last-child {
    display: none;
  }

  .advisor-panel {
    width: 100%;
    max-height: min(520px, calc(100dvh - 82px));
  }

  .advisor-head {
    padding: 12px;
  }

  .advisor-body {
    padding: 10px;
  }

  .advisor-quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .advisor-quick-grid button {
    min-height: 0;
  }

  .advisor-quick-grid span {
    display: none;
  }
}

/* Mobile drawer and compact layout pass */
@media (max-width: 860px) {
  .site-nav {
    inset: calc(var(--header-h) + 8px) 10px auto auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: min(248px, calc(100vw - 20px));
    height: auto;
    max-height: calc(100dvh - var(--header-h) - 18px);
    align-content: start;
    justify-content: stretch;
    justify-items: stretch;
    gap: 7px;
    padding: 10px;
    border: 1px solid rgba(17, 19, 23, 0.1);
    border-radius: 12px;
    box-shadow: 0 22px 58px rgba(17, 19, 23, 0.18);
    transform: translate3d(14px, -4px, 0) scale(0.98);
    transform-origin: top right;
  }

  .menu-open .site-nav {
    transform: translate3d(0, 0, 0) scale(1);
  }

  .site-nav > a,
  .nav-trigger,
  .nav-cta {
    width: 100%;
    justify-self: stretch;
    min-height: 42px;
    justify-content: space-between;
    padding-inline: 11px;
    border-radius: 8px;
    font-size: 0.84rem;
  }

  .nav-group {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    justify-self: stretch;
    gap: 7px;
  }

  .menu-open .site-nav > a,
  .menu-open .site-nav .nav-trigger,
  .menu-open .site-nav .nav-cta,
  .menu-open .site-nav .nav-group {
    width: 100% !important;
    justify-self: stretch !important;
  }

  .site-nav .mega-card {
    width: 100%;
    min-height: 48px;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 9px;
    padding: 8px;
  }

  .site-nav .menu-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }

  .site-nav .nav-menu {
    gap: 6px;
  }

  .site-nav .nav-menu strong {
    font-size: 0.8rem;
  }

  .site-nav .nav-menu em {
    display: none;
  }
}

/* Final mobile premium pass: calmer header and no cheap serial-number card language. */
.application-card,
.range-item,
.subproduct-card,
.value-card,
.legal-card,
.distributor-steps article {
  position: relative;
}

.application-card {
  grid-template-columns: minmax(0, 1fr) 112px;
}

.application-card > div {
  min-width: 0;
}

.process-step,
.range-item,
.value-card,
.legal-card {
  justify-content: flex-start;
  gap: 10px;
}

.subproduct-card {
  align-content: start;
  gap: 8px;
}

.product-body .eyebrow {
  color: var(--orange-dark);
  font-size: 0.68rem;
  letter-spacing: 0;
}

@media (max-width: 860px) {
  .site-header,
  .site-header.is-scrolled,
  .menu-open .site-header,
  .menu-open .site-header.is-scrolled {
    inset: 0 0 auto 0 !important;
    width: 100% !important;
    height: 58px !important;
    padding: 7px 12px !important;
    border-width: 0 0 1px !important;
    border-radius: 0 !important;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 251, 248, 0.96)) !important;
    box-shadow: 0 10px 30px rgba(17, 19, 23, 0.1) !important;
  }

  .site-header::before {
    opacity: 0.55;
    border-radius: 0;
  }

  .site-header::after {
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    height: 2px !important;
    border-radius: 0 !important;
  }

  .brand {
    height: 44px !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .brand img,
  .site-header.is-scrolled .brand img {
    width: min(136px, 42vw) !important;
    max-height: 36px !important;
  }

  .menu-button {
    width: 42px !important;
    height: 42px !important;
    border-radius: 10px !important;
    background:
      linear-gradient(180deg, #181b20, #111317) !important;
    box-shadow: 0 10px 22px rgba(17, 19, 23, 0.18) !important;
  }

  .site-nav {
    top: 66px !important;
  }

  .hero {
    padding-top: calc(var(--header-h) + 18px) !important;
  }

  .page-hero {
    padding-top: calc(var(--header-h) + 18px) !important;
  }
}

@media (max-width: 640px) {
  .application-card {
    grid-template-columns: minmax(0, 1fr) 78px !important;
    gap: 8px !important;
  }

  .application-card img {
    width: 78px !important;
    height: 70px !important;
  }

  .process-step,
  .range-item,
  .value-card,
  .legal-card,
  .subproduct-card {
    gap: 7px;
  }

  .product-body .eyebrow {
    font-size: 0.62rem;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 60px;
  }

  .site-header,
  .site-header.is-scrolled {
    height: var(--header-h);
    padding: 7px 12px;
  }

  .brand img,
  .site-header.is-scrolled .brand img {
    width: min(132px, 43vw);
  }

  .menu-button {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .hero {
    gap: 10px;
    padding: calc(var(--header-h) + 12px) 12px 16px;
  }

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

  .hero h1,
  .page-hero h1 {
    font-size: clamp(1.42rem, 6.4vw, 1.82rem);
    line-height: 1.06;
  }

  .hero-copy > p:not(.eyebrow),
  .page-hero-copy > p {
    margin-top: 7px;
    font-size: 0.8rem;
    line-height: 1.36;
  }

  .hero-actions,
  .route-actions,
  .cta-actions {
    gap: 6px;
    margin-top: 10px;
  }

  .button {
    min-height: 40px;
    padding-inline: 10px;
    font-size: 0.84rem;
  }

  .hero-workflow-card {
    gap: 8px;
    padding: 9px;
  }

  .hero-workflow-card img {
    height: 94px;
  }

  .hero-panel-list a {
    min-height: 40px;
    padding: 7px;
  }

  .quick-strip {
    width: calc(100% - 20px);
    margin-top: -8px;
  }

  .quick-strip a {
    min-height: 58px;
    padding: 8px;
  }

  .quick-strip strong {
    font-size: 0.74rem;
  }

  .quick-strip span {
    display: none;
  }

  .section,
  .application-band {
    padding: 18px 12px;
  }

  .section-head {
    margin-bottom: 10px;
  }

  .section-head h2,
  .cta-copy h2,
  .detail-copy h2,
  .career-panel h2,
  .distributor-panel h2 {
    font-size: clamp(1.12rem, 5vw, 1.45rem);
  }

  .page-hero {
    gap: 8px;
    padding: calc(var(--header-h) + 12px) 12px 14px;
  }

  .page-hero > img {
    max-height: 96px;
    padding: 8px;
  }

  .page-hero-copy span {
    margin-top: 9px;
    padding: 7px 9px;
    font-size: 0.72rem;
  }

  .product-card {
    grid-template-columns: 82px minmax(0, 1fr);
    min-height: 104px;
  }

  .product-image {
    min-height: 104px;
  }

  .product-body {
    padding: 8px 9px;
  }

  .product-body h3 {
    font-size: 0.84rem;
  }

  .product-body p {
    font-size: 0.76rem;
    line-height: 1.3;
  }

  .application-grid {
    gap: 7px;
  }

  .application-card {
    min-height: 86px;
    padding: 8px;
  }

  .application-card h3 {
    font-size: 0.8rem;
  }

  .contact-form,
  .legacy-detail-panel,
  .distributor-panel,
  .career-panel {
    padding: 12px;
  }

  .footer-command,
  .footer-grid {
    padding-block: 18px;
  }
}

@media (max-width: 360px) {
  .site-nav {
    right: 8px;
    width: min(240px, calc(100vw - 16px));
  }

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

/* Family premium pass: align LubeServ with the VAS / LI visual system. */
body {
  background:
    linear-gradient(180deg, #eef4f1 0%, #f8f9f7 46%, #eef4f1 100%);
}

.site-header,
.site-header.is-scrolled {
  inset: 12px 18px auto;
  width: auto;
  height: 64px;
  padding: 9px 12px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(12, 30, 28, 0.96), rgba(10, 45, 39, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  box-shadow: 0 18px 46px rgba(12, 30, 28, 0.2);
}

.site-header.is-scrolled {
  height: 60px;
  background:
    linear-gradient(135deg, rgba(11, 25, 24, 0.98), rgba(12, 36, 32, 0.96));
}

.brand {
  height: 46px;
  padding: 4px 9px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 0 0 1px rgba(17, 19, 23, 0.08);
}

.brand img,
.site-header.is-scrolled .brand img {
  width: clamp(118px, 12vw, 156px);
  max-height: 38px;
  object-fit: contain;
}

.site-nav > a,
.nav-trigger {
  color: rgba(255, 255, 255, 0.84);
}

.site-nav > a:hover,
.nav-trigger:hover,
.nav-trigger[aria-expanded="true"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
}

.nav-menu {
  color: var(--ink);
}

.nav-cta {
  color: #111317 !important;
  background: linear-gradient(135deg, #ffb22a, var(--orange)) !important;
}

.menu-button {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero {
  min-height: min(720px, 90vh);
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.82fr);
  gap: clamp(28px, 5vw, 78px);
  padding: calc(var(--header-h) + 78px) clamp(18px, 5vw, 64px) 58px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 26%, rgba(242, 138, 19, 0.22), transparent 26%),
    linear-gradient(90deg, rgba(5, 28, 25, 0.96) 0%, rgba(7, 39, 34, 0.92) 45%, rgba(8, 18, 20, 0.64) 100%),
    url("/assets/hero-1.jpg") center / cover;
}

.hero::before {
  height: 0;
}

.hero::after {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.36) 58%, transparent);
  pointer-events: none;
}

.hero h1 {
  max-width: 720px;
  color: #fff;
  font-size: clamp(2.45rem, 4.05vw, 3.9rem);
  line-height: 0.98;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.98rem, 1.45vw, 1.12rem);
  line-height: 1.5;
}

.hero .button.ghost,
.hero .button.ghost.compact {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
}

.hero .button.ghost:hover,
.hero .button.ghost.compact:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero-application-list a {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.hero-application-list span {
  color: rgba(255, 255, 255, 0.66);
}

.product-cockpit {
  width: min(100%, 540px);
  display: grid;
  gap: 12px;
  aspect-ratio: auto;
  overflow: visible;
  clip-path: none;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero-workflow-card {
  gap: 14px;
  padding: 16px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(8, 26, 24, 0.88), rgba(13, 45, 39, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  box-shadow: 0 32px 76px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}

.workflow-head strong {
  color: #fff;
  font-size: 0.96rem;
}

.workflow-mark {
  background: linear-gradient(135deg, var(--orange), #287a72);
}

.hero-workflow-card img {
  height: 255px;
  object-fit: cover;
  border-radius: 9px;
}

.hero-panel-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-panel-list a {
  min-height: 58px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.hero-panel-list strong {
  color: #fff;
}

.quick-strip {
  width: min(1120px, calc(100% - 36px));
  margin: -30px auto 0;
  border-color: rgba(14, 42, 37, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 247, 0.96));
  box-shadow: 0 22px 54px rgba(13, 35, 32, 0.13);
}

.quick-strip a {
  min-height: 78px;
}

.page-hero {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 28, 25, 0.94), rgba(8, 37, 33, 0.84), rgba(8, 18, 20, 0.7)),
    url("/assets/hero-1.jpg") center / cover;
}

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

.page-hero-copy > p {
  color: rgba(255, 255, 255, 0.78);
}

.page-hero-copy span {
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.page-hero > img {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.24);
}

.product-card,
.application-card,
.process-step,
.featured-system,
.decision-panel,
.comparison-table,
.contact-form,
.legacy-detail-panel,
.distributor-panel,
.career-panel {
  box-shadow: 0 12px 30px rgba(13, 35, 32, 0.06);
}

.application-band {
  background:
    linear-gradient(180deg, rgba(238, 244, 241, 0.94), rgba(248, 249, 247, 0.98));
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(5, 28, 25, 0.94), rgba(8, 37, 33, 0.88), rgba(8, 18, 20, 0.76)),
      url("/assets/hero-1.jpg") center / cover;
  }

  .product-cockpit {
    width: min(100%, 560px);
  }
}

@media (max-width: 860px) {
  .menu-open .site-header,
  .menu-open .site-header.is-scrolled {
    background:
      linear-gradient(135deg, rgba(12, 30, 28, 0.98), rgba(10, 45, 39, 0.96));
  }

  .site-header,
  .site-header.is-scrolled {
    inset: 8px 10px auto;
    height: 56px;
    padding: 7px 8px;
  }

  .brand {
    height: 42px;
    padding: 4px 8px;
  }

  .brand img,
  .site-header.is-scrolled .brand img {
    width: min(128px, 42vw);
    max-height: 34px;
  }

  .site-nav {
    inset: calc(var(--header-h) + 12px) 10px auto auto;
    background: rgba(255, 255, 255, 0.98);
  }

  .site-nav > a,
  .site-nav .nav-trigger {
    color: var(--ink-soft);
    background: #fff;
  }

  .site-nav > a:hover,
  .site-nav .nav-trigger:hover,
  .site-nav .nav-trigger[aria-expanded="true"] {
    color: var(--ink);
    background: var(--paper-2);
  }

  .site-nav .nav-cta {
    color: #111317 !important;
  }

  .menu-open .menu-button {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 640px) {
  .hero {
    gap: 12px;
    padding: calc(var(--header-h) + 58px) 12px 22px;
  }

  .hero h1 {
    font-size: clamp(1.72rem, 7.6vw, 2.24rem);
    line-height: 1.03;
  }

  .hero-copy > p:not(.eyebrow) {
    margin-top: 8px;
    font-size: 0.84rem;
    line-height: 1.42;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
  }

  .hero-actions .button.primary {
    grid-column: 1 / -1;
  }

  .hero-actions .button {
    min-height: 40px;
    padding-inline: 8px;
  }

  .hero-application-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 12px;
  }

  .hero-application-list a {
    min-height: 46px;
    padding: 8px;
  }

  .hero-application-list strong {
    font-size: 0.72rem;
    line-height: 1.12;
  }

  .hero-application-list span {
    display: none;
  }

  .hero-workflow-card {
    gap: 9px;
    padding: 10px;
  }

  .workflow-head {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 9px;
  }

  .workflow-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .workflow-head strong {
    font-size: 0.76rem;
  }

  .hero-workflow-card img {
    height: 118px;
  }

  .hero-panel-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .hero-panel-list a {
    min-height: 44px;
    padding: 7px;
  }

  .hero-panel-list strong {
    font-size: 0.72rem;
    line-height: 1.12;
  }

  .quick-strip {
    width: calc(100% - 20px);
    margin-top: -10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-strip a {
    min-height: 54px;
    padding: 8px;
  }

  .quick-strip strong {
    font-size: 0.76rem;
  }

  .page-hero {
    padding-top: calc(var(--header-h) + 58px);
  }
}

/* LubeServ original premium pass: precision hardware, not VAS clone. */
body {
  background:
    linear-gradient(180deg, #f6f8f5 0%, #ffffff 44%, #eef3f0 100%);
}

.site-header,
.site-header.is-scrolled {
  inset: 14px 18px auto;
  height: 64px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 19, 23, 0.1);
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(17, 19, 23, 0.12);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -1px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), rgba(22, 107, 81, 0.86), rgba(104, 114, 127, 0.42));
}

.brand {
  height: 48px;
  background: #fff;
  border: 1px solid rgba(17, 19, 23, 0.08);
  box-shadow: 0 8px 18px rgba(17, 19, 23, 0.07);
}

.site-nav > a,
.nav-trigger {
  color: var(--ink-soft);
}

.site-nav > a:hover,
.nav-trigger:hover,
.nav-trigger[aria-expanded="true"] {
  color: var(--ink);
  background: rgba(242, 138, 19, 0.1);
}

.menu-button {
  color: #fff;
  background: #111317;
  border-color: rgba(17, 19, 23, 0.08);
}

.hero {
  min-height: min(700px, 86vh);
  padding: calc(var(--header-h) + 78px) clamp(18px, 5vw, 64px) 56px;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(250, 251, 248, 0.98) 0%, rgba(250, 251, 248, 0.95) 52%, rgba(239, 243, 239, 0.86) 52%, rgba(239, 243, 239, 0.72) 100%),
    linear-gradient(90deg, rgba(17, 19, 23, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 19, 23, 0.04) 1px, transparent 1px);
  background-size: auto, 80px 80px, 80px 80px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: min(48vw, 690px);
  height: auto;
  background:
    linear-gradient(90deg, rgba(250, 251, 248, 0.18), rgba(17, 19, 23, 0.04)),
    url("/assets/hero-1.jpg") center / cover;
  clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.58;
  pointer-events: none;
}

.hero::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--orange), var(--green), var(--steel));
  opacity: 0.9;
  mask-image: none;
}

.hero-copy,
.product-cockpit {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 700px;
  color: var(--ink);
  font-size: clamp(2.3rem, 3.9vw, 3.75rem);
  line-height: 1.01;
}

.hero-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.hero .button.ghost,
.hero .button.ghost.compact {
  color: var(--ink);
  background: #fff;
  border-color: rgba(17, 19, 23, 0.16);
  box-shadow: 0 10px 22px rgba(17, 19, 23, 0.06);
}

.hero .button.ghost:hover,
.hero .button.ghost.compact:hover {
  background: #fff7ec;
  border-color: rgba(242, 138, 19, 0.34);
}

.hero-application-list a {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(17, 19, 23, 0.13);
  box-shadow: 0 12px 26px rgba(17, 19, 23, 0.06);
  backdrop-filter: none;
}

.hero-application-list span {
  color: var(--ink-soft);
}

.hero-workflow-card {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 251, 248, 0.96));
  border: 1px solid rgba(17, 19, 23, 0.12);
  box-shadow: 0 28px 70px rgba(17, 19, 23, 0.14);
  backdrop-filter: none;
}

.workflow-head strong {
  color: var(--ink);
}

.workflow-mark {
  background: conic-gradient(from 35deg, var(--orange), #f9c56a, var(--green), var(--orange));
}

.hero-panel-list a {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(17, 19, 23, 0.15);
  box-shadow: 0 12px 24px rgba(17, 19, 23, 0.07);
  backdrop-filter: none;
}

.hero-panel-list strong {
  color: var(--ink);
}

.quick-strip {
  margin-top: -28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 251, 248, 0.98));
  border-color: rgba(17, 19, 23, 0.12);
  box-shadow: 0 22px 54px rgba(17, 19, 23, 0.1);
}

.page-hero {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(250, 251, 248, 0.98), rgba(250, 251, 248, 0.92), rgba(239, 243, 239, 0.7)),
    url("/assets/hero-1.jpg") right center / cover;
}

.page-hero::before {
  opacity: 0.24;
}

.page-hero h1 {
  color: var(--ink);
}

.page-hero-copy > p {
  color: var(--ink-soft);
}

.page-hero-copy span {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(17, 19, 23, 0.13);
}

.page-hero > img {
  background: #fff;
  border-color: rgba(17, 19, 23, 0.12);
  box-shadow: 0 24px 58px rgba(17, 19, 23, 0.14);
}

.application-band {
  background:
    linear-gradient(180deg, #eef3f0 0%, #f8faf7 72%, #fff 100%);
}

@media (max-width: 980px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(250, 251, 248, 0.98), rgba(250, 251, 248, 0.92)),
      linear-gradient(90deg, rgba(17, 19, 23, 0.05) 1px, transparent 1px),
      linear-gradient(0deg, rgba(17, 19, 23, 0.04) 1px, transparent 1px);
    background-size: auto, 72px 72px, 72px 72px;
  }

  .hero::before {
    width: 100%;
    clip-path: none;
    opacity: 0.18;
  }
}

@media (max-width: 860px) {
  .site-header,
  .site-header.is-scrolled,
  .menu-open .site-header,
  .menu-open .site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.94);
  }

  .site-header::after {
    left: 12px;
    right: 12px;
  }

  .menu-button,
  .menu-open .menu-button {
    color: #fff;
    background: #111317;
  }

  .site-nav {
    top: calc(var(--header-h) + 12px) !important;
    right: 10px !important;
    bottom: auto !important;
    left: auto !important;
    width: min(276px, calc(100vw - 20px)) !important;
    max-width: none !important;
    grid-template-columns: minmax(0, 1fr) !important;
    justify-items: stretch !important;
    padding: 10px !important;
  }

  .site-nav > a,
  .site-nav .nav-trigger,
  .site-nav .nav-cta,
  .site-nav .nav-group {
    width: 100% !important;
    min-width: 0 !important;
    justify-self: stretch !important;
    box-sizing: border-box;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: calc(var(--header-h) + 58px) 12px 22px;
  }

  .hero h1 {
    font-size: clamp(1.58rem, 7vw, 2.08rem);
    line-height: 1.04;
  }

  .hero-workflow-card {
    box-shadow: 0 16px 36px rgba(17, 19, 23, 0.12);
  }

  .quick-strip {
    margin-top: -8px;
  }
}

/* Premium refinement pass: bright industrial hardware, sharper material depth. */
body {
  background:
    radial-gradient(circle at 72% 10%, rgba(242, 138, 19, 0.08), transparent 30%),
    radial-gradient(circle at 10% 42%, rgba(28, 127, 140, 0.08), transparent 28%),
    linear-gradient(180deg, #f7f8f5 0%, #ffffff 42%, #edf3ef 100%);
}

.site-header,
.site-header.is-scrolled {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 251, 248, 0.94));
  border-color: rgba(17, 19, 23, 0.08);
  box-shadow:
    0 20px 52px rgba(17, 19, 23, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(242, 138, 19, 0.08), transparent 28%, rgba(28, 127, 140, 0.07));
}

.brand {
  position: relative;
  z-index: 1;
  border-color: rgba(17, 19, 23, 0.06);
  box-shadow:
    0 10px 24px rgba(17, 19, 23, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.site-nav,
.menu-button {
  position: relative;
  z-index: 1;
}

.site-nav > a,
.nav-trigger {
  font-size: 0.88rem;
}

.hero {
  min-height: min(690px, 84vh);
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.78fr);
  gap: clamp(30px, 5vw, 76px);
  padding-bottom: 62px;
  background:
    linear-gradient(90deg, rgba(251, 252, 249, 0.99) 0%, rgba(251, 252, 249, 0.96) 50%, rgba(235, 241, 236, 0.9) 50%, rgba(235, 241, 236, 0.76) 100%),
    linear-gradient(90deg, rgba(17, 19, 23, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 19, 23, 0.035) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
}

.hero::before {
  opacity: 0.44;
  filter: saturate(0.85) contrast(1.04);
}

.hero::after {
  height: 4px;
  background:
    linear-gradient(90deg, var(--orange) 0 28%, rgba(22, 107, 81, 0.88) 28% 66%, rgba(104, 114, 127, 0.72) 66% 100%);
}

.hero-copy {
  max-width: 730px;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(2.24rem, 3.65vw, 3.5rem);
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 16px;
  color: rgba(52, 57, 65, 0.88);
}

.hero-actions {
  gap: 10px;
  margin-top: 22px;
}

.button {
  border-radius: 9px;
}

.button.primary {
  background:
    linear-gradient(180deg, #ff9d22, #f28a13 62%, #df740b);
  border-color: rgba(168, 83, 10, 0.22);
  box-shadow:
    0 14px 28px rgba(242, 138, 19, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.hero .button.ghost,
.hero .button.ghost.compact {
  background:
    linear-gradient(180deg, #fff, #f9faf7);
  border-color: rgba(17, 19, 23, 0.12);
  box-shadow:
    0 12px 24px rgba(17, 19, 23, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-application-list {
  gap: 10px;
  margin-top: 20px;
}

.hero-application-list a {
  min-height: 64px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 251, 248, 0.94));
  border-color: rgba(17, 19, 23, 0.1);
  box-shadow:
    0 14px 30px rgba(17, 19, 23, 0.07),
    inset 3px 0 0 rgba(242, 138, 19, 0.76);
}

.product-cockpit {
  width: min(100%, 552px);
}

.hero-workflow-card {
  position: relative;
  overflow: hidden;
  padding: 15px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 250, 247, 0.96));
  border-color: rgba(17, 19, 23, 0.1);
  box-shadow:
    0 30px 82px rgba(17, 19, 23, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.hero-workflow-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), rgba(22, 107, 81, 0.88), rgba(28, 127, 140, 0.72));
}

.workflow-mark {
  box-shadow:
    0 12px 24px rgba(242, 138, 19, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.hero-workflow-card img {
  height: 252px;
  border: 1px solid rgba(17, 19, 23, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.hero-panel-list a {
  min-height: 56px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 248, 0.92));
  border-color: rgba(17, 19, 23, 0.11);
  box-shadow:
    0 14px 30px rgba(17, 19, 23, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.quick-strip {
  width: min(1118px, calc(100% - 36px));
  border-radius: 11px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 250, 248, 0.97));
  box-shadow:
    0 24px 64px rgba(17, 19, 23, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.quick-strip a {
  min-height: 82px;
}

.application-band {
  background:
    radial-gradient(circle at 86% 4%, rgba(242, 138, 19, 0.08), transparent 30%),
    linear-gradient(180deg, #edf3ef 0%, #f8faf7 72%, #fff 100%);
}

.product-card,
.application-card,
.featured-system,
.decision-panel,
.comparison-table,
.contact-form,
.legacy-detail-panel,
.distributor-panel,
.career-panel {
  border-color: rgba(17, 19, 23, 0.1);
  box-shadow:
    0 18px 42px rgba(17, 19, 23, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(251, 252, 249, 0.99), rgba(251, 252, 249, 0.93), rgba(237, 242, 238, 0.78)),
    linear-gradient(90deg, rgba(17, 19, 23, 0.04) 1px, transparent 1px),
    url("/assets/hero-1.jpg") right center / cover;
}

.page-hero > img {
  border-radius: 12px;
  box-shadow:
    0 28px 70px rgba(17, 19, 23, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(251, 252, 249, 0.99), rgba(251, 252, 249, 0.94)),
      linear-gradient(90deg, rgba(17, 19, 23, 0.045) 1px, transparent 1px),
      linear-gradient(0deg, rgba(17, 19, 23, 0.035) 1px, transparent 1px);
    background-size: auto, 64px 64px, 64px 64px;
  }
}

@media (max-width: 860px) {
  .site-header,
  .site-header.is-scrolled,
  .menu-open .site-header,
  .menu-open .site-header.is-scrolled {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 251, 248, 0.94));
  }
}

@media (max-width: 640px) {
  .hero {
    gap: 10px;
    padding-bottom: 20px;
  }

  .hero h1 {
    font-size: clamp(1.52rem, 6.65vw, 1.98rem);
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 0.82rem;
  }

  .hero-application-list {
    gap: 7px;
  }

  .hero-application-list a {
    min-height: 46px;
    box-shadow:
      0 10px 22px rgba(17, 19, 23, 0.06),
      inset 3px 0 0 rgba(242, 138, 19, 0.7);
  }

  .hero-workflow-card {
    padding: 10px;
    border-radius: 12px;
  }

  .hero-workflow-card img {
    height: 112px;
  }

  .hero-panel-list a {
    min-height: 42px;
  }

  .quick-strip a {
    min-height: 52px;
  }
}

/* Final mobile drawer lock: keep the menu as a real fixed panel. */
@media (max-width: 860px) {
  .site-nav {
    position: fixed !important;
    display: grid !important;
    top: calc(var(--header-h) + 12px) !important;
    right: 10px !important;
    bottom: auto !important;
    left: auto !important;
    z-index: 220 !important;
    width: min(276px, calc(100vw - 20px)) !important;
    height: auto !important;
    max-height: calc(100dvh - var(--header-h) - 18px) !important;
    grid-template-columns: minmax(0, 1fr) !important;
    align-content: start !important;
    justify-content: stretch !important;
    justify-items: stretch !important;
    gap: 7px !important;
    padding: 10px !important;
    overflow-y: auto !important;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98) !important;
    border: 1px solid rgba(17, 19, 23, 0.1) !important;
    border-radius: 12px !important;
    box-shadow: 0 24px 64px rgba(17, 19, 23, 0.18) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translate3d(14px, -4px, 0) scale(0.98) !important;
    transform-origin: top right !important;
  }

  .menu-open .site-nav {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translate3d(0, 0, 0) scale(1) !important;
  }

  .site-nav > a,
  .site-nav .nav-trigger,
  .site-nav .nav-cta {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 42px !important;
    justify-content: space-between !important;
  }

  .site-nav .nav-group {
    width: 100% !important;
    min-width: 0 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

/* Final premium trim: remove template-like product language and calm the advisor. */
.product-body {
  display: grid;
  align-content: start;
}

.product-body h3 + p {
  margin-top: 7px;
}

.product-body .tag-row {
  margin: 12px 0 10px;
}

.advisor-launch {
  background: linear-gradient(145deg, #171a1f, #0f1115);
  border-color: rgba(17, 19, 23, 0.18);
  box-shadow:
    0 18px 42px rgba(17, 19, 23, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.advisor-launch-mark,
.advisor-mark {
  color: var(--orange);
  background: rgba(242, 138, 19, 0.12);
  border: 1px solid rgba(242, 138, 19, 0.2);
}

.advisor-mark {
  color: #111317;
  background: linear-gradient(135deg, #ffd078, var(--orange));
}

@media (max-width: 640px) {
  .product-card {
    grid-template-columns: 78px minmax(0, 1fr) !important;
    min-height: 96px !important;
  }

  .product-image {
    min-height: 96px !important;
  }

  .product-image img {
    padding: 10px !important;
  }

  .product-body {
    padding: 9px 10px !important;
  }

  .product-body h3 {
    font-size: 0.86rem !important;
  }

  .product-body h3 + p {
    margin-top: 5px !important;
  }

  .product-body .tag-row {
    display: none;
  }

  .product-body .text-link {
    margin-top: 8px;
    font-size: 0.76rem;
  }

  .product-advisor {
    right: 10px !important;
    bottom: calc(10px + env(safe-area-inset-bottom)) !important;
    left: auto !important;
  }

  .advisor-launch {
    width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    border-radius: 12px !important;
    padding: 5px !important;
  }

  .advisor-launch-mark {
    width: 30px !important;
    height: 30px !important;
  }

  .advisor-launch-mark svg {
    width: 17px !important;
    height: 17px !important;
  }

  .product-advisor.is-open {
    right: 10px !important;
    left: 10px !important;
  }
}

/* Classy enterprise pass: restrained industrial polish without changing content. */
:root {
  --ink: #111417;
  --ink-soft: #505963;
  --paper: #f7f8f5;
  --paper-2: #eef1ed;
  --line: rgba(17, 20, 23, 0.11);
  --orange: #df7f12;
  --orange-dark: #98500d;
  --green: #285f4e;
  --shadow: 0 18px 42px rgba(17, 20, 23, 0.1);
}

body {
  color: var(--ink);
  background:
    linear-gradient(180deg, #f7f8f5 0%, #ffffff 42%, #f0f3ef 100%) !important;
}

.site-header,
.site-header.is-scrolled {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 250, 248, 0.96)) !important;
  border-color: rgba(17, 20, 23, 0.09) !important;
  box-shadow:
    0 18px 46px rgba(17, 20, 23, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

.site-header::before {
  display: none !important;
}

.site-header::after {
  height: 2px !important;
  background: linear-gradient(90deg, rgba(223, 127, 18, 0.92), rgba(40, 95, 78, 0.78), rgba(105, 113, 123, 0.36)) !important;
}

.brand {
  background: #fff !important;
  border-color: rgba(17, 20, 23, 0.07) !important;
  box-shadow: 0 8px 18px rgba(17, 20, 23, 0.06) !important;
}

.site-nav > a,
.nav-trigger {
  color: #3f4750 !important;
  font-weight: 800;
}

.site-nav > a:hover,
.nav-trigger:hover,
.nav-trigger[aria-expanded="true"] {
  color: var(--ink) !important;
  background: rgba(17, 20, 23, 0.045) !important;
}

.nav-cta {
  color: #111417 !important;
  background:
    linear-gradient(180deg, #f4a13a, #df7f12) !important;
  border-color: rgba(152, 80, 13, 0.24) !important;
  box-shadow: 0 10px 22px rgba(223, 127, 18, 0.18) !important;
}

.button {
  min-height: 42px;
  border-radius: 8px !important;
  letter-spacing: 0 !important;
}

.button.primary {
  color: #fff !important;
  background:
    linear-gradient(180deg, #242930, #12161a) !important;
  border-color: rgba(17, 20, 23, 0.22) !important;
  box-shadow:
    0 14px 28px rgba(17, 20, 23, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -3px 0 rgba(223, 127, 18, 0.72) !important;
}

.button.primary:hover {
  background:
    linear-gradient(180deg, #2b3138, #171b20) !important;
}

.button.ghost,
.button.ghost.compact,
.hero .button.ghost,
.hero .button.ghost.compact {
  color: var(--ink) !important;
  background:
    linear-gradient(180deg, #ffffff, #f8f9f6) !important;
  border-color: rgba(17, 20, 23, 0.13) !important;
  box-shadow:
    0 10px 22px rgba(17, 20, 23, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.92) !important;
}

.eyebrow,
.section-head .eyebrow,
.page-hero-copy .eyebrow,
.hero-copy .eyebrow {
  color: #8d4e12 !important;
  letter-spacing: 0 !important;
  font-weight: 900;
}

.hero {
  background:
    linear-gradient(90deg, rgba(250, 251, 248, 0.99) 0%, rgba(250, 251, 248, 0.96) 52%, rgba(239, 242, 238, 0.78) 52%, rgba(239, 242, 238, 0.66) 100%),
    linear-gradient(90deg, rgba(17, 20, 23, 0.036) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 20, 23, 0.032) 1px, transparent 1px) !important;
  background-size: auto, 76px 76px, 76px 76px !important;
}

.hero::before {
  opacity: 0.28 !important;
  filter: saturate(0.82) contrast(1.02) !important;
}

.hero::after {
  height: 3px !important;
  background: linear-gradient(90deg, rgba(223, 127, 18, 0.92), rgba(40, 95, 78, 0.78), rgba(105, 113, 123, 0.42)) !important;
}

.hero h1,
.page-hero h1,
.section-head h2 {
  color: var(--ink) !important;
  letter-spacing: 0 !important;
}

.hero-copy > p:not(.eyebrow),
.page-hero-copy > p,
.section-head p:not(.eyebrow) {
  color: rgba(80, 89, 99, 0.96) !important;
}

.hero-workflow-card,
.quick-strip,
.product-card,
.application-card,
.featured-system,
.decision-panel,
.comparison-table,
.contact-form,
.legacy-detail-panel,
.distributor-panel,
.career-panel,
.mini-card,
.insight-card,
.value-card,
.range-item,
.legal-card {
  border-color: rgba(17, 20, 23, 0.1) !important;
  box-shadow:
    0 16px 38px rgba(17, 20, 23, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.78) !important;
}

.hero-workflow-card,
.quick-strip,
.product-card,
.application-card,
.featured-system,
.decision-panel,
.comparison-table,
.contact-form,
.legacy-detail-panel,
.distributor-panel,
.career-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(249, 250, 247, 0.97)) !important;
}

.hero-workflow-card::before {
  height: 3px !important;
  background: linear-gradient(90deg, rgba(223, 127, 18, 0.9), rgba(40, 95, 78, 0.74), rgba(105, 113, 123, 0.44)) !important;
}

.workflow-mark {
  background: linear-gradient(135deg, #f4a13a, #df7f12) !important;
  box-shadow: 0 10px 20px rgba(223, 127, 18, 0.18) !important;
}

.hero-application-list a,
.hero-panel-list a,
.quick-strip a {
  color: var(--ink) !important;
  background:
    linear-gradient(180deg, #ffffff, #f8f9f6) !important;
  border-color: rgba(17, 20, 23, 0.1) !important;
  box-shadow:
    0 10px 22px rgba(17, 20, 23, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

.hero-application-list a {
  box-shadow:
    0 10px 22px rgba(17, 20, 23, 0.055),
    inset 3px 0 0 rgba(223, 127, 18, 0.68) !important;
}

.product-card:hover,
.application-card:hover,
.mini-card:hover {
  transform: translateY(-2px) !important;
  box-shadow:
    0 22px 48px rgba(17, 20, 23, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.82) !important;
}

.image-chip {
  background: rgba(17, 20, 23, 0.92) !important;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 8px 16px rgba(17, 20, 23, 0.14);
}

.image-chip.amber,
.image-chip.gold,
.image-chip.blue,
.image-chip.green,
.image-chip.steel,
.image-chip.red {
  background: rgba(17, 20, 23, 0.92) !important;
}

.tag-row span,
.page-hero-copy span {
  color: #3f4750 !important;
  background: rgba(255, 255, 255, 0.72) !important;
  border-color: rgba(17, 20, 23, 0.11) !important;
}

.text-link {
  color: #9a520f !important;
}

.text-link::after {
  background: currentColor !important;
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(250, 251, 248, 0.99), rgba(250, 251, 248, 0.94), rgba(239, 242, 238, 0.72)),
    linear-gradient(90deg, rgba(17, 20, 23, 0.032) 1px, transparent 1px),
    url("/assets/hero-1.jpg") right center / cover !important;
}

.application-band,
.products-band,
.range-band,
.contact-band {
  background:
    linear-gradient(180deg, #eef1ed 0%, #f8f9f6 72%, #fff 100%) !important;
}

.advisor-launch {
  background:
    linear-gradient(180deg, #242930, #12161a) !important;
  box-shadow:
    0 16px 36px rgba(17, 20, 23, 0.18),
    inset 0 -3px 0 rgba(223, 127, 18, 0.72) !important;
}

.advisor-launch-mark,
.advisor-mark {
  color: #df7f12 !important;
  background: rgba(223, 127, 18, 0.1) !important;
  border-color: rgba(223, 127, 18, 0.18) !important;
}

.advisor-mark {
  color: #111417 !important;
  background: linear-gradient(135deg, #f5bf70, #df7f12) !important;
}

@media (max-width: 860px) {
  .site-header,
  .site-header.is-scrolled,
  .menu-open .site-header,
  .menu-open .site-header.is-scrolled {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(249, 250, 248, 0.97)) !important;
    box-shadow:
      0 10px 28px rgba(17, 20, 23, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  }

  .site-nav {
    background: rgba(255, 255, 255, 0.99) !important;
    border-color: rgba(17, 20, 23, 0.1) !important;
    box-shadow:
      0 22px 56px rgba(17, 20, 23, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.92) !important;
  }

  .site-nav > a,
  .site-nav .nav-trigger {
    background: linear-gradient(180deg, #ffffff, #f9faf7) !important;
    border-color: rgba(17, 20, 23, 0.1) !important;
  }

  .site-nav .nav-cta {
    color: #111417 !important;
    background:
      linear-gradient(180deg, #f4a13a, #df7f12) !important;
    border-color: rgba(152, 80, 13, 0.24) !important;
    box-shadow: 0 10px 22px rgba(223, 127, 18, 0.18) !important;
  }
}

@media (max-width: 640px) {
  .hero,
  .page-hero {
    background:
      linear-gradient(180deg, rgba(250, 251, 248, 0.99), rgba(250, 251, 248, 0.94)),
      linear-gradient(90deg, rgba(17, 20, 23, 0.03) 1px, transparent 1px),
      linear-gradient(0deg, rgba(17, 20, 23, 0.026) 1px, transparent 1px) !important;
    background-size: auto, 64px 64px, 64px 64px !important;
  }

  .button {
    min-height: 40px;
  }

  .hero-actions .button.primary {
    box-shadow:
      0 12px 24px rgba(17, 20, 23, 0.16),
      inset 0 -3px 0 rgba(223, 127, 18, 0.72) !important;
  }

  .section,
  .application-band {
    background-image: none !important;
  }

  .application-card p {
    display: none !important;
  }
}

/* World-class UX pass: clearer mobile menu state, cleaner form feedback, calmer assistant behavior. */
body.menu-open::before {
  content: "";
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 150;
  pointer-events: none;
  background: rgba(17, 20, 23, 0.16);
}

.menu-open .product-advisor {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

body[data-page="contact"] .product-advisor,
body[data-page="distributor"] .product-advisor {
  display: none !important;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.advisor-query textarea:focus {
  border-color: rgba(152, 80, 13, 0.44) !important;
  box-shadow:
    0 0 0 4px rgba(223, 127, 18, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.88) !important;
  outline: 0;
}

.form-note:not(:empty) {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 9px 11px;
  border: 1px solid rgba(223, 127, 18, 0.22);
  border-radius: 8px;
  color: #77440f;
  background: rgba(223, 127, 18, 0.08);
  font-weight: 800;
}

.advisor-quick-grid button.is-selected {
  box-shadow:
    0 0 0 1px rgba(223, 127, 18, 0.32),
    0 12px 26px rgba(17, 20, 23, 0.08) !important;
}

@media (max-width: 860px) {
  body.menu-open::before {
    top: 58px;
  }

  .menu-open .site-nav {
    backdrop-filter: none;
  }
}

@media (max-width: 640px) {
  .advisor-panel {
    max-height: min(560px, calc(100dvh - var(--header-h) - 24px)) !important;
  }

  .advisor-query textarea {
    min-height: 58px;
  }

  .comparison-table {
    display: grid;
    gap: 8px;
    border: 0 !important;
    border-radius: 0 !important;
    overflow: visible !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .comparison-table .table-head {
    display: none !important;
  }

  .comparison-table > a {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 5px !important;
    padding: 12px !important;
    border: 1px solid rgba(17, 19, 23, 0.1) !important;
    border-radius: 8px !important;
    background: #fff !important;
    box-shadow: 0 8px 22px rgba(17, 19, 23, 0.06);
  }

  .comparison-table > a span,
  .comparison-table > a strong {
    display: grid;
    gap: 2px;
    min-width: 0;
  }

  .comparison-table > a span::before,
  .comparison-table > a strong::before {
    color: var(--orange-dark);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .comparison-table > a span:first-child::before {
    content: "Problem";
  }

  .comparison-table > a strong::before {
    content: "System";
  }

  .comparison-table > a span:last-child::before {
    content: "Outcome";
  }
}

/* Catalogue detail pages: structured product information without repeating the range. */
.legacy-description {
  max-width: 720px;
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.legacy-description p {
  margin: 0;
}

.legacy-product-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  margin: -6px -6px 4px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(17, 20, 23, 0.09);
  border-radius: 7px;
  background: linear-gradient(180deg, #f8f4ea, #f4f6f2);
}

.legacy-product-visual img {
  position: absolute;
  inset: 14px;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  display: block;
  object-fit: contain;
}

.legacy-applications {
  display: grid;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(17, 20, 23, 0.1);
}

.legacy-applications ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legacy-applications li {
  position: relative;
  padding-left: 14px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.35;
}

.legacy-applications li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange-dark);
}

@media (max-width: 640px) {
  .subproduct-grid {
    grid-template-columns: 1fr;
  }

  .subproduct-card {
    min-height: 0;
    padding: 12px;
  }

  .subproduct-card strong {
    font-size: 0.92rem;
  }

  .subproduct-card em {
    font-size: 0.78rem;
  }

  .legacy-product-visual {
    aspect-ratio: 16 / 10;
    margin: -3px -3px 3px;
    padding: 10px;
  }

  .legacy-product-visual img {
    inset: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }

  .related-band .mini-card {
    grid-template-columns: 82px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 5px 10px;
    min-height: 104px;
    padding: 10px;
  }

  .related-band .mini-card img {
    width: 82px;
    height: 82px;
  }
}

/* Final enterprise UI system: compact, product-led and consistent across routes. */
:root {
  --ink: #15191d;
  --ink-soft: #555e67;
  --paper: #f7f8f6;
  --paper-2: #eef2ef;
  --line: rgba(21, 25, 29, 0.12);
  --orange: #ee9228;
  --orange-dark: #9a520f;
  --green: #235f50;
  --teal: #256f78;
  --shadow: 0 14px 34px rgba(21, 25, 29, 0.08);
  --max: 1180px;
  --header-h: 72px;
}

body {
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

.site-header,
.site-header.is-scrolled,
.menu-open .site-header,
.menu-open .site-header.is-scrolled {
  inset: 0 0 auto !important;
  width: 100% !important;
  height: var(--header-h) !important;
  z-index: 200 !important;
  padding: 0 max(22px, calc((100vw - 1280px) / 2)) !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(21, 25, 29, 0.1) !important;
  border-radius: 0 !important;
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 8px 24px rgba(21, 25, 29, 0.06) !important;
  backdrop-filter: blur(16px);
}

.site-header::before,
.site-header::after {
  display: none !important;
}

.brand img,
.site-header.is-scrolled .brand img {
  width: 146px !important;
  max-height: 48px;
  object-fit: contain;
}

.site-nav {
  gap: 2px;
}

.site-nav > a,
.nav-trigger {
  min-height: 40px;
  padding: 0 10px !important;
  border: 0 !important;
  border-radius: 6px !important;
  color: #3e464e !important;
  background: transparent !important;
  font-size: 0.83rem !important;
  font-weight: 760;
}

.site-nav > a:hover,
.nav-trigger:hover,
.nav-trigger[aria-expanded="true"] {
  color: var(--ink) !important;
  background: #eef2ef !important;
}

.site-nav .nav-cta {
  min-height: 40px;
  margin-left: 4px;
  padding-inline: 15px !important;
  color: #181b1f !important;
  background: #ee9228 !important;
  border: 1px solid rgba(154, 82, 15, 0.24) !important;
  border-radius: 7px !important;
  box-shadow: 0 6px 16px rgba(238, 146, 40, 0.18) !important;
}

.nav-menu {
  top: calc(100% + 10px);
  left: auto;
  right: -210px;
  width: min(720px, calc(100vw - 34px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 8px;
  border: 1px solid rgba(21, 25, 29, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(21, 25, 29, 0.16);
  transform: translateY(8px);
}

.nav-group:hover .nav-menu,
.nav-trigger[aria-expanded="true"] + .nav-menu,
.nav-group:focus-within .nav-menu {
  transform: translateY(0);
}

.mega-card,
.mega-card-feature {
  grid-template-columns: minmax(0, 1fr) !important;
  min-height: 64px;
  padding: 11px 13px;
  border: 0;
  border-bottom: 1px solid rgba(21, 25, 29, 0.09);
  border-radius: 0;
  color: var(--ink);
  background: #fff;
  box-shadow: none;
}

.mega-card:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.mega-card-feature {
  grid-column: 1 / -1;
  min-height: 68px;
  border: 1px solid rgba(35, 95, 80, 0.14);
  border-radius: 6px;
  background: #eef3f0;
}

.mega-card:hover,
.mega-card-feature:hover {
  color: var(--ink);
  background: #f4f6f3;
  border-color: rgba(154, 82, 15, 0.22);
  transform: none;
}

.menu-icon {
  display: none !important;
}

.nav-menu strong {
  font-size: 0.88rem;
}

.nav-menu em,
.mega-card-feature em {
  margin-top: 2px;
  color: #68717a;
  font-size: 0.72rem;
  line-height: 1.3;
}

.button {
  min-height: 42px;
  padding-inline: 16px;
  border-radius: 7px !important;
  font-size: 0.84rem;
}

.button.primary {
  color: #fff !important;
  background: #1b2025 !important;
  border: 1px solid #1b2025 !important;
  box-shadow: inset 0 -2px 0 rgba(238, 146, 40, 0.84) !important;
}

.button.primary:hover {
  background: #272e35 !important;
}

.button.ghost,
.button.ghost.compact,
.hero .button.ghost,
.hero .button.ghost.compact {
  color: var(--ink) !important;
  background: #fff !important;
  border: 1px solid rgba(21, 25, 29, 0.14) !important;
  box-shadow: none !important;
}

.hero {
  min-height: 620px;
  display: block !important;
  padding: calc(var(--header-h) + 72px) max(32px, calc((100vw - 1180px) / 2)) 58px !important;
  color: #fff !important;
  background:
    linear-gradient(90deg, rgba(13, 17, 20, 0.96) 0%, rgba(13, 17, 20, 0.91) 42%, rgba(13, 17, 20, 0.42) 70%, rgba(13, 17, 20, 0.22) 100%),
    url("/assets/hero-1.jpg") center / cover no-repeat !important;
}

.hero::before {
  display: none !important;
}

.hero::after {
  height: 3px !important;
  background: linear-gradient(90deg, #ee9228 0 34%, #2d7a67 34% 67%, #3c7e87 67% 100%) !important;
}

.hero-copy {
  width: min(650px, 100%) !important;
  max-width: 650px !important;
  margin: 0 !important;
  color: #fff !important;
}

.hero h1 {
  max-width: 630px;
  margin: 14px 0 0 !important;
  color: #fff !important;
  font-size: 3.55rem !important;
  line-height: 1.02 !important;
  letter-spacing: 0 !important;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 20px 0 0 !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 1rem !important;
  line-height: 1.58;
}

.hero-copy .eyebrow {
  color: #f5a84f !important;
}

.hero-actions {
  gap: 9px !important;
  margin-top: 26px !important;
}

.hero .button.primary {
  color: #15191d !important;
  background: #ee9228 !important;
  border-color: #ee9228 !important;
  box-shadow: inset 0 -2px 0 rgba(112, 57, 8, 0.42) !important;
}

.hero .button.ghost {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
}

.hero .button.ghost.compact {
  padding-inline: 5px !important;
  color: rgba(255, 255, 255, 0.9) !important;
  background: transparent !important;
  border-color: transparent !important;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.product-cockpit {
  display: none !important;
}

.hero-proof {
  width: min(650px, 100%);
  position: static !important;
  inset: auto !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 34px 0 0 !important;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-proof span {
  min-height: 0 !important;
  padding: 0 14px !important;
  border: 0 !important;
  border-right: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 0 !important;
  color: rgba(255, 255, 255, 0.74) !important;
  background: transparent !important;
  font-size: 0.7rem !important;
  line-height: 1.35;
}

.hero-proof span:first-child {
  padding-left: 0 !important;
}

.hero-proof span:last-child {
  border-right: 0 !important;
}

.quick-strip {
  width: min(var(--max), calc(100% - 44px));
  margin: -25px auto 0;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  border: 1px solid rgba(21, 25, 29, 0.12) !important;
  border-radius: 6px !important;
  background: #fff !important;
  box-shadow: 0 16px 40px rgba(21, 25, 29, 0.11) !important;
}

.quick-strip a {
  min-width: 0;
  min-height: 78px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 13px 12px !important;
  border: 0 !important;
  border-right: 1px solid rgba(21, 25, 29, 0.1) !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: none !important;
}

.quick-strip a:last-child {
  border-right: 0 !important;
}

.quick-strip a:hover {
  background: #f1f4f1 !important;
}

.quick-strip strong {
  color: var(--ink) !important;
  font-size: 0.78rem !important;
  line-height: 1.25;
}

.quick-strip span {
  color: #6a737b !important;
  font-size: 0.66rem !important;
  line-height: 1.35;
}

.client-band {
  padding: 29px 0 24px;
  overflow: hidden;
  border-top: 1px solid rgba(21, 25, 29, 0.08);
  border-bottom: 1px solid rgba(21, 25, 29, 0.08);
  background: #eaf1ee;
}

.client-band-head {
  width: min(var(--max), calc(100% - 44px));
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto 18px;
}

.client-band-head .eyebrow {
  margin: 0 0 4px;
}

.client-band-head h2 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.1;
}

.client-band-head > p {
  max-width: 430px;
  margin: 0;
  color: #5f686f;
  font-size: 0.8rem;
  text-align: right;
}

.client-marquee {
  width: 100%;
  overflow: hidden;
}

.client-track {
  width: max-content;
  display: flex;
  animation: clientRail 58s linear infinite;
  will-change: transform;
}

.client-marquee:hover .client-track {
  animation-play-state: paused;
}

.client-group {
  display: flex;
  gap: 9px;
  padding-right: 9px;
}

.client-logo {
  width: 156px;
  height: 70px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 10px 14px;
  border: 1px solid rgba(21, 25, 29, 0.09);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
}

.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.88) contrast(1.02);
}

@keyframes clientRail {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 64px max(22px, calc((100vw - 1180px) / 2)) !important;
}

.section-head {
  width: min(640px, 100%) !important;
  margin: 0 auto 26px !important;
}

.section-head h2,
.cta-copy h2,
.detail-copy h2,
.career-panel h2,
.distributor-panel h2 {
  font-size: 2rem !important;
  line-height: 1.08 !important;
}

.section-head p:not(.eyebrow),
.detail-copy p,
.cta-copy p,
.career-panel p,
.contact-copy p,
.distributor-panel p {
  font-size: 0.92rem !important;
  line-height: 1.55;
}

.application-band,
.products-band,
.range-band,
.contact-band {
  background: #f1f4f1 !important;
}

.application-grid,
.application-grid.application-grid-large {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

.application-card {
  min-height: 118px !important;
  grid-template-columns: minmax(0, 1fr) 76px !important;
  gap: 12px !important;
  padding: 14px !important;
  border: 1px solid rgba(21, 25, 29, 0.1) !important;
  border-radius: 6px !important;
  background: #fff !important;
  box-shadow: none !important;
}

.application-card:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 28px rgba(21, 25, 29, 0.08) !important;
}

.application-card h3 {
  margin: 0;
  font-size: 0.94rem !important;
}

.application-card p {
  margin: 6px 0;
  color: #626b73;
  font-size: 0.74rem;
  line-height: 1.35;
}

.application-card strong {
  color: #8b4b12;
  font-size: 0.72rem;
}

.application-card img {
  width: 76px !important;
  height: 76px !important;
  padding: 5px;
  object-fit: contain;
  border-radius: 5px;
  background: #f4f5f2;
}

.process-grid {
  gap: 16px !important;
}

.process-step {
  min-height: 0 !important;
  display: block !important;
  padding: 14px 4px 0 !important;
  border: 0 !important;
  border-top: 2px solid rgba(154, 82, 15, 0.42) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.process-step h3 {
  font-size: 0.94rem;
}

.process-step p {
  margin-top: 7px;
  color: #626b73;
  font-size: 0.76rem;
  line-height: 1.42;
}

.featured-system-grid {
  gap: 12px !important;
}

.featured-system,
.featured-system.featured-primary {
  min-height: 290px !important;
  grid-template-rows: 158px minmax(0, 1fr) !important;
  grid-column: auto !important;
  border: 1px solid rgba(21, 25, 29, 0.1) !important;
  border-radius: 6px !important;
  background: #f7f8f6 !important;
  box-shadow: none !important;
}

.featured-system:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 14px 32px rgba(21, 25, 29, 0.08) !important;
}

.featured-system img {
  height: 158px !important;
  padding: 12px !important;
  object-fit: contain;
}

.featured-system div {
  padding: 15px !important;
}

.featured-system span {
  min-height: 0 !important;
  padding: 0 !important;
  color: #925011 !important;
  background: transparent !important;
  border-radius: 0 !important;
  font-size: 0.66rem !important;
}

.featured-system h3 {
  margin-top: 7px !important;
  font-size: 1.02rem;
}

.featured-system p {
  margin-top: 5px !important;
  font-size: 0.76rem;
}

.page-hero {
  min-height: 320px !important;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 410px) !important;
  gap: 54px !important;
  padding: calc(var(--header-h) + 38px) max(32px, calc((100vw - 1180px) / 2)) 38px !important;
  background: #eef2ef !important;
}

.page-hero::before {
  display: none !important;
}

.page-hero::after {
  height: 3px !important;
  background: linear-gradient(90deg, #ee9228 0 34%, #2d7a67 34% 67%, #3c7e87 67% 100%) !important;
}

.page-hero h1 {
  margin-top: 8px;
  color: var(--ink) !important;
  font-size: 3rem !important;
  line-height: 1.04 !important;
}

.page-hero-copy > p {
  margin-top: 12px;
  color: #5f6870 !important;
  font-size: 0.94rem !important;
}

.page-hero-copy span {
  margin-top: 14px !important;
  padding: 7px 10px !important;
  color: #4b535b !important;
  background: rgba(255, 255, 255, 0.68) !important;
  border: 1px solid rgba(21, 25, 29, 0.1) !important;
  border-radius: 5px !important;
  font-size: 0.74rem;
}

.page-hero > img {
  width: 100% !important;
  height: 210px !important;
  padding: 16px !important;
  object-fit: contain !important;
  border: 1px solid rgba(21, 25, 29, 0.1) !important;
  border-radius: 6px !important;
  background: #fff !important;
  box-shadow: none !important;
}

.product-grid {
  gap: 12px !important;
}

.product-card {
  border: 1px solid rgba(21, 25, 29, 0.1) !important;
  border-radius: 6px !important;
  background: #fff !important;
  box-shadow: none !important;
}

.product-card:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 14px 32px rgba(21, 25, 29, 0.08) !important;
}

.product-image {
  aspect-ratio: auto !important;
  height: 184px !important;
  padding: 12px;
  background: #f4f5f2 !important;
}

.product-image img {
  width: 100%;
  height: 100%;
  padding: 4px !important;
  object-fit: contain;
  transform: none !important;
}

.image-chip {
  left: 10px;
  bottom: 10px;
  padding: 5px 7px;
  border-radius: 4px;
  font-size: 0.64rem;
}

.product-body {
  min-height: 152px;
  padding: 15px !important;
}

.product-body h3 {
  font-size: 1rem !important;
}

.product-body p {
  margin-top: 6px;
  font-size: 0.76rem;
  line-height: 1.4;
}

.product-body .tag-row {
  display: none;
}

.product-body .text-link {
  margin-top: 11px;
  font-size: 0.76rem;
}

.comparison-table {
  border-radius: 6px !important;
  box-shadow: none !important;
}

.comparison-table > div,
.comparison-table > a {
  padding: 13px 16px;
  font-size: 0.8rem;
}

.detail-grid,
.contact-grid,
.about-grid {
  gap: 48px !important;
}

.about-grid > .section-head {
  margin: 0 !important;
  text-align: left !important;
}

.about-grid .values-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

.about-grid .value-card {
  min-height: 136px;
  padding: 16px !important;
}

.about-grid .value-card h3 {
  font-size: 0.94rem;
}

.about-grid .value-card p {
  font-size: 0.76rem;
  line-height: 1.42;
}

.detail-copy h2 {
  max-width: 560px;
}

.check-list {
  gap: 9px;
  margin-top: 18px;
}

.check-list li {
  padding-left: 26px;
  font-size: 0.84rem;
}

.product-showcase {
  min-height: 360px !important;
  border-radius: 6px !important;
  background: #fff !important;
  box-shadow: none !important;
}

.product-showcase img {
  max-height: 310px !important;
  padding: 22px !important;
}

.showcase-readout {
  border-radius: 5px;
}

.subproduct-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 8px !important;
}

.subproduct-card {
  min-height: 86px !important;
  padding: 12px !important;
  border: 1px solid rgba(21, 25, 29, 0.1) !important;
  border-radius: 6px !important;
  background: #fff !important;
  box-shadow: none !important;
}

.subproduct-card strong {
  font-size: 0.86rem !important;
}

.subproduct-card em {
  margin-top: 4px;
  color: #687078;
  font-size: 0.72rem !important;
  line-height: 1.35;
}

.legacy-detail-panel,
.contact-form,
.distributor-panel,
.career-panel,
.value-card,
.insight-card,
.mini-card,
.range-item,
.legal-card {
  border-radius: 6px !important;
  box-shadow: none !important;
}

.sector-band {
  background: #eef2ef;
}

.sector-grid {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0 auto;
  border: 1px solid rgba(21, 25, 29, 0.11);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.sector-grid span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-right: 1px solid rgba(21, 25, 29, 0.1);
  border-bottom: 1px solid rgba(21, 25, 29, 0.1);
  font-size: 0.82rem;
  font-weight: 800;
}

.sector-grid span:nth-child(3n) {
  border-right: 0;
}

.sector-grid span:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.ecosystem-panel {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 46px;
  align-items: center;
  margin: 24px auto 0;
  padding: 30px;
  border-radius: 6px;
  color: #fff;
  background: #192126;
}

.ecosystem-panel h2 {
  margin: 6px 0 0;
  font-size: 1.65rem;
  line-height: 1.1;
}

.ecosystem-panel p:not(.eyebrow) {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.ecosystem-panel .eyebrow {
  color: #f4a654 !important;
}

.ecosystem-links {
  display: grid;
}

.ecosystem-links a {
  min-height: 46px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 800;
}

.ecosystem-links a::after {
  content: "\2197";
  margin-left: auto;
  color: #f4a654;
}

.ecosystem-links a:last-child {
  border-bottom: 0;
}

.cta-band {
  padding: 48px max(22px, calc((100vw - 1180px) / 2)) !important;
}

.cta-copy h2 {
  max-width: 620px;
}

.site-footer {
  background: #151a1e !important;
}

.footer-command,
.footer-grid,
.footer-bottom {
  padding-left: max(22px, calc((100vw - 1180px) / 2)) !important;
  padding-right: max(22px, calc((100vw - 1180px) / 2)) !important;
}

.footer-command {
  padding-top: 38px !important;
  padding-bottom: 26px !important;
}

.footer-grid {
  padding-top: 25px !important;
  padding-bottom: 26px !important;
}

.footer-grid h2 {
  color: #f1a14b;
}

.social-link {
  width: 36px !important;
  height: 36px !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  border-radius: 6px !important;
  line-height: 1 !important;
  transform: none !important;
}

.social-link img {
  display: block !important;
  width: 17px !important;
  height: 17px !important;
  object-fit: contain !important;
  margin: 0 !important;
  transform: none !important;
}

.advisor-launch {
  right: 18px !important;
  bottom: 18px !important;
  min-height: 46px !important;
  padding: 6px 12px 6px 7px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 8px !important;
  color: #fff !important;
  background: #192126 !important;
  box-shadow: 0 14px 34px rgba(21, 25, 29, 0.2) !important;
}

.advisor-launch-mark,
.advisor-mark {
  width: 32px !important;
  height: 32px !important;
  padding: 5px !important;
  border: 1px solid rgba(238, 146, 40, 0.28) !important;
  border-radius: 6px !important;
  background: #fff !important;
}

.advisor-launch-mark img,
.advisor-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.advisor-panel {
  width: 388px !important;
  max-height: min(570px, calc(100dvh - 92px)) !important;
  border: 1px solid rgba(21, 25, 29, 0.12) !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 24px 64px rgba(21, 25, 29, 0.24) !important;
}

.advisor-head {
  min-height: 62px !important;
  padding: 10px !important;
  background: #1b2926 !important;
}

.advisor-body {
  gap: 8px !important;
  padding: 10px !important;
}

.advisor-quick-grid {
  gap: 7px !important;
}

.advisor-quick-grid button {
  min-height: 62px !important;
  padding: 9px !important;
  border-radius: 6px !important;
  box-shadow: none !important;
}

.advisor-quick-grid button.is-selected {
  border-color: rgba(238, 146, 40, 0.54) !important;
  background: #fffaf3 !important;
  box-shadow: none !important;
}

.advisor-query textarea {
  min-height: 58px !important;
  border-radius: 6px !important;
}

.advisor-check {
  min-height: 40px !important;
  border-radius: 6px !important;
  background: #e68920 !important;
}

.advisor-result-card {
  min-height: 76px;
  border-radius: 6px !important;
}

.advisor-actions .button {
  min-height: 38px !important;
}

@media (max-width: 1080px) {
  .hero h1 {
    font-size: 3.1rem !important;
  }

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

  .quick-strip a:nth-child(3) {
    border-right: 0 !important;
  }

  .quick-strip a:nth-child(-n + 3) {
    border-bottom: 1px solid rgba(21, 25, 29, 0.1) !important;
  }

  .application-grid,
  .application-grid.application-grid-large {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 860px) {
  :root {
    --header-h: 60px;
  }

  .site-header,
  .site-header.is-scrolled,
  .menu-open .site-header,
  .menu-open .site-header.is-scrolled {
    height: var(--header-h) !important;
    padding: 0 12px !important;
  }

  .brand img,
  .site-header.is-scrolled .brand img {
    width: 132px !important;
    max-height: 43px;
  }

  .menu-button {
    width: 40px !important;
    height: 40px !important;
    display: block !important;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 7px !important;
    background: #181d22 !important;
  }

  .menu-button span:not(.sr-only) {
    left: 11px !important;
    right: 11px !important;
  }

  .menu-button span:nth-child(1) {
    top: 13px !important;
  }

  .menu-button span:nth-child(2) {
    top: 19px !important;
  }

  .menu-button span:nth-child(3) {
    top: 25px !important;
  }

  .menu-open .menu-button span:nth-child(1) {
    top: 19px !important;
    transform: rotate(45deg) !important;
  }

  .menu-open .menu-button span:nth-child(2) {
    opacity: 0 !important;
  }

  .menu-open .menu-button span:nth-child(3) {
    top: 19px !important;
    transform: rotate(-45deg) !important;
  }

  body.menu-open::before {
    inset: var(--header-h) 0 0 !important;
    z-index: 150 !important;
    pointer-events: auto !important;
    background: rgba(21, 25, 29, 0.36) !important;
  }

  .site-nav {
    position: fixed !important;
    inset: var(--header-h) 8px auto !important;
    z-index: 170 !important;
    width: auto !important;
    max-height: calc(100dvh - var(--header-h) - 8px) !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    align-content: start !important;
    gap: 0 !important;
    padding: 8px !important;
    overflow-y: auto !important;
    border: 1px solid rgba(21, 25, 29, 0.12) !important;
    border-top: 0 !important;
    border-radius: 0 0 8px 8px !important;
    background: #fff !important;
    box-shadow: 0 22px 54px rgba(21, 25, 29, 0.2) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-8px) !important;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease !important;
  }

  .menu-open .site-nav {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  .site-nav > a,
  .site-nav .nav-trigger {
    width: 100%;
    min-height: 42px !important;
    justify-content: flex-start;
    padding: 0 11px !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(21, 25, 29, 0.09) !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: 0.82rem !important;
  }

  .site-nav > a:nth-of-type(2n) {
    border-left: 1px solid rgba(21, 25, 29, 0.09) !important;
  }

  .nav-group {
    grid-column: 1 / -1;
  }

  .nav-trigger {
    justify-content: space-between !important;
  }

  .site-nav .nav-cta {
    grid-column: 1 / -1;
    min-height: 40px !important;
    justify-content: center;
    margin: 7px 0 0 !important;
    border: 1px solid rgba(154, 82, 15, 0.24) !important;
    border-radius: 6px !important;
    background: #ee9228 !important;
  }

  .nav-menu {
    position: static !important;
    width: 100% !important;
    display: none !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0 !important;
    margin: 2px 0 6px !important;
    padding: 5px !important;
    border: 0 !important;
    border-radius: 6px !important;
    background: #f1f4f1 !important;
    box-shadow: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  .nav-group-open .nav-menu {
    display: grid !important;
  }

  .mega-card,
  .mega-card-feature {
    min-height: 40px !important;
    display: flex !important;
    align-items: center;
    padding: 7px 9px !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(21, 25, 29, 0.08) !important;
    border-radius: 0 !important;
    background: transparent !important;
  }

  .mega-card-feature {
    grid-column: 1 / -1;
  }

  .mega-card strong {
    font-size: 0.74rem !important;
    line-height: 1.22;
  }

  .nav-menu em {
    display: none !important;
  }

  .hero {
    min-height: 600px;
    padding: calc(var(--header-h) + 58px) 26px 50px !important;
    background:
      linear-gradient(90deg, rgba(13, 17, 20, 0.96), rgba(13, 17, 20, 0.82) 64%, rgba(13, 17, 20, 0.5)),
      url("/assets/hero-1.jpg") 42% center / cover no-repeat !important;
  }

  .hero h1 {
    font-size: 2.75rem !important;
  }

  .quick-strip {
    width: min(100% - 20px, var(--max));
  }

  .page-hero {
    grid-template-columns: minmax(0, 1fr) 280px !important;
    gap: 24px !important;
    padding-inline: 22px !important;
  }

  .page-hero-copy {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .page-hero > img {
    grid-column: 2 !important;
    grid-row: 1 !important;
  }

  .page-hero h1 {
    font-size: 2.35rem !important;
  }

  .page-hero > img {
    height: 180px !important;
  }

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

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

@media (max-width: 640px) {
  .hero {
    min-height: 548px !important;
    padding: calc(var(--header-h) + 45px) 12px 40px !important;
    background:
      linear-gradient(90deg, rgba(13, 17, 20, 0.97), rgba(13, 17, 20, 0.84) 76%, rgba(13, 17, 20, 0.58)),
      url("/assets/hero-1.jpg") 43% center / cover no-repeat !important;
  }

  .hero-copy {
    width: 100% !important;
  }

  .hero h1 {
    max-width: 350px;
    margin-top: 10px !important;
    font-size: 2.08rem !important;
    line-height: 1.04 !important;
  }

  .hero-copy > p:not(.eyebrow) {
    max-width: 340px;
    margin-top: 14px !important;
    font-size: 0.86rem !important;
    line-height: 1.5;
  }

  .hero-actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px !important;
    margin-top: 19px !important;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 40px;
    justify-content: center;
    padding-inline: 8px;
    font-size: 0.76rem;
  }

  .hero-actions .button.primary {
    grid-column: auto !important;
  }

  .hero-actions .button.compact {
    grid-column: 1 / -1;
    width: auto;
    min-height: 28px;
    justify-self: start;
  }

  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 21px !important;
    padding-top: 12px;
  }

  .hero-proof span,
  .hero-proof span:first-child {
    padding: 0 7px !important;
    border: 0 !important;
    border-right: 1px solid rgba(255, 255, 255, 0.16) !important;
    font-size: 0.59rem !important;
    text-align: left !important;
  }

  .hero-proof span:first-child {
    padding-left: 0 !important;
  }

  .hero-proof span:last-child {
    border-right: 0 !important;
  }

  .quick-strip {
    width: calc(100% - 20px);
    display: flex !important;
    margin-top: -21px;
    overflow-x: auto !important;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .quick-strip::-webkit-scrollbar {
    display: none;
  }

  .quick-strip a,
  .quick-strip a:nth-child(-n + 3),
  .quick-strip a:nth-child(3) {
    min-width: 154px;
    min-height: 58px;
    flex: 0 0 154px;
    padding: 10px !important;
    border: 0 !important;
    border-right: 1px solid rgba(21, 25, 29, 0.1) !important;
  }

  .quick-strip strong {
    font-size: 0.72rem !important;
  }

  .quick-strip span {
    display: none;
  }

  .client-band {
    padding: 23px 0 18px;
  }

  .client-band-head {
    width: calc(100% - 24px);
    display: grid;
    gap: 7px;
    margin-bottom: 13px;
  }

  .client-band-head h2 {
    font-size: 1.2rem;
  }

  .client-band-head > p {
    max-width: none;
    font-size: 0.7rem;
    text-align: left;
  }

  .client-track {
    animation-duration: 72s;
  }

  .client-logo {
    width: 132px;
    height: 58px;
    padding: 8px 11px;
  }

  .section {
    padding: 44px 12px !important;
  }

  .section-head {
    margin-bottom: 19px !important;
    text-align: left !important;
  }

  .section-head h2,
  .cta-copy h2,
  .detail-copy h2,
  .career-panel h2,
  .distributor-panel h2 {
    font-size: 1.5rem !important;
    line-height: 1.12 !important;
  }

  .section-head p:not(.eyebrow),
  .detail-copy p,
  .cta-copy p,
  .career-panel p,
  .contact-copy p,
  .distributor-panel p {
    font-size: 0.84rem !important;
  }

  .starter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 6px !important;
    margin: 0 0 3px !important;
  }

  .starter-chip {
    min-height: 54px !important;
    align-content: center !important;
    padding: 8px !important;
  }

  .starter-chip strong {
    font-size: 0.76rem !important;
    line-height: 1.2 !important;
  }

  .starter-chip span {
    display: none !important;
  }

  .application-grid,
  .application-grid.application-grid-large {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 7px !important;
  }

  .application-card {
    min-height: 88px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    align-content: center;
    padding: 10px !important;
  }

  .application-card img {
    display: none !important;
  }

  .application-card h3 {
    font-size: 0.8rem !important;
  }

  .application-card p {
    display: none !important;
  }

  .application-card strong {
    display: block;
    margin-top: 6px;
    font-size: 0.65rem;
    line-height: 1.25;
  }

  .process-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .process-step {
    display: grid !important;
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 12px;
    padding: 11px 0 !important;
    border-top: 1px solid rgba(21, 25, 29, 0.12) !important;
  }

  .process-step h3,
  .process-step p {
    margin: 0;
  }

  .featured-system-grid {
    grid-template-columns: 1fr !important;
    gap: 7px !important;
  }

  .featured-system,
  .featured-system.featured-primary {
    min-height: 106px !important;
    display: grid !important;
    grid-template-columns: 106px minmax(0, 1fr) !important;
    grid-template-rows: 1fr !important;
  }

  .featured-system img {
    width: 106px !important;
    height: 104px !important;
    padding: 8px !important;
  }

  .featured-system div {
    align-self: center;
    padding: 11px !important;
  }

  .featured-system p {
    font-size: 0.7rem;
  }

  .page-hero {
    min-height: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    padding: calc(var(--header-h) + 25px) 12px 18px !important;
  }

  .page-hero-copy,
  .page-hero > img {
    grid-column: 1 !important;
  }

  .page-hero-copy {
    grid-row: 1 !important;
  }

  .page-hero h1 {
    margin-top: 4px !important;
    font-size: 1.72rem !important;
    line-height: 1.05 !important;
  }

  .page-hero-copy > p {
    margin-top: 7px;
    font-size: 0.78rem !important;
  }

  .page-hero-copy span {
    margin-top: 8px !important;
    padding: 6px 8px !important;
    font-size: 0.66rem;
    line-height: 1.3;
  }

  .page-hero > img {
    grid-row: 2 !important;
    height: 96px !important;
    padding: 7px !important;
  }

  .product-grid {
    grid-template-columns: 1fr !important;
    gap: 7px !important;
  }

  .product-card {
    min-height: 112px;
    display: grid !important;
    grid-template-columns: 98px minmax(0, 1fr) !important;
  }

  .product-image {
    width: 98px;
    height: 100% !important;
    min-height: 112px;
    padding: 7px;
  }

  .product-image img {
    padding: 2px !important;
  }

  .image-chip {
    display: none !important;
  }

  .product-body {
    min-height: 112px;
    display: grid;
    align-content: center;
    padding: 11px !important;
  }

  .product-body h3 {
    font-size: 0.86rem !important;
  }

  .product-body p {
    margin-top: 4px;
    font-size: 0.69rem;
  }

  .product-body .text-link {
    min-height: 24px;
    margin-top: 5px;
    font-size: 0.68rem;
  }

  .detail-grid,
  .contact-grid,
  .about-grid,
  .distributor-panel,
  .career-panel {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .check-list {
    gap: 7px;
    margin-top: 14px;
  }

  .check-list li {
    padding-left: 24px;
    font-size: 0.76rem;
  }

  .product-showcase {
    min-height: 236px !important;
  }

  .product-showcase img {
    max-height: 210px !important;
    padding: 14px !important;
  }

  .showcase-readout {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 10px;
  }

  .subproduct-grid {
    grid-template-columns: 1fr !important;
    gap: 6px !important;
  }

  .subproduct-card {
    min-height: 66px !important;
    padding: 10px !important;
  }

  .subproduct-card strong {
    font-size: 0.8rem !important;
  }

  .subproduct-card em {
    font-size: 0.69rem !important;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

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

  .sector-grid span {
    min-height: 48px;
    padding: 9px 10px;
    font-size: 0.72rem;
  }

  .sector-grid span:nth-child(3n) {
    border-right: 1px solid rgba(21, 25, 29, 0.1);
  }

  .sector-grid span:nth-child(2n) {
    border-right: 0;
  }

  .sector-grid span:nth-last-child(-n + 3) {
    border-bottom: 1px solid rgba(21, 25, 29, 0.1);
  }

  .sector-grid span:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .ecosystem-panel {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .ecosystem-panel h2 {
    font-size: 1.35rem;
  }

  .ecosystem-panel p:not(.eyebrow) {
    font-size: 0.78rem;
  }

  .ecosystem-links a {
    min-height: 42px;
    font-size: 0.76rem;
  }

  .cta-band {
    gap: 18px !important;
    padding: 35px 12px !important;
  }

  .footer-command,
  .footer-grid,
  .footer-bottom {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .advisor-launch {
    right: 10px !important;
    bottom: 10px !important;
    width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    padding: 5px !important;
  }

  .advisor-launch span:last-child {
    display: none !important;
  }

  .advisor-launch-mark {
    width: 32px !important;
    height: 32px !important;
  }

  .product-advisor.is-open {
    inset: auto 8px 8px !important;
  }

  .advisor-panel {
    width: 100% !important;
    max-height: min(540px, calc(100dvh - var(--header-h) - 18px)) !important;
    border-radius: 8px !important;
  }

  .advisor-head {
    min-height: 58px !important;
    padding: 9px !important;
  }

  .advisor-body {
    gap: 7px !important;
    padding: 9px !important;
  }

  .advisor-quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 6px !important;
  }

  .advisor-quick-grid button {
    min-height: 38px !important;
    padding: 7px !important;
  }

  .advisor-quick-grid button span {
    display: none !important;
  }

  .advisor-query textarea {
    min-height: 54px !important;
  }

  .advisor-result-card {
    min-height: 68px;
    padding: 9px !important;
  }

  .advisor-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 340px) {
  .hero h1 {
    font-size: 1.88rem !important;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 0.8rem !important;
  }

  .application-grid,
  .application-grid.application-grid-large {
    grid-template-columns: 1fr !important;
  }

  .application-card {
    min-height: 70px !important;
  }

  .mega-card strong {
    font-size: 0.69rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-track {
    animation: none;
  }

  .client-marquee {
    overflow-x: auto;
  }

  .client-group[aria-hidden="true"] {
    display: none;
  }
}

/* 2026 premium system: one coherent industrial product experience. */
:root {
  --ink: #171b1f;
  --ink-soft: #596168;
  --paper: #ffffff;
  --paper-2: #f3f5f2;
  --line: rgba(23, 27, 31, 0.12);
  --orange: #ec8b22;
  --orange-dark: #9a510e;
  --green: #275f52;
  --teal: #2b7078;
  --shadow: 0 18px 44px rgba(20, 24, 27, 0.09);
  --max: 1180px;
  --header-h: 64px;
}

html {
  background: #ffffff;
}

body {
  color: var(--ink) !important;
  background: #ffffff !important;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body,
button,
input,
select,
textarea,
.eyebrow,
h1,
h2,
h3,
h4,
p,
a,
span,
strong,
em {
  letter-spacing: 0 !important;
}

.site-header,
.site-header.is-scrolled,
.menu-open .site-header,
.menu-open .site-header.is-scrolled {
  inset: 0 0 auto !important;
  width: 100% !important;
  height: var(--header-h) !important;
  padding: 0 max(24px, calc((100vw - 1280px) / 2)) !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(23, 27, 31, 0.1) !important;
  border-radius: 0 !important;
  background: #ffffff !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.site-header::before,
.site-header::after {
  display: none !important;
}

.brand {
  height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.brand img,
.site-header.is-scrolled .brand img {
  width: 138px !important;
  max-height: 46px !important;
  object-fit: contain;
}

.site-nav {
  gap: 1px;
}

.site-nav > a,
.nav-trigger {
  min-height: 38px !important;
  padding: 0 10px !important;
  border: 0 !important;
  border-radius: 5px !important;
  color: #424a51 !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 0.8rem !important;
  font-weight: 750 !important;
}

.site-nav > a:hover,
.nav-trigger:hover,
.nav-trigger[aria-expanded="true"] {
  color: #111417 !important;
  background: #f0f2ef !important;
}

.site-nav .nav-cta {
  min-height: 38px !important;
  margin-left: 5px !important;
  padding-inline: 15px !important;
  color: #171b1f !important;
  border: 1px solid rgba(154, 81, 14, 0.22) !important;
  border-radius: 6px !important;
  background: var(--orange) !important;
  box-shadow: none !important;
}

.site-nav .nav-cta:hover {
  background: #f19a39 !important;
}

.nav-menu {
  top: calc(100% + 9px) !important;
  right: -206px !important;
  width: min(720px, calc(100vw - 32px)) !important;
  gap: 0 !important;
  padding: 8px !important;
  border: 1px solid rgba(23, 27, 31, 0.12) !important;
  border-radius: 7px !important;
  background: #ffffff !important;
  box-shadow: 0 24px 64px rgba(20, 24, 27, 0.16) !important;
}

.mega-card,
.mega-card-feature {
  min-height: 62px !important;
  padding: 10px 13px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(23, 27, 31, 0.09) !important;
  border-radius: 0 !important;
  background: #ffffff !important;
}

.mega-card-feature {
  min-height: 64px !important;
  border: 1px solid rgba(39, 95, 82, 0.16) !important;
  border-radius: 6px !important;
  background: #eef3f0 !important;
}

.mega-card:hover,
.mega-card-feature:hover {
  color: var(--ink) !important;
  background: #f4f6f3 !important;
}

.nav-menu strong {
  font-size: 0.86rem !important;
}

.nav-menu em {
  color: #687078 !important;
  font-size: 0.71rem !important;
}

.button {
  min-height: 42px !important;
  padding: 0 16px !important;
  border-radius: 6px !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  box-shadow: none !important;
}

.button.primary {
  color: #ffffff !important;
  border: 1px solid #1a2025 !important;
  background: #1a2025 !important;
  box-shadow: inset 0 -2px 0 rgba(236, 139, 34, 0.88) !important;
}

.button.primary:hover {
  background: #272e34 !important;
}

.button.ghost,
.button.ghost.dark {
  color: var(--ink) !important;
  border: 1px solid rgba(23, 27, 31, 0.16) !important;
  background: #ffffff !important;
}

.button.ghost:hover,
.button.ghost.dark:hover {
  border-color: rgba(23, 27, 31, 0.3) !important;
  background: #f4f5f3 !important;
}

.hero {
  min-height: 596px !important;
  position: relative !important;
  display: block !important;
  isolation: isolate;
  padding: calc(var(--header-h) + 74px) max(30px, calc((100vw - 1180px) / 2)) 50px !important;
  overflow: hidden;
  color: #ffffff !important;
  background: url("/assets/hero-1.jpg") center 48% / cover no-repeat !important;
}

.hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: -1 !important;
  display: block !important;
  background: rgba(10, 14, 17, 0.66) !important;
}

.hero::after {
  content: "" !important;
  position: absolute !important;
  inset: auto 0 0 !important;
  z-index: 2 !important;
  display: block !important;
  height: 2px !important;
  background: var(--orange) !important;
}

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

.hero-copy {
  width: min(590px, 100%) !important;
  max-width: 590px !important;
  margin: 0 !important;
}

.hero-copy .eyebrow {
  color: #f3a34c !important;
  font-size: 0.72rem !important;
}

.hero h1 {
  max-width: 580px !important;
  margin: 13px 0 0 !important;
  color: #ffffff !important;
  font-size: 3.18rem !important;
  font-weight: 780 !important;
  line-height: 1.04 !important;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 570px !important;
  margin: 18px 0 0 !important;
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.95rem !important;
  line-height: 1.58 !important;
}

.hero-actions {
  gap: 8px !important;
  margin-top: 23px !important;
}

.hero .button.primary {
  color: #171b1f !important;
  border-color: var(--orange) !important;
  background: var(--orange) !important;
  box-shadow: inset 0 -2px 0 rgba(112, 56, 7, 0.36) !important;
}

.hero .button.primary:hover {
  background: #f19a39 !important;
}

.hero .button.ghost {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.34) !important;
  background: rgba(10, 14, 17, 0.2) !important;
}

.hero .button.ghost:hover {
  border-color: rgba(255, 255, 255, 0.6) !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

.hero .button.ghost.compact {
  min-height: 42px !important;
  padding-inline: 7px !important;
  border-color: transparent !important;
  background: transparent !important;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.product-cockpit {
  display: none !important;
}

.hero-proof {
  width: min(590px, 100%) !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  margin: 31px 0 0 !important;
  padding-top: 16px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.hero-proof span,
.hero-proof span:first-child {
  min-height: 0 !important;
  padding: 0 13px !important;
  border: 0 !important;
  border-right: 1px solid rgba(255, 255, 255, 0.17) !important;
  border-radius: 0 !important;
  color: rgba(255, 255, 255, 0.72) !important;
  background: transparent !important;
  font-size: 0.69rem !important;
  line-height: 1.35 !important;
}

.hero-proof span:first-child {
  padding-left: 0 !important;
}

.hero-proof span:last-child {
  border-right: 0 !important;
}

.section {
  padding: 70px max(22px, calc((100vw - 1180px) / 2)) !important;
}

.home-section-intro {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.82fr);
  gap: 64px;
  align-items: end;
  margin: 0 auto 30px;
}

.home-section-intro h2 {
  max-width: 610px;
  margin: 6px 0 0;
  font-size: 2.18rem;
  line-height: 1.08;
}

.home-section-intro > p {
  margin: 0;
  color: #5e666d;
  font-size: 0.9rem;
  line-height: 1.58;
}

.home-systems {
  background: #f3f5f2 !important;
}

.home-system-grid {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(23, 27, 31, 0.12);
  border-radius: 7px;
  background: rgba(23, 27, 31, 0.12);
}

.home-system-card {
  min-width: 0;
  min-height: 304px;
  display: grid;
  grid-template-rows: 150px minmax(0, 1fr);
  color: var(--ink);
  background: #ffffff;
  transition: background 160ms ease;
}

.home-system-card:hover {
  background: #fcfcfb;
}

.home-system-card figure {
  height: 150px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 14px;
  overflow: hidden;
  background: #fafbf9;
}

.home-system-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 180ms ease;
}

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

.home-system-card > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px 19px 17px;
}

.home-system-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.24;
}

.home-system-card p {
  margin: 7px 0 0;
  color: #646c73;
  font-size: 0.76rem;
  line-height: 1.43;
}

.home-system-link {
  margin-top: auto;
  padding-top: 13px;
  color: #8c4a10;
  font-size: 0.73rem;
  font-weight: 850;
}

.home-system-link::after {
  content: "  >";
}

.home-catalog-action {
  width: min(var(--max), 100%);
  display: flex;
  justify-content: flex-end;
  margin: 18px auto 0;
}

.client-band {
  padding: 30px 0 27px !important;
  border-top: 1px solid rgba(23, 27, 31, 0.09) !important;
  border-bottom: 1px solid rgba(23, 27, 31, 0.09) !important;
  background: #ffffff !important;
}

.client-band-head {
  width: min(var(--max), calc(100% - 44px)) !important;
  align-items: end !important;
  margin: 0 auto 17px !important;
}

.client-band-head h2 {
  color: var(--ink) !important;
  font-size: 1.32rem !important;
}

.client-band-head > p {
  color: #697178 !important;
  font-size: 0.76rem !important;
}

.client-track {
  animation-duration: 78s !important;
}

.client-group {
  gap: 0 !important;
  padding-right: 0 !important;
}

.client-logo {
  width: 150px !important;
  height: 58px !important;
  margin: 0 !important;
  padding: 8px 20px !important;
  border: 0 !important;
  border-right: 1px solid rgba(23, 27, 31, 0.1) !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.client-logo img {
  filter: grayscale(1) contrast(0.92) !important;
  opacity: 0.72;
  transition: filter 160ms ease, opacity 160ms ease;
}

.client-logo:hover img {
  filter: none !important;
  opacity: 1;
}

.home-application {
  display: grid !important;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.45fr) !important;
  gap: 74px !important;
  align-items: start;
  color: #ffffff;
  background: #171d20 !important;
}

.home-application-copy {
  position: sticky;
  top: calc(var(--header-h) + 26px);
}

.home-application-copy .eyebrow {
  color: #f2a34d !important;
}

.home-application-copy h2 {
  max-width: 430px;
  margin: 7px 0 0;
  color: #ffffff;
  font-size: 2.18rem;
  line-height: 1.08;
}

.home-application-copy > p:not(.eyebrow) {
  max-width: 430px;
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  line-height: 1.58;
}

.home-application-copy .text-link {
  display: inline-flex;
  margin-top: 21px;
  color: #ffffff !important;
  border-bottom-color: rgba(236, 139, 34, 0.68) !important;
}

.home-application-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.home-application-row {
  min-width: 0;
  min-height: 132px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 5px 14px;
  align-content: center;
  padding: 16px 18px 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.home-application-row:nth-child(odd) {
  padding-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.home-application-row:nth-child(even) {
  padding-left: 24px;
}

.home-application-row img {
  width: 58px;
  height: 58px;
  grid-row: 1 / span 2;
  align-self: center;
  padding: 5px;
  object-fit: contain;
  border-radius: 5px;
  background: #ffffff;
}

.home-application-row h3 {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.25;
}

.home-application-row p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.71rem;
  line-height: 1.4;
}

.home-application-row strong {
  grid-column: 2;
  color: #f0a14a;
  font-size: 0.69rem;
  line-height: 1.3;
}

.home-process {
  background: #f7f8f6 !important;
}

.home-process .process-grid {
  width: min(var(--max), 100%);
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 0 !important;
  margin: 0 auto;
  border-top: 1px solid rgba(23, 27, 31, 0.14);
}

.home-process .process-step {
  min-height: 124px !important;
  padding: 17px 20px 0 !important;
  border: 0 !important;
  border-right: 1px solid rgba(23, 27, 31, 0.11) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.home-process .process-step:first-child {
  padding-left: 0 !important;
}

.home-process .process-step:last-child {
  border-right: 0 !important;
}

.home-process .process-step h3 {
  margin: 0;
  font-size: 0.88rem !important;
}

.home-process .process-step p {
  margin: 7px 0 0;
  color: #697178;
  font-size: 0.72rem !important;
  line-height: 1.43;
}

.cta-band {
  padding: 45px max(22px, calc((100vw - 1180px) / 2)) !important;
  border-top: 1px solid rgba(23, 27, 31, 0.1) !important;
  border-bottom: 1px solid rgba(23, 27, 31, 0.1) !important;
  color: var(--ink) !important;
  background: #edf1ed !important;
}

.cta-band::before,
.cta-band::after {
  display: none !important;
}

.cta-copy h2 {
  color: var(--ink) !important;
  font-size: 1.75rem !important;
}

.cta-copy p:not(.eyebrow),
.cta-proof,
.cta-proof strong {
  color: #5f676e !important;
}

.page-hero {
  min-height: 328px !important;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px) !important;
  gap: 60px !important;
  padding: calc(var(--header-h) + 42px) max(30px, calc((100vw - 1180px) / 2)) 42px !important;
  border-bottom: 1px solid rgba(23, 27, 31, 0.1) !important;
  color: var(--ink) !important;
  background: #edf0ed !important;
}

.page-hero::before {
  display: none !important;
}

.page-hero::after {
  height: 2px !important;
  background: var(--orange) !important;
}

.page-hero-copy {
  align-self: center;
}

.page-hero h1 {
  max-width: 670px;
  margin-top: 7px !important;
  color: var(--ink) !important;
  font-size: 2.7rem !important;
  line-height: 1.05 !important;
}

.page-hero-copy > p {
  max-width: 620px;
  margin-top: 12px !important;
  color: #5c646b !important;
  font-size: 0.9rem !important;
  line-height: 1.52;
}

.page-hero-copy span {
  margin-top: 14px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: #7e450f !important;
  background: transparent !important;
  font-size: 0.72rem !important;
  font-weight: 800;
}

.page-hero > img {
  width: 100% !important;
  height: 220px !important;
  align-self: center;
  padding: 15px !important;
  object-fit: contain !important;
  border: 0 !important;
  border-radius: 7px !important;
  background: #ffffff !important;
  box-shadow: none !important;
}

.page-hero > img.page-hero-photo {
  padding: 0 !important;
  object-fit: cover !important;
}

.section-head {
  margin-bottom: 27px !important;
}

.section-head h2,
.detail-copy h2,
.career-panel h2,
.distributor-panel h2 {
  font-size: 1.92rem !important;
  line-height: 1.09 !important;
}

.product-card,
.application-card,
.featured-system,
.subproduct-card,
.value-card,
.insight-card,
.mini-card,
.legacy-detail-panel,
.contact-form,
.career-panel,
.distributor-panel,
.legal-card {
  border-radius: 7px !important;
  box-shadow: none !important;
}

.product-card:hover,
.application-card:hover,
.featured-system:hover,
.subproduct-card:hover,
.mini-card:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 14px 30px rgba(20, 24, 27, 0.08) !important;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76) !important;
  background: #151a1e !important;
}

.footer-command,
.footer-grid,
.footer-bottom {
  padding-left: max(22px, calc((100vw - 1180px) / 2)) !important;
  padding-right: max(22px, calc((100vw - 1180px) / 2)) !important;
}

.footer-command p {
  margin: 0 !important;
}

.footer-contact {
  gap: 7px !important;
}

.footer-contact a,
.footer-contact span {
  min-height: 0 !important;
  padding: 2px 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: rgba(255, 255, 255, 0.74) !important;
  background: transparent !important;
  font-size: 0.78rem !important;
}

.footer-contact a {
  color: #ffffff !important;
  font-weight: 750;
}

.social-links {
  align-items: center !important;
}

.social-link {
  width: 34px !important;
  height: 34px !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 5px !important;
  background: transparent !important;
  box-shadow: none !important;
}

.social-link:hover {
  border-color: rgba(236, 139, 34, 0.72) !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

.social-link img {
  width: 15px !important;
  height: 15px !important;
  margin: 0 !important;
  object-fit: contain !important;
  filter: brightness(0) invert(1) !important;
}

.advisor-launch {
  right: 16px !important;
  bottom: 16px !important;
  min-height: 44px !important;
  padding: 5px 11px 5px 6px !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 7px !important;
  color: #ffffff !important;
  background: #192126 !important;
  box-shadow: 0 14px 34px rgba(20, 24, 27, 0.22) !important;
}

.advisor-launch-mark,
.advisor-mark {
  border-radius: 5px !important;
}

.advisor-panel {
  border-radius: 7px !important;
}

.advisor-head {
  background: #192126 !important;
}

.advisor-check {
  color: #171b1f !important;
  background: var(--orange) !important;
}

@media (max-width: 1080px) {
  .hero h1 {
    font-size: 2.9rem !important;
  }

  .home-section-intro {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
    gap: 40px;
  }

  .home-application {
    gap: 44px !important;
  }

  .home-application-row {
    min-height: 142px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-h: 58px;
  }

  .site-header,
  .site-header.is-scrolled,
  .menu-open .site-header,
  .menu-open .site-header.is-scrolled {
    height: var(--header-h) !important;
    padding: 0 14px !important;
  }

  .brand img,
  .site-header.is-scrolled .brand img {
    width: 124px !important;
    max-height: 42px !important;
  }

  .menu-button {
    width: 38px !important;
    height: 38px !important;
    margin: 0 0 0 auto !important;
    border: 1px solid rgba(23, 27, 31, 0.15) !important;
    border-radius: 6px !important;
    color: var(--ink) !important;
    background: #ffffff !important;
    box-shadow: none !important;
  }

  .menu-button span:not(.sr-only) {
    left: 10px !important;
    right: 10px !important;
    height: 2px !important;
    background: #242a2f !important;
  }

  .menu-button span:nth-child(1) {
    top: 12px !important;
  }

  .menu-button span:nth-child(2) {
    top: 18px !important;
  }

  .menu-button span:nth-child(3) {
    top: 24px !important;
  }

  .menu-open .menu-button span:nth-child(1),
  .menu-open .menu-button span:nth-child(3) {
    top: 18px !important;
  }

  .site-nav {
    inset: var(--header-h) 8px auto !important;
    max-height: calc(100dvh - var(--header-h) - 8px) !important;
    padding: 8px !important;
    border: 1px solid rgba(23, 27, 31, 0.12) !important;
    border-top: 0 !important;
    border-radius: 0 0 7px 7px !important;
    background: #ffffff !important;
    box-shadow: 0 22px 54px rgba(20, 24, 27, 0.18) !important;
  }

  .site-nav > a,
  .site-nav .nav-trigger {
    min-height: 41px !important;
    border-radius: 0 !important;
    font-size: 0.8rem !important;
  }

  .site-nav .nav-cta {
    border-radius: 6px !important;
  }

  .nav-menu {
    right: auto !important;
    width: 100% !important;
  }

  .hero {
    min-height: 560px !important;
    padding: calc(var(--header-h) + 60px) 24px 43px !important;
    background-position: 51% center !important;
  }

  .hero h1 {
    font-size: 2.65rem !important;
  }

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

  .home-application {
    grid-template-columns: 1fr !important;
  }

  .home-application-copy {
    position: static;
  }

  .home-application-copy > p:not(.eyebrow) {
    max-width: 620px;
  }

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

  .home-process .process-step:nth-child(3) {
    border-right: 0 !important;
  }

  .page-hero {
    grid-template-columns: minmax(0, 1fr) 280px !important;
    gap: 28px !important;
    padding-inline: 22px !important;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 494px !important;
    padding: calc(var(--header-h) + 39px) 12px 30px !important;
    background-position: 48% center !important;
  }

  .hero::before {
    background: rgba(10, 14, 17, 0.72) !important;
  }

  .hero-copy {
    width: 100% !important;
  }

  .hero-copy .eyebrow {
    font-size: 0.64rem !important;
  }

  .hero h1 {
    max-width: 360px !important;
    margin-top: 9px !important;
    font-size: 2.04rem !important;
    line-height: 1.05 !important;
  }

  .hero-copy > p:not(.eyebrow) {
    max-width: 355px !important;
    margin-top: 13px !important;
    font-size: 0.82rem !important;
    line-height: 1.48 !important;
  }

  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 7px !important;
    margin-top: 18px !important;
  }

  .hero-actions .button {
    min-height: 40px !important;
    padding-inline: 7px !important;
    font-size: 0.74rem !important;
  }

  .hero-actions .button.compact {
    grid-column: 1 / -1;
    min-height: 27px !important;
    justify-self: start;
  }

  .hero-proof {
    display: none !important;
  }

  .section {
    padding: 46px 12px !important;
  }

  .home-section-intro {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-bottom: 20px;
  }

  .home-section-intro h2,
  .home-application-copy h2 {
    max-width: 350px;
    font-size: 1.58rem !important;
    line-height: 1.1 !important;
  }

  .home-section-intro > p,
  .home-application-copy > p:not(.eyebrow) {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .home-system-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .home-system-card {
    min-height: 108px;
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    grid-template-rows: 1fr;
  }

  .home-system-card figure {
    width: 104px;
    height: 108px;
    padding: 8px;
  }

  .home-system-card > div {
    min-width: 0;
    justify-content: center;
    padding: 11px 12px;
  }

  .home-system-card h3 {
    font-size: 0.86rem;
  }

  .home-system-card p {
    margin-top: 4px;
    font-size: 0.69rem;
    line-height: 1.36;
  }

  .home-system-link {
    margin-top: 7px;
    padding-top: 0;
    font-size: 0.67rem;
  }

  .home-catalog-action {
    margin-top: 12px;
  }

  .home-catalog-action .button {
    width: 100%;
    justify-content: center;
  }

  .client-band {
    padding: 22px 0 18px !important;
  }

  .client-band-head {
    width: calc(100% - 24px) !important;
    gap: 5px !important;
    margin-bottom: 11px !important;
  }

  .client-band-head h2 {
    font-size: 1.15rem !important;
  }

  .client-band-head > p {
    display: none;
  }

  .client-logo {
    width: 116px !important;
    height: 48px !important;
    padding: 7px 15px !important;
  }

  .home-application {
    gap: 24px !important;
  }

  .home-application-copy .text-link {
    margin-top: 15px;
  }

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

  .home-application-row,
  .home-application-row:nth-child(odd),
  .home-application-row:nth-child(even) {
    min-height: 78px;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 3px 11px;
    padding: 10px 0 !important;
    border-right: 0 !important;
  }

  .home-application-row img {
    width: 50px;
    height: 50px;
  }

  .home-application-row h3 {
    font-size: 0.8rem;
  }

  .home-application-row p {
    display: none;
  }

  .home-application-row strong {
    font-size: 0.66rem;
  }

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

  .home-process .process-step,
  .home-process .process-step:first-child {
    min-height: 0 !important;
    display: grid !important;
    grid-template-columns: 100px minmax(0, 1fr) !important;
    gap: 12px !important;
    padding: 11px 0 !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(23, 27, 31, 0.1) !important;
  }

  .home-process .process-step:last-child {
    border-bottom: 0 !important;
  }

  .home-process .process-step h3,
  .home-process .process-step p {
    margin: 0 !important;
  }

  .cta-band {
    padding: 36px 12px !important;
  }

  .cta-copy h2 {
    font-size: 1.45rem !important;
  }

  .page-hero {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: calc(var(--header-h) + 24px) 12px 18px !important;
  }

  .page-hero h1 {
    font-size: 1.72rem !important;
  }

  .page-hero-copy > p {
    font-size: 0.78rem !important;
  }

  .page-hero > img {
    height: 104px !important;
    padding: 7px !important;
  }

  .page-hero > img.page-hero-photo {
    padding: 0 !important;
  }

  .section-head h2,
  .detail-copy h2,
  .career-panel h2,
  .distributor-panel h2 {
    font-size: 1.48rem !important;
  }

  .footer-command,
  .footer-grid,
  .footer-bottom {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .advisor-launch {
    right: 10px !important;
    bottom: 10px !important;
    width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 5px !important;
  }

  .advisor-launch-mark {
    width: 30px !important;
    height: 30px !important;
  }
}

@media (max-width: 340px) {
  .hero {
    min-height: 500px !important;
  }

  .hero h1 {
    font-size: 1.88rem !important;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 0.77rem !important;
  }

  .home-system-card {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .home-system-card figure {
    width: 92px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-system-card img,
  .client-logo img {
    transition: none !important;
  }
}

/* Contextual motion and form feedback. */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #101519;
}

.hero-media-poster,
.hero-media-video {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center 50%;
}

.hero-media-poster {
  filter: saturate(0.82) contrast(1.03);
}

.hero-media-video {
  opacity: 0;
  pointer-events: none;
  filter: saturate(0.78) contrast(1.04);
  transform: scale(1.018);
  transition: opacity 520ms ease, transform 1400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-media-video.is-ready {
  opacity: 1;
  transform: scale(1);
}

.hero::before {
  z-index: 1 !important;
  background:
    linear-gradient(90deg, rgba(8, 12, 14, 0.91) 0%, rgba(8, 12, 14, 0.74) 48%, rgba(8, 12, 14, 0.35) 100%),
    linear-gradient(180deg, rgba(8, 12, 14, 0.08) 44%, rgba(8, 12, 14, 0.66) 100%) !important;
}

.hero::after {
  z-index: 4 !important;
}

.hero-copy,
.hero-proof {
  z-index: 2 !important;
}

.hero-proof {
  padding: 11px 13px !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 6px !important;
  background: rgba(8, 12, 14, 0.48) !important;
  backdrop-filter: blur(8px);
}

.hero-proof span,
.hero-proof span:first-child {
  color: rgba(255, 255, 255, 0.82) !important;
  font-weight: 600 !important;
}

.home-system-card figure {
  position: relative;
  isolation: isolate;
}

.home-system-poster,
.home-system-video {
  position: absolute;
  inset: 14px;
  width: calc(100% - 28px) !important;
  height: calc(100% - 28px) !important;
}

.home-system-poster {
  z-index: 1;
  opacity: 1;
  transition: opacity 300ms ease, transform 300ms ease !important;
}

.home-system-video {
  z-index: 2;
  border-radius: 4px;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  filter: saturate(0.82) contrast(1.02);
  transform: scale(1.02);
  transition: opacity 300ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.home-system-card.is-media-active .home-system-video.is-ready {
  opacity: 1;
  transform: scale(1);
}

.home-system-card.is-media-active .home-system-video.is-ready + * {
  opacity: 1;
}

.home-system-card.is-media-active:has(.home-system-video.is-ready) .home-system-poster {
  opacity: 0;
}

.contact-form {
  --form-progress: 0%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23, 27, 31, 0.13) !important;
  background: #ffffff !important;
  box-shadow: 0 20px 52px rgba(20, 24, 27, 0.1) !important;
}

.guided-form-progress {
  height: 3px;
  position: absolute;
  inset: 0 0 auto;
  overflow: hidden;
  background: #e7eae6;
}

.guided-form-progress span {
  width: var(--form-progress);
  height: 100%;
  display: block;
  background: var(--orange);
  transition: width 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.guided-form-head {
  padding-top: 3px;
}

.starter-chip {
  position: relative;
  overflow: hidden;
  border-radius: 6px !important;
  background: #f8faf8 !important;
  box-shadow: none !important;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.starter-chip:hover,
.starter-chip:focus-visible {
  border-color: rgba(23, 27, 31, 0.28) !important;
  background: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(20, 24, 27, 0.07) !important;
}

.starter-chip.is-selected {
  border-color: rgba(214, 117, 20, 0.58) !important;
  background: #fff8ef !important;
  box-shadow: inset 3px 0 0 var(--orange) !important;
  transform: none;
}

.contact-form label {
  color: #4d555b;
  transition: color 150ms ease;
}

.contact-form label:has(input:focus),
.contact-form label:has(select:focus),
.contact-form label:has(textarea:focus) {
  color: #7e450f;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.advisor-query textarea {
  border-color: rgba(23, 27, 31, 0.16) !important;
  background: #fbfcfb !important;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover,
.advisor-query textarea:hover {
  border-color: rgba(23, 27, 31, 0.3) !important;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.advisor-query textarea:focus {
  border-color: rgba(177, 91, 14, 0.62) !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(223, 127, 18, 0.12) !important;
}

.contact-form.has-errors {
  border-color: rgba(166, 55, 48, 0.34) !important;
}

.contact-form.is-complete {
  border-color: rgba(53, 104, 82, 0.32) !important;
}

.contact-form .button.primary {
  transition: background 160ms ease, transform 140ms ease, opacity 160ms ease !important;
}

.contact-form .button.primary:active,
.contact-form.is-launching .button.primary {
  transform: translateY(1px);
}

.contact-form.is-launching .button.primary {
  opacity: 0.76;
}

.form-note:not(:empty) {
  min-height: 34px;
  border-radius: 6px;
  animation: form-note-in 220ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.form-note.is-error {
  border-color: rgba(166, 55, 48, 0.24);
  color: #7d302b;
  background: #fff4f2;
}

.form-note.is-success {
  border-color: rgba(53, 104, 82, 0.24);
  color: #285442;
  background: #f0f7f3;
}

.product-advisor.is-open .advisor-panel {
  animation: advisor-panel-in 220ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.advisor-result.is-updated {
  animation: advisor-result-in 210ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes form-note-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes advisor-panel-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes advisor-result-in {
  from {
    opacity: 0.55;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .hero-media-poster,
  .hero-media-video {
    object-position: 58% center;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(8, 12, 14, 0.9) 0%, rgba(8, 12, 14, 0.74) 78%, rgba(8, 12, 14, 0.58) 100%),
      linear-gradient(180deg, rgba(8, 12, 14, 0.06) 42%, rgba(8, 12, 14, 0.68) 100%) !important;
  }

  .home-system-poster,
  .home-system-video {
    inset: 8px;
    width: calc(100% - 16px) !important;
    height: calc(100% - 16px) !important;
  }

  .contact-form {
    box-shadow: 0 14px 34px rgba(20, 24, 27, 0.09) !important;
  }

  .guided-form-progress {
    height: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media-video,
  .home-system-video {
    display: none !important;
  }

  .hero-media-poster,
  .home-system-poster,
  .guided-form-progress span,
  .starter-chip,
  .contact-form .button.primary,
  .form-note:not(:empty),
  .product-advisor.is-open .advisor-panel,
  .advisor-result.is-updated {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

/* Final navigation and enquiry polish. */
.site-nav > a {
  position: relative;
}

.enquiry-path {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0 !important;
  margin-top: 22px !important;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.enquiry-path span {
  min-height: 44px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 12px !important;
  border: 0 !important;
  border-right: 1px solid var(--line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 0.82rem !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
}

.enquiry-path span:last-child {
  border-right: 0 !important;
}

.contact-methods {
  gap: 0 !important;
  margin-top: 18px !important;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-methods a,
.contact-methods span {
  min-height: 46px !important;
  justify-content: flex-start !important;
  padding: 10px 0 !important;
  border: 0 !important;
  border-bottom: 1px solid var(--line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.contact-methods > :last-child {
  border-bottom: 0 !important;
}

.enquiry-prep {
  margin-top: 18px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.enquiry-prep h3 {
  margin: 0 0 4px !important;
  font-size: 0.9rem !important;
}

.enquiry-prep p {
  margin: 0 !important;
}

@media (min-width: 861px) {
  .site-nav > a[aria-current="page"]:not(.nav-cta) {
    color: var(--ink) !important;
    background: transparent !important;
  }

  .site-nav > a[aria-current="page"]:not(.nav-cta)::after {
    content: "";
    position: absolute;
    right: 10px;
    bottom: 1px;
    left: 10px;
    height: 2px;
    background: var(--orange);
  }
}

@media (min-width: 641px) {
  .advisor-launch {
    width: 46px !important;
    height: 46px !important;
    min-height: 46px !important;
    justify-content: center !important;
    gap: 0 !important;
    padding: 6px !important;
    border-radius: 7px !important;
  }

  .advisor-launch > span:last-child {
    display: none !important;
  }

  .advisor-launch-mark {
    background: #171e22 !important;
  }

  .advisor-launch-mark {
    width: 32px !important;
    height: 32px !important;
  }
}

@media (max-width: 860px) {
  .enquiry-path span {
    min-height: 42px !important;
    padding: 0 5px !important;
    font-size: 0.73rem !important;
  }

  .contact-methods {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 7px !important;
    border: 0 !important;
  }

  .contact-methods a {
    min-height: 40px !important;
    justify-content: center !important;
    padding: 8px !important;
    border: 1px solid var(--line) !important;
    border-radius: 5px !important;
    font-size: 0.76rem !important;
  }

  .contact-methods span,
  .enquiry-prep {
    display: none !important;
  }

  .site-nav > a[aria-current="page"]:not(.nav-cta) {
    background: #f0f2ef !important;
    box-shadow: inset 3px 0 0 var(--orange) !important;
  }
}

@media (max-width: 430px) {
  .contact-methods {
    grid-template-columns: 1fr !important;
  }
}

/* Distributor, quote, benefits, and contact refinement. */
.hero-proof {
  display: none !important;
}

.benefits-band {
  background: #ffffff !important;
}

.benefit-grid,
.industry-grid,
.quote-catalog-grid {
  width: min(var(--max), 100%);
  display: grid;
  margin: 0 auto;
}

.benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.benefit-card {
  min-width: 0;
  display: grid;
  grid-template-rows: 154px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(23, 27, 31, 0.12);
  border-radius: 7px;
  background: #fff;
}

.benefit-card img {
  width: 100%;
  height: 154px;
  object-fit: cover;
  background: #f4f6f3;
}

.benefit-card > div {
  padding: 17px;
}

.benefit-card h3,
.industry-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.22;
}

.benefit-card p,
.industry-card p {
  margin: 8px 0 0;
  color: #626a71;
  font-size: 0.78rem;
  line-height: 1.48;
}

.benefit-card .tag-row {
  margin-top: 14px;
}

.industries-band {
  color: #fff;
  background: #171d20 !important;
}

.industries-band .home-section-intro h2,
.industries-band .home-section-intro p,
.industries-band .eyebrow {
  color: #fff !important;
}

.industries-band .home-section-intro > p {
  color: rgba(255, 255, 255, 0.68) !important;
}

.industry-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.14);
}

.industry-card {
  min-width: 0;
  display: grid;
  grid-template-rows: 128px minmax(0, 1fr);
  color: #fff;
  background: #1d2529;
}

.industry-card img {
  width: 100%;
  height: 128px;
  object-fit: cover;
  filter: saturate(0.82) contrast(0.96);
}

.industry-card > div {
  padding: 16px;
}

.industry-card p {
  color: rgba(255, 255, 255, 0.66);
}

.industry-card span {
  display: inline-flex;
  margin-top: 13px;
  color: #f1a14b;
  font-size: 0.7rem;
  font-weight: 850;
}

.quote-catalog-band {
  background: #f3f5f2 !important;
}

.quote-catalog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.quote-catalog-card {
  min-width: 0;
  min-height: 92px;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(23, 27, 31, 0.12);
  border-radius: 7px;
  color: var(--ink);
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.quote-catalog-card:hover,
.quote-catalog-card:focus-visible {
  border-color: rgba(154, 81, 14, 0.36);
  transform: translateY(-1px);
}

.quote-catalog-card.is-selected {
  border-color: rgba(236, 139, 34, 0.78);
  background: #fff8ef;
  box-shadow: inset 3px 0 0 var(--orange);
}

.quote-catalog-card img {
  width: 76px;
  height: 72px;
  padding: 6px;
  object-fit: contain;
  border-radius: 6px;
  background: #f6f8f5;
}

.quote-catalog-card strong,
.quote-catalog-card em {
  display: block;
}

.quote-catalog-card strong {
  font-size: 0.88rem;
  line-height: 1.25;
}

.quote-catalog-card em {
  margin-top: 4px;
  color: #667078;
  font-size: 0.72rem;
  font-style: normal;
  line-height: 1.35;
}

.quote-catalog-actions {
  width: min(var(--max), 100%);
  display: flex;
  gap: 8px;
  margin: 16px auto 0;
}

.contact-grid {
  align-items: start !important;
}

.contact-methods {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 8px !important;
  margin-top: 22px !important;
  border: 0 !important;
}

.contact-methods a,
.contact-methods span {
  min-height: 46px !important;
  display: grid !important;
  grid-template-columns: 34px minmax(0, 1fr) !important;
  gap: 10px !important;
  align-items: center !important;
  padding: 8px 0 !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(23, 27, 31, 0.1) !important;
  border-radius: 0 !important;
  color: var(--ink) !important;
  background: transparent !important;
  font-size: 0.82rem !important;
  font-weight: 750;
}

.contact-methods > :last-child {
  border-bottom: 0 !important;
}

.contact-icon {
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 6px;
  background: #edf1ed;
}

.contact-methods > a > span,
.contact-methods > span > span {
  min-height: 0 !important;
  width: auto !important;
  display: block !important;
  padding: 0 !important;
  border: 0 !important;
  color: inherit !important;
  background: transparent !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: 1.35 !important;
  overflow-wrap: anywhere;
}

.enquiry-path,
.enquiry-prep {
  display: none !important;
}

.contact-form {
  display: grid;
  gap: 13px;
}

.contact-form label {
  gap: 6px;
}

.contact-form .button.primary[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.distributor-band {
  background: #fff !important;
}

.distributor-panel {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr) !important;
  align-items: stretch !important;
  padding: 0 !important;
  overflow: hidden;
  border: 1px solid rgba(23, 27, 31, 0.12) !important;
  background: #fff !important;
}

.distributor-panel > div:first-child {
  padding: 34px;
}

.distributor-steps {
  display: grid;
  gap: 0 !important;
  border-left: 1px solid rgba(23, 27, 31, 0.1);
  background: #f3f5f2;
}

.distributor-steps article {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 0 22px;
  border-bottom: 1px solid rgba(23, 27, 31, 0.1);
}

.distributor-steps article:last-child {
  border-bottom: 0;
}

.distributor-steps strong {
  font-size: 0.84rem;
}

.footer-command {
  display: grid !important;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr) !important;
  gap: 34px !important;
  align-items: start !important;
}

.footer-contact {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 6px !important;
}

.footer-contact a,
.footer-contact span {
  display: block !important;
  line-height: 1.4 !important;
}

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

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

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

  .distributor-panel,
  .footer-command {
    grid-template-columns: 1fr !important;
  }

  .distributor-steps {
    border-left: 0;
    border-top: 1px solid rgba(23, 27, 31, 0.1);
  }

  .contact-methods {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    border-top: 1px solid rgba(23, 27, 31, 0.1) !important;
    border-bottom: 1px solid rgba(23, 27, 31, 0.1) !important;
  }

  .contact-methods a,
  .contact-methods span {
    width: 100% !important;
    min-height: 44px !important;
    justify-content: stretch !important;
  }
}

@media (max-width: 640px) {
  .benefit-grid,
  .quote-catalog-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    grid-template-rows: none;
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .benefit-card img {
    width: 100px;
    height: 100%;
    min-height: 132px;
  }

  .benefit-card > div,
  .industry-card > div {
    padding: 13px;
  }

  .benefit-card h3,
  .industry-card h3 {
    font-size: 0.9rem;
  }

  .benefit-card p,
  .industry-card p {
    font-size: 0.71rem;
    line-height: 1.4;
  }

  .industry-card {
    grid-template-rows: none;
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .industry-card img {
    width: 96px;
    height: 100%;
    min-height: 126px;
  }

  .quote-catalog-card {
    min-height: 78px;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 10px;
    padding: 8px;
  }

  .quote-catalog-card img {
    width: 58px;
    height: 58px;
  }

  .quote-catalog-actions {
    display: grid;
  }

  .contact-methods a,
  .contact-methods span {
    min-height: 42px !important;
    grid-template-columns: 32px minmax(0, 1fr) !important;
    gap: 9px !important;
    font-size: 0.76rem !important;
  }

  .contact-methods > span:last-child {
    display: none !important;
  }

  .contact-icon {
    width: 32px;
    height: 32px;
  }

  .distributor-panel > div:first-child {
    padding: 22px;
  }

  .distributor-steps article {
    min-height: 56px;
    padding: 0 16px;
  }
}

/* Cohesive premium pass: one visual system for every route and viewport. */
:root {
  --ink: #15191d;
  --ink-soft: #4f5860;
  --paper: #f7f8f6;
  --paper-2: #eef1ed;
  --line: rgba(21, 25, 29, 0.13);
  --orange: #e9902f;
  --orange-dark: #955010;
  --max: 1160px;
  --header-h: 64px;
}

body {
  color: var(--ink);
  background: #ffffff;
  letter-spacing: 0;
}

.site-header,
.site-header.is-scrolled,
.menu-open .site-header,
.menu-open .site-header.is-scrolled {
  height: var(--header-h) !important;
  padding: 0 max(18px, calc((100vw - var(--max)) / 2)) !important;
  border-bottom: 1px solid rgba(21, 25, 29, 0.09) !important;
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: none !important;
  backdrop-filter: blur(18px) saturate(1.15);
}

.brand img,
.site-header.is-scrolled .brand img {
  width: 132px !important;
  max-height: 48px !important;
}

.site-nav > a,
.nav-trigger {
  min-height: 40px !important;
  padding: 0 11px !important;
  border-radius: 5px !important;
  font-size: 0.8rem !important;
  font-weight: 760 !important;
}

.site-nav .nav-cta {
  min-height: 40px !important;
  margin-left: 7px !important;
  padding-inline: 16px !important;
  border: 1px solid rgba(149, 80, 16, 0.24) !important;
  border-radius: 6px !important;
  color: #1b1e21 !important;
  background: var(--orange) !important;
}

.hero {
  min-height: 520px !important;
  padding: calc(var(--header-h) + 66px) max(22px, calc((100vw - var(--max)) / 2)) 64px !important;
  border-bottom: 2px solid var(--orange) !important;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(8, 11, 13, 0.92) 0%, rgba(8, 11, 13, 0.7) 47%, rgba(8, 11, 13, 0.16) 77%),
    linear-gradient(180deg, rgba(8, 11, 13, 0.1) 45%, rgba(8, 11, 13, 0.55) 100%) !important;
}

.hero-copy {
  width: min(670px, 100%) !important;
}

.hero h1 {
  max-width: 650px !important;
  margin: 8px 0 0 !important;
  font-size: clamp(2.65rem, 4.2vw, 3.55rem) !important;
  line-height: 1.01 !important;
  letter-spacing: 0 !important;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px !important;
  margin-top: 18px !important;
  font-size: 0.96rem !important;
  line-height: 1.58 !important;
}

.hero-actions {
  gap: 8px !important;
  margin-top: 24px !important;
}

.button {
  min-height: 44px !important;
  padding: 0 16px !important;
  border-radius: 6px !important;
  font-size: 0.78rem !important;
  font-weight: 820 !important;
  letter-spacing: 0 !important;
}

.button.primary {
  color: #171a1d !important;
  background: var(--orange) !important;
  box-shadow: 0 8px 22px rgba(149, 80, 16, 0.16) !important;
}

.button.primary:hover {
  background: #f0a04a !important;
  box-shadow: 0 10px 26px rgba(149, 80, 16, 0.22) !important;
}

.section {
  padding: 64px max(20px, calc((100vw - var(--max)) / 2)) !important;
}

.section-head,
.home-section-intro {
  width: min(var(--max), 100%) !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

.section-head {
  max-width: 760px !important;
  margin-bottom: 26px !important;
}

.home-section-intro {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr) !important;
  gap: 48px !important;
  margin-bottom: 26px !important;
}

.section-head h2,
.home-section-intro h2,
.detail-copy h2,
.career-panel h2,
.distributor-panel h2 {
  margin-top: 6px !important;
  font-size: clamp(1.72rem, 2.6vw, 2.15rem) !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
}

.section-head p:not(.eyebrow),
.home-section-intro > p {
  color: #626b72 !important;
  font-size: 0.88rem !important;
  line-height: 1.55 !important;
}

.eyebrow {
  font-size: 0.67rem !important;
  font-weight: 850 !important;
  letter-spacing: 0 !important;
}

.home-systems {
  background: #f3f5f2 !important;
}

.home-system-grid {
  gap: 1px !important;
  border-radius: 7px !important;
}

.home-system-card {
  min-height: 274px !important;
  grid-template-rows: 136px minmax(0, 1fr) !important;
}

.home-system-card figure {
  height: 136px !important;
  padding: 12px !important;
}

.home-system-card > div {
  padding: 16px 17px !important;
}

.home-system-card h3 {
  font-size: 0.94rem !important;
}

.home-system-card p {
  font-size: 0.73rem !important;
}

.benefit-grid {
  gap: 12px !important;
}

.benefit-card {
  grid-template-rows: 142px minmax(0, 1fr) !important;
  border-radius: 7px !important;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.benefit-card:hover {
  transform: translateY(-2px);
  border-color: rgba(149, 80, 16, 0.28);
  box-shadow: 0 14px 30px rgba(21, 25, 29, 0.07);
}

.benefit-card img {
  height: 142px !important;
}

.benefit-card > div {
  padding: 16px !important;
}

.client-band {
  padding: 28px 0 25px !important;
}

.client-band-head {
  width: min(var(--max), calc(100% - 40px)) !important;
  margin-bottom: 15px !important;
}

.client-band-head h2 {
  margin-top: 4px !important;
  font-size: 1.22rem !important;
}

.client-logo {
  width: 144px !important;
  height: 56px !important;
}

.home-application {
  grid-template-columns: minmax(230px, 0.65fr) minmax(0, 1.45fr) !important;
  gap: 60px !important;
}

.home-application-copy h2 {
  font-size: 2rem !important;
}

.home-application-row {
  min-height: 116px !important;
}

.industries-band {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #1b2226 !important;
}

.industry-grid {
  gap: 8px !important;
  border: 0 !important;
  background: transparent !important;
}

.industry-card {
  grid-template-rows: 120px minmax(0, 1fr) !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: #222b30 !important;
  overflow: hidden;
}

.industry-card img {
  height: 120px !important;
}

.home-process .process-step {
  min-height: 112px !important;
}

.page-hero {
  margin-top: 0 !important;
}

.page-hero-has-photo {
  position: relative !important;
  min-height: 390px !important;
  display: flex !important;
  align-items: center !important;
  padding: calc(var(--header-h) + 54px) max(22px, calc((100vw - var(--max)) / 2)) 54px !important;
  overflow: hidden !important;
  color: #ffffff !important;
  background: #151a1e !important;
}

.page-hero-has-photo::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  display: block !important;
  background: linear-gradient(90deg, rgba(9, 12, 14, 0.9) 0%, rgba(9, 12, 14, 0.68) 48%, rgba(9, 12, 14, 0.2) 78%) !important;
}

.page-hero-has-photo > img.page-hero-photo {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
  background: transparent !important;
}

body[data-page="distributor"] .page-hero-has-photo > img {
  object-position: center 25% !important;
}

.page-hero-has-photo .page-hero-copy {
  position: relative !important;
  z-index: 2 !important;
  width: min(620px, 100%) !important;
  max-width: 620px !important;
}

.page-hero-has-photo .eyebrow,
.page-hero-has-photo h1,
.page-hero-has-photo .page-hero-copy > p,
.page-hero-has-photo .page-hero-copy > span {
  color: #ffffff !important;
}

.page-hero-has-photo h1 {
  max-width: 610px !important;
  font-size: clamp(2.35rem, 4.2vw, 3.35rem) !important;
  line-height: 1.02 !important;
}

.page-hero-has-photo .page-hero-copy > p {
  max-width: 590px !important;
  font-size: 0.95rem !important;
}

.page-hero-has-photo .page-hero-copy > span {
  opacity: 0.78;
}

.page-hero-has-product {
  min-height: 330px !important;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px) !important;
  gap: 52px !important;
  padding: calc(var(--header-h) + 42px) max(22px, calc((100vw - var(--max)) / 2)) 42px !important;
  background: #eef1ed !important;
}

.page-hero-has-product > img {
  height: 210px !important;
  padding: 16px !important;
  object-fit: contain !important;
  border-radius: 7px !important;
  background: #ffffff !important;
}

.page-hero-has-product h1 {
  font-size: clamp(2.2rem, 3.8vw, 2.9rem) !important;
}

.cta-band {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 36px !important;
  align-items: center !important;
  padding: 42px max(20px, calc((100vw - var(--max)) / 2)) !important;
  background: #eef1ed !important;
}

.cta-copy {
  max-width: 660px;
}

.cta-copy h2 {
  margin: 4px 0 0 !important;
  font-size: 1.65rem !important;
}

.cta-copy p:not(.eyebrow) {
  margin: 8px 0 0 !important;
  font-size: 0.86rem !important;
}

.cta-actions {
  display: flex !important;
  gap: 8px !important;
  justify-content: flex-end !important;
}

.quote-catalog-band {
  background: #f4f6f3 !important;
}

.quote-catalog-grid {
  gap: 10px !important;
}

.quote-catalog-card {
  min-height: 86px !important;
  grid-template-columns: 64px minmax(0, 1fr) auto !important;
  gap: 12px !important;
  padding: 10px 12px 10px 10px !important;
  border-radius: 7px !important;
  box-shadow: 0 1px 0 rgba(21, 25, 29, 0.02);
}

.quote-catalog-card img {
  width: 64px !important;
  height: 64px !important;
  padding: 5px !important;
}

.quote-catalog-copy {
  min-width: 0;
}

.quote-catalog-card strong {
  font-size: 0.85rem !important;
}

.quote-catalog-card em {
  max-width: 220px;
  font-size: 0.69rem !important;
}

.quote-state {
  min-width: 58px;
  display: inline-flex;
  justify-content: center;
  padding: 5px 7px;
  border: 1px solid rgba(21, 25, 29, 0.13);
  border-radius: 5px;
  color: #687178;
  font-size: 0.65rem;
  font-weight: 800;
}

.quote-state strong {
  display: none !important;
  font-size: inherit !important;
}

.quote-catalog-card.is-selected .quote-state {
  border-color: rgba(149, 80, 16, 0.28);
  color: #7d430d;
  background: #fff2e1;
}

.quote-catalog-card.is-selected .quote-state > span {
  display: none;
}

.quote-catalog-card.is-selected .quote-state strong {
  display: inline !important;
}

.quote-catalog-actions {
  margin-top: 18px !important;
}

.contact-band {
  background: #ffffff !important;
}

.contact-grid {
  width: min(var(--max), 100%) !important;
  grid-template-columns: minmax(260px, 0.72fr) minmax(440px, 1.18fr) !important;
  gap: 64px !important;
  margin: 0 auto;
}

.contact-copy {
  padding-top: 8px;
}

.contact-copy h2 {
  margin: 6px 0 0;
  font-size: 2rem;
  line-height: 1.08;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 420px;
  margin: 12px 0 0;
  color: #626b72;
  font-size: 0.88rem;
}

.contact-methods {
  margin-top: 24px !important;
}

.contact-methods a,
.contact-methods > span {
  min-height: 48px !important;
  grid-template-columns: 36px minmax(0, 1fr) !important;
  padding: 6px 0 !important;
}

.contact-icon {
  width: 34px !important;
  height: 34px !important;
  padding: 8px !important;
  border-radius: 6px !important;
  background: #eef1ed !important;
}

.contact-form {
  gap: 14px !important;
  padding: 26px !important;
  border: 1px solid rgba(21, 25, 29, 0.13) !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  box-shadow: 0 18px 45px rgba(21, 25, 29, 0.08) !important;
}

.guided-form-head {
  margin-bottom: 2px;
}

.guided-form-head h3 {
  margin: 4px 0 0 !important;
  font-size: 1.25rem !important;
  line-height: 1.18 !important;
}

.guided-form-head > p:not(.eyebrow) {
  margin: 7px 0 0 !important;
  color: #667078 !important;
  font-size: 0.78rem !important;
}

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

.contact-form label {
  min-width: 0;
  gap: 6px !important;
  color: #343b41 !important;
  font-size: 0.74rem !important;
  font-weight: 780 !important;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(21, 25, 29, 0.16) !important;
  border-radius: 6px !important;
  color: var(--ink) !important;
  background: #fbfcfb !important;
  box-shadow: none !important;
  font-size: 0.82rem !important;
}

.contact-form input,
.contact-form select {
  min-height: 44px !important;
  padding: 0 12px !important;
}

.contact-form textarea {
  min-height: 102px !important;
  padding: 11px 12px !important;
  line-height: 1.45 !important;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(149, 80, 16, 0.58) !important;
  outline: 3px solid rgba(233, 144, 47, 0.14) !important;
  outline-offset: 0 !important;
  background: #ffffff !important;
}

.optional-label {
  margin-left: 4px;
  color: #7b848b;
  font-size: 0.66rem;
  font-weight: 650;
}

.field-label {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
}

.quote-selection-summary {
  margin: 0 !important;
  padding: 10px 12px;
  border: 1px solid rgba(21, 25, 29, 0.1);
  border-radius: 6px;
  color: #687178;
  background: #f5f7f4;
  font-size: 0.72rem;
  line-height: 1.4;
}

.quote-selection-summary.has-selection {
  border-color: rgba(149, 80, 16, 0.2);
  color: #77400d;
  background: #fff6e9;
}

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

.form-note {
  min-height: 0 !important;
  margin: 0 !important;
  font-size: 0.73rem !important;
}

.form-note:empty {
  display: none;
}

.distributor-band {
  background: #f4f6f3 !important;
}

.distributor-panel {
  width: min(var(--max), 100%) !important;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.05fr) !important;
  margin: 0 auto !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: #1a2125 !important;
  box-shadow: 0 22px 56px rgba(21, 25, 29, 0.12) !important;
}

.distributor-panel > .distributor-copy {
  padding: 42px !important;
  color: #ffffff;
}

.distributor-copy .eyebrow,
.distributor-copy h2 {
  color: #ffffff !important;
}

.distributor-copy > p:not(.eyebrow) {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  line-height: 1.58;
}

.partner-proof-list {
  display: grid;
  gap: 0;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.partner-proof-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 720;
}

.distributor-copy .route-actions {
  margin-top: 24px !important;
}

.distributor-copy .button.ghost.dark {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  background: transparent !important;
}

.distributor-form {
  align-self: stretch;
  padding: 32px !important;
  border: 0 !important;
  border-radius: 0 8px 8px 0 !important;
  box-shadow: none !important;
}

.partner-band {
  background: #ffffff !important;
}

.partner-value-grid {
  width: min(var(--max), 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  margin: 0 auto;
}

.partner-value-grid .value-card {
  min-height: 150px !important;
}

.site-footer {
  background: #151b1f !important;
}

.footer-command,
.footer-grid,
.footer-bottom {
  padding-right: max(20px, calc((100vw - var(--max)) / 2)) !important;
  padding-left: max(20px, calc((100vw - var(--max)) / 2)) !important;
}

.footer-command {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr) !important;
  gap: 52px !important;
}

.footer-command p {
  max-width: 620px;
  font-size: 0.9rem !important;
  line-height: 1.55 !important;
}

.footer-contact {
  gap: 5px !important;
}

.footer-contact a,
.footer-contact span {
  font-size: 0.76rem !important;
  line-height: 1.45 !important;
}

.social-links {
  display: flex !important;
  gap: 7px !important;
  margin-top: 13px !important;
}

.social-link {
  width: 36px !important;
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  border-radius: 6px !important;
}

.social-link img {
  width: 16px !important;
  height: 16px !important;
  margin: 0 !important;
  object-fit: contain !important;
}

.product-advisor {
  z-index: 210 !important;
  right: 18px !important;
  bottom: 18px !important;
}

.advisor-launch {
  right: 0 !important;
  bottom: 0 !important;
  width: auto !important;
  height: 46px !important;
  min-height: 46px !important;
  display: inline-flex !important;
  gap: 8px !important;
  padding: 5px 13px 5px 6px !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 7px !important;
  color: #ffffff !important;
  background: #171e22 !important;
  box-shadow: 0 14px 34px rgba(21, 25, 29, 0.24) !important;
}

.advisor-launch > span:last-child {
  display: inline !important;
  font-size: 0.74rem !important;
  font-weight: 780 !important;
}

.advisor-launch-mark,
.advisor-mark {
  width: 34px !important;
  height: 34px !important;
  flex: 0 0 34px;
  padding: 5px !important;
  border-radius: 6px !important;
  background: #ffffff !important;
}

.advisor-launch-mark img,
.advisor-mark img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

.advisor-panel {
  right: 0 !important;
  bottom: 58px !important;
  width: min(390px, calc(100vw - 28px)) !important;
  max-height: min(690px, calc(100dvh - 96px)) !important;
  overflow: hidden !important;
  border: 1px solid rgba(21, 25, 29, 0.14) !important;
  border-radius: 9px !important;
  background: #ffffff !important;
  box-shadow: 0 24px 70px rgba(21, 25, 29, 0.24) !important;
}

.advisor-head {
  min-height: 66px !important;
  padding: 11px 12px !important;
  background: #171e22 !important;
}

.advisor-head strong {
  font-size: 0.9rem !important;
}

.advisor-head p {
  margin-top: 1px !important;
  font-size: 0.68rem !important;
}

.advisor-close {
  width: 36px !important;
  height: 36px !important;
  border-radius: 6px !important;
  font-size: 1.3rem !important;
}

.advisor-body {
  max-height: calc(100dvh - 178px);
  padding: 14px !important;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.advisor-intro {
  margin: 0 0 10px !important;
  color: #4e575e !important;
  font-size: 0.76rem !important;
  font-weight: 760 !important;
}

.advisor-quick-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 7px !important;
}

.advisor-quick-grid button {
  min-height: 62px !important;
  display: grid !important;
  grid-template-columns: 40px minmax(0, 1fr) !important;
  gap: 9px !important;
  align-items: center !important;
  padding: 7px !important;
  border: 1px solid rgba(21, 25, 29, 0.12) !important;
  border-radius: 6px !important;
  background: #ffffff !important;
}

.advisor-quick-grid button:hover,
.advisor-quick-grid button:focus-visible,
.advisor-quick-grid button.is-selected {
  border-color: rgba(149, 80, 16, 0.36) !important;
  color: var(--ink) !important;
  background: #fff8ef !important;
}

.advisor-quick-grid button > img {
  width: 40px !important;
  height: 44px !important;
  padding: 4px;
  object-fit: contain;
  border-radius: 5px;
  background: #f2f4f1;
}

.advisor-quick-grid button > span {
  min-width: 0;
  display: block !important;
}

.advisor-quick-grid strong,
.advisor-quick-grid small {
  display: block;
}

.advisor-quick-grid strong {
  font-size: 0.72rem !important;
  line-height: 1.25 !important;
}

.advisor-quick-grid small {
  margin-top: 2px;
  color: #747d84;
  font-size: 0.6rem;
  line-height: 1.25;
}

.advisor-other {
  margin-top: 10px;
  border-top: 1px solid rgba(21, 25, 29, 0.1);
}

.advisor-other summary {
  padding: 10px 0 4px;
  color: #505960;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 760;
}

.advisor-query {
  margin-top: 7px !important;
}

.advisor-query textarea {
  min-height: 68px !important;
  border-radius: 6px !important;
  font-size: 0.76rem !important;
}

.advisor-check {
  min-height: 38px !important;
  margin-top: 7px !important;
  border-radius: 6px !important;
  font-size: 0.72rem !important;
}

.advisor-result {
  margin-top: 10px !important;
}

.advisor-empty {
  margin: 0;
  padding: 11px 12px;
  border: 1px solid rgba(21, 25, 29, 0.1);
  border-radius: 6px;
  color: #6b747b;
  background: #f5f7f4;
  font-size: 0.7rem;
  line-height: 1.4;
}

.advisor-result-card {
  display: grid !important;
  grid-template-columns: 68px minmax(0, 1fr) !important;
  gap: 11px !important;
  align-items: center !important;
  padding: 9px !important;
  border-radius: 6px !important;
}

.advisor-result-card > img {
  width: 68px;
  height: 68px;
  padding: 6px;
  object-fit: contain;
  border-radius: 5px;
  background: #ffffff;
}

.advisor-result-card h3 {
  margin-top: 2px !important;
  font-size: 0.87rem !important;
}

.advisor-result-card p {
  margin-top: 4px !important;
  font-size: 0.68rem !important;
}

.advisor-actions {
  gap: 7px !important;
}

.advisor-actions .button {
  min-height: 40px !important;
}

@media (max-width: 980px) {
  .home-section-intro {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr) !important;
    gap: 32px !important;
  }

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

  .contact-grid {
    grid-template-columns: minmax(220px, 0.68fr) minmax(0, 1.15fr) !important;
    gap: 36px !important;
  }

  .distributor-panel {
    grid-template-columns: minmax(0, 0.78fr) minmax(390px, 1.1fr) !important;
  }
}

@media (max-width: 860px) {
  :root {
    --header-h: 58px;
  }

  .site-header,
  .site-header.is-scrolled,
  .menu-open .site-header,
  .menu-open .site-header.is-scrolled {
    height: var(--header-h) !important;
    padding: 0 14px !important;
  }

  .brand img,
  .site-header.is-scrolled .brand img {
    width: 118px !important;
    max-height: 44px !important;
  }

  .menu-button {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    margin: 0 0 0 auto !important;
    padding: 10px !important;
    border: 1px solid rgba(21, 25, 29, 0.12) !important;
    border-radius: 6px !important;
    background: #ffffff !important;
    box-shadow: none !important;
  }

  .site-nav {
    position: fixed !important;
    top: calc(var(--header-h) + 8px) !important;
    right: 12px !important;
    left: 12px !important;
    width: auto !important;
    max-height: calc(100dvh - var(--header-h) - 20px) !important;
    gap: 2px !important;
    padding: 8px !important;
    overflow-y: auto !important;
    border: 1px solid rgba(21, 25, 29, 0.13) !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    box-shadow: 0 24px 64px rgba(21, 25, 29, 0.2) !important;
  }

  .site-nav > a,
  .nav-trigger {
    width: 100% !important;
    min-height: 44px !important;
    justify-content: flex-start !important;
    padding: 0 12px !important;
    border-radius: 5px !important;
    font-size: 0.82rem !important;
  }

  .site-nav .nav-cta {
    margin: 4px 0 0 !important;
    justify-content: center !important;
  }

  .product-advisor {
    right: 0 !important;
    bottom: 0 !important;
  }

  .advisor-launch {
    position: fixed !important;
    top: 8px !important;
    right: 64px !important;
    bottom: auto !important;
    z-index: 220 !important;
    width: 46px !important;
    min-width: 46px !important;
    padding: 5px !important;
    border-color: rgba(21, 25, 29, 0.12) !important;
    color: var(--ink) !important;
    background: #ffffff !important;
    box-shadow: none !important;
  }

  .advisor-launch > span:last-child {
    display: none !important;
  }

  .advisor-launch-mark {
    background: #171e22 !important;
  }

  .advisor-panel {
    position: fixed !important;
    top: calc(var(--header-h) + 8px) !important;
    right: 12px !important;
    bottom: auto !important;
  }

  .hero {
    min-height: 470px !important;
    padding: calc(var(--header-h) + 44px) 18px 42px !important;
  }

  .section {
    padding: 50px 18px !important;
  }

  .home-section-intro {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .home-application {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .home-application-copy {
    position: static !important;
  }

  .home-application-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

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

  .page-hero-has-photo {
    min-height: 330px !important;
    padding: calc(var(--header-h) + 42px) 18px 40px !important;
  }

  .page-hero-has-product {
    grid-template-columns: minmax(0, 1fr) 260px !important;
    gap: 28px !important;
    padding: calc(var(--header-h) + 34px) 18px 34px !important;
  }

  .contact-grid,
  .distributor-panel {
    grid-template-columns: 1fr !important;
  }

  .distributor-panel > .distributor-copy {
    padding: 34px !important;
  }

  .distributor-form {
    border-radius: 0 0 8px 8px !important;
  }

  .partner-value-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .footer-command {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 430px !important;
    padding: calc(var(--header-h) + 34px) 13px 34px !important;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(8, 11, 13, 0.9) 0%, rgba(8, 11, 13, 0.69) 82%, rgba(8, 11, 13, 0.5) 100%),
      linear-gradient(180deg, rgba(8, 11, 13, 0.08) 38%, rgba(8, 11, 13, 0.72) 100%) !important;
  }

  .hero h1 {
    max-width: 350px !important;
    font-size: 2rem !important;
    line-height: 1.04 !important;
  }

  .hero-copy > p:not(.eyebrow) {
    margin-top: 12px !important;
    font-size: 0.78rem !important;
    line-height: 1.48 !important;
  }

  .hero-actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 7px !important;
    margin-top: 17px !important;
  }

  .hero-actions .button {
    width: 100% !important;
    min-height: 42px !important;
    justify-content: center !important;
    padding: 0 8px !important;
    font-size: 0.71rem !important;
  }

  .hero-actions .button.compact {
    grid-column: 1 / -1;
    min-height: 30px !important;
  }

  .section {
    padding: 40px 13px !important;
  }

  .section-head,
  .home-section-intro {
    margin-bottom: 18px !important;
  }

  .section-head h2,
  .home-section-intro h2,
  .detail-copy h2,
  .career-panel h2,
  .distributor-panel h2 {
    font-size: 1.5rem !important;
    line-height: 1.1 !important;
  }

  .section-head p:not(.eyebrow),
  .home-section-intro > p {
    font-size: 0.78rem !important;
    line-height: 1.48 !important;
  }

  .home-system-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    overflow: visible !important;
    border: 0 !important;
    background: transparent !important;
  }

  .home-system-card {
    min-height: 172px !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: 92px minmax(0, 1fr) !important;
    overflow: hidden;
    border: 1px solid rgba(21, 25, 29, 0.12);
    border-radius: 7px;
  }

  .home-system-card figure {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 100% !important;
    height: 92px !important;
    padding: 8px !important;
  }

  .home-system-card > div {
    grid-column: 1 !important;
    grid-row: 2 !important;
    padding: 10px 10px 9px !important;
  }

  .home-system-card h3 {
    font-size: 0.78rem !important;
    line-height: 1.22 !important;
  }

  .home-system-card p {
    display: none !important;
  }

  .home-system-link {
    padding-top: 7px !important;
    font-size: 0.62rem !important;
  }

  .home-catalog-action {
    justify-content: stretch !important;
    margin-top: 12px !important;
  }

  .home-catalog-action .button {
    width: 100%;
    justify-content: center;
  }

  .benefit-grid {
    gap: 8px !important;
  }

  .benefit-card {
    grid-template-columns: 88px minmax(0, 1fr) !important;
  }

  .benefit-card img {
    width: 88px !important;
    min-height: 124px !important;
  }

  .benefit-card > div {
    padding: 11px !important;
  }

  .benefit-card h3 {
    font-size: 0.8rem !important;
  }

  .benefit-card p {
    margin-top: 5px !important;
    font-size: 0.67rem !important;
  }

  .benefit-card .tag-row {
    display: none !important;
  }

  .client-band-head {
    width: calc(100% - 26px) !important;
    grid-template-columns: 1fr !important;
    gap: 5px !important;
  }

  .client-band-head > p {
    display: none !important;
  }

  .client-logo {
    width: 116px !important;
    height: 48px !important;
    padding: 7px 14px !important;
  }

  .home-application {
    gap: 20px !important;
  }

  .home-application-copy h2 {
    font-size: 1.5rem !important;
  }

  .home-application-list {
    gap: 8px;
    border: 0 !important;
  }

  .home-application-row,
  .home-application-row:nth-child(odd),
  .home-application-row:nth-child(even) {
    min-height: 88px !important;
    grid-template-columns: 42px minmax(0, 1fr) !important;
    gap: 5px 9px !important;
    padding: 10px !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: 6px !important;
  }

  .home-application-row img {
    width: 42px !important;
    height: 42px !important;
  }

  .home-application-row h3 {
    font-size: 0.72rem !important;
  }

  .home-application-row p {
    display: none !important;
  }

  .home-application-row strong {
    font-size: 0.59rem !important;
  }

  .industry-grid {
    grid-template-columns: 1fr !important;
    gap: 7px !important;
  }

  .industry-card {
    grid-template-columns: 90px minmax(0, 1fr) !important;
    grid-template-rows: none !important;
    min-height: 108px;
  }

  .industry-card img {
    width: 90px !important;
    height: 100% !important;
    min-height: 108px !important;
  }

  .industry-card > div {
    padding: 11px !important;
  }

  .industry-card h3 {
    font-size: 0.79rem !important;
  }

  .industry-card p {
    margin-top: 4px !important;
    font-size: 0.65rem !important;
  }

  .industry-card span {
    margin-top: 7px !important;
    font-size: 0.61rem !important;
  }

  .home-process .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0 !important;
  }

  .home-process .process-step,
  .home-process .process-step:first-child {
    min-height: 94px !important;
    padding: 12px !important;
    border-right: 1px solid rgba(21, 25, 29, 0.11) !important;
    border-bottom: 1px solid rgba(21, 25, 29, 0.11) !important;
  }

  .page-hero-has-photo {
    min-height: 280px !important;
    padding: calc(var(--header-h) + 34px) 14px 32px !important;
  }

  .page-hero-has-photo::before {
    background: linear-gradient(90deg, rgba(9, 12, 14, 0.9) 0%, rgba(9, 12, 14, 0.67) 100%) !important;
  }

  body[data-page="distributor"] .page-hero-has-photo > img {
    object-position: 72% 20% !important;
  }

  .page-hero-has-photo h1,
  .page-hero-has-product h1 {
    font-size: 1.85rem !important;
    line-height: 1.04 !important;
  }

  .page-hero-has-photo .page-hero-copy > p,
  .page-hero-has-product .page-hero-copy > p {
    margin-top: 9px !important;
    font-size: 0.76rem !important;
    line-height: 1.45 !important;
  }

  .page-hero-copy > span {
    margin-top: 9px !important;
    font-size: 0.63rem !important;
  }

  .page-hero-has-product {
    min-height: 0 !important;
    grid-template-columns: 1fr 110px !important;
    gap: 14px !important;
    padding: calc(var(--header-h) + 24px) 13px 24px !important;
  }

  .page-hero-has-product > img {
    width: 110px !important;
    height: 110px !important;
    padding: 8px !important;
  }

  .quote-catalog-grid {
    grid-template-columns: 1fr !important;
    gap: 7px !important;
  }

  .quote-catalog-card {
    min-height: 74px !important;
    grid-template-columns: 54px minmax(0, 1fr) auto !important;
    gap: 9px !important;
    padding: 8px !important;
  }

  .quote-catalog-card img {
    width: 54px !important;
    height: 54px !important;
  }

  .quote-catalog-card strong {
    font-size: 0.77rem !important;
  }

  .quote-catalog-card em {
    margin-top: 2px !important;
    font-size: 0.64rem !important;
  }

  .quote-state {
    min-width: 50px;
    padding: 4px 6px;
    font-size: 0.59rem;
  }

  .quote-catalog-actions {
    grid-template-columns: 1fr !important;
    gap: 7px !important;
  }

  .contact-grid {
    gap: 24px !important;
  }

  .contact-copy h2 {
    font-size: 1.5rem;
  }

  .contact-methods {
    margin-top: 17px !important;
  }

  .contact-form {
    gap: 12px !important;
    padding: 17px !important;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .guided-form-head h3 {
    font-size: 1.05rem !important;
  }

  .contact-form input,
  .contact-form select {
    min-height: 43px !important;
  }

  .contact-form textarea {
    min-height: 92px !important;
  }

  .distributor-panel > .distributor-copy {
    padding: 24px !important;
  }

  .distributor-copy > p:not(.eyebrow) {
    font-size: 0.76rem;
  }

  .partner-proof-list {
    margin-top: 18px;
  }

  .partner-proof-list li {
    padding: 10px 0;
    font-size: 0.7rem;
  }

  .distributor-form {
    padding: 18px !important;
  }

  .partner-value-grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .partner-value-grid .value-card {
    min-height: 0 !important;
  }

  .cta-band {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding: 32px 13px !important;
  }

  .cta-copy h2 {
    font-size: 1.35rem !important;
  }

  .cta-actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 7px !important;
  }

  .cta-actions .button {
    justify-content: center !important;
  }

  .footer-command,
  .footer-grid,
  .footer-bottom {
    padding-right: 14px !important;
    padding-left: 14px !important;
  }

  .footer-command {
    gap: 17px !important;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px 18px !important;
  }

  .product-advisor {
    right: 0 !important;
    bottom: 0 !important;
  }

  .advisor-launch {
    position: fixed !important;
    top: 8px !important;
    right: 64px !important;
    bottom: auto !important;
    z-index: 220 !important;
    width: 46px !important;
    min-width: 46px !important;
    padding: 5px !important;
    border-radius: 7px !important;
    border-color: rgba(21, 25, 29, 0.12) !important;
    color: var(--ink) !important;
    background: #ffffff !important;
    box-shadow: none !important;
  }

  .advisor-launch > span:last-child {
    display: none !important;
  }

  .advisor-panel {
    position: fixed !important;
    top: auto !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    max-height: calc(100dvh - 18px) !important;
    border-right: 0 !important;
    border-bottom: 0 !important;
    border-left: 0 !important;
    border-radius: 12px 12px 0 0 !important;
  }

  .advisor-body {
    max-height: calc(100dvh - 84px) !important;
    padding: 12px !important;
  }

  .advisor-quick-grid {
    gap: 6px !important;
  }

  .advisor-quick-grid button {
    min-height: 56px !important;
    grid-template-columns: 36px minmax(0, 1fr) !important;
    gap: 7px !important;
    padding: 6px !important;
  }

  .advisor-quick-grid button > img {
    width: 36px !important;
    height: 40px !important;
  }

  .advisor-quick-grid small {
    display: none !important;
  }
}

@media (max-width: 350px) {
  .hero h1 {
    font-size: 1.78rem !important;
  }

  .home-system-card h3,
  .quote-catalog-card strong {
    font-size: 0.7rem !important;
  }

  .quote-catalog-card em {
    display: none !important;
  }

  .cta-actions {
    grid-template-columns: 1fr !important;
  }
}

/* Brand lockup v3: crisp type at every header size and a favicon-first mark. */
.brand,
.site-header.is-scrolled .brand {
  min-width: 0;
  height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  line-height: 1;
}

.brand > img.brand-mark,
.site-header.is-scrolled .brand > img.brand-mark {
  width: 40px !important;
  height: 40px !important;
  max-height: none !important;
  flex: 0 0 40px;
  object-fit: contain;
  transition: none !important;
}

.brand-wordmark {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 3px;
  white-space: nowrap;
}

.brand-name {
  display: flex;
  align-items: baseline;
  font-size: 1.18rem;
  font-weight: 850;
  line-height: 0.92;
  letter-spacing: 0;
}

.brand-lube {
  color: #c96816;
}

.brand-serv {
  color: #15191d;
}

.brand-country {
  color: #5a6269;
  font-size: 0.56rem;
  font-weight: 820;
  line-height: 1;
  letter-spacing: 0;
}

.advisor-launch-mark,
.advisor-mark {
  background: #f7f8f6 !important;
}

.advisor-launch-mark img,
.advisor-mark img {
  width: 22px !important;
  height: 22px !important;
}

.product-advisor.is-open .advisor-launch {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

@media (max-width: 860px) {
  .brand,
  .site-header.is-scrolled .brand {
    height: 44px;
    gap: 8px;
  }

  .brand > img.brand-mark,
  .site-header.is-scrolled .brand > img.brand-mark {
    width: 36px !important;
    height: 36px !important;
    flex-basis: 36px;
  }

  .brand-name {
    font-size: 1.02rem;
  }

  .brand-country {
    font-size: 0.52rem;
  }

  .product-advisor {
    right: 12px !important;
    bottom: 12px !important;
  }

  .advisor-launch {
    top: auto !important;
    right: 12px !important;
    bottom: 12px !important;
    width: 46px !important;
    min-width: 46px !important;
    height: 46px !important;
    padding: 6px !important;
    border-color: rgba(255, 255, 255, 0.18) !important;
    color: #ffffff !important;
    background: #171e22 !important;
    box-shadow: 0 14px 34px rgba(21, 25, 29, 0.24) !important;
  }

  .advisor-launch-mark {
    width: 34px !important;
    height: 34px !important;
    flex-basis: 34px !important;
  }
}

@media (max-width: 350px) {
  .brand,
  .site-header.is-scrolled .brand {
    gap: 6px;
  }

  .brand > img.brand-mark,
  .site-header.is-scrolled .brand > img.brand-mark {
    width: 33px !important;
    height: 33px !important;
    flex-basis: 33px;
  }

  .brand-name {
    font-size: 0.94rem;
  }

  .brand-country {
    font-size: 0.49rem;
  }
}

/* Product motion belongs in context, not inside the repeated homepage grid. */
.site-header,
.site-header.is-scrolled,
.menu-open .site-header,
.menu-open .site-header.is-scrolled {
  background: #ffffff !important;
}

.product-how-band {
  padding: 64px max(22px, calc((100vw - var(--max)) / 2));
  color: #ffffff;
  background: #171e22;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 2px solid var(--orange);
}

.product-how-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 48px;
}

.product-how-copy {
  max-width: 430px;
}

.product-how-copy .eyebrow {
  color: #f0a24b;
}

.product-how-copy h2 {
  margin: 8px 0 0;
  max-width: 420px;
  color: #ffffff;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.product-how-copy > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.62;
}

.product-how-copy .text-link {
  margin-top: 22px;
  color: #ffffff;
}

.product-how-media {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #0f1417;
}

.product-how-poster,
.product-how-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-how-poster {
  opacity: 1;
  transition: opacity 320ms ease;
}

.product-how-video {
  opacity: 0;
  pointer-events: none;
  filter: saturate(0.84) contrast(1.03);
  transition: opacity 320ms ease;
}

.product-how-media.is-media-active .product-how-video.is-ready {
  opacity: 1;
}

.product-how-media.is-media-active:has(.product-how-video.is-ready) .product-how-poster {
  opacity: 0;
}

@media (max-width: 860px) {
  .product-how-band {
    padding: 42px 14px;
  }

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

  .product-how-copy {
    max-width: none;
  }

  .product-how-copy h2 {
    max-width: 340px;
    font-size: 1.7rem;
  }

  .product-how-copy > p:not(.eyebrow) {
    margin-top: 12px;
    font-size: 0.78rem;
    line-height: 1.54;
  }

  .product-how-copy .text-link {
    margin-top: 16px;
  }

  .product-how-media {
    min-height: 0;
    border-radius: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-how-video {
    display: none;
  }
}

/* Photo heroes: keep white copy readable over bright industrial imagery. */
.page-hero-has-photo::before {
  opacity: 1 !important;
}

.page-hero-has-photo .page-hero-copy {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.48);
}

.page-hero-has-photo .page-hero-copy > span {
  color: rgba(255, 255, 255, 0.9) !important;
  opacity: 1 !important;
  font-weight: 720;
}

@media (max-width: 860px) {
  .page-hero-has-photo::before {
    background: linear-gradient(180deg, rgba(9, 12, 14, 0.84) 0%, rgba(9, 12, 14, 0.92) 100%) !important;
  }
}

/* Guided product advisor: teach one useful habit before recommending hardware. */
.advisor-panel {
  width: min(412px, calc(100vw - 28px)) !important;
  border-radius: 10px !important;
  background: #ffffff !important;
}

.advisor-head {
  min-height: 64px !important;
  display: grid !important;
  grid-template-columns: 36px minmax(0, 1fr) 36px !important;
  gap: 10px !important;
  align-items: center !important;
  padding: 10px 12px !important;
}

.advisor-head strong {
  color: #ffffff !important;
  font-size: 0.88rem !important;
  letter-spacing: 0 !important;
}

.advisor-head p {
  color: rgba(255, 255, 255, 0.67) !important;
  font-size: 0.66rem !important;
  line-height: 1.3 !important;
}

.advisor-mark {
  width: 36px !important;
  height: 36px !important;
  flex-basis: 36px !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  background: #ffffff !important;
}

.advisor-close {
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

.advisor-close:hover,
.advisor-close:focus-visible {
  background: rgba(255, 255, 255, 0.13) !important;
}

.advisor-body {
  max-height: calc(100dvh - 176px) !important;
  padding: 0 !important;
  background: #ffffff !important;
}

.advisor-steps {
  position: sticky;
  top: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0 14px;
  border-bottom: 1px solid rgba(21, 25, 29, 0.1);
  background: #ffffff;
}

.advisor-steps button {
  position: relative;
  min-height: 44px;
  padding: 0 8px;
  border: 0;
  color: #747c82;
  background: transparent;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 780;
  cursor: pointer;
}

.advisor-steps button::after {
  position: absolute;
  right: 8px;
  bottom: -1px;
  left: 8px;
  height: 2px;
  content: "";
  background: transparent;
}

.advisor-steps button:hover,
.advisor-steps button:focus-visible,
.advisor-steps button.is-active {
  color: #171e22;
}

.advisor-steps button.is-active::after {
  background: #c96816;
}

.advisor-step {
  padding: 14px !important;
}

.advisor-step[hidden],
.advisor-learning[hidden],
.advisor-continue[hidden],
.advisor-result[hidden] {
  display: none !important;
}

.advisor-kicker {
  margin: 0;
  color: #9b5012;
  font-size: 0.61rem;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

.advisor-practice > h3 {
  max-width: 330px;
  margin: 5px 0 0;
  color: #171e22;
  font-size: 1rem;
  line-height: 1.22;
  letter-spacing: 0;
}

.advisor-question-note {
  margin: 5px 0 0;
  color: #6b747a;
  font-size: 0.7rem;
  line-height: 1.4;
}

.advisor-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.advisor-choice-grid button {
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(21, 25, 29, 0.14);
  border-radius: 8px;
  color: #171e22;
  background: #ffffff;
  text-align: left;
  cursor: pointer;
}

.advisor-choice-grid button:hover,
.advisor-choice-grid button:focus-visible {
  border-color: rgba(201, 104, 22, 0.54);
  box-shadow: 0 8px 22px rgba(21, 25, 29, 0.08);
}

.advisor-choice-grid button.is-myth {
  border-color: #c96816;
  background: #fff8f1;
}

.advisor-choice-grid button.is-correct {
  border-color: #1f6d5c;
  background: #f2f8f5;
}

.advisor-choice-grid img {
  width: 100%;
  aspect-ratio: 3 / 2;
  display: block;
  object-fit: cover;
  background: #eef1ed;
}

.advisor-choice-grid button > span {
  min-height: 52px;
  display: grid;
  align-content: center;
  padding: 8px 9px;
}

.advisor-choice-grid strong,
.advisor-choice-grid small {
  display: block;
}

.advisor-choice-grid strong {
  font-size: 0.7rem;
  line-height: 1.25;
}

.advisor-choice-grid small {
  margin-top: 2px;
  color: #757e84;
  font-size: 0.59rem;
  line-height: 1.25;
}

.advisor-learning {
  margin-top: 10px;
  padding: 10px 11px;
  border-left: 3px solid #c96816;
  border-radius: 0 6px 6px 0;
  background: #f6f7f4;
}

.advisor-learning.is-correct {
  border-left-color: #1f6d5c;
  background: #f1f7f4;
}

.advisor-learning > strong {
  display: block;
  color: #20272b;
  font-size: 0.7rem;
  line-height: 1.3;
}

.advisor-learning > p {
  margin: 3px 0 0;
  color: #5d666c;
  font-size: 0.66rem;
  line-height: 1.42;
}

.advisor-practice-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}

.advisor-continue {
  min-height: 38px;
  flex: 1 1 auto;
  padding: 8px 12px;
  border: 1px solid #171e22;
  border-radius: 6px;
  color: #ffffff;
  background: #171e22;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 780;
  cursor: pointer;
}

.advisor-continue:hover,
.advisor-continue:focus-visible {
  border-color: #9b5012;
  background: #9b5012;
}

.advisor-skip {
  flex: 0 0 auto;
  padding: 6px 2px;
  border: 0;
  color: #5d666c;
  background: transparent;
  font: inherit;
  font-size: 0.64rem;
  font-weight: 720;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.advisor-match {
  padding-top: 12px !important;
}

.advisor-match .advisor-intro {
  margin-bottom: 9px !important;
}

.advisor-match .advisor-result {
  padding-top: 0 !important;
}

.advisor-result-card {
  border: 1px solid rgba(21, 25, 29, 0.11) !important;
  background: #f5f7f4 !important;
}

.advisor-actions {
  margin-top: 7px !important;
}

.advisor-actions .button {
  padding-right: 9px !important;
  padding-left: 9px !important;
  font-size: 0.66rem !important;
  white-space: normal !important;
  text-align: center !important;
}

/* Contact icons share one alignment system; WhatsApp keeps its recognizable color. */
.contact-methods a,
.contact-methods > span {
  align-items: center !important;
  border-radius: 6px;
}

.contact-methods a:hover,
.contact-methods a:focus-visible {
  background: #f7f9f6;
}

.contact-icon {
  display: block !important;
  object-fit: contain !important;
}

.contact-methods .whatsapp-link .contact-icon {
  padding: 6px !important;
  background: #e7f5f0 !important;
}

.contact-methods .whatsapp-link:hover .contact-icon,
.contact-methods .whatsapp-link:focus-visible .contact-icon {
  background: #d8eee6 !important;
}

@media (max-width: 640px) {
  .advisor-panel {
    width: 100% !important;
    max-height: calc(100dvh - 12px) !important;
    border-radius: 10px 10px 0 0 !important;
  }

  .advisor-body {
    max-height: calc(100dvh - 76px) !important;
  }

  .advisor-step {
    padding: 12px !important;
  }

  .advisor-steps {
    padding: 0 12px;
  }

  .advisor-choice-grid {
    gap: 7px;
    margin-top: 10px;
  }

  .advisor-choice-grid button > span {
    min-height: 47px;
    padding: 7px 8px;
  }

  .advisor-learning {
    padding: 9px 10px;
  }

  .advisor-practice-actions {
    margin-top: 9px;
  }
}

@media (max-width: 350px) {
  .advisor-head {
    min-height: 60px !important;
    grid-template-columns: 34px minmax(0, 1fr) 34px !important;
    padding: 9px 10px !important;
  }

  .advisor-mark,
  .advisor-close {
    width: 34px !important;
    height: 34px !important;
  }

  .advisor-step {
    padding: 10px !important;
  }

  .advisor-steps {
    padding: 0 10px;
  }

  .advisor-choice-grid img {
    aspect-ratio: 16 / 10;
  }

  .advisor-choice-grid button > span {
    min-height: 44px;
    padding: 6px 7px;
  }

  .advisor-choice-grid small {
    display: none;
  }

  .advisor-practice-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 3px;
  }

  .advisor-skip {
    min-height: 32px;
  }

  .advisor-actions {
    grid-template-columns: 1fr !important;
  }
}

/* Hero actions stay legible as the background video moves through bright frames. */
.hero .button.ghost:not(.compact) {
  color: #171b1f !important;
  border-color: #ffffff !important;
  background: #ffffff !important;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18) !important;
}

.hero .button.ghost:not(.compact):hover,
.hero .button.ghost:not(.compact):focus-visible {
  color: #171b1f !important;
  border-color: #eef1ed !important;
  background: #eef1ed !important;
}

.hero .button.ghost.compact {
  min-height: 42px !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.72) !important;
  background: rgba(13, 17, 20, 0.88) !important;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18) !important;
  text-decoration: none !important;
}

.hero .button.ghost.compact:hover,
.hero .button.ghost.compact:focus-visible {
  color: #171b1f !important;
  border-color: #ffffff !important;
  background: #ffffff !important;
}

/* Industry discovery, quote detail, and customer-facing form refinement. */
.client-marquee {
  width: min(100%, 1680px) !important;
  margin: 0 auto !important;
  padding: 0 34px !important;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 38px, #000 calc(100% - 38px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 38px, #000 calc(100% - 38px), transparent 100%);
}

.client-track {
  align-items: center !important;
}

.client-group {
  gap: 9px !important;
  padding-right: 9px !important;
}

.client-logo {
  width: 164px !important;
  height: 66px !important;
  padding: 11px 18px !important;
  overflow: hidden !important;
  border: 1px solid rgba(21, 25, 29, 0.09) !important;
  border-radius: 6px !important;
  background: #ffffff !important;
}

.client-logo img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 42px !important;
  object-fit: contain !important;
  object-position: center !important;
}

.industry-solutions-band {
  background: #f3f5f2 !important;
}

.industry-explorer {
  width: min(var(--max), 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(21, 25, 29, 0.12);
  border-radius: 8px;
  background: #ffffff;
}

.industry-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid rgba(21, 25, 29, 0.12);
  background: #eef1ed;
}

.industry-tabs button {
  min-width: 0;
  min-height: 82px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border: 0;
  border-right: 1px solid rgba(21, 25, 29, 0.1);
  color: #343b40;
  background: transparent;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 810;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
}

.industry-tabs button:last-child {
  border-right: 0;
}

.industry-tabs button:hover,
.industry-tabs button:focus-visible {
  background: #ffffff;
}

.industry-tabs button.is-active {
  color: #ffffff;
  background: #183d35;
}

.industry-tabs button img {
  width: 42px;
  height: 42px;
  padding: 5px;
  border-radius: 5px;
  object-fit: contain;
  background: #ffffff;
}

.industry-panel {
  padding: 26px;
}

.industry-panel[hidden],
.industry-application-results [hidden] {
  display: none !important;
}

.industry-panel-intro {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.industry-panel-intro > img {
  width: 150px;
  height: 108px;
  padding: 10px;
  border: 1px solid rgba(21, 25, 29, 0.09);
  border-radius: 6px;
  object-fit: contain;
  background: #f5f7f4;
}

.industry-panel-intro h3 {
  margin: 5px 0 0;
  font-size: 1.45rem;
  line-height: 1.08;
}

.industry-panel-intro p:not(.eyebrow) {
  max-width: 690px;
  margin: 8px 0 0;
  color: #616a71;
  font-size: 0.82rem;
  line-height: 1.5;
}

.industry-application-field {
  display: grid;
  grid-template-columns: minmax(210px, 0.48fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 24px;
  padding: 14px 16px;
  border-radius: 6px;
  color: #ffffff;
  background: #172e29;
}

.industry-application-field > span {
  font-size: 0.74rem;
  font-weight: 790;
}

.industry-application-field select {
  width: 100%;
  min-height: 42px;
  padding: 0 38px 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 5px;
  color: #171b1f;
  background: #ffffff;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 720;
}

.industry-application-results > section {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  gap: 28px;
  align-items: start;
  padding-top: 24px;
}

.industry-result-copy h3 {
  margin: 5px 0 0;
  font-size: 1.12rem;
  line-height: 1.18;
}

.industry-result-copy p:not(.eyebrow) {
  margin: 8px 0 0;
  color: #626b72;
  font-size: 0.77rem;
  line-height: 1.5;
}

.industry-product-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(21, 25, 29, 0.11);
  border-bottom: 1px solid rgba(21, 25, 29, 0.11);
}

.industry-product-link {
  min-width: 0;
  min-height: 76px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-right: 1px solid rgba(21, 25, 29, 0.1);
  color: #171b1f;
}

.industry-product-link:last-child {
  border-right: 0;
}

.industry-product-link:hover,
.industry-product-link:focus-visible {
  background: #f6f8f5;
}

.industry-product-link img {
  width: 48px;
  height: 48px;
  padding: 4px;
  border-radius: 5px;
  object-fit: contain;
  background: #f1f3ef;
}

.industry-product-link strong,
.industry-product-link small {
  display: block;
}

.industry-product-link strong {
  font-size: 0.73rem;
  line-height: 1.25;
}

.industry-product-link small {
  margin-top: 3px;
  color: #687178;
  font-size: 0.62rem;
  line-height: 1.3;
}

.quote-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(21, 25, 29, 0.11);
  border-radius: 6px;
  background: #ffffff;
}

.quote-flow span {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-right: 1px solid rgba(21, 25, 29, 0.1);
  color: #697178;
  font-size: 0.65rem;
  font-weight: 760;
  text-align: center;
}

.quote-flow span:last-child {
  border-right: 0;
}

.quote-flow span.is-active {
  color: #7e430c;
  background: #fff2e2;
}

.quote-model-panel {
  width: min(var(--max), 100%);
  margin: 14px auto 0;
  padding: 20px 22px;
  border: 1px solid rgba(21, 25, 29, 0.12);
  border-left: 3px solid #d97c20;
  border-radius: 7px;
  background: #ffffff;
}

.quote-model-panel[hidden],
.quote-model-group[hidden] {
  display: none !important;
}

.quote-model-panel-head {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(260px, 1fr);
  gap: 24px;
  align-items: end;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(21, 25, 29, 0.1);
}

.quote-model-panel-head h3 {
  margin: 4px 0 0;
  font-size: 1.05rem;
  line-height: 1.2;
}

.quote-model-panel-head > p {
  margin: 0;
  color: #687178;
  font-size: 0.72rem;
  line-height: 1.45;
}

.quote-model-group {
  border-bottom: 1px solid rgba(21, 25, 29, 0.1);
}

.quote-model-group:last-child {
  border-bottom: 0;
}

.quote-model-group summary {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 9px 2px;
  color: #20262a;
  cursor: pointer;
}

.quote-model-group summary span,
.quote-model-group summary strong,
.quote-model-group summary small {
  display: block;
}

.quote-model-group summary strong {
  font-size: 0.78rem;
}

.quote-model-group summary small {
  margin-top: 2px;
  color: #737b81;
  font-size: 0.64rem;
  font-weight: 620;
}

.quote-model-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  padding: 0 0 14px;
}

.quote-model-option {
  min-width: 0;
  min-height: 40px;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid rgba(21, 25, 29, 0.11);
  border-radius: 5px;
  color: #363d42;
  background: #f8faf7;
  font-size: 0.68rem;
  font-weight: 710;
  line-height: 1.3;
  cursor: pointer;
}

.quote-model-option:has(input:checked) {
  border-color: rgba(201, 104, 22, 0.42);
  color: #713a0b;
  background: #fff5e8;
}

.quote-model-option input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #b65e16;
}

body[data-page="contact"] .contact-band {
  color: #ffffff;
  background: #123b34 !important;
}

body[data-page="contact"] .contact-copy {
  padding-top: 4px;
}

body[data-page="contact"] .contact-copy .eyebrow {
  color: #f0a14a !important;
}

body[data-page="contact"] .contact-copy h2 {
  color: #ffffff;
}

body[data-page="contact"] .contact-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72) !important;
}

body[data-page="contact"] .contact-methods {
  gap: 8px !important;
  border: 0 !important;
}

body[data-page="contact"] .contact-methods > a,
body[data-page="contact"] .contact-methods > span {
  min-height: 54px !important;
  padding: 8px 10px !important;
  border: 1px solid rgba(255, 255, 255, 0.13) !important;
  border-radius: 6px !important;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.07) !important;
}

body[data-page="contact"] .contact-methods > a:hover,
body[data-page="contact"] .contact-methods > a:focus-visible {
  border-color: rgba(255, 255, 255, 0.26) !important;
  background: rgba(255, 255, 255, 0.11) !important;
}

body[data-page="contact"] .contact-icon {
  background: #ffffff !important;
}

body[data-page="contact"] .contact-form {
  color: #171b1f;
  background: #fbfaf5 !important;
  box-shadow: 0 20px 54px rgba(5, 20, 17, 0.22) !important;
}

body[data-page="contact"] .guided-form-head h3 {
  color: #171b1f;
}

body[data-page="contact"] .contact-form input,
body[data-page="contact"] .contact-form textarea {
  background: #ffffff !important;
}

body[data-page="contact"] .contact-form > .button {
  width: 100%;
  justify-content: center;
}

.legacy-detail-band {
  background: #ffffff !important;
}

.legacy-detail-panel {
  width: min(var(--max), 100%) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.45fr) minmax(250px, 0.55fr) !important;
  gap: 42px !important;
  align-items: start !important;
  margin: 0 auto !important;
  padding: 32px !important;
  border: 1px solid rgba(21, 25, 29, 0.11) !important;
  background: #ffffff !important;
}

.legacy-detail-main h2 {
  margin: 6px 0 0;
  font-size: 1.75rem;
  line-height: 1.1;
}

.legacy-spec-card {
  display: grid;
  gap: 10px;
  align-self: start;
  padding: 22px !important;
  border: 1px solid rgba(21, 25, 29, 0.1) !important;
  border-radius: 6px !important;
  background: #f3f5f2 !important;
}

.legacy-spec-card > span {
  color: #935010 !important;
}

.legacy-spec-card > strong {
  font-size: 1rem !important;
  line-height: 1.25 !important;
}

.legacy-spec-actions {
  display: grid;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(21, 25, 29, 0.1);
}

.legacy-spec-actions .text-link {
  margin: 0 !important;
}

.insight-grid {
  gap: 12px !important;
}

.insight-card {
  min-width: 0;
  display: grid !important;
  grid-template-rows: 142px minmax(0, 1fr);
  padding: 0 !important;
  overflow: hidden;
  border: 1px solid rgba(21, 25, 29, 0.11) !important;
  background: #ffffff !important;
}

.insight-media {
  display: block;
  overflow: hidden;
  background: #f1f3ef;
}

.insight-media img {
  width: 100%;
  height: 142px;
  display: block;
  padding: 10px;
  object-fit: contain;
  transition: transform 180ms ease;
}

.insight-card:hover .insight-media img {
  transform: scale(1.02);
}

.insight-card-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
}

.insight-card-copy > span {
  min-height: 24px !important;
  padding: 0 8px !important;
  border-radius: 5px !important;
  font-size: 0.64rem !important;
}

.insight-card-copy h3 {
  margin: 9px 0 0;
  font-size: 0.94rem;
  line-height: 1.24;
}

.insight-card-copy p {
  margin: 7px 0 0;
  color: #626b72;
  font-size: 0.73rem;
  line-height: 1.45;
}

.insight-card-copy .text-link {
  margin-top: auto;
  padding-top: 14px;
}

@media (max-width: 860px) {
  .industry-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-tabs button:nth-child(2) {
    border-right: 0;
  }

  .industry-tabs button:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(21, 25, 29, 0.1);
  }

  .industry-application-results > section {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .legacy-detail-panel {
    grid-template-columns: minmax(0, 1.2fr) minmax(230px, 0.55fr) !important;
    gap: 28px !important;
    padding: 26px !important;
  }
}

@media (max-width: 640px) {
  .client-marquee {
    padding: 0 12px !important;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 20px, #000 calc(100% - 20px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 20px, #000 calc(100% - 20px), transparent 100%);
  }

  .client-logo {
    width: 132px !important;
    height: 54px !important;
    padding: 8px 12px !important;
  }

  .client-logo img {
    max-height: 34px !important;
  }

  .industry-tabs button {
    min-height: 62px;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 8px;
    padding: 8px;
    font-size: 0.65rem;
  }

  .industry-tabs button img {
    width: 32px;
    height: 32px;
    padding: 4px;
  }

  .industry-panel {
    padding: 14px;
  }

  .industry-panel-intro {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
  }

  .industry-panel-intro > img {
    width: 72px;
    height: 72px;
    padding: 6px;
  }

  .industry-panel-intro h3 {
    font-size: 1rem;
  }

  .industry-panel-intro p:not(.eyebrow) {
    font-size: 0.69rem;
    line-height: 1.42;
  }

  .industry-application-field {
    grid-template-columns: 1fr;
    gap: 7px;
    margin-top: 16px;
    padding: 11px;
  }

  .industry-application-field select {
    min-height: 40px;
    font-size: 0.7rem;
  }

  .industry-application-results > section {
    gap: 13px;
    padding-top: 16px;
  }

  .industry-result-copy h3 {
    font-size: 0.92rem;
  }

  .industry-result-copy p:not(.eyebrow) {
    font-size: 0.68rem;
  }

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

  .industry-product-link {
    min-height: 62px;
    grid-template-columns: 42px minmax(0, 1fr);
    border-right: 0;
    border-bottom: 1px solid rgba(21, 25, 29, 0.1);
  }

  .industry-product-link:last-child {
    border-bottom: 0;
  }

  .industry-product-link img {
    width: 42px;
    height: 42px;
  }

  .quote-flow {
    margin-top: 14px;
  }

  .quote-flow span {
    min-height: 42px;
    padding: 6px 5px;
    font-size: 0.58rem;
    line-height: 1.22;
  }

  .quote-model-panel {
    margin-top: 10px;
    padding: 15px;
  }

  .quote-model-panel-head {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .quote-model-panel-head h3 {
    font-size: 0.92rem;
  }

  .quote-model-panel-head > p {
    font-size: 0.66rem;
  }

  .quote-model-options {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .quote-model-option {
    min-height: 38px;
  }

  body[data-page="contact"] .contact-band {
    padding-top: 34px !important;
    padding-bottom: 34px !important;
  }

  body[data-page="contact"] .contact-methods > span:last-child {
    display: grid !important;
  }

  body[data-page="contact"] .contact-form {
    padding: 16px !important;
  }

  .legacy-detail-panel {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    padding: 18px !important;
  }

  .legacy-detail-main h2 {
    font-size: 1.35rem;
  }

  .legacy-spec-card {
    padding: 16px !important;
  }

  .insight-grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .insight-card {
    grid-template-columns: 96px minmax(0, 1fr);
    grid-template-rows: none;
  }

  .insight-media,
  .insight-media img {
    width: 96px;
    height: 100%;
    min-height: 138px;
  }

  .insight-media img {
    padding: 7px;
  }

  .insight-card-copy {
    padding: 12px;
  }

  .insight-card-copy h3 {
    font-size: 0.8rem;
  }

  .insight-card-copy p {
    font-size: 0.66rem;
  }

  .insight-card-copy .text-link {
    padding-top: 9px;
  }
}

@media (max-width: 350px) {
  .industry-tabs button {
    font-size: 0.6rem;
  }

  .quote-flow span {
    font-size: 0.54rem;
  }

  .insight-card-copy p {
    display: none;
  }
}

@media (max-width: 640px) {
  .page-hero-has-product {
    align-items: center !important;
    grid-template-rows: auto !important;
  }

  .page-hero-has-product .page-hero-copy {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .page-hero-has-product > img {
    align-self: center !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
  }
}

@media (max-width: 350px) {
  .page-hero-has-product {
    grid-template-columns: minmax(0, 1fr) 84px !important;
    gap: 10px !important;
  }

  .page-hero-has-product > img {
    width: 84px !important;
    height: 84px !important;
    padding: 6px !important;
  }
}

/* Keep the mobile advisor available without covering page controls. */
@media (max-width: 860px) {
  .product-advisor {
    right: 0 !important;
    bottom: 0 !important;
  }

  .advisor-launch {
    position: fixed !important;
    top: 9px !important;
    right: 112px !important;
    bottom: auto !important;
    z-index: 220 !important;
    width: 40px !important;
    min-width: 40px !important;
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    padding: 4px !important;
    border: 1px solid rgba(21, 25, 29, 0.12) !important;
    border-radius: 7px !important;
    color: #171e22 !important;
    background: #ffffff !important;
    box-shadow: none !important;
  }

  .advisor-launch-mark {
    width: 30px !important;
    height: 30px !important;
    flex-basis: 30px !important;
  }
}

@media (max-width: 350px) {
  .advisor-launch {
    top: 10px !important;
    width: 38px !important;
    min-width: 38px !important;
    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
  }

  .advisor-launch-mark {
    width: 28px !important;
    height: 28px !important;
    flex-basis: 28px !important;
  }
}
