@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
}

:root {
  --canvas: #f5f8fa;
  --surface: #fbfcfd;
  --surface-strong: #edf2f5;
  --ink: #111c28;
  --muted: #566575;
  --subtle: #7d8996;
  --navy: #073965;
  --navy-deep: #061c2f;
  --blue: #1557d6;
  --blue-hover: #0f49bd;
  --green: #15956e;
  --danger: #c33e46;
  --line: rgba(17, 28, 40, 0.12);
  --line-strong: rgba(17, 28, 40, 0.22);
  --shadow: 0 18px 50px rgba(16, 41, 64, 0.12);
  --header-height: 72px;
  --shell: 1320px;
  --font-sans: "Manrope", "Segoe UI", Arial, sans-serif;
  --font-mono: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 30;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.024;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

body.drawer-open {
  overflow: hidden;
}

body.product-review-open {
  overflow: hidden;
}

body.project-brief-open {
  overflow: hidden;
}

.product-review-open .gt_switcher_wrapper,
.drawer-open .gt_switcher_wrapper,
.project-brief-open .gt_switcher_wrapper {
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
}

button,
input,
textarea {
  font: inherit;
}

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

button {
  border: 0;
}

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

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

[hidden] {
  display: none !important;
}

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

h1,
h2,
h3,
.button,
.nav-link,
.brand-name {
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: 52px;
  font-weight: 750;
  letter-spacing: -0.032em;
  line-height: 1.02;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.section-shell {
  width: min(var(--shell), calc(100% - 96px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 4px;
  background: var(--ink);
  color: var(--surface);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-height);
  padding: 0 32px;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 252, 253, 0.94);
  backdrop-filter: blur(12px);
}

body.admin-bar .site-header {
  top: 32px;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(16, 41, 64, 0.07);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  min-height: 44px;
  font-weight: 800;
}

.brand-mark {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border: 1px solid var(--navy);
  border-radius: 2px;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.brand-mark i {
  color: var(--blue);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-name {
  font-size: 19px;
  line-height: 1.15;
}

.brand-copy small {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  height: var(--header-height);
}

.nav-link {
  position: relative;
  display: grid;
  height: 100%;
  place-items: center;
  color: #263443;
  font-size: 14px;
  font-weight: 600;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--blue);
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1), background 180ms ease,
    border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button svg,
.icon-button svg,
.text-link svg,
.text-button svg,
.inquiry-dock svg,
.background-item > svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

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

.button-primary {
  background: var(--blue);
  color: #f7fafb;
  box-shadow: 0 12px 28px rgba(21, 87, 214, 0.22);
}

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

.button-dark {
  background: var(--navy);
  color: #f7fafb;
}

.button-dark:hover {
  background: var(--navy-deep);
}

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

.button-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

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

.button-light:hover {
  background: #edf4f7;
}

.button-ghost-light {
  border-color: rgba(247, 250, 251, 0.62);
  background: rgba(6, 28, 47, 0.18);
  color: #f7fafb;
}

.button-ghost-light:hover {
  border-color: #f7fafb;
  background: rgba(6, 28, 47, 0.34);
}

.icon-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.icon-button:hover {
  border-color: var(--line-strong);
  background: var(--surface-strong);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  --lens-x: 74%;
  --lens-y: 48%;
  position: relative;
  isolation: isolate;
  height: calc(100svh - 190px);
  min-height: 530px;
  max-height: 760px;
  overflow: hidden;
  background: var(--navy-deep);
  color: #f7fafb;
}

.hero-visual {
  position: absolute;
  z-index: -3;
  inset: -14px;
  transform: translate3d(var(--hero-shift-x), var(--hero-shift-y), 0);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}

.hero-image-base {
  filter: saturate(0.78) contrast(1.03) brightness(0.92);
}

.hero-image-detail {
  clip-path: circle(0 at var(--lens-x) var(--lens-y));
  filter: saturate(1.08) contrast(1.1) brightness(1.04);
  transition: clip-path 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-scan {
  position: absolute;
  z-index: 2;
  top: 7%;
  bottom: 7%;
  left: 0;
  width: 18vw;
  min-width: 180px;
  max-width: 300px;
  border-left: 1px solid rgba(118, 165, 255, 0.72);
  box-shadow: -8px 0 28px rgba(21, 87, 214, 0.32), 8px 0 28px rgba(21, 87, 214, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-120%, 0, 0);
}

.scan-ready .hero-scan {
  animation: hero-optical-scan 11s cubic-bezier(0.45, 0, 0.55, 1) 900ms infinite;
}

.hero.has-lens .hero-image-detail {
  clip-path: circle(150px at var(--lens-x) var(--lens-y));
}

@keyframes hero-optical-scan {
  0%,
  16% {
    opacity: 0;
    transform: translate3d(-120%, 0, 0);
  }
  24% {
    opacity: 0.74;
  }
  61% {
    opacity: 0.55;
    transform: translate3d(calc(100vw + 120%), 0, 0);
  }
  68%,
  100% {
    opacity: 0;
    transform: translate3d(calc(100vw + 120%), 0, 0);
  }
}

.hero-reticle {
  position: absolute;
  top: var(--lens-y);
  left: var(--lens-x);
  width: 300px;
  height: 300px;
  border: 1px solid rgba(220, 236, 247, 0.66);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.9);
  transition: opacity 180ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-reticle::before,
.hero-reticle::after {
  position: absolute;
  content: "";
  background: rgba(220, 236, 247, 0.7);
}

.hero-reticle::before {
  top: 50%;
  left: -8px;
  width: 16px;
  height: 1px;
}

.hero-reticle::after {
  top: -8px;
  left: 50%;
  width: 1px;
  height: 16px;
}

.hero.has-lens .hero-reticle {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.hero-scrim {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 20, 33, 0.96) 0%, rgba(5, 20, 33, 0.82) 34%, rgba(5, 20, 33, 0.15) 67%, rgba(5, 20, 33, 0.02) 100%);
}

.hero-content {
  position: relative;
  display: grid;
  width: min(var(--shell), calc(100% - 128px));
  height: 100%;
  align-content: center;
  margin-inline: auto;
  padding-bottom: 18px;
}

.hero-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #b8cad7;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-kicker::before {
  width: 32px;
  height: 1px;
  content: "";
  background: #4e8cff;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 26px;
  color: #f7fafb;
  font-size: 68px;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero-content > p {
  max-width: 650px;
  margin-bottom: 32px;
  color: #d4dde4;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-next {
  position: absolute;
  right: 34px;
  bottom: 24px;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  color: rgba(247, 250, 251, 0.82);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.hero-next svg {
  width: 16px;
}

.proof-band {
  background: #071d30;
  color: #f7fafb;
}

.proof-grid {
  display: grid;
  width: min(var(--shell), calc(100% - 64px));
  min-height: 118px;
  grid-template-columns: 0.85fr 0.85fr 1.3fr 1.1fr;
  align-items: stretch;
  margin-inline: auto;
  border-right: 1px solid rgba(212, 225, 234, 0.14);
  border-left: 1px solid rgba(212, 225, 234, 0.14);
}

.proof-stat,
.proof-role,
.proof-inputs {
  display: grid;
  align-content: center;
  padding: 22px 28px;
  border-right: 1px solid rgba(212, 225, 234, 0.14);
}

.proof-stat strong {
  margin-bottom: 2px;
  color: #76a5ff;
  font-family: var(--font-mono);
  font-size: 29px;
  font-weight: 500;
  line-height: 1;
}

.proof-stat span,
.proof-role > span,
.proof-inputs > span {
  color: #9db0bf;
  font-size: 11px;
}

.proof-role {
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
}

.proof-role > span {
  grid-column: 1 / -1;
  margin-bottom: -6px;
  font-family: var(--font-mono);
  text-transform: uppercase;
}

.proof-role strong,
.proof-inputs strong {
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
}

.proof-role svg {
  width: 16px;
  color: #76a5ff;
}

.proof-inputs span {
  margin-bottom: 7px;
  font-family: var(--font-mono);
  text-transform: uppercase;
}

.catalog-section {
  padding: 64px 0 118px;
  background: var(--surface);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 48px;
}

.section-heading p,
.background-heading p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.catalog-workspace {
  position: relative;
}

.search-field {
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 66px;
  align-items: center;
  gap: 16px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--surface);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.search-field:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21, 87, 214, 0.13);
}

.search-field > svg {
  width: 22px;
  height: 22px;
  color: var(--ink);
  stroke-width: 1.7;
}

.search-field input {
  width: 100%;
  height: 62px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 17px;
}

.search-field input::placeholder {
  color: #7b8793;
}

.search-clear {
  width: 38px;
  height: 38px;
  border: 0;
}

.catalog-controls {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.filter-tabs {
  display: flex;
  gap: 38px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-tabs::-webkit-scrollbar {
  display: none;
}

.filter-tab {
  position: relative;
  min-height: 76px;
  flex: 0 0 auto;
  padding: 18px 0 12px;
  cursor: pointer;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.filter-tab::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  content: "";
  transform: scaleX(0);
  background: var(--blue);
  transition: transform 180ms ease;
}

.filter-tab:hover,
.filter-tab.is-active {
  color: var(--blue);
}

.filter-tab.is-active::after {
  transform: scaleX(1);
}

.catalog-count {
  flex: 0 0 auto;
  padding-bottom: 24px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.filter-label-short {
  display: none;
}

/* Quick Inquiry uses the shared header; its legacy header is not rendered. */
body.page-id-216 .quick-inquiry-host .lp-topbar {
  display: none;
}

body.page-id-216 .inner-site-header .gtranslate_wrapper {
  position: absolute;
  top: 6px;
  right: 174px;
  z-index: 3;
}

body.page-id-216 .inner-site-header .gtranslate_wrapper .gt_switcher_wrapper {
  position: static !important;
  inset: auto !important;
}

body.page-id-216 .quick-inquiry-host .lp-selected-item.is-compact {
  gap: 8px;
}

body.page-id-216 .quick-inquiry-host .lp-selected-item.is-compact .lp-selected-item-head {
  align-items: center;
}

body.page-id-216 .quick-inquiry-host .lp-selected-identity {
  display: grid;
  min-width: 0;
  gap: 2px;
}

body.page-id-216 .quick-inquiry-host .lp-selected-identity strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.page-id-216 .quick-inquiry-host .lp-selected-summary {
  overflow: hidden;
  color: #61716d;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.page-id-216 .quick-inquiry-host .lp-selected-item-actions {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
}

body.page-id-216 .quick-inquiry-host .lp-selected-item button.lp-selected-toggle {
  border: 1px solid rgba(22, 119, 200, 0.28);
  color: #1557d6;
  background: rgba(21, 87, 214, 0.07);
}

body.page-id-216 .quick-inquiry-host .lp-selected-item.is-collapsed .lp-selected-toggle svg {
  transform: rotate(-90deg);
}

body.page-id-216 .quick-inquiry-host .lp-selected-item.is-collapsed {
  padding-top: 10px;
  padding-bottom: 10px;
}

@media (max-width: 900px) {
  body.page-id-216 .inner-site-header .gtranslate_wrapper {
    top: 7px;
    right: 66px;
  }
}

.catalog-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 10px;
}

.catalog-summary .catalog-count {
  padding-bottom: 0;
}

.selection-status {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  border: 1px solid rgba(21, 87, 214, 0.3);
  border-radius: 3px;
  cursor: pointer;
  background: rgba(21, 87, 214, 0.06);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  transition: border-color 160ms ease, background 160ms ease;
}

.selection-status:hover {
  border-color: var(--blue);
  background: rgba(21, 87, 214, 0.1);
}

.selection-status svg {
  width: 15px;
  height: 15px;
}

.selection-status strong {
  font-family: var(--font-mono);
}

.product-head,
.product-row {
  display: grid;
  grid-template-columns: 1.2fr 1.35fr 1fr 180px;
  align-items: center;
  column-gap: 28px;
}

.product-head {
  min-height: 62px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.product-row {
  min-height: 76px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: background 180ms ease;
}

.product-row:hover,
.product-row.is-selected {
  background: rgba(21, 87, 214, 0.045);
}

.product-name {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 700;
}

.product-check {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: transparent;
}

.product-row.is-selected .product-check {
  border-color: var(--blue);
  background: var(--blue);
  color: #f7fafb;
}

.product-check svg {
  width: 15px;
  height: 15px;
  stroke-width: 2.4;
}

.product-reference,
.product-category {
  min-width: 0;
  color: #435261;
  font-size: 14px;
}

.product-reference {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.row-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid var(--blue);
  border-radius: 4px;
  cursor: pointer;
  background: transparent;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.row-action:hover,
.product-row.is-selected .row-action {
  background: var(--blue);
  color: #f7fafb;
}

.row-action svg {
  width: 16px;
  height: 16px;
}

.catalog-empty {
  display: grid;
  min-height: 320px;
  place-items: center;
  align-content: center;
  padding: 48px;
  text-align: center;
}

.catalog-empty[hidden] {
  display: none;
}

.catalog-empty > svg {
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  color: var(--muted);
}

.catalog-empty strong {
  margin-bottom: 6px;
  font-size: 18px;
}

.catalog-empty p {
  margin-bottom: 16px;
  color: var(--muted);
}

.text-button,
.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  padding: 0;
  cursor: pointer;
  background: transparent;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.text-button:hover,
.text-link:hover {
  color: var(--navy);
}

.text-button-muted {
  color: var(--muted);
}

.show-more {
  margin-top: 18px;
}

.process-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  min-height: 820px;
  background: var(--canvas);
}

.process-media {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.process-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  filter: saturate(0.78) contrast(1.05) brightness(0.96) hue-rotate(-5deg);
  transition: opacity 260ms ease, transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.process-visual-label {
  position: absolute;
  top: 28px;
  left: 28px;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  border: 1px solid rgba(247, 250, 251, 0.55);
  background: rgba(6, 28, 47, 0.78);
  color: #f7fafb;
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.process-visual-label svg {
  width: 14px;
  height: 14px;
  color: #76a5ff;
}

.process-index {
  position: absolute;
  top: 28px;
  right: 28px;
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: #f7fafb;
  font-family: var(--font-mono);
  text-shadow: 0 1px 16px rgba(6, 28, 47, 0.5);
}

.process-index strong {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.process-index small {
  color: #bfd0dc;
  font-size: 10px;
}

.process-media.is-changing > img {
  opacity: 0.72;
  transform: scale(1.012);
}

.process-detail {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 38%;
  margin: 0;
  border: 1px solid rgba(247, 250, 251, 0.62);
  border-radius: 6px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.process-detail img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.05) brightness(0.96) hue-rotate(-5deg);
}

.process-detail figcaption {
  padding: 11px 13px;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.process-content {
  align-self: center;
  max-width: 690px;
  padding: 84px 72px;
}

.section-lead {
  max-width: 610px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 17px;
}

.process-list {
  --process-progress: 66%;
  position: relative;
  margin-bottom: 30px;
}

.process-list::before {
  position: absolute;
  z-index: 0;
  top: 38px;
  bottom: 38px;
  left: 10px;
  width: 1px;
  content: "";
  background: var(--line-strong);
}

.process-list::after {
  position: absolute;
  z-index: 0;
  top: 38px;
  left: 10px;
  width: 1px;
  height: var(--process-progress);
  max-height: calc(100% - 76px);
  content: "";
  background: var(--blue);
  transition: height 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  min-height: 92px;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  background: transparent;
  color: var(--ink);
  text-align: left;
}

.process-node {
  width: 21px;
  height: 21px;
  margin-top: 3px;
  border: 2px solid #a8b3bd;
  border-radius: 50%;
  background: var(--canvas);
  transition: border-color 180ms ease, background 180ms ease;
}

.process-step strong {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
}

.process-step small {
  display: block;
  max-width: 520px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.process-step:hover strong,
.process-step.is-active strong {
  color: var(--blue);
}

.process-step.is-active .process-node {
  border-color: var(--blue);
  background: var(--blue);
}

.process-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}

.background-section {
  padding: 112px 0;
  background: var(--surface);
}

.background-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  margin-bottom: 44px;
}

.background-heading h2,
.background-heading p {
  margin-bottom: 0;
}

.background-rail {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 24px;
}

.background-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  min-height: 390px;
  align-content: end;
  overflow: hidden;
  border-radius: 6px;
  color: #f7fafb;
}

.background-item::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 38%, rgba(5, 20, 33, 0.88) 100%);
}

.background-item img {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.68) saturate(0.48) contrast(1.06) brightness(0.95) hue-rotate(-8deg);
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1), filter 400ms ease;
}

.background-item:hover img {
  transform: scale(1.025);
  filter: grayscale(0.12) saturate(0.9) contrast(1.03);
}

.background-item span,
.background-item > svg {
  position: relative;
  z-index: 1;
}

.background-item span {
  padding: 26px;
}

.background-item strong,
.background-item small {
  display: block;
}

.background-item strong {
  margin-bottom: 5px;
  font-size: 20px;
}

.background-item small {
  color: #ced8df;
  font-size: 13px;
}

.background-item > svg {
  align-self: end;
  margin: 0 26px 30px 0;
}

.contact-section {
  position: relative;
  padding: 92px 0;
  background: var(--navy-deep);
  color: #f7fafb;
  overflow: hidden;
}

.contact-decoration {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 85% 50%, rgba(78, 140, 255, 0.07) 0%, transparent 55%);
  pointer-events: none;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 80px;
}

.contact-inner h2 {
  margin-bottom: 12px;
  color: #f7fafb;
}

.contact-inner p {
  max-width: 720px;
  margin-bottom: 0;
  color: #c9d5dd;
  font-size: 17px;
}

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

.site-footer {
  padding: 68px 0 28px;
  background: #061725;
  color: #c9d5dd;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 72px;
  padding-bottom: 54px;
}

.brand-light {
  color: #f7fafb;
}

.brand-light .brand-mark {
  border-color: rgba(247, 250, 251, 0.72);
  color: #f7fafb;
}

.brand-light .brand-copy small {
  color: #93a2ae;
}

.footer-brand p {
  max-width: 370px;
  margin: 16px 0 0;
  color: #93a2ae;
}

.footer-grid nav {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-grid nav a {
  min-height: 28px;
  color: #b8c5ce;
  font-size: 14px;
}

.footer-grid nav a:hover {
  color: #f7fafb;
}

.footer-bottom {
  display: flex;
  min-height: 56px;
  align-items: end;
  justify-content: space-between;
  border-top: 1px solid rgba(247, 250, 251, 0.12);
  color: #7f919e;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.inquiry-dock {
  position: fixed;
  z-index: 34;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border-radius: 4px;
  cursor: pointer;
  background: var(--blue);
  color: #f7fafb;
  box-shadow: 0 16px 40px rgba(6, 28, 47, 0.28);
  font-weight: 700;
  transition: opacity 180ms ease, transform 240ms cubic-bezier(0.16, 1, 0.3, 1), background 160ms ease;
}

.inquiry-dock:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
}

.inquiry-dock.is-obscured {
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
}

.inquiry-dock[hidden] {
  display: none;
}

.inquiry-dock strong {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: #f7fafb;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 11px;
}

.drawer-layer {
  position: fixed;
  z-index: 70;
  inset: 0;
}

.drawer-layer[hidden] {
  display: none;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: default;
  background: rgba(5, 20, 33, 0.63);
  animation: fade-in 220ms ease both;
}

.inquiry-drawer {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: min(590px, 100%);
  height: 100%;
  flex-direction: column;
  overflow-y: auto;
  border-left: 1px solid var(--line);
  background: var(--surface);
  box-shadow: -20px 0 60px rgba(6, 28, 47, 0.18);
  animation: drawer-in 340ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 32px 18px;
}

.drawer-header h2 {
  margin-bottom: 7px;
  font-size: 28px;
}

.drawer-header p {
  max-width: 440px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.drawer-progress {
  --drawer-progress: 0%;
  position: relative;
  display: flex;
  justify-content: space-between;
  margin: 0 32px;
  padding: 12px 0 23px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.drawer-progress::before,
.drawer-progress::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 2px;
  content: "";
}

.drawer-progress::before {
  right: 0;
  background: var(--line);
}

.drawer-progress::after {
  width: var(--drawer-progress);
  background: var(--blue);
  transition: width 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-progress span {
  position: relative;
  z-index: 1;
}

.drawer-progress span::after {
  position: absolute;
  top: 28px;
  left: 0;
  width: 12px;
  height: 12px;
  content: "";
  border: 3px solid var(--surface);
  border-radius: 50%;
  background: var(--line-strong);
}

.drawer-progress span:last-child::after {
  right: 0;
  left: auto;
}

.drawer-progress .is-complete,
.drawer-progress .is-current {
  color: var(--ink);
}

.drawer-progress .is-complete::after {
  background: var(--blue);
}

.drawer-progress .is-current::after {
  box-shadow: inset 0 0 0 2px var(--blue);
  background: var(--surface);
}

.inquiry-form {
  padding: 28px 32px 32px;
}

.selected-section {
  margin-bottom: 24px;
}

.selected-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
}

.selected-heading h3 {
  margin: 0;
  font-size: 15px;
}

.selected-heading > div {
  display: flex;
  gap: 16px;
}

.selected-product {
  display: grid;
  min-height: 44px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
}

.selected-product + .selected-product {
  margin-top: 7px;
}

.selected-product button {
  width: 36px;
  height: 36px;
  border-radius: 4px;
}

.selected-empty {
  min-height: 72px;
  margin-bottom: 0;
  padding: 22px 16px;
  border: 1px dashed var(--line-strong);
  color: var(--muted);
  font-size: 13px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 16px;
}

.form-grid label {
  display: grid;
  align-content: start;
  gap: 6px;
  min-width: 0;
}

.form-grid label > span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.form-grid b {
  color: var(--danger);
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-grid textarea {
  min-height: 88px;
  padding-top: 11px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21, 87, 214, 0.11);
}

.form-grid label.has-error input,
.form-grid label.has-error textarea {
  border-color: var(--danger);
}

.field-error {
  min-height: 0;
  color: var(--danger);
  font-size: 10px;
}

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

.drawer-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.privacy-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.privacy-note svg {
  width: 14px;
  height: 14px;
}

.inquiry-success {
  display: grid;
  flex: 1;
  align-content: center;
  padding: 40px 32px;
  text-align: center;
}

.inquiry-success[hidden] {
  display: none;
}

.inquiry-success > svg {
  width: 46px;
  height: 46px;
  margin: 0 auto 20px;
  color: var(--green);
  stroke-width: 1.5;
}

.inquiry-success h3 {
  margin-bottom: 10px;
  font-size: 28px;
}

.inquiry-success p {
  max-width: 400px;
  margin: 0 auto 26px;
  color: var(--muted);
}

.inquiry-success .button {
  width: 100%;
  margin-bottom: 10px;
}

.inquiry-success .text-button {
  justify-self: center;
  margin-top: 6px;
}

.toast {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  max-width: min(380px, calc(100% - 48px));
  padding: 14px 18px;
  border: 1px solid rgba(247, 250, 251, 0.2);
  border-radius: 4px;
  background: var(--navy-deep);
  color: #f7fafb;
  box-shadow: var(--shadow);
  font-size: 13px;
}

.toast[hidden] {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms cubic-bezier(0.16, 1, 0.3, 1), transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-on-load {
  animation: hero-reveal 760ms 100ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes hero-reveal {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes drawer-in {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav {
    gap: 26px;
  }

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

  .process-section {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.9fr);
  }

  .process-content {
    padding: 72px 48px;
  }

  .product-head,
  .product-row {
    grid-template-columns: 1.05fr 1.1fr 0.9fr 160px;
    column-gap: 18px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 66px;
  }

  .section-shell {
    width: min(100% - 40px, var(--shell));
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: var(--header-height);
    padding: 0 20px;
  }

  .desktop-nav,
  .header-contact {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 18px;
    padding: 16px 20px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--surface);
    box-shadow: 0 18px 30px rgba(16, 41, 64, 0.12);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu nav {
    display: grid;
  }

  .mobile-menu nav a {
    display: flex;
    min-height: 48px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    font-weight: 650;
  }

  .hero {
    height: calc(100svh - 170px);
    min-height: 580px;
    max-height: 720px;
  }

  .hero-content {
    width: calc(100% - 40px);
  }

  .hero h1 {
    max-width: 620px;
    font-size: 52px;
  }

  .hero-content > p {
    max-width: 540px;
    font-size: 17px;
  }

  .hero-next {
    display: none;
  }

  .proof-grid {
    width: 100%;
    grid-template-columns: 0.7fr 0.8fr 1.5fr;
    border-right: 0;
    border-left: 0;
  }

  .proof-inputs {
    display: none;
  }

  .catalog-section,
  .background-section {
    padding: 80px 0;
  }

  .catalog-section {
    padding-top: 50px;
  }

  h2 {
    font-size: 42px;
  }

  .product-head {
    display: none;
  }

  .product-row {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "name action"
      "reference action"
      "category action";
    row-gap: 4px;
    min-height: 106px;
  }

  .product-name { grid-area: name; }
  .product-reference { grid-area: reference; padding-left: 38px; }
  .product-category { grid-area: category; padding-left: 38px; }
  .row-action { grid-area: action; width: 48px; padding: 0; }
  .row-action span { display: none; }

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

  .process-media {
    min-height: 600px;
  }

  .process-content {
    max-width: none;
    padding: 76px 40px 88px;
  }

  .background-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .background-rail {
    grid-template-columns: 1fr;
  }

  .background-item {
    min-height: 380px;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 600px) {
  .brand-name {
    font-size: 18px;
  }

  .brand-copy small {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .hero {
    height: calc(100svh - 160px);
    min-height: 590px;
    max-height: 700px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-visual {
    inset: 0;
    transform: none;
  }

  .hero-image-detail,
  .hero-reticle {
    display: none;
  }

  .hero-scrim {
    background: linear-gradient(180deg, rgba(5, 20, 33, 0.44) 0%, rgba(5, 20, 33, 0.88) 45%, rgba(5, 20, 33, 0.98) 100%);
  }

  .hero-content {
    align-content: end;
    padding-bottom: 46px;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: 40px;
    line-height: 1.1;
  }

  .hero-content > p {
    margin-bottom: 26px;
    font-size: 15px;
  }

  .hero-kicker {
    margin-bottom: 14px;
    font-size: 8px;
  }

  .proof-grid {
    min-height: 0;
    grid-template-columns: 1fr 1fr;
  }

  .proof-stat,
  .proof-role {
    min-height: 94px;
    padding: 17px 20px;
  }

  .proof-role {
    grid-column: 1 / -1;
    grid-template-columns: 1fr auto 1fr;
    border-top: 1px solid rgba(212, 225, 234, 0.14);
  }

  .proof-stat strong {
    font-size: 25px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  h2 {
    font-size: 34px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading p,
  .background-heading p {
    font-size: 15px;
  }

  .search-field {
    min-height: 58px;
  }

  .search-field input {
    height: 54px;
    font-size: 14px;
  }

  .catalog-controls {
    display: block;
  }

  .filter-tabs {
    gap: 26px;
  }

  .filter-tab {
    min-height: 64px;
  }

  .catalog-summary {
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
  }

  .catalog-summary .catalog-count {
    display: block;
    padding: 0;
    font-size: 10px;
  }

  .selection-status {
    min-height: 36px;
  }

  .product-row {
    padding: 14px 0;
    column-gap: 10px;
  }

  .product-reference,
  .product-category {
    padding-left: 36px;
    font-size: 12px;
  }

  .process-media {
    min-height: 460px;
  }

  .process-detail {
    right: 18px;
    bottom: 18px;
    width: 48%;
  }

  .process-visual-label {
    top: 18px;
    left: 18px;
  }

  .process-index {
    top: 22px;
    right: 18px;
  }

  .process-content {
    padding: 64px 20px 72px;
  }

  .process-actions,
  .contact-actions {
    display: grid;
    width: 100%;
  }

  .process-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .background-item {
    min-height: 320px;
  }

  .contact-section {
    padding: 72px 0;
  }

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

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

  .footer-bottom {
    display: grid;
    gap: 8px;
    padding-top: 22px;
  }

  .inquiry-dock {
    right: 14px;
    bottom: 14px;
  }

  .drawer-header,
  .inquiry-form {
    padding-right: 20px;
    padding-left: 20px;
  }

  .drawer-progress {
    margin-right: 20px;
    margin-left: 20px;
  }

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

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

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

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

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

  .hero-visual {
    transform: none !important;
  }

  .hero-image-detail,
  .hero-reticle {
    display: none;
  }
}

:focus-visible {
  outline: 3px solid rgba(21, 87, 214, 0.42);
  outline-offset: 3px;
}

/* Inner-page system */
.inner-site-header .desktop-nav {
  gap: 32px;
}

.inner-main {
  background: var(--surface);
}

.inner-main section[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.inner-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 610px;
  align-items: end;
  overflow: hidden;
  background: var(--navy-deep);
  color: #f7fafb;
}

.inner-hero > img {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.68) contrast(1.06) brightness(0.78);
}

.inner-hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(5, 20, 33, 0.96) 0%, rgba(5, 20, 33, 0.78) 43%, rgba(5, 20, 33, 0.18) 76%, rgba(5, 20, 33, 0.06) 100%);
}

.inner-hero-content {
  width: min(var(--shell), calc(100% - 128px));
  margin-inline: auto;
  padding: 120px 0 64px;
}

.inner-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 19px;
  color: #b8cad7;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.inner-hero-label::before {
  width: 32px;
  height: 1px;
  content: "";
  background: #76a5ff;
}

.inner-hero h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: 72px;
  font-weight: 800;
  line-height: 1.02;
}

.inner-hero-content > p {
  max-width: 700px;
  margin-bottom: 34px;
  color: #d3dee6;
  font-size: 19px;
}

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

.inner-facts {
  display: grid;
  min-height: 112px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(247, 250, 251, 0.16);
  background: rgba(6, 28, 47, 0.88);
  backdrop-filter: blur(10px);
}

.inner-fact {
  display: grid;
  align-content: center;
  padding: 23px 32px;
  border-right: 1px solid rgba(247, 250, 251, 0.14);
}

.inner-fact span {
  margin-bottom: 5px;
  color: #91a8b8;
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
}

.inner-fact strong {
  font-size: 13px;
  font-weight: 650;
}

.inner-fact b {
  color: #76a5ff;
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 500;
}

.inner-section {
  padding: 108px 0;
  background: var(--surface);
}

.inner-section.is-muted {
  background: var(--canvas);
}

.inner-heading {
  max-width: 860px;
  margin-bottom: 48px;
}

.inner-heading h2 {
  margin-bottom: 18px;
}

.inner-heading p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.role-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
}

.role-column {
  min-height: 470px;
  padding: 44px;
}

.role-column + .role-column {
  border-left: 1px solid var(--line);
}

.role-tag {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.role-column h3 {
  max-width: 420px;
  margin-bottom: 18px;
  font-size: 34px;
  line-height: 1.1;
}

.role-column > p {
  max-width: 520px;
  margin-bottom: 34px;
  color: var(--muted);
}

.evidence-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.evidence-list li {
  display: grid;
  min-height: 52px;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  color: #334253;
  font-size: 13px;
}

.evidence-list svg {
  width: 16px;
  color: var(--blue);
}

.evidence-split {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 620px;
}

.quality-review-scope {
  padding-top: 116px;
  padding-bottom: 116px;
  background: #f4f8fb;
}

.quality-review-scope-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}

.quality-review-scope-heading .inner-heading {
  max-width: 760px;
}

.quality-review-scope-heading .text-link {
  flex: 0 0 auto;
  margin-bottom: 8px;
}

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

.quality-review-card {
  position: relative;
  min-height: 244px;
  padding: 26px 24px 24px;
  overflow: hidden;
  border: 1px solid #dbe6ed;
  border-radius: 6px;
  background: #ffffff;
}

.quality-review-card > span {
  display: block;
  margin-bottom: 38px;
  color: #7b8b99;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.quality-review-card > i {
  position: absolute;
  top: 24px;
  right: 22px;
  width: 22px;
  height: 22px;
  color: var(--blue);
}

.quality-review-card h3 {
  margin: 0 0 10px;
  color: var(--navy-deep);
  font-size: 19px;
  line-height: 1.2;
}

.quality-review-card p {
  margin: 0;
  color: #5b6d7b;
  font-size: 14px;
  line-height: 1.62;
}

.quality-review-boundary {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px 24px;
  margin-top: 18px;
  padding: 26px 28px;
  border: 1px solid #cbdde8;
  border-radius: 6px;
  background: #eaf4f9;
}

.quality-review-boundary > i {
  width: 22px;
  height: 22px;
  color: var(--blue);
}

.quality-review-boundary strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy-deep);
  font-size: 16px;
}

.quality-review-boundary p {
  margin: 0;
  color: #526a7b;
  font-size: 14px;
  line-height: 1.55;
}

.quality-review-boundary .button {
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .quality-review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .quality-review-scope {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .quality-review-scope-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
  }

  .quality-review-scope-heading .text-link {
    margin-bottom: 0;
  }

  .quality-review-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .quality-review-card {
    min-height: 0;
  }

  .quality-review-card > span {
    margin-bottom: 30px;
  }

  .quality-review-boundary {
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: start;
    padding: 22px;
  }

  .quality-review-boundary .button {
    width: 100%;
    grid-column: 1 / -1;
  }
}

.evidence-split > figure {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
}

.evidence-split > figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.42) saturate(0.72) contrast(1.04);
}

.evidence-split figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 13px 15px;
  background: rgba(6, 28, 47, 0.86);
  color: #d6e0e7;
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
}

.evidence-copy {
  display: grid;
  align-content: center;
  padding: 72px;
  background: var(--navy-deep);
  color: #f7fafb;
}

.evidence-copy h2 {
  color: #f7fafb;
}

.evidence-copy > p {
  margin-bottom: 30px;
  color: #b8c6d0;
}

.evidence-copy .evidence-list li {
  border-color: rgba(247, 250, 251, 0.14);
  color: #d8e1e7;
}

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

.input-item {
  min-height: 184px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.input-item:last-child {
  border-right: 0;
}

.input-item span {
  display: block;
  margin-bottom: 32px;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 11px;
}

.input-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}

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

.inner-cta-band {
  padding: 78px 0;
  background: var(--navy);
  color: #f7fafb;
}

.inner-cta-band .section-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.inner-cta-band h2 {
  margin-bottom: 10px;
  color: #f7fafb;
  font-size: 42px;
}

.inner-cta-band p {
  margin: 0;
  color: #bdcbd5;
}

.inner-cta-actions {
  display: flex;
  gap: 12px;
}

.capability-tabs {
  display: flex;
  gap: 36px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
}

.capability-tabs::-webkit-scrollbar {
  display: none;
}

.capability-tab {
  position: relative;
  min-height: 66px;
  flex: 0 0 auto;
  padding: 0;
  cursor: pointer;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.capability-tab::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--blue);
  transition: transform 180ms ease;
}

.capability-tab.is-active {
  color: var(--blue);
}

.capability-tab.is-active::after {
  transform: scaleX(1);
}

.capability-stage {
  min-height: 600px;
}

.capability-panel {
  display: grid;
  min-height: 600px;
  grid-template-columns: 1.12fr 0.88fr;
  animation: inner-panel-in 360ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

.capability-panel figure {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  background: var(--surface-strong);
}

.capability-caption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 12px 14px;
  background: rgba(6, 28, 47, 0.86);
  color: #d6e0e7;
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
}

.capability-panel figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.capability-panel-content {
  display: grid;
  align-content: center;
  padding: 66px;
  border-bottom: 1px solid var(--line);
}

.capability-panel-content h3 {
  margin-bottom: 16px;
  font-size: 38px;
  line-height: 1.08;
}

.capability-panel-content > p {
  margin-bottom: 30px;
  color: var(--muted);
}

.scope-table {
  border-top: 1px solid var(--line);
}

.scope-row {
  display: grid;
  min-height: 74px;
  grid-template-columns: minmax(180px, 0.72fr) 1.28fr;
  align-items: center;
  gap: 36px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.scope-row strong {
  font-size: 14px;
}

.scope-row span {
  color: var(--muted);
  font-size: 13px;
}

.guide-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.guide-nav {
  position: sticky;
  top: calc(var(--header-height) + 32px);
  display: grid;
  border-top: 1px solid var(--line);
}

.guide-nav a {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.guide-nav a:hover {
  color: var(--blue);
}

.guide-nav svg {
  width: 15px;
}

.guide-content {
  min-width: 0;
}

.family-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 54px;
  padding: 42px 0 52px;
  border-top: 1px solid var(--line-strong);
}

.family-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.family-count {
  display: block;
  margin-bottom: 20px;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
}

.family-section h2 {
  margin-bottom: 12px;
  font-size: 30px;
}

.family-section p {
  color: var(--muted);
}

.family-points {
  display: grid;
  border-top: 1px solid var(--line);
}

.family-points span {
  min-height: 52px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: #334253;
  font-size: 13px;
}

.guide-glossary {
  display: grid;
  border-top: 1px solid var(--line-strong);
}

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

.guide-glossary summary {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
  list-style: none;
}

.guide-glossary summary::-webkit-details-marker {
  display: none;
}

.guide-glossary summary::after {
  content: "+";
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 400;
}

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

.guide-glossary details p {
  max-width: 780px;
  padding: 0 56px 24px 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
  align-items: start;
}

.contact-aside {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.contact-aside h2 {
  margin-bottom: 16px;
  font-size: 38px;
}

.contact-aside > p {
  margin-bottom: 34px;
  color: var(--muted);
}

.contact-channels {
  border-top: 1px solid var(--line);
}

.contact-channel {
  display: grid;
  min-height: 76px;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-channel > svg {
  width: 18px;
  color: var(--blue);
}

.contact-channel span,
.contact-channel strong {
  display: block;
}

.contact-channel span {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 10px;
}

.contact-channel strong {
  font-size: 13px;
}

.contact-channel-arrow svg {
  width: 15px;
}

.contact-page-form {
  padding: 44px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.contact-form-heading {
  margin-bottom: 30px;
}

.contact-form-heading h2 {
  margin-bottom: 10px;
  font-size: 34px;
}

.contact-form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.inquiry-readiness {
  margin: 0 -44px 32px;
  padding: 24px 44px 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f4f8fa;
}

.inquiry-readiness-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.inquiry-readiness-heading > div > span {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.inquiry-readiness-heading strong {
  font-size: 15px;
}

.inquiry-readiness-heading > span {
  max-width: 260px;
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}

.inquiry-readiness-progress {
  height: 4px;
  margin: 16px 0 18px;
  overflow: hidden;
  background: #dbe4ea;
}

.inquiry-readiness-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--blue);
  transition: width 240ms ease, background-color 240ms ease;
}

.inquiry-readiness.is-ready .inquiry-readiness-progress span {
  background: var(--green);
}

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

.inquiry-readiness-items > span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
  color: #6d7b87;
  font-size: 10px;
  font-weight: 700;
}

.inquiry-readiness-items svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.inquiry-readiness-items > span.is-complete {
  color: #176f55;
}

.inquiry-draft-row {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.inquiry-draft-row > span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  color: #415364;
  font-size: 11px;
}

.inquiry-draft-row > span > svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: var(--blue);
}

.inquiry-draft-row .icon-button {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-color: transparent;
  color: #647583;
}

.inquiry-draft-row .icon-button:hover {
  border-color: var(--line-strong);
  color: var(--danger);
}

.inquiry-readiness > p {
  margin: 3px 0 0 23px;
  color: #71808c;
  font-size: 9px;
  line-height: 1.5;
}

.contact-page-form .drawer-actions {
  margin-top: 24px;
}

.contact-success {
  display: block;
  min-height: 560px;
  padding: 48px 44px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.contact-success[hidden] {
  display: none;
}

.contact-success-heading {
  text-align: center;
}

.contact-success-heading > svg {
  display: block;
  width: 52px;
  height: 52px;
  margin: 0 auto 26px;
  color: var(--green);
}

.contact-success-heading h2 {
  margin-bottom: 12px;
  font-size: 34px;
}

.contact-success-heading p {
  max-width: 520px;
  margin: 0 auto 30px;
  color: var(--muted);
}

.contact-success-routes {
  display: grid;
  max-width: 620px;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 auto;
}

.contact-success-routes .button {
  width: 100%;
  margin: 0;
}

.inquiry-message-preview {
  max-width: 620px;
  margin: 34px auto 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
}

.inquiry-message-preview header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.inquiry-message-preview header span,
.inquiry-message-preview header strong {
  display: block;
}

.inquiry-message-preview header span {
  margin-bottom: 3px;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.inquiry-message-preview header strong {
  font-size: 14px;
}

.inquiry-message-preview .button {
  width: auto;
  min-height: 38px;
  margin: 0;
  padding: 0 14px;
  font-size: 11px;
}

.inquiry-message-preview pre {
  max-height: 238px;
  margin: 0;
  padding: 18px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #f4f7f9;
  color: #263846;
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.65;
  white-space: pre-wrap;
  word-break: break-word;
}

.inquiry-message-preview > p {
  min-height: 16px;
  margin: 7px 0 0;
  color: #176f55;
  font-size: 10px;
}

.contact-success .text-button {
  margin: 10px auto 0;
}

.contact-success > .privacy-note {
  justify-content: center;
  margin-top: 22px;
  text-align: center;
}

.inner-footer .brand-copy small {
  color: #93a2ae;
}

.generic-page-section {
  min-height: 64vh;
  padding-top: 130px;
}

.generic-page-shell {
  max-width: 980px;
}

.generic-page-content > h1,
.generic-page-shell > div > h1 {
  margin-bottom: 34px;
  font-size: 58px;
  line-height: 1.04;
}

.generic-page-content {
  color: #334253;
}

.generic-page-content h2 {
  margin-top: 56px;
  font-size: 34px;
}

.generic-page-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Persistent product brief */
.project-brief-dock {
  position: fixed;
  z-index: 130;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  padding: 0 12px 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px;
  cursor: pointer;
  background: var(--navy);
  box-shadow: 0 14px 38px rgba(3, 17, 30, 0.24);
  color: #f7fafb;
  font-size: 12px;
  font-weight: 750;
  transition: transform 160ms ease, background 160ms ease, opacity 160ms ease;
}

.project-brief-dock[hidden] {
  display: none;
}

.project-brief-dock:hover {
  transform: translateY(-2px);
  background: #092f50;
}

.project-brief-dock.is-obscured {
  pointer-events: none;
  opacity: 0;
  transform: translateY(12px);
}

.project-brief-dock svg {
  width: 17px;
  height: 17px;
  color: #76a5ff;
}

.project-brief-dock strong {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 3px;
  background: var(--blue);
  font-family: var(--font-mono);
  font-size: 11px;
}

.project-brief-layer {
  position: fixed;
  z-index: 210;
  inset: 0;
  display: flex;
  justify-content: flex-end;
}

.project-brief-layer[hidden] {
  display: none;
}

.project-brief-backdrop {
  position: absolute;
  inset: 0;
  cursor: default;
  background: rgba(3, 17, 30, 0.66);
  backdrop-filter: blur(3px);
  animation: fade-in 180ms ease both;
}

.project-brief-drawer {
  position: relative;
  display: grid;
  width: min(590px, 100%);
  height: 100dvh;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  outline: 0;
  background: var(--surface);
  box-shadow: -24px 0 70px rgba(3, 17, 30, 0.24);
  animation: project-brief-in 320ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.project-brief-header {
  display: flex;
  min-height: 174px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  background: var(--navy);
  color: #f7fafb;
}

.project-brief-header > div {
  display: grid;
  min-width: 0;
  gap: 7px;
}

.project-brief-header span {
  color: #76a5ff;
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
}

.project-brief-header h2 {
  color: #f7fafb;
  font-size: 30px;
}

.project-brief-header p {
  max-width: 340px;
  margin: 0;
  color: #b9c7d2;
  font-size: 13px;
  line-height: 1.6;
}

.project-brief-header .icon-button {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f7fafb;
}

.project-brief-header .icon-button:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.project-brief-body {
  overflow-y: auto;
  padding: 0 34px 34px;
  overscroll-behavior: contain;
}

.project-brief-toolbar {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line-strong);
}

.project-brief-toolbar > span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.project-brief-toolbar > span strong {
  color: var(--blue);
}

.project-brief-toolbar .text-button:disabled {
  cursor: default;
  opacity: 0.42;
}

.project-brief-scope-summary {
  display: grid;
  gap: 10px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-strong);
}

.project-brief-scope-summary[hidden] {
  display: none;
}

.project-brief-scope-summary > div:first-child {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.project-brief-scope-summary > div:first-child > span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
}

.project-brief-scope-summary strong {
  font-size: 12px;
  font-weight: 700;
}

.project-brief-scope-summary strong b {
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 11px;
}

.project-brief-scope-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.project-brief-scope-progress {
  height: 4px;
  overflow: hidden;
  background: #dce4ea;
}

.project-brief-scope-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--blue);
  transition: width 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.project-brief-items {
  border-bottom: 1px solid var(--line-strong);
}

.project-brief-item {
  display: grid;
  min-height: 190px;
  grid-template-columns: 34px minmax(0, 1fr) 38px;
  align-items: start;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.project-brief-item:last-child {
  border-bottom: 0;
}

.project-brief-index {
  align-self: start;
  padding-top: 26px;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 10px;
}

.project-brief-item-content {
  display: grid;
  min-width: 0;
  gap: 16px;
  padding: 22px 0 24px;
}

.project-brief-item-heading {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.project-brief-item strong {
  overflow-wrap: anywhere;
  font-size: 14px;
}

.project-brief-item p {
  margin: 0;
  color: #3f4e5c;
  font-size: 12px;
}

.project-brief-item small {
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-brief-item .icon-button {
  width: 38px;
  height: 38px;
  margin-top: 18px;
  border: 1px solid transparent;
  color: var(--muted);
}

.project-brief-item .icon-button:hover {
  border-color: var(--line);
  color: var(--blue);
}

.project-brief-item-scope {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
}

.project-brief-item-scope label {
  display: grid;
  min-width: 0;
  gap: 6px;
  color: #3f4e5c;
  font-size: 10px;
  font-weight: 700;
}

.project-brief-item-scope input {
  width: 100%;
  min-width: 0;
  height: 42px;
  padding: 0 11px;
  border: 1px solid #bac6cf;
  border-radius: 3px;
  outline: 0;
  background: #f9fbfc;
  color: var(--ink);
  font-family: inherit;
  font-size: 12px;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.project-brief-item-scope input::placeholder {
  color: #6c7b88;
}

.project-brief-item-scope input:focus-visible {
  border-color: var(--blue);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(21, 87, 214, 0.12);
}

.project-brief-empty {
  display: grid;
  min-height: 280px;
  place-items: center;
  align-content: center;
  padding: 42px 20px;
  border-bottom: 1px solid var(--line-strong);
  text-align: center;
}

.project-brief-empty[hidden] {
  display: none;
}

.project-brief-empty svg {
  width: 30px;
  height: 30px;
  margin-bottom: 16px;
  color: var(--blue);
}

.project-brief-empty strong {
  margin-bottom: 6px;
}

.project-brief-empty p {
  max-width: 310px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.project-brief-boundary {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.project-brief-boundary svg {
  width: 17px;
  height: 17px;
  color: var(--blue);
}

.project-brief-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 20px 34px;
  border-top: 1px solid var(--line);
  background: #f5f8fa;
}

.project-brief-actions .button {
  min-width: 0;
  padding-right: 17px;
  padding-left: 17px;
}

.project-brief-actions .is-disabled {
  pointer-events: none;
  opacity: 0.44;
}

.project-brief-toast {
  position: fixed;
  z-index: 230;
  right: 22px;
  bottom: 88px;
  max-width: min(360px, calc(100% - 40px));
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: var(--navy);
  box-shadow: 0 14px 38px rgba(3, 17, 30, 0.24);
  color: #f7fafb;
  font-size: 12px;
  line-height: 1.5;
  animation: fade-in 180ms ease both;
}

.project-brief-toast[hidden] {
  display: none;
}

.products-index-row.is-briefed {
  background: rgba(21, 87, 214, 0.045);
}

.products-index-row.is-briefed .product-check {
  border-color: var(--blue);
  background: rgba(21, 87, 214, 0.1);
  color: var(--blue);
}

.product-review-evidence .text-link {
  min-height: 30px;
  grid-column: 2;
  justify-self: start;
  margin-top: 4px;
  font-size: 11px;
}

.product-review-actions .button.is-saved:disabled {
  border-color: #2d7a61;
  background: #2d7a61;
  color: #f7fafb;
  opacity: 1;
}

@keyframes project-brief-in {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@media (max-width: 720px) {
  .project-brief-dock {
    right: 14px;
    bottom: 14px;
  }

  .project-brief-header {
    min-height: 158px;
    padding: 26px 20px;
  }

  .project-brief-header h2 {
    font-size: 27px;
  }

  .project-brief-body {
    padding-right: 20px;
    padding-bottom: 26px;
    padding-left: 20px;
  }

  .project-brief-item {
    grid-template-columns: 28px minmax(0, 1fr) 38px;
    gap: 9px;
  }

  .project-brief-item-scope {
    grid-template-columns: 1fr;
  }

  .project-brief-scope-summary > div:first-child {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .project-brief-actions {
    grid-template-columns: 1fr;
    padding: 14px 20px max(14px, env(safe-area-inset-bottom));
  }

  .project-brief-actions .button {
    width: 100%;
  }

  .project-brief-toast {
    right: 14px;
    bottom: 78px;
  }
}

@keyframes inner-panel-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .inner-site-header .desktop-nav,
  .inner-site-header .header-contact {
    display: none;
  }

  .inner-site-header {
    grid-template-columns: 1fr auto;
  }

  .inner-site-header .menu-toggle {
    display: grid;
  }

  .inner-hero-content {
    width: calc(100% - 64px);
  }

  .role-column,
  .capability-panel-content,
  .evidence-copy {
    padding: 48px;
  }

  .input-rail {
    grid-template-columns: 1fr 1fr;
  }

  .input-item:nth-child(2) {
    border-right: 0;
  }

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

  .guide-layout,
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .guide-nav,
  .contact-aside {
    position: static;
  }

  .guide-nav {
    grid-template-columns: 1fr 1fr;
  }

  .guide-nav a:nth-child(odd) {
    padding-right: 18px;
    border-right: 1px solid var(--line);
  }

  .guide-nav a:nth-child(even) {
    padding-left: 18px;
  }
}

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

  .inner-hero::before {
    background: linear-gradient(180deg, rgba(5, 20, 33, 0.34) 0%, rgba(5, 20, 33, 0.9) 48%, rgba(5, 20, 33, 0.98) 100%);
  }

  .inner-hero-content {
    width: calc(100% - 40px);
    padding: 110px 0 40px;
  }

  .inner-hero h1 {
    font-size: 48px;
  }

  .inner-hero-content > p {
    font-size: 16px;
  }

  .inner-hero-actions {
    display: grid;
  }

  .inner-hero-actions .button {
    width: 100%;
  }

  .inner-facts {
    grid-template-columns: 1fr;
  }

  .inner-fact {
    min-height: 82px;
    padding: 17px 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(247, 250, 251, 0.14);
  }

  .inner-section {
    padding: 76px 0;
  }

  .role-grid,
  .evidence-split,
  .capability-panel,
  .family-section {
    grid-template-columns: 1fr;
  }

  .role-column {
    min-height: 0;
    padding: 32px 24px;
  }

  .role-column + .role-column {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .role-column h3 {
    font-size: 28px;
  }

  .evidence-split > figure,
  .capability-panel figure {
    min-height: 420px;
  }

  .evidence-copy,
  .capability-panel-content {
    padding: 48px 20px;
  }

  .input-rail {
    grid-template-columns: 1fr;
  }

  .input-item,
  .input-item:nth-child(2) {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .input-item span {
    margin-bottom: 14px;
  }

  .inner-cta-band .section-shell {
    grid-template-columns: 1fr;
  }

  .inner-cta-band h2 {
    font-size: 34px;
  }

  .inner-cta-actions {
    display: grid;
  }

  .inner-cta-actions .button {
    width: 100%;
  }

  .capability-tabs {
    gap: 26px;
  }

  .capability-stage,
  .capability-panel {
    min-height: 0;
  }

  .scope-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .guide-nav {
    grid-template-columns: 1fr;
  }

  .guide-nav a:nth-child(odd),
  .guide-nav a:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
  }

  .family-section {
    gap: 22px;
  }

  .family-count {
    font-size: 34px;
  }

  .contact-page-form,
  .contact-success {
    padding: 32px 20px;
  }

  .inquiry-readiness {
    margin: 0 -20px 28px;
    padding: 22px 20px 20px;
  }

  .inquiry-readiness-heading {
    display: grid;
    gap: 8px;
  }

  .inquiry-readiness-heading > span {
    max-width: none;
    text-align: left;
  }

  .inquiry-readiness-items {
    grid-template-columns: 1fr 1fr;
    gap: 11px 18px;
  }

  .inquiry-readiness-items > span:last-child {
    grid-column: 1 / -1;
  }

  .inquiry-draft-row {
    align-items: start;
  }

  .inquiry-readiness > p {
    margin-left: 0;
  }

  .contact-success-heading h2 {
    font-size: 29px;
  }

  .contact-success-routes {
    grid-template-columns: 1fr;
  }

  .inquiry-message-preview {
    margin-top: 28px;
  }

  .inquiry-message-preview header {
    align-items: end;
  }

  .inquiry-message-preview pre {
    max-height: 270px;
    padding: 14px;
  }
}

.products-hero > img {
  object-position: center 48%;
  filter: saturate(0.76) contrast(1.04);
}

.products-hero::after {
  position: absolute;
  z-index: -1;
  top: 10%;
  bottom: 10%;
  left: 0;
  width: 16vw;
  min-width: 160px;
  max-width: 260px;
  border-left: 1px solid rgba(118, 165, 255, 0.68);
  box-shadow: -8px 0 26px rgba(21, 87, 214, 0.28), 8px 0 26px rgba(21, 87, 214, 0.06);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-120%, 0, 0);
}

.products-hero.scan-ready::after {
  animation: catalog-optical-scan 13s cubic-bezier(0.45, 0, 0.55, 1) 700ms infinite;
}

@keyframes catalog-optical-scan {
  0%,
  19% {
    opacity: 0;
    transform: translate3d(-120%, 0, 0);
  }
  27% {
    opacity: 0.68;
  }
  61% {
    opacity: 0.46;
    transform: translate3d(calc(100vw + 120%), 0, 0);
  }
  69%,
  100% {
    opacity: 0;
    transform: translate3d(calc(100vw + 120%), 0, 0);
  }
}

.products-catalog-section {
  padding-top: 92px;
}

.products-index-table {
  border-bottom: 1px solid var(--line);
}

.products-index-row[hidden] {
  display: none;
}

.products-index-row .product-check {
  border-color: rgba(21, 87, 214, 0.28);
  background: rgba(21, 87, 214, 0.06);
  color: var(--blue);
}

.products-index-row .product-check svg {
  width: 14px;
  height: 14px;
  stroke-width: 1.8;
}

.products-index-row .product-name > span:last-child {
  overflow-wrap: anywhere;
}

.products-index-row .row-action {
  text-decoration: none;
}

.products-row-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  align-items: center;
  gap: 8px;
}

.product-direct-inquiry {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  color: var(--ink);
}

.product-direct-inquiry:hover {
  border-color: var(--blue);
  background: rgba(21, 87, 214, 0.06);
  color: var(--blue);
}

.product-direct-inquiry svg {
  width: 16px;
  height: 16px;
}

.product-review-layer {
  position: fixed;
  z-index: 180;
  inset: 0;
  display: flex;
  justify-content: flex-end;
}

.product-review-layer[hidden] {
  display: none;
}

.product-review-backdrop {
  position: absolute;
  inset: 0;
  cursor: default;
  background: rgba(3, 17, 30, 0.64);
  backdrop-filter: blur(3px);
  animation: fade-in 180ms ease both;
}

.product-review-panel {
  position: relative;
  display: grid;
  width: min(620px, 100%);
  height: 100dvh;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  outline: 0;
  background: var(--surface);
  box-shadow: -24px 0 70px rgba(3, 17, 30, 0.22);
  animation: product-review-in 320ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.product-review-header {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 34px;
  border-bottom: 1px solid var(--line);
}

.product-review-header > div {
  display: grid;
  min-width: 0;
  gap: 6px;
}

.product-review-header span {
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
}

.product-review-header h2 {
  overflow-wrap: anywhere;
  font-size: 28px;
  line-height: 1.08;
}

.product-review-header .icon-button {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
}

.product-review-body {
  overflow-y: auto;
  padding: 32px 34px 38px;
  overscroll-behavior: contain;
}

.product-review-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.product-review-meta span,
.product-review-meta strong {
  font-size: 12px;
  line-height: 1.5;
}

.product-review-meta span {
  color: var(--muted);
}

.product-review-meta strong {
  max-width: 55%;
  color: var(--ink);
  text-align: right;
}

.product-review-description {
  margin: 24px 0 0;
  color: #3f4e5c;
  font-size: 15px;
  line-height: 1.7;
}

.product-specification-group {
  margin: 34px 0 0;
  padding: 0;
  border: 0;
}

.product-specification-group legend {
  display: grid;
  gap: 6px;
  width: 100%;
  margin-bottom: 16px;
}

.product-specification-group legend span,
.product-review-evidence > div > span {
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
}

.product-specification-group legend strong {
  font-size: 17px;
}

.product-specification-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.product-specification-option {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 76px;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  cursor: pointer;
  background: var(--surface);
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.product-specification-option:hover {
  border-color: rgba(21, 87, 214, 0.55);
}

.product-specification-option.is-selected {
  border-color: var(--blue);
  background: rgba(21, 87, 214, 0.055);
  box-shadow: inset 0 0 0 1px var(--blue);
}

.product-specification-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.product-specification-option:focus-within {
  outline: 3px solid rgba(21, 87, 214, 0.16);
  outline-offset: 1px;
}

.product-specification-marker {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: transparent;
}

.product-specification-option.is-selected .product-specification-marker {
  border-color: var(--blue);
  background: var(--blue);
  color: #f7fafb;
}

.product-specification-marker svg {
  width: 13px;
  height: 13px;
  stroke-width: 2.6;
}

.product-specification-option > span:last-child {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.product-specification-option strong {
  overflow-wrap: anywhere;
  font-size: 13px;
}

.product-specification-option small {
  color: var(--muted);
  font-size: 10px;
}

.product-review-evidence {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.product-review-evidence > div {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 4px 12px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.product-review-evidence > div > svg {
  width: 19px;
  height: 19px;
  grid-row: 1 / span 2;
  color: var(--blue);
  stroke-width: 1.7;
}

.product-review-evidence p {
  margin: 4px 0 0;
  color: #3f4e5c;
  font-size: 13px;
  line-height: 1.65;
}

.product-review-projects {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 7px;
}

.product-review-projects span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #f5f8fa;
  color: #314150;
  font-size: 11px;
  font-weight: 650;
}

.product-review-boundary {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.product-review-boundary svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
}

.product-review-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 20px 34px;
  border-top: 1px solid var(--line);
  background: rgba(247, 250, 251, 0.96);
}

.product-review-actions .button {
  min-width: 0;
  padding-right: 18px;
  padding-left: 18px;
}

@keyframes product-review-in {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.products-catalog-workspace .catalog-controls {
  align-items: end;
  padding-top: 14px;
}

.catalog-filter-stack {
  display: grid;
  min-width: 0;
  gap: 14px;
}

.catalog-filter-group {
  display: grid;
  min-width: 0;
  gap: 8px;
}

.catalog-filter-label {
  color: #607080;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.products-catalog-workspace .filter-tabs,
.project-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  overflow: visible;
}

.products-catalog-workspace .filter-tab,
.project-filter {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  cursor: pointer;
  background: #fbfcfd;
  color: #536373;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.2;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.products-catalog-workspace .filter-tab::after {
  display: none;
}

.products-catalog-workspace .filter-tab:hover,
.products-catalog-workspace .filter-tab.is-active,
.project-filter:hover,
.project-filter.is-active {
  border-color: rgba(21, 87, 214, 0.48);
  background: rgba(21, 87, 214, 0.08);
  color: var(--blue);
}

.products-catalog-workspace .filter-tab:focus-visible,
.project-filter:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(21, 87, 214, 0.16);
}

.products-index-note {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(320px, 1.35fr) auto;
  align-items: center;
  gap: 44px;
  margin-top: 42px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.products-index-note > div {
  display: grid;
  gap: 7px;
}

.products-index-note > div span {
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.products-index-note > div strong {
  max-width: 340px;
  font-size: 15px;
  line-height: 1.5;
}

.products-index-note > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.products-index-note > .text-link {
  justify-self: end;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .products-index-note {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .products-index-note > .text-link {
    justify-self: start;
  }

  .products-index-row .products-row-actions {
    grid-area: action;
  }

  .products-index-row .product-review-trigger {
    width: 44px;
  }
}

@media (max-width: 720px) {
  .products-catalog-section {
    padding-top: 68px;
  }

  .filter-label-full {
    display: none;
  }

  .filter-label-short {
    display: inline;
  }

  .products-catalog-workspace .catalog-controls {
    padding-top: 12px;
  }

  .products-catalog-workspace .filter-tabs,
  .project-filter-tabs {
    gap: 7px;
  }

  .products-catalog-workspace .filter-tab,
  .project-filter {
    min-height: 44px;
    padding: 0 10px;
    font-size: 11px;
  }

  .products-hero > img {
    object-position: center;
  }

  .product-review-header {
    min-height: 96px;
    padding: 20px;
  }

  .product-review-header h2 {
    font-size: 24px;
  }

  .product-review-body {
    padding: 24px 20px 30px;
  }

  .product-review-meta {
    display: grid;
    gap: 5px;
  }

  .product-review-meta strong {
    max-width: none;
    text-align: left;
  }

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

  .product-review-actions {
    grid-template-columns: 1fr;
    padding: 14px 20px max(14px, env(safe-area-inset-bottom));
  }

  .product-review-actions .button {
    width: 100%;
  }
}

/* OEM project scope builder */
.oem-builder-section {
  padding-top: 96px;
}

.oem-builder {
  border: 1px solid var(--line);
  background: var(--surface);
}

.oem-builder-toolbar {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 30px;
}

.oem-builder-toolbar > div {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.oem-builder-toolbar strong,
.oem-builder-toolbar span {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.oem-builder-toolbar span {
  color: var(--muted);
}

.oem-builder-toolbar .text-button {
  min-height: 44px;
}

.oem-builder-progress {
  height: 3px;
  overflow: hidden;
  background: #dce4ea;
}

.oem-builder-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--blue);
  transition: width 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.oem-builder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.72fr);
  align-items: start;
  border-top: 1px solid var(--line);
}

.oem-builder-controls {
  min-width: 0;
  padding: 0 48px;
  border-right: 1px solid var(--line);
}

.oem-builder-group {
  margin: 0;
  padding: 38px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.oem-builder-group:last-child {
  border-bottom: 0;
}

.oem-builder-group legend {
  display: grid;
  gap: 6px;
  width: 100%;
  margin-bottom: 24px;
}

.oem-builder-group legend span {
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
}

.oem-builder-group legend strong {
  color: var(--navy-deep);
  font-size: 16px;
}

.oem-option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.oem-option {
  position: relative;
  display: grid;
  min-height: 94px;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 13px;
  padding: 18px;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
  transition: border-color 160ms ease, background-color 160ms ease;
}

.oem-option:hover,
.oem-option.is-selected {
  border-color: rgba(21, 87, 214, 0.42);
  background: rgba(21, 87, 214, 0.05);
}

.oem-option > input,
.oem-segmented input,
.oem-document-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.oem-option-check,
.oem-document-options label > span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid #a8b5c1;
  border-radius: 4px;
  background: var(--surface);
  color: transparent;
}

.oem-option-check svg,
.oem-document-options label > span svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.2;
}

.oem-option input:checked + .oem-option-check,
.oem-document-options input:checked + span {
  border-color: var(--blue);
  background: var(--blue);
  color: #f7fafb;
}

.oem-option input:focus-visible + .oem-option-check,
.oem-document-options input:focus-visible + span,
.oem-segmented input:focus-visible + span {
  outline: 3px solid rgba(21, 87, 214, 0.3);
  outline-offset: 3px;
}

.oem-option > span:last-child {
  display: grid;
  gap: 5px;
}

.oem-option strong {
  color: var(--navy-deep);
  font-size: 13px;
}

.oem-option small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.oem-segmented {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.oem-segmented label {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.oem-segmented label + label {
  border-left: 1px solid var(--line);
}

.oem-segmented span {
  display: grid;
  min-height: 54px;
  place-items: center;
  padding: 0 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  transition: background-color 160ms ease, color 160ms ease;
}

.oem-segmented input:checked + span {
  background: var(--navy-deep);
  color: #f7fafb;
}

.oem-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.oem-detail-grid label {
  display: grid;
  gap: 8px;
}

.oem-detail-grid label > span {
  color: #526273;
  font-size: 11px;
  font-weight: 700;
}

.oem-detail-wide {
  grid-column: 1 / -1;
}

.oem-detail-grid input,
.oem-detail-grid select {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid #c8d2db;
  border-radius: 4px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-size: 12px;
}

.oem-detail-grid input:focus,
.oem-detail-grid select:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(21, 87, 214, 0.12);
}

.oem-document-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.oem-document-options label {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  color: #465768;
  font-size: 11px;
  font-weight: 700;
}

.oem-scope-summary {
  position: sticky;
  top: var(--header-height);
  display: grid;
  min-height: 700px;
  align-content: start;
  padding: 38px;
  background: var(--navy-deep);
  color: #f7fafb;
}

.oem-summary-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(247, 250, 251, 0.15);
}

.oem-summary-heading span,
.oem-summary-heading strong,
.oem-summary-section > span {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
}

.oem-summary-heading span,
.oem-summary-section > span {
  color: #91a8b8;
}

.oem-summary-heading strong {
  color: #76a5ff;
  font-size: 15px;
}

.oem-summary-section {
  display: grid;
  gap: 8px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(247, 250, 251, 0.12);
}

.oem-summary-section p {
  margin: 0;
  color: #d8e1e7;
  font-size: 12px;
  line-height: 1.6;
}

.oem-summary-note {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  padding: 24px 0;
  color: #aebec9;
}

.oem-summary-note svg {
  width: 17px;
  color: #76a5ff;
}

.oem-summary-note p {
  margin: 0;
  font-size: 11px;
  line-height: 1.6;
}

.oem-scope-summary .button {
  width: 100%;
  margin-top: auto;
}

.oem-scope-summary .button:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

@media (max-width: 980px) {
  .oem-builder-layout {
    grid-template-columns: 1fr;
  }

  .oem-builder-controls {
    padding: 0 36px;
    border-right: 0;
  }

  .oem-scope-summary {
    position: static;
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .oem-builder-section {
    padding-top: 72px;
  }

  .oem-builder-toolbar {
    align-items: flex-start;
    padding: 18px 20px;
  }

  .oem-builder-toolbar > div {
    display: grid;
    gap: 5px;
  }

  .oem-builder-controls {
    padding: 0 20px;
  }

  .oem-option-grid,
  .oem-detail-grid,
  .oem-segmented {
    grid-template-columns: 1fr;
  }

  .oem-segmented label + label {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .oem-detail-wide {
    grid-column: auto;
  }

  .oem-document-options {
    display: grid;
  }

  .oem-scope-summary {
    padding: 32px 20px;
  }
}

/* Quality and documentation center */
.inner-site-header .desktop-nav {
  gap: 24px;
}

.quality-hero > img {
  object-position: center 52%;
  filter: saturate(0.72) contrast(1.05) brightness(0.76);
}

.quality-stage-panel figure img {
  filter: saturate(0.76) contrast(1.03);
}

.quality-documents-section {
  padding-top: 96px;
}

.quality-document-workspace {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quality-document-toolbar {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.quality-document-toolbar > div {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.quality-document-toolbar strong {
  color: var(--navy-deep);
  font-family: var(--font-mono);
  font-size: 12px;
}

.quality-document-toolbar > div > span {
  color: var(--muted);
  font-size: 12px;
}

.quality-document-toolbar-actions {
  justify-content: flex-end;
  gap: 12px !important;
}

.quality-draft-clear {
  width: 40px;
  height: 40px;
  border: 1px solid transparent;
  color: var(--muted);
}

.quality-draft-clear:hover {
  border-color: var(--line);
  color: var(--blue);
}

.quality-select-all {
  min-height: 44px;
  white-space: nowrap;
}

.quality-request-context {
  display: grid;
  min-height: 118px;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  border-top: 1px solid var(--line);
  background: rgba(222, 230, 236, 0.24);
  transition: background-color 180ms ease;
}

.quality-request-context.has-products {
  background: rgba(21, 87, 214, 0.045);
}

.quality-request-context > svg {
  width: 20px;
  height: 20px;
  align-self: start;
  margin-top: 4px;
  color: var(--blue);
}

.quality-request-context > div {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.quality-request-context > div > span {
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
}

.quality-request-context strong {
  overflow-wrap: anywhere;
  color: var(--navy-deep);
  font-size: 14px;
}

.quality-request-context p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.quality-request-context .button {
  min-width: 172px;
  min-height: 44px;
  padding-right: 16px;
  padding-left: 16px;
}

.quality-request-context [hidden] {
  display: none;
}

.quality-document-head,
.quality-document-row {
  display: grid;
  grid-template-columns: 42px minmax(190px, 0.9fr) minmax(240px, 1.15fr) minmax(210px, 0.95fr);
  gap: 24px;
}

.quality-document-head {
  min-height: 48px;
  align-items: center;
  border-top: 1px solid var(--line);
  background: rgba(222, 230, 236, 0.38);
  color: #667687;
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
}

.quality-document-head span:first-child {
  padding-left: 18px;
}

.quality-document-row {
  position: relative;
  min-height: 112px;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  border-top: 1px solid var(--line);
  transition: background-color 180ms ease;
}

.quality-document-row:hover,
.quality-document-row.is-selected {
  background: rgba(21, 87, 214, 0.045);
}

.quality-document-check {
  position: relative;
  display: grid;
  width: 24px;
  height: 24px;
  margin-left: 12px;
  place-items: center;
}

.quality-document-check input {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
  opacity: 0;
}

.quality-document-check > span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid #a7b5c2;
  border-radius: 4px;
  background: var(--surface);
  color: transparent;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.quality-document-check svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.2;
}

.quality-document-check input:checked + span {
  border-color: var(--blue);
  background: var(--blue);
  color: #f7fafb;
}

.quality-document-check input:focus-visible + span {
  outline: 3px solid rgba(21, 87, 214, 0.3);
  outline-offset: 3px;
}

.quality-document-cell {
  color: #526273;
  font-size: 12px;
  line-height: 1.65;
}

.quality-document-name {
  display: grid;
  gap: 7px;
}

.quality-document-name strong {
  color: var(--navy-deep);
  font-size: 15px;
  line-height: 1.35;
}

.quality-document-name small {
  color: var(--muted);
  font-size: 11px;
}

.quality-column-label {
  display: none;
}

.quality-document-actions {
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  border-top: 1px solid var(--line);
}

.quality-document-actions p {
  display: flex;
  max-width: 650px;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.quality-document-actions p svg {
  width: 17px;
  flex: 0 0 auto;
  color: var(--blue);
}

.quality-document-actions .button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.quality-evidence-band {
  min-height: 650px;
}

.quality-faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.28fr);
  align-items: start;
  gap: 84px;
}

.quality-faq-layout .inner-heading {
  position: sticky;
  top: calc(var(--header-height) + 36px);
  margin-bottom: 0;
}

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

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

.quality-faq-item summary {
  display: grid;
  min-height: 92px;
  grid-template-columns: 1fr 24px;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  color: var(--navy-deep);
  font-size: 16px;
  font-weight: 700;
  list-style: none;
}

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

.quality-faq-item summary svg {
  width: 18px;
  transition: transform 180ms ease;
}

.quality-faq-item[open] summary svg {
  transform: rotate(180deg);
}

.quality-faq-item p {
  max-width: 680px;
  padding: 0 48px 30px 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 980px) {
  .quality-document-head {
    display: none;
  }

  .quality-document-row {
    grid-template-columns: 42px 1fr 1fr;
    gap: 10px 22px;
    padding: 24px 0;
  }

  .quality-document-check {
    grid-row: 1 / span 2;
  }

  .quality-document-name {
    grid-column: 2 / -1;
  }

  .quality-document-cell:not(.quality-document-name) {
    display: grid;
    gap: 4px;
  }

  .quality-column-label {
    display: block;
    color: #768696;
    font-family: var(--font-mono);
    font-size: 9px;
    text-transform: uppercase;
  }

  .quality-faq-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .quality-faq-layout .inner-heading {
    position: static;
  }
}

@media (max-width: 720px) {
  .quality-hero > img {
    object-position: 63% center;
  }

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

  .quality-documents-section {
    padding-top: 72px;
  }

  .quality-stage-tabs {
    gap: 24px;
  }

  .quality-document-toolbar {
    align-items: flex-start;
    padding: 18px 0;
  }

  .quality-document-toolbar > div {
    display: grid;
    gap: 5px;
  }

  .quality-document-toolbar > div:first-child {
    min-width: 0;
    flex: 1 1 auto;
  }

  .quality-document-toolbar-actions {
    display: flex !important;
    flex: 0 0 auto;
  }

  .quality-request-context {
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: start;
    padding: 20px 0;
  }

  .quality-request-context .button {
    width: 100%;
    grid-column: 1 / -1;
  }

  .quality-document-row {
    grid-template-columns: 34px 1fr;
  }

  .quality-document-check {
    grid-row: 1 / span 3;
    margin-left: 0;
  }

  .quality-document-name,
  .quality-document-cell:not(.quality-document-name) {
    grid-column: 2;
  }

  .quality-document-actions {
    align-items: stretch;
    padding: 24px 0;
    flex-direction: column;
    gap: 20px;
  }

  .quality-document-actions .button {
    width: 100%;
  }

  .quality-faq-item summary {
    min-height: 84px;
    font-size: 14px;
  }

  .quality-faq-item p {
    padding-right: 0;
  }
}

@media (max-width: 360px) {
  .quality-hero h1 {
    font-size: 38px;
  }
}

/* Keep the GTranslate control in the header instead of over page content. */
html body div.gt_switcher_wrapper[style] {
  top: 4px !important;
  right: 174px !important;
  bottom: auto !important;
  transform-origin: top right;
}

html body.admin-bar div.gt_switcher_wrapper[style] {
  top: 36px !important;
}

@media (max-width: 980px) {
  html body div.gt_switcher_wrapper[style] {
    top: 8px !important;
    right: 76px !important;
    transform: scale(0.82);
  }
}

@media (max-width: 782px) {
  html body.admin-bar div.gt_switcher_wrapper[style] {
    top: 54px !important;
  }
}

@media (max-width: 360px) {
  .site-header .brand-copy {
    display: none;
  }
}

/* Client-side catalog assistant: public data only, without medical guidance. */
.b2b-support-widget {
  position: fixed;
  z-index: 95;
  right: 24px;
  bottom: 24px;
  width: min(372px, calc(100vw - 32px));
  color: #eef5fa;
  font-family: var(--font-sans);
}

.b2b-support-widget summary {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 48px;
  margin-left: auto;
  padding: 0 15px;
  gap: 9px;
  cursor: pointer;
  list-style: none;
  border: 1px solid rgba(194, 224, 241, 0.3);
  border-radius: 7px;
  background: #07345a;
  box-shadow: 0 12px 30px rgba(3, 20, 35, 0.2);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0;
}

.b2b-support-widget summary::-webkit-details-marker {
  display: none;
}

.b2b-support-widget summary > svg {
  width: 18px;
  color: #83c8ed;
}

.b2b-support-widget summary .b2b-support-chevron {
  width: 15px;
  margin-left: 3px;
  color: #d7e8f1;
  transition: transform 180ms ease;
}

.b2b-support-widget.is-catalog-active:not([open]) {
  right: 12px;
  width: 44px;
}

.b2b-support-widget.is-catalog-active:not([open]) summary {
  width: 44px;
  min-width: 44px;
  padding: 0;
  justify-content: center;
}

.b2b-support-widget.is-catalog-active:not([open]) summary > span,
.b2b-support-widget.is-catalog-active:not([open]) summary .b2b-support-chevron {
  display: none;
}

.b2b-support-widget summary:focus-visible {
  outline: 3px solid rgba(131, 200, 237, 0.72);
  outline-offset: 3px;
}

.b2b-support-widget[open] summary .b2b-support-chevron {
  transform: rotate(180deg);
}

.b2b-support-panel {
  margin: 0 0 10px auto;
  overflow: hidden;
  border: 1px solid rgba(139, 181, 205, 0.38);
  border-radius: 7px;
  background: #062b49;
  box-shadow: 0 20px 48px rgba(3, 20, 35, 0.27);
}

.b2b-support-heading {
  padding: 22px 22px 17px;
  border-bottom: 1px solid rgba(187, 221, 239, 0.2);
}

.b2b-support-heading > span {
  display: block;
  margin-bottom: 7px;
  color: #7dc3e8;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.b2b-support-heading h2 {
  margin: 0;
  color: #f2f7fa;
  font-size: 22px;
  line-height: 1.08;
}

.b2b-support-heading p {
  margin: 8px 0 0;
  color: #bad0df;
  font-size: 12px;
  line-height: 1.55;
}

.b2b-support-transcript {
  display: grid;
  max-height: 282px;
  min-height: 164px;
  padding: 12px;
  gap: 10px;
  overflow-y: auto;
  background: #05263f;
  scrollbar-color: rgba(145, 201, 229, 0.5) transparent;
}

.b2b-support-message {
  display: grid;
  width: min(100%, 316px);
  gap: 6px;
  padding: 12px;
  border: 1px solid rgba(178, 215, 235, 0.2);
  border-radius: 6px;
  background: rgba(13, 56, 85, 0.82);
}

.b2b-support-message--buyer {
  justify-self: end;
  border-color: rgba(125, 202, 234, 0.35);
  background: rgba(28, 110, 151, 0.48);
}

.b2b-support-message > span {
  color: #82cbed;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.b2b-support-message--buyer > span {
  color: #d6effa;
}

.b2b-support-message p {
  margin: 0;
  color: #e7f1f6;
  font-size: 12px;
  line-height: 1.55;
}

.b2b-support-prompts,
.b2b-support-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 3px;
}

.b2b-support-prompts button,
.b2b-support-link {
  min-height: 28px;
  padding: 5px 8px;
  border: 1px solid rgba(134, 205, 237, 0.36);
  border-radius: 4px;
  background: rgba(112, 191, 229, 0.1);
  color: #d5effa;
  font: inherit;
  font-size: 10px;
  line-height: 1.25;
  text-decoration: none;
}

.b2b-support-prompts button {
  cursor: pointer;
}

.b2b-support-prompts button:hover,
.b2b-support-prompts button:focus-visible,
.b2b-support-link:hover,
.b2b-support-link:focus-visible {
  border-color: #90d7f5;
  background: rgba(112, 191, 229, 0.22);
  color: #ffffff;
  outline: none;
}

.b2b-support-results {
  display: grid;
  gap: 6px;
}

.b2b-support-result {
  display: grid;
  gap: 3px;
  padding: 9px;
  border: 1px solid rgba(154, 208, 234, 0.2);
  border-radius: 4px;
  background: rgba(2, 24, 42, 0.36);
}

.b2b-support-result strong {
  color: #ffffff;
  font-size: 11px;
  line-height: 1.35;
}

.b2b-support-result small {
  color: #b8d3e0;
  font-size: 10px;
  line-height: 1.35;
}

.b2b-support-result .b2b-support-link {
  width: max-content;
  margin-top: 3px;
}

.b2b-support-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid rgba(187, 221, 239, 0.16);
  background: #062b49;
}

.b2b-support-form input {
  min-width: 0;
  height: 40px;
  padding: 0 11px;
  border: 1px solid rgba(154, 205, 231, 0.38);
  border-radius: 4px;
  background: #082f50;
  color: #f3f8fb;
  font: inherit;
  font-size: 12px;
}

.b2b-support-form input::placeholder {
  color: #a9c3d2;
}

.b2b-support-form input:focus {
  border-color: #8ed4f3;
  outline: none;
  box-shadow: 0 0 0 3px rgba(126, 203, 239, 0.16);
}

.b2b-support-form button {
  display: grid;
  width: 42px;
  height: 40px;
  place-items: center;
  cursor: pointer;
  border: 1px solid #77caee;
  border-radius: 4px;
  background: #1677c8;
  color: #ffffff;
}

.b2b-support-form button:hover,
.b2b-support-form button:focus-visible {
  background: #2189dc;
  outline: none;
}

.b2b-support-form button svg {
  width: 17px;
}

.b2b-support-actions {
  display: grid;
  padding: 8px;
}

.b2b-support-actions a {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) 16px;
  align-items: center;
  min-height: 58px;
  padding: 9px 10px;
  gap: 10px;
  border-radius: 5px;
  color: #f2f7fa;
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease;
}

.b2b-support-actions a:hover,
.b2b-support-actions a:focus-visible {
  background: rgba(135, 201, 235, 0.14);
  outline: none;
}

.b2b-support-actions a:focus-visible {
  box-shadow: inset 0 0 0 2px #8bd2f2;
}

.b2b-support-actions a > svg:first-child {
  width: 18px;
  color: #83c8ed;
}

.b2b-support-actions a > svg:last-child {
  width: 15px;
  color: #9ccbe2;
}

.b2b-support-actions strong,
.b2b-support-actions small {
  display: block;
}

.b2b-support-actions strong {
  font-size: 12px;
  line-height: 1.35;
}

.b2b-support-actions small {
  margin-top: 1px;
  color: #b2cbd9;
  font-size: 10px;
  line-height: 1.35;
}

.b2b-support-note {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 11px 18px 15px;
  gap: 7px;
  border-top: 1px solid rgba(187, 221, 239, 0.16);
  color: #9fc0d1;
  font-size: 10px;
}

.b2b-support-note svg {
  width: 14px;
  color: #80c8e9;
}

.sourcing-intro-grid,
.sourcing-documents-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: 84px;
}

.sourcing-intro-grid .inner-heading,
.sourcing-documents-grid .inner-heading {
  margin-bottom: 0;
}

.sourcing-intro-note {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f8fbfc;
}

.sourcing-intro-note svg {
  width: 22px;
  color: var(--blue);
}

.sourcing-intro-note p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.sourcing-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sourcing-steps article {
  min-height: 232px;
  padding: 30px 30px 26px;
  border-left: 1px solid var(--line);
}

.sourcing-steps article:first-child {
  border-left: 0;
}

.sourcing-steps span,
.sourcing-category-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
}

.sourcing-steps h3 {
  margin: 0;
  color: var(--navy-deep);
  font-size: 19px;
  line-height: 1.2;
}

.sourcing-steps p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.sourcing-category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.sourcing-category-grid a {
  position: relative;
  display: flex;
  min-height: 225px;
  padding: 25px 21px;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--navy-deep);
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease;
}

.sourcing-category-grid a:hover,
.sourcing-category-grid a:focus-visible {
  background: var(--navy);
  color: #f2f7fa;
  outline: none;
}

.sourcing-category-grid a:focus-visible {
  box-shadow: inset 0 0 0 2px var(--blue);
}

.sourcing-category-grid a:hover span,
.sourcing-category-grid a:focus-visible span,
.sourcing-category-grid a:hover small,
.sourcing-category-grid a:focus-visible small,
.sourcing-category-grid a:hover svg,
.sourcing-category-grid a:focus-visible svg {
  color: #a8d8ed;
}

.sourcing-category-grid span {
  margin-bottom: auto;
}

.sourcing-category-grid strong {
  font-size: 15px;
  line-height: 1.32;
}

.sourcing-category-grid small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.sourcing-category-grid svg {
  position: absolute;
  top: 24px;
  right: 20px;
  width: 16px;
  color: var(--blue);
}

.sourcing-documents {
  padding-top: 0;
}

.sourcing-documents-image {
  min-height: 352px;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--navy);
}

.sourcing-documents-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sourcing-link-list {
  display: grid;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.sourcing-link-list a {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: var(--navy-deep);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.sourcing-link-list a:hover,
.sourcing-link-list a:focus-visible {
  color: var(--blue);
  outline: none;
}

.sourcing-link-list svg {
  width: 16px;
}

.ingredients-reference-table {
  border-top: 1px solid var(--line);
}

.ingredients-reference-head,
.ingredients-reference-table > a {
  display: grid;
  grid-template-columns: minmax(160px, 0.9fr) minmax(170px, 1fr) minmax(280px, 1.55fr) 18px;
  align-items: center;
  gap: 26px;
}

.ingredients-reference-head {
  min-height: 48px;
  color: #718493;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ingredients-reference-table > a {
  min-height: 88px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--navy-deep);
  text-decoration: none;
}

.ingredients-reference-table > a:last-child {
  border-bottom: 1px solid var(--line);
}

.ingredients-reference-table > a:hover,
.ingredients-reference-table > a:focus-visible {
  color: var(--blue);
  outline: none;
}

.ingredients-reference-table > a:focus-visible {
  box-shadow: inset 0 0 0 2px var(--blue);
}

.ingredients-reference-table strong {
  font-size: 16px;
}

.ingredients-reference-table span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.5;
}

.ingredients-reference-table > a > span:last-of-type {
  font-family: var(--font-sans);
  font-size: 12px;
}

.ingredients-reference-table svg {
  width: 16px;
}

.ingredients-project-grid,
.ingredients-boundary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  align-items: center;
  gap: 92px;
}

.ingredients-project-grid .inner-heading,
.ingredients-boundary-grid .inner-heading {
  margin-bottom: 0;
}

.ingredients-project-checklist {
  display: grid;
  border-top: 1px solid var(--line);
}

.ingredients-project-checklist div {
  display: grid;
  min-height: 58px;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--navy-deep);
  font-size: 13px;
  font-weight: 700;
}

.ingredients-project-checklist svg {
  width: 17px;
  color: var(--blue);
}

.ingredients-boundary {
  padding-top: 0;
}

.ingredients-boundary-image {
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--navy);
}

.ingredients-boundary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ingredients-compliance {
  display: flex;
  margin: 20px 0 24px;
  padding: 15px 0;
  gap: 9px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.ingredients-compliance svg {
  width: 17px;
  flex: 0 0 auto;
  color: var(--blue);
}

@media (max-width: 720px) {
  .b2b-support-widget {
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    width: min(372px, calc(100vw - 24px));
  }

  .b2b-support-widget summary {
    width: 46px;
    min-width: 46px;
    min-height: 46px;
    padding: 0;
    justify-content: center;
  }

  .b2b-support-widget:not([open]) {
    width: 46px;
  }

  .b2b-support-widget:not([open]) summary > span,
  .b2b-support-widget:not([open]) summary .b2b-support-chevron {
    display: none;
  }

  /* Keep the expanded catalog panel clear of the existing chat launcher. */
  .b2b-support-widget[open] {
    bottom: max(116px, calc(env(safe-area-inset-bottom) + 104px));
  }

  .sourcing-intro-grid,
  .sourcing-documents-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sourcing-steps {
    grid-template-columns: 1fr;
  }

  .sourcing-steps article {
    min-height: auto;
    padding: 25px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .sourcing-steps article:first-child {
    border-top: 0;
  }

  .sourcing-steps span {
    margin-bottom: 18px;
  }

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

  .sourcing-category-grid a {
    min-height: 180px;
  }

  .sourcing-documents {
    padding-top: 0;
  }

  .sourcing-documents-image {
    min-height: 260px;
  }

  .ingredients-reference-head {
    display: none;
  }

  .ingredients-reference-table > a {
    grid-template-columns: minmax(0, 1fr) 16px;
    gap: 5px 14px;
    min-height: 0;
    padding: 19px 0;
  }

  .ingredients-reference-table strong,
  .ingredients-reference-table svg {
    grid-row: 1;
  }

  .ingredients-reference-table > a > span {
    grid-column: 1;
  }

  .ingredients-reference-table > a > span:first-of-type {
    font-size: 10px;
  }

  .ingredients-reference-table > a > span:last-of-type {
    font-size: 12px;
  }

  .ingredients-project-grid,
  .ingredients-boundary-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .ingredients-boundary-image {
    min-height: 260px;
  }
}

/* Product reference pages keep catalog language while giving each entry a readable B2B profile. */
.product-reference-hero .inner-hero-content > p {
  max-width: 650px;
}

.product-reference-section {
  padding-bottom: 96px;
}

.product-reference-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  gap: 58px;
  align-items: start;
}

.product-reference-main {
  border-top: 1px solid var(--line-strong);
}

.product-reference-copy {
  padding: 35px 0 38px;
  border-bottom: 1px solid var(--line);
}

.product-reference-kicker,
.reference-data-head span,
.reference-data-row > span,
.product-reference-list span,
.product-reference-action-band > div:first-child > span {
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.product-reference-copy h3 {
  max-width: 600px;
  margin: 12px 0 15px;
  font-size: 34px;
  line-height: 1.1;
}

.product-reference-copy p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.product-reference-list {
  display: grid;
}

.product-reference-list article {
  display: grid;
  min-height: 132px;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 15px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.product-reference-list article > svg {
  width: 19px;
  height: 19px;
  margin-top: 3px;
  color: var(--blue);
}

.product-reference-list article > div {
  display: grid;
  gap: 4px;
}

.product-reference-list strong {
  color: var(--ink);
  font-size: 16px;
}

.product-reference-list p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.product-reference-data {
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: #f8fafb;
}

.reference-data-head {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 24px;
  border-bottom: 1px solid var(--line-strong);
  background: var(--navy);
}

.reference-data-head span {
  color: #a9c7ff;
}

.reference-data-head svg {
  width: 20px;
  color: #f3f8fb;
}

.reference-data-row {
  display: grid;
  gap: 8px;
  padding: 21px 24px;
  border-bottom: 1px solid var(--line);
}

.reference-data-row:last-child {
  border-bottom: 0;
}

.reference-data-row > span {
  color: var(--muted);
}

.reference-data-row > strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
}

.reference-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.reference-chip-list span,
.reference-chip-list em {
  max-width: 100%;
  padding: 6px 8px;
  border: 1px solid #cbd7df;
  border-radius: 4px;
  background: var(--surface);
  color: #405160;
  font-family: var(--font-mono);
  font-size: 10px;
  font-style: normal;
  overflow-wrap: anywhere;
}

.product-reference-action-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  margin-top: 70px;
  padding: 36px 40px;
  border: 1px solid rgba(103, 153, 228, 0.34);
  border-radius: 6px;
  background: #eef5fc;
}

.product-reference-action-band h2 {
  max-width: 570px;
  margin: 8px 0 10px;
  font-size: 27px;
  line-height: 1.16;
}

.product-reference-action-band p {
  max-width: 580px;
  margin: 0;
  color: #526272;
  font-size: 13px;
  line-height: 1.65;
}

.product-reference-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.product-reference-actions .button.is-saved:disabled {
  border-color: #2d7a61;
  background: #2d7a61;
  color: #f7fafb;
  opacity: 1;
}

.product-reference-boundary {
  display: grid;
  max-width: 900px;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 11px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.product-reference-boundary svg {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--blue);
}

.product-reference-back {
  margin-top: 32px;
}

.product-reference-empty-section {
  display: grid;
  min-height: min(660px, calc(100vh - 128px));
  place-items: center;
}

.product-reference-empty {
  max-width: 780px;
  text-align: center;
}

.product-reference-empty h1 {
  margin: 13px 0 18px;
  font-size: 54px;
  line-height: 1.04;
}

.product-reference-empty p {
  max-width: 650px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .product-reference-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .product-reference-data {
    max-width: 720px;
  }

  .product-reference-action-band {
    grid-template-columns: 1fr;
  }

  .product-reference-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .product-reference-section {
    padding-bottom: 68px;
  }

  .product-reference-copy {
    padding: 26px 0 30px;
  }

  .product-reference-copy h3 {
    font-size: 28px;
  }

  .product-reference-list article {
    min-height: 0;
    padding: 21px 0;
  }

  .reference-data-head,
  .reference-data-row {
    padding-right: 18px;
    padding-left: 18px;
  }

  .product-reference-action-band {
    gap: 26px;
    margin-top: 48px;
    padding: 27px 22px;
  }

  .product-reference-action-band h2 {
    font-size: 24px;
  }

  .product-reference-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-reference-actions .button {
    width: 100%;
  }

  .product-reference-empty-section {
    min-height: 520px;
  }

  .product-reference-empty h1 {
    font-size: 38px;
  }
}

/* ===== Round 2: Product row enhancements ===== */

/* Zebra striping for product rows */
.product-rows .product-row:nth-child(even) {
  background: rgba(243, 247, 250, 0.55);
}

.product-rows .product-row:nth-child(even):hover,
.product-rows .product-row:nth-child(even).is-selected {
  background: rgba(21, 87, 214, 0.045);
}

/* Category marker uses the single procurement accent. */
.product-category-indicator {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 8px;
  flex-shrink: 0;
  background: var(--blue);
}

/* ===== Products Page Round 3 ===== */

/* Category marker follows the single procurement accent. */
.products-index-row .product-category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.products-index-row .product-category::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  content: "";
  background: var(--blue);
  transition: transform 180ms ease;
}
.products-index-row:hover .product-category::before { transform: scale(1.4); }

/* Zebra striping for product catalog table */
.products-index-row:nth-child(even):not(.is-briefed) {
  background: rgba(245, 248, 250, 0.7);
}
.products-index-row:nth-child(even):not(.is-briefed):hover {
  background: rgba(21, 87, 214, 0.055);
}
.products-index-row.is-briefed {
  background: rgba(21, 87, 214, 0.05);
}
.products-index-row.is-briefed:nth-child(even) {
  background: rgba(21, 87, 214, 0.04);
}

/* Enhanced row hover: subtle shadow + lift */
.products-index-row {
  transition: background 180ms ease, box-shadow 200ms ease, transform 200ms ease;
}
.products-index-row:hover {
  box-shadow: 0 2px 14px rgba(16, 41, 64, 0.07);
  transform: translateX(2px);
}

/* Filter tabs — category-aware active colors */
.products-catalog-workspace .filter-tab[data-products-filter="peptide"]:hover,
.products-catalog-workspace .filter-tab[data-products-filter="peptide"].is-active {
  border-color: rgba(21, 87, 214, 0.5);
  background: rgba(21, 87, 214, 0.08);
  color: #1557d6;
}
.products-catalog-workspace .filter-tab[data-products-filter="cosmetic"]:hover,
.products-catalog-workspace .filter-tab[data-products-filter="cosmetic"].is-active {
  border-color: rgba(21, 87, 214, 0.5);
  background: rgba(21, 87, 214, 0.08);
  color: var(--blue);
}
.products-catalog-workspace .filter-tab[data-products-filter="blends"]:hover,
.products-catalog-workspace .filter-tab[data-products-filter="blends"].is-active {
  border-color: rgba(21, 87, 214, 0.5);
  background: rgba(21, 87, 214, 0.08);
  color: var(--blue);
}
.products-catalog-workspace .filter-tab[data-products-filter="biochemical"]:hover,
.products-catalog-workspace .filter-tab[data-products-filter="biochemical"].is-active {
  border-color: rgba(21, 87, 214, 0.5);
  background: rgba(21, 87, 214, 0.08);
  color: var(--blue);
}
.products-catalog-workspace .filter-tab[data-products-filter="lab"]:hover,
.products-catalog-workspace .filter-tab[data-products-filter="lab"].is-active {
  border-color: rgba(21, 87, 214, 0.5);
  background: rgba(21, 87, 214, 0.08);
  color: var(--blue);
}

/* Live pulse indicator on catalog count */
.catalog-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.catalog-count::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--blue);
}

/* Inner CTA band decorative gradient overlay */
.inner-cta-band {
  position: relative;
  isolation: isolate;
}
.inner-cta-band::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background:
    radial-gradient(ellipse 65% 160% at 22% center, rgba(118, 165, 255, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse 40% 130% at 88% center, rgba(21, 213, 147, 0.06) 0%, transparent 50%);
}
.inner-cta-band .section-shell {
  position: relative;
  z-index: 1;
}

/* Product review panel header subtle accent */
.product-review-header {
  background: linear-gradient(180deg, rgba(21, 87, 214, 0.035) 0%, transparent 100%);
}

/* ===== Contact Page Round 3 ===== */

/* Contact channels hover enhancement */
.contact-channel {
  transition: background 180ms ease, padding-left 180ms ease;
  padding-left: 0;
}
.contact-channel:hover {
  background: rgba(21, 87, 214, 0.04);
  padding-left: 6px;
}
.contact-channel .contact-channel-arrow {
  transition: transform 200ms ease;
}
.contact-channel:hover .contact-channel-arrow {
  transform: translateX(3px);
}

/* Form field enhanced focus states */
.form-grid input:focus,
.form-grid textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 1px 0 var(--blue), 0 4px 16px rgba(21, 87, 214, 0.08);
}
.form-grid input:not(:placeholder-shown):valid,
.form-grid textarea:not(:placeholder-shown):valid {
  border-color: rgba(21, 149, 110, 0.4);
}

/* Inquiry readiness — animated progress bar fill */
.inquiry-readiness-progress span {
  transition: width 360ms cubic-bezier(0.16, 1, 0.3, 1), background-color 280ms ease;
}
.inquiry-readiness.is-ready .inquiry-readiness-progress {
  background: rgba(21, 149, 110, 0.15);
}

/* Inquiry readiness item completion animation */
.inquiry-readiness-items > span svg {
  transition: color 200ms ease, transform 250ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.inquiry-readiness-items > span.is-complete svg {
  color: var(--green);
  transform: scale(1.15);
}

/* Success checkmark bounce animation */
.contact-success-heading > svg {
  animation: success-check-bounce 560ms cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: 120ms;
}
@keyframes success-check-bounce {
  0% { opacity: 0; transform: scale(0.3); }
  60% { transform: scale(1.15); }
  100% { opacity: 1; transform: scale(1); }
}

/* Success route buttons lift on hover */
.contact-success-routes .button {
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.contact-success-routes .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(16, 41, 64, 0.12);
}

/* Message preview copy feedback text */
.inquiry-message-preview > p {
  min-height: 20px;
  margin: 8px 0 0;
  color: var(--green);
  font-size: 12px;
  font-family: var(--font-mono);
  transition: opacity 200ms ease;
}

/* ===== OEM Capability Page Round 3 ===== */

/* Capability tab hover background */
.capability-tab {
  padding: 0 4px;
  transition: color 180ms ease;
}
.capability-tab:hover {
  color: var(--blue);
}

/* Capability panel smooth transition */
.capability-panel {
  animation: oem-panel-in 420ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes oem-panel-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Evidence list enhanced styling */
.evidence-list li svg {
  color: var(--green);
}

/* OEM option card enhanced selected state */
.oem-option.is-selected {
  border-color: rgba(21, 87, 214, 0.5);
  box-shadow: 0 0 0 1px rgba(21, 87, 214, 0.14);
}

/* Scope table zebra striping */
.scope-row:nth-child(even) {
  background: rgba(245, 248, 250, 0.6);
}
.scope-row {
  padding: 14px 24px;
  border-radius: 2px;
  transition: background 180ms ease;
}
.scope-row:hover {
  background: rgba(21, 87, 214, 0.04);
}

/* OEM builder progress bar smooth transition */
.oem-builder-progress span {
  transition: width 360ms cubic-bezier(0.16, 1, 0.3, 1), background-color 300ms ease;
}

/* ===== Remaining Pages Round 3: Company / Guide / Quality / 404 ===== */

/* — Company Profile — */
/* Role column hover */
.role-column {
  transition: background 200ms ease;
}
.role-column:hover {
  background: rgba(21, 87, 214, 0.025);
}

/* Input rail card hover */
.input-item {
  transition: background 180ms ease;
}
.input-item:hover {
  background: rgba(21, 87, 214, 0.02);
}

/* — Product Guide — */
/* Guide nav active indicator */
.guide-nav a {
  transition: color 180ms ease, background 180ms ease, padding-left 180ms ease;
  padding-left: 0;
}
.guide-nav a:hover {
  padding-left: 6px;
  background: rgba(21, 87, 214, 0.03);
}

/* Family section category color dots */
.family-section h2 {
  position: relative;
}
.family-count {
  transition: color 300ms ease;
}

/* Glossary animation improvements */
.guide-glossary details {
  transition: background 200ms ease;
}
.guide-glossary details:hover {
  background: rgba(21, 87, 214, 0.02);
}
.guide-glossary summary::after {
  transition: transform 220ms ease;
}

/* — Quality Documentation — */
/* Quality review cards — hover lift */
.quality-review-card {
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.quality-review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(16, 41, 64, 0.08);
  border-color: rgba(21, 87, 214, 0.25);
}

/* Quality document rows — zebra striping */
.quality-document-row:nth-child(even) {
  background: rgba(245, 248, 250, 0.5);
}

/* Quality document check animation */
.quality-document-check input:checked + span {
  transform: scale(1.08);
}
.quality-document-check span {
  transition: transform 200ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Quality FAQ animation */
.quality-faq details {
  transition: background 200ms ease;
}
.quality-faq details:hover {
  background: rgba(21, 87, 214, 0.02);
}
.quality-faq summary i {
  transition: transform 220ms ease;
}
.quality-faq details[open] summary i {
  transform: rotate(180deg);
}

/* Quality review boundary card */
.quality-review-boundary {
  transition: border-color 200ms ease;
}
.quality-review-boundary:hover {
  border-color: rgba(21, 87, 214, 0.2);
}

/* Evidence split image overlay */
.evidence-split figure {
  position: relative;
  overflow: hidden;
}
.evidence-split figure img {
  transition: transform 3s ease;
}
.evidence-split:hover figure img {
  transform: scale(1.03);
}

/* — 404 Page — */
.error-page-content {
  text-align: center;
  padding: 100px 0;
}
.error-code {
  font-family: var(--font-mono);
  font-size: clamp(96px, 14vw, 180px);
  font-weight: 300;
  line-height: 1;
  color: var(--line-strong);
}
.error-page-content h2 {
  margin: 24px 0 16px;
  font-size: 32px;
}
.error-page-content p {
  max-width: 520px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: 16px;
}
.error-page-content .button {
  display: inline-flex;
}

/* — Generic page.php — */
.generic-page-content {
  max-width: 840px;
  margin: 0 auto;
  padding: 64px 0;
}
.generic-page-content h1 {
  margin-bottom: 24px;
  font-size: 48px;
}
.generic-page-content h2 {
  margin: 40px 0 18px;
  font-size: 28px;
}
.generic-page-content p {
  margin-bottom: 16px;
  color: var(--muted);
  line-height: 1.7;
}
.generic-page-content ul {
  margin: 0 0 20px;
  padding-left: 22px;
  color: var(--muted);
}
.generic-page-content li {
  margin-bottom: 8px;
}

/* ===== After-Sales Page ===== */

/* Support cards grid */
.after-sales-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.after-sales-card {
  position: relative;
  padding: 32px 30px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.after-sales-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(16, 41, 64, 0.08);
  border-color: rgba(21, 87, 214, 0.2);
}
.after-sales-card-number {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--subtle);
  letter-spacing: 0.08em;
}
.after-sales-card > i {
  width: 28px;
  height: 28px;
  color: var(--blue);
  margin-bottom: 16px;
}
.after-sales-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 500;
}
.after-sales-card > p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

/* Featured card (re-order continuity) */
.after-sales-card-featured {
  background: linear-gradient(180deg, rgba(251, 252, 253, 0.98) 0%, rgba(245, 248, 250, 0.96) 100%);
  border-color: rgba(21, 87, 214, 0.18);
}
.after-sales-card-featured > i {
  color: var(--green);
}

/* Detail list inside cards */
.after-sales-detail-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.after-sales-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: #334253;
}
.after-sales-detail-list li > i {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--green);
  stroke-width: 2.2;
}

/* Process steps (A-B-C-D) */
.after-sales-process {
  display: grid;
  gap: 0;
  margin-top: 36px;
}
.after-sales-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 200ms ease;
}
.after-sales-step:last-child {
  border-bottom: none;
}
.after-sales-step:hover {
  padding-left: 8px;
}
.after-sales-step-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
}
.after-sales-step h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 500;
}
.after-sales-step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

/* Support channels */
.after-sales-channels {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}
.after-sales-channels .contact-channel {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: background 180ms ease, padding-left 180ms ease, border-color 180ms ease;
}
.after-sales-channels .contact-channel:hover {
  background: rgba(21, 87, 214, 0.03);
  padding-left: 34px;
  border-color: rgba(21, 87, 214, 0.2);
}
.after-sales-channels .contact-channel > i:first-child {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--blue);
}
.after-sales-channels .contact-channel div {
  flex: 1;
}
.after-sales-channels .contact-channel strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 2px;
}
.after-sales-channels .contact-channel span {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--blue);
  margin-bottom: 8px;
}
.after-sales-channels .contact-channel p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.after-sales-channels .contact-channel-arrow {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--subtle);
  transition: transform 200ms ease, color 200ms ease;
}
.after-sales-channels .contact-channel:hover .contact-channel-arrow {
  transform: translateX(3px);
  color: var(--blue);
}

/* FAQ section reuses .quality-faq styles */

/* Responsive */
@media (max-width: 768px) {
  .after-sales-grid {
    grid-template-columns: 1fr;
  }
  .after-sales-step {
    flex-direction: column;
    gap: 12px;
  }
}

/* ===== Procurement Index ===== */

.procurement-section,
.evidence-section {
  padding: 88px 0;
  background: var(--surface);
}

.evidence-section {
  padding-top: 0;
  background: var(--canvas);
}

.procurement-heading,
.evidence-heading {
  max-width: 720px;
  margin-bottom: 32px;
}

.procurement-heading h2,
.evidence-heading h2 {
  margin-bottom: 12px;
  font-size: 40px;
  font-weight: 750;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.procurement-heading p,
.evidence-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.procurement-index {
  border-top: 1px solid var(--line);
}

.procurement-index-row {
  display: grid;
  min-height: 78px;
  grid-template-columns: minmax(180px, 0.8fr) minmax(0, 1.5fr) auto 20px;
  align-items: center;
  gap: 24px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: background 180ms ease, color 180ms ease;
}

.procurement-index-row:hover,
.procurement-index-row:focus-visible {
  background: rgba(21, 87, 214, 0.045);
  color: var(--blue);
}

.procurement-index-name {
  font-size: 16px;
  font-weight: 750;
}

.procurement-index-reference,
.procurement-index-count {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.45;
}

.procurement-index-count {
  color: #967319;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.procurement-index-row > svg {
  width: 18px;
  height: 18px;
  justify-self: end;
}

.procurement-index-row--all {
  background: rgba(7, 57, 101, 0.035);
}

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

.evidence-item {
  min-height: 180px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.evidence-item:last-child {
  border-right: 0;
}

.evidence-item > span {
  display: block;
  margin-bottom: 20px;
  color: #967319;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.evidence-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.3;
}

.evidence-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .evidence-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .evidence-item:nth-child(2) {
    border-right: 0;
  }

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

@media (max-width: 620px) {
  .procurement-section,
  .evidence-section {
    padding: 64px 0;
  }

  .evidence-section {
    padding-top: 0;
  }

  .procurement-heading h2,
  .evidence-heading h2 {
    font-size: 30px;
  }

  .procurement-index-row {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 7px 16px;
    padding: 19px 0;
  }

  .procurement-index-reference {
    grid-column: 1;
  }

  .procurement-index-count {
    grid-column: 1;
    justify-self: start;
    text-align: left;
  }

  .procurement-index-row > svg {
    grid-column: 2;
    grid-row: 1 / span 3;
  }

  .evidence-band {
    grid-template-columns: 1fr;
  }

  .evidence-item,
  .evidence-item:nth-child(2) {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

/* ===== Products Page Application Filter ===== */

.catalog-application-filter-group {
  margin-top: 4px;
}

.application-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}

.application-filter {
  padding: 7px 14px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
  border-radius: 0;
  white-space: nowrap;
}

.application-filter:hover {
  color: var(--blue);
  background: rgba(21, 87, 214, 0.03);
}

.application-filter.is-active {
  color: var(--blue);
  border-bottom-color: var(--blue);
  font-weight: 600;
}

/* ===== Product Showcase Section ===== */

.product-showcase {
  padding: 72px 0 0;
  background: var(--surface);
}

.product-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 28px;
  align-items: end;
}

.product-showcase-item {
  position: relative;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 3px rgba(16, 42, 67, 0.06), 0 4px 16px rgba(16, 42, 67, 0.04);
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 400ms ease;
}

.product-showcase-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(16, 42, 67, 0.1), 0 2px 8px rgba(16, 42, 67, 0.06);
}

.product-showcase-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.03);
  transition: filter 400ms ease, transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-showcase-item:hover img {
  filter: saturate(0.95) contrast(1.05);
  transform: scale(1.03);
}

.product-showcase-item figcaption {
  padding: 18px 20px 20px;
}

.product-showcase-item figcaption strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
}

.product-showcase-item figcaption small {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.product-showcase-featured {
  transform: translateY(-12px);
}

.product-showcase-featured:hover {
  transform: translateY(-18px);
}

@media (max-width: 980px) {
  .product-showcase-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .product-showcase-featured {
    transform: none;
    grid-column: span 2;
  }

  .product-showcase-featured:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 640px) {
  .product-showcase-grid {
    grid-template-columns: 1fr;
  }

  .product-showcase-featured {
    grid-column: auto;
  }
}

/* ===== Count-up animation for Proof Band ===== */

@keyframes count-up-pop {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  60% {
    transform: translateY(-2px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.proof-stat strong {
  display: inline-block;
  animation: count-up-pop 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.proof-stat:nth-child(1) strong {
  animation-delay: 100ms;
}

.proof-stat:nth-child(2) strong {
  animation-delay: 220ms;
}

@media (prefers-reduced-motion: reduce) {
  .hero-scan,
  .products-hero::after {
    display: none;
  }
}

/* ===== Header scroll transition ===== */

.site-header {
  transition: background 300ms ease, box-shadow 300ms ease, backdrop-filter 300ms ease;
}

.site-header.is-scrolled {
  background: rgba(245, 248, 250, 0.92);
  backdrop-filter: blur(12px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(16, 42, 67, 0.06), 0 4px 20px rgba(16, 42, 67, 0.04);
}

/* ===== Round 7: FAQ Section ===== */

.faq-section {
  padding: 6rem 0;
  background: #fff;
}

.faq-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.faq-heading .section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent, #2d6cdf);
  margin-bottom: 0.75rem;
}

.faq-heading h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--color-ink, #102a43);
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

.faq-heading .section-lead {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-ink-soft, #486581);
  margin: 0;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(16, 42, 67, 0.08);
  border-radius: 10px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 250ms ease, box-shadow 250ms ease;
  background: #fff;
}

.faq-item[open] {
  border-color: rgba(45, 108, 223, 0.25);
  box-shadow: 0 4px 16px rgba(16, 42, 67, 0.06);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-ink, #102a43);
  list-style: none;
  user-select: none;
  transition: background 200ms ease;
}

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

.faq-item summary:hover {
  background: rgba(45, 108, 223, 0.03);
}

.faq-item summary i {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-ink-soft, #486581);
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), color 200ms ease;
}

.faq-item[open] summary i {
  transform: rotate(180deg);
  color: var(--color-accent, #2d6cdf);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  animation: faq-answer-in 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--color-ink-soft, #486581);
  margin: 0;
}

@keyframes faq-answer-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .faq-section {
    padding: 4rem 0;
  }
  .faq-item summary {
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
  }
  .faq-answer {
    padding: 0 1.25rem 1rem;
  }
}
