.qpz-page {
  --qpz-ink: #07131d;
  --qpz-copy: #304955;
  --qpz-muted: #627984;
  --qpz-blue: #1d647f;
  --qpz-blue-bright: #55a6c3;
  --qpz-blue-pale: #e5f0f4;
  --qpz-yellow: #f0b90b;
  --qpz-yellow-pale: #fff6ce;
  --qpz-red: #a83b34;
  --qpz-red-pale: #f8e8e5;
  --qpz-line: #b9cbd2;
  --qpz-paper: #f7fafb;
  --qpz-white: #fff;
}

.qpz-page main {
  min-width: 0;
  overflow: clip;
}

.qpz-page main > * {
  min-width: 0;
}

.qpz-page h1,
.qpz-page h2,
.qpz-page h3 {
  text-wrap: balance;
}

.qpz-page h2 {
  margin-bottom: 18px;
  color: var(--qpz-ink);
  font-size: clamp(2rem, 4.1vw, 4.25rem);
  letter-spacing: -.052em;
  line-height: .98;
}

.qpz-page h3 {
  color: var(--qpz-ink);
  line-height: 1.18;
}

.qpz-page p {
  color: var(--qpz-copy);
  line-height: 1.68;
}

.qpz-page a:focus-visible,
.qpz-page button:focus-visible,
.qpz-page summary:focus-visible {
  outline: 3px solid var(--qpz-blue-bright);
  outline-offset: 3px;
}

.qpz-page figure {
  margin: 0;
}

.qpz-page figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.qpz-hero {
  position: relative;
  padding: clamp(56px, 7vw, 108px) 0 clamp(68px, 8vw, 124px);
  overflow: hidden;
  border-bottom: 1px solid var(--qpz-line);
  background:
    radial-gradient(circle at 88% 16%, rgba(240, 185, 11, .22), transparent 25%),
    radial-gradient(circle at 58% 80%, rgba(85, 166, 195, .16), transparent 30%),
    linear-gradient(138deg, #f8fafb 0%, #edf4f6 58%, #dce9ed 100%);
}

.qpz-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29, 100, 127, .065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 100, 127, .065) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(to right, #000, transparent 68%);
  pointer-events: none;
}

.qpz-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(210px, .58fr) minmax(310px, .82fr);
  align-items: end;
  gap: clamp(24px, 3.1vw, 50px);
}

.qpz-hero-grid > * {
  min-width: 0;
}

.qpz-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 38px;
  color: var(--qpz-muted);
  font-size: .72rem;
  font-weight: 760;
}

.qpz-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.qpz-breadcrumb a:hover {
  color: var(--qpz-blue);
}

.qpz-hero h1 {
  max-width: 850px;
  margin-bottom: 24px;
  color: var(--qpz-ink);
  font-size: clamp(3rem, 6vw, 6.7rem);
  letter-spacing: -.072em;
  line-height: .87;
}

.qpz-hero-lead {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(1.03rem, 1.35vw, 1.25rem);
}

.qpz-safety-banner {
  max-width: 760px;
  margin-bottom: 28px;
  padding: 18px 20px 19px;
  border-left: 5px solid var(--qpz-red);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 16px 42px rgba(7, 19, 29, .08);
}

.qpz-safety-banner span {
  display: block;
  margin-bottom: 6px;
  color: var(--qpz-red);
  font-size: .64rem;
  font-weight: 880;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.qpz-safety-banner strong {
  display: block;
  margin-bottom: 6px;
  color: var(--qpz-ink);
  font-size: 1.03rem;
}

.qpz-safety-banner p {
  margin: 0;
  font-size: .86rem;
  line-height: 1.55;
}

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

.qpz-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--qpz-blue);
  color: var(--qpz-blue);
  font-size: .78rem;
  font-weight: 860;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.qpz-button.is-primary {
  background: var(--qpz-blue);
  color: #fff;
}

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

.qpz-hero-facts {
  display: grid;
  gap: 1px;
  margin: 0;
  border: 1px solid var(--qpz-line);
  background: var(--qpz-line);
}

.qpz-hero-facts div {
  min-width: 0;
  padding: 17px 18px;
  background: rgba(255, 255, 255, .86);
}

.qpz-hero-facts dt {
  margin-bottom: 6px;
  color: var(--qpz-muted);
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.qpz-hero-facts dd {
  margin: 0;
  color: var(--qpz-ink);
  font-size: .96rem;
  font-weight: 870;
  line-height: 1.34;
}

.qpz-hero-visual {
  overflow: hidden;
  border: 1px solid var(--qpz-line);
  background: var(--qpz-white);
  box-shadow: 0 26px 72px rgba(15, 48, 64, .16);
}

.qpz-hero-visual img {
  background: #fff;
}

.qpz-hero-visual figcaption,
.qpz-family-figure figcaption,
.qpz-context-grid figcaption,
.qpz-pitch-grid figcaption,
.qpz-dimension-figure figcaption,
.qpz-supply-grid figcaption,
.qpz-wiring-grid figcaption {
  display: grid;
  gap: 7px;
  padding: 17px 18px 19px;
  border-top: 1px solid var(--qpz-line);
  background: var(--qpz-white);
}

.qpz-hero-visual figcaption span,
.qpz-family-figure figcaption span,
.qpz-context-grid figcaption span,
.qpz-pitch-grid figcaption span,
.qpz-dimension-figure figcaption > span,
.qpz-supply-grid figcaption span,
.qpz-wiring-grid figcaption span {
  color: var(--qpz-blue);
  font-size: .62rem;
  font-weight: 860;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.qpz-hero-visual figcaption strong,
.qpz-family-figure figcaption strong,
.qpz-context-grid figcaption strong,
.qpz-pitch-grid figcaption strong,
.qpz-supply-grid figcaption strong,
.qpz-wiring-grid figcaption strong {
  color: var(--qpz-ink);
  line-height: 1.38;
}

.qpz-hero-visual figcaption p,
.qpz-family-figure figcaption p,
.qpz-context-grid figcaption p,
.qpz-pitch-grid figcaption p,
.qpz-supply-grid figcaption p,
.qpz-wiring-grid figcaption p {
  margin: 0;
  font-size: .84rem;
  line-height: 1.55;
}

.qpz-section-nav {
  position: sticky;
  z-index: 70;
  top: 74px;
  border-bottom: 1px solid var(--qpz-line);
  background: rgba(7, 19, 29, .97);
}

.qpz-section-nav .st-shell {
  display: flex;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: thin;
}

.qpz-section-nav a {
  display: inline-flex;
  min-height: 50px;
  flex: 0 0 auto;
  align-items: center;
  padding: 0 16px;
  border-right: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .84);
  font-size: .69rem;
  font-weight: 820;
  text-decoration: none;
}

.qpz-section-nav a:hover {
  background: rgba(240, 185, 11, .16);
  color: #fff;
}

.qpz-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, .68fr);
  align-items: end;
  gap: clamp(30px, 6vw, 92px);
  margin-bottom: clamp(34px, 5vw, 66px);
}

.qpz-section-head > * {
  min-width: 0;
}

.qpz-section-head h2 {
  margin-bottom: 0;
}

.qpz-section-head > p {
  margin: 0;
  font-size: 1rem;
}

.qpz-boundary {
  background: var(--qpz-white);
}

.qpz-decision-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  list-style: none;
  background: var(--qpz-line);
}

.qpz-decision-flow li {
  min-width: 0;
  padding: clamp(20px, 2.4vw, 30px);
  background: var(--qpz-paper);
}

.qpz-decision-flow li > span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  background: var(--qpz-ink);
  color: #fff;
  font-size: .68rem;
  font-weight: 880;
}

.qpz-decision-flow h3 {
  margin-bottom: 9px;
  font-size: 1.03rem;
}

.qpz-decision-flow p {
  margin: 0;
  font-size: .84rem;
  line-height: 1.58;
}

.qpz-boundary-note {
  display: grid;
  grid-template-columns: minmax(260px, .65fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 24px;
  padding: 22px 24px;
  border: 1px solid #dbb0ac;
  border-left: 6px solid var(--qpz-red);
  background: var(--qpz-red-pale);
}

.qpz-boundary-note strong {
  color: var(--qpz-ink);
  line-height: 1.4;
}

.qpz-boundary-note span {
  color: var(--qpz-copy);
  line-height: 1.55;
}

.qpz-field {
  background:
    linear-gradient(90deg, rgba(29, 100, 127, .055) 1px, transparent 1px),
    linear-gradient(rgba(29, 100, 127, .055) 1px, transparent 1px),
    var(--qpz-paper);
  background-size: 52px 52px;
}

.qpz-field-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, .72fr);
  align-items: center;
  gap: clamp(38px, 7vw, 106px);
}

.qpz-field-grid > * {
  min-width: 0;
}

.qpz-field-copy > p:not(.st-kicker) {
  max-width: 720px;
  font-size: 1.04rem;
}

.qpz-symbols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 32px 0 22px;
  padding: 1px;
  background: var(--qpz-line);
}

.qpz-symbols div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
  background: #fff;
}

.qpz-symbols dt {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: var(--qpz-yellow);
  color: var(--qpz-ink);
  font-weight: 900;
}

.qpz-symbols dd {
  display: grid;
  gap: 4px;
  margin: 0;
}

.qpz-symbols dd strong {
  font-size: .86rem;
}

.qpz-symbols dd span {
  color: var(--qpz-muted);
  font-size: .76rem;
  line-height: 1.45;
}

.qpz-formula {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid var(--qpz-line);
  background: var(--qpz-blue-pale);
}

.qpz-formula span {
  color: var(--qpz-muted);
  font-size: .66rem;
  font-weight: 840;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.qpz-formula strong {
  color: var(--qpz-blue);
  font-size: 1.22rem;
  white-space: nowrap;
}

.qpz-formula p {
  margin: 0;
  font-size: .8rem;
}

.qpz-family-figure {
  border: 1px solid var(--qpz-line);
  background: #fff;
  box-shadow: 0 24px 64px rgba(7, 19, 29, .12);
}

.qpz-mounting {
  background: var(--qpz-ink);
}

.qpz-mounting .st-kicker {
  color: #e8bf3d;
}

.qpz-mounting h2,
.qpz-mounting .qpz-section-head > p {
  color: #fff;
}

.qpz-mounting .qpz-section-head > p {
  color: rgba(255, 255, 255, .7);
}

.qpz-context-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
}

.qpz-context-grid figure {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  background: #fff;
}

.qpz-construction {
  background: var(--qpz-blue-pale);
}

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

.qpz-construction-grid article {
  display: grid;
  min-width: 0;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--qpz-line);
  background: #fff;
}

.qpz-construction-grid figure {
  border-bottom: 1px solid var(--qpz-line);
  background: #fff;
}

.qpz-construction-grid article > div {
  padding: 21px 20px 24px;
}

.qpz-construction-grid article > div > span {
  display: block;
  margin-bottom: 12px;
  color: var(--qpz-blue);
  font-size: .62rem;
  font-weight: 870;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.qpz-construction-grid h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.qpz-construction-grid p {
  margin: 0;
  font-size: .84rem;
  line-height: 1.58;
}

.qpz-models {
  background: #fff;
}

.qpz-pitch-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .7fr);
  align-items: stretch;
  gap: 18px;
  margin-bottom: 30px;
}

.qpz-pitch-grid > * {
  min-width: 0;
}

.qpz-pitch-grid figure {
  overflow: hidden;
  border: 1px solid var(--qpz-line);
  background: #fff;
}

.qpz-pitch-decisions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--qpz-line);
}

.qpz-pitch-decisions article {
  min-width: 0;
  padding: 24px 22px;
  background: var(--qpz-paper);
}

.qpz-pitch-decisions article > span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  margin-bottom: 30px;
  padding: 0 10px;
  background: var(--qpz-yellow);
  color: var(--qpz-ink);
  font-size: .7rem;
  font-weight: 900;
}

.qpz-pitch-decisions h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.qpz-pitch-decisions strong {
  display: block;
  color: var(--qpz-blue);
  font-size: .86rem;
  line-height: 1.45;
}

.qpz-pitch-decisions p {
  margin: 12px 0 0;
  font-size: .82rem;
}

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

.qpz-model-card {
  min-width: 0;
  border: 1px solid var(--qpz-line);
  background: #fff;
}

.qpz-model-card > header {
  padding: 22px 22px 19px;
  background: var(--qpz-ink);
  color: #fff;
}

.qpz-model-card > header span {
  display: block;
  margin-bottom: 7px;
  color: #e8bf3d;
  font-size: .64rem;
  font-weight: 860;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.qpz-model-card > header h3 {
  margin: 0;
  color: #fff;
  font-size: 1.25rem;
}

.qpz-table-wrap {
  max-width: 100%;
  overflow-x: auto;
}

.qpz-table-wrap table {
  width: 100%;
  min-width: 610px;
  border-collapse: collapse;
  font-size: .8rem;
}

.qpz-table-wrap th,
.qpz-table-wrap td {
  padding: 13px 14px;
  border-right: 1px solid var(--qpz-line);
  border-bottom: 1px solid var(--qpz-line);
  color: var(--qpz-ink);
  text-align: left;
  vertical-align: middle;
}

.qpz-table-wrap thead th {
  background: var(--qpz-blue-pale);
  font-size: .68rem;
  letter-spacing: .03em;
}

.qpz-table-wrap tbody th {
  background: #f5f8f9;
  font-weight: 870;
  white-space: nowrap;
}

.qpz-table-wrap tr:last-child > * {
  border-bottom: 0;
}

.qpz-table-note {
  margin: 22px 0 0;
  padding: 17px 20px;
  border-left: 5px solid var(--qpz-yellow);
  background: var(--qpz-yellow-pale);
  font-size: .86rem;
}

.qpz-specs {
  background: var(--qpz-paper);
}

.qpz-specs-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .76fr);
  align-items: start;
  gap: clamp(36px, 6vw, 86px);
}

.qpz-specs-grid > * {
  min-width: 0;
}

.qpz-spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 28px 0 0;
  padding: 1px;
  background: var(--qpz-line);
}

.qpz-spec-list div {
  min-width: 0;
  padding: 15px 17px;
  background: #fff;
}

.qpz-spec-list dt {
  margin-bottom: 5px;
  color: var(--qpz-muted);
  font-size: .64rem;
  font-weight: 830;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.qpz-spec-list dd {
  margin: 0;
  color: var(--qpz-ink);
  font-size: .9rem;
  font-weight: 850;
  line-height: 1.38;
}

.qpz-response-note {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-top: 18px;
  padding: 17px 19px;
  border-left: 5px solid var(--qpz-red);
  background: var(--qpz-red-pale);
  color: var(--qpz-copy);
  line-height: 1.5;
}

.qpz-dimension-figure {
  overflow: hidden;
  border: 1px solid var(--qpz-line);
  background: #fff;
  box-shadow: 0 24px 64px rgba(7, 19, 29, .11);
}

.qpz-dimension-figure figcaption > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.qpz-dimension-figure figcaption > div strong {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 10px;
  background: var(--qpz-blue-pale);
  color: var(--qpz-blue);
  font-size: .76rem;
}

.qpz-dimension-figure figcaption p {
  margin: 2px 0 0;
  font-size: .8rem;
  line-height: 1.52;
}

.qpz-supply {
  background: #fff;
}

.qpz-supply-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .76fr);
  align-items: start;
  gap: 18px;
}

.qpz-supply-grid > * {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--qpz-line);
  background: #fff;
}

.qpz-tools {
  display: grid;
  grid-template-columns: minmax(220px, .55fr) minmax(0, 1fr);
  align-items: start;
  gap: 24px;
  margin-top: 18px;
  padding: 22px 24px;
  background: var(--qpz-ink);
  color: #fff;
}

.qpz-tools strong {
  line-height: 1.45;
}

.qpz-tools ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.qpz-tools li {
  min-width: 0;
  padding-left: 16px;
  border-left: 3px solid var(--qpz-yellow);
  color: rgba(255, 255, 255, .78);
  font-size: .8rem;
  line-height: 1.45;
}

.qpz-wiring {
  background: var(--qpz-blue-pale);
}

.qpz-wiring-grid {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(330px, .9fr) minmax(300px, .72fr);
  align-items: start;
  gap: 18px;
}

.qpz-wiring-grid > * {
  min-width: 0;
}

.qpz-wiring-grid > figure {
  overflow: hidden;
  border: 1px solid var(--qpz-line);
  background: #fff;
}

.qpz-wiring-cards {
  display: grid;
  gap: 14px;
}

.qpz-wiring-cards article {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--qpz-line);
  background: #fff;
}

.qpz-wiring-cards article > span {
  display: block;
  margin-bottom: 8px;
  color: var(--qpz-blue);
  font-size: .63rem;
  font-weight: 860;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.qpz-wiring-cards h3 {
  margin-bottom: 16px;
  font-size: 1.16rem;
}

.qpz-wiring-cards dl {
  display: grid;
  gap: 1px;
  margin: 0;
  background: var(--qpz-line);
}

.qpz-wiring-cards dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 10px 12px;
  background: var(--qpz-paper);
}

.qpz-wiring-cards dt {
  color: var(--qpz-muted);
  font-size: .76rem;
}

.qpz-wiring-cards dd {
  margin: 0;
  color: var(--qpz-ink);
  font-size: .78rem;
  font-weight: 850;
}

.qpz-wiring-cards p {
  margin: 14px 0 0;
  font-size: .78rem;
  line-height: 1.5;
}

.qpz-wiring-warning {
  display: grid;
  grid-template-columns: minmax(260px, .6fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 20px;
  padding: 22px 24px;
  border-left: 6px solid var(--qpz-red);
  background: var(--qpz-red-pale);
}

.qpz-wiring-warning strong {
  color: var(--qpz-ink);
  line-height: 1.4;
}

.qpz-wiring-warning span {
  color: var(--qpz-copy);
  line-height: 1.55;
}

.qpz-install {
  background: var(--qpz-ink);
}

.qpz-install .st-kicker {
  color: #e8bf3d;
}

.qpz-install h2,
.qpz-install .qpz-section-head > p {
  color: #fff;
}

.qpz-install .qpz-section-head > p {
  color: rgba(255, 255, 255, .7);
}

.qpz-install-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.qpz-install-grid li {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  background: #fff;
}

.qpz-install-grid figure {
  border-bottom: 1px solid var(--qpz-line);
  background: #fff;
}

.qpz-install-grid li > div {
  padding: 20px 19px 23px;
}

.qpz-install-grid li > div > span {
  display: inline-flex;
  min-width: 40px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 0 9px;
  background: var(--qpz-yellow);
  color: var(--qpz-ink);
  font-size: .68rem;
  font-weight: 900;
}

.qpz-install-grid h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.qpz-install-grid p {
  margin: 0;
  font-size: .8rem;
  line-height: 1.54;
}

.qpz-commissioning {
  display: grid;
  grid-template-columns: minmax(240px, .55fr) minmax(0, 1.2fr);
  gap: 30px;
  margin-top: 18px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .07);
}

.qpz-commissioning header span {
  display: block;
  margin-bottom: 8px;
  color: #e8bf3d;
  font-size: .64rem;
  font-weight: 860;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.qpz-commissioning h3 {
  margin: 0;
  color: #fff;
  font-size: 1.28rem;
}

.qpz-commissioning ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  list-style: none;
  background: rgba(255, 255, 255, .2);
}

.qpz-commissioning li {
  display: grid;
  gap: 5px;
  padding: 14px 15px;
  background: var(--qpz-ink);
}

.qpz-commissioning li strong {
  color: #fff;
  font-size: .82rem;
}

.qpz-commissioning li span {
  color: rgba(255, 255, 255, .66);
  font-size: .75rem;
  line-height: 1.45;
}

.qpz-data {
  background: #fff;
}

.qpz-data-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  list-style: none;
  background: var(--qpz-line);
}

.qpz-data-grid li {
  min-width: 0;
  padding: 20px 18px 22px;
  background: var(--qpz-paper);
}

.qpz-data-grid li > span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  background: var(--qpz-blue);
  color: #fff;
  font-size: .66rem;
  font-weight: 880;
}

.qpz-data-grid h3 {
  margin-bottom: 8px;
  font-size: .96rem;
}

.qpz-data-grid p {
  margin: 0;
  font-size: .78rem;
  line-height: 1.5;
}

.qpz-data-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 20px;
  padding: 18px 20px;
  border-left: 5px solid var(--qpz-yellow);
  background: var(--qpz-yellow-pale);
  color: var(--qpz-copy);
  line-height: 1.5;
}

.qpz-faq {
  background: var(--qpz-blue-pale);
}

.qpz-faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, .58fr) minmax(0, 1.12fr);
  align-items: start;
  gap: clamp(38px, 7vw, 112px);
}

.qpz-faq-grid > * {
  min-width: 0;
}

.qpz-faq-list {
  display: grid;
  gap: 9px;
}

.qpz-faq-list details {
  border: 1px solid var(--qpz-line);
  background: #fff;
}

.qpz-faq-list summary {
  display: grid;
  min-height: 72px;
  grid-template-columns: minmax(0, 1fr) 44px;
  align-items: center;
  gap: 18px;
  padding: 13px 15px 13px 20px;
  color: var(--qpz-ink);
  font-weight: 840;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

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

.qpz-faq-list summary span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: var(--qpz-ink);
  color: #fff;
  font-size: 1.2rem;
  transition: transform .2s ease;
}

.qpz-faq-list details[open] summary span {
  transform: rotate(45deg);
}

.qpz-faq-list details p {
  margin: 0;
  padding: 0 74px 22px 20px;
  font-size: .9rem;
  line-height: 1.62;
}

.qpz-quote {
  background:
    radial-gradient(circle at 10% 15%, rgba(240, 185, 11, .14), transparent 28%),
    var(--qpz-ink);
}

.qpz-quote-grid {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(34px, 6vw, 90px);
}

.qpz-quote-grid > * {
  min-width: 0;
}

.qpz-quote .st-kicker {
  color: #e8bf3d;
}

.qpz-quote h2,
.qpz-quote-copy > p {
  color: #fff;
}

.qpz-quote-copy > p {
  color: rgba(255, 255, 255, .72);
}

.qpz-quote-copy ul {
  display: grid;
  gap: 1px;
  margin: 26px 0 0;
  padding: 1px;
  list-style: none;
  background: rgba(255, 255, 255, .16);
}

.qpz-quote-copy li {
  padding: 12px 14px 12px 32px;
  background: var(--qpz-ink);
  color: rgba(255, 255, 255, .78);
  font-size: .82rem;
  line-height: 1.45;
}

.qpz-quote-copy li::before {
  float: left;
  width: 16px;
  margin-left: -18px;
  color: #e8bf3d;
  content: "—";
}

.qpz-quote-warning {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 17px 18px;
  border-left: 5px solid #e8bf3d;
  background: rgba(255, 255, 255, .08);
}

.qpz-quote-warning strong {
  color: #e8bf3d;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.qpz-quote-warning span {
  color: rgba(255, 255, 255, .76);
  font-size: .82rem;
  line-height: 1.5;
}

.qpz-page .hnl-inquiry-form {
  min-width: 0;
  margin: 0;
  border-top-color: var(--qpz-yellow);
}

.qpz-page .hnl-inquiry-grid,
.qpz-page .hnl-inquiry-grid > label {
  min-width: 0;
}

.qpz-page .hnl-inquiry-grid input,
.qpz-page .hnl-inquiry-grid textarea,
.qpz-page .hnl-inquiry-grid select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.qpz-page .hnl-inquiry-turnstile,
.qpz-page .hnl-inquiry-turnstile iframe {
  width: 300px;
  max-width: 300px;
}

.qpz-page .hnl-inquiry-submit {
  min-height: 50px;
}

@media (max-width: 1180px) {
  .qpz-hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
    align-items: start;
  }

  .qpz-hero-copy {
    grid-column: 1 / -1;
  }

  .qpz-hero-facts {
    align-self: stretch;
  }

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

  .qpz-decision-flow li:nth-child(4),
  .qpz-decision-flow li:nth-child(5) {
    grid-column: span 1;
  }

  .qpz-construction-grid,
  .qpz-install-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .qpz-wiring-grid {
    grid-template-columns: minmax(310px, .82fr) minmax(330px, 1fr);
  }

  .qpz-wiring-grid .is-controller {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(300px, .72fr) minmax(0, 1fr);
    align-items: center;
  }

  .qpz-wiring-grid .is-controller figcaption {
    align-self: stretch;
    align-content: center;
    border-top: 0;
    border-left: 1px solid var(--qpz-line);
  }

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

  .qpz-page .st-site-nav {
    gap: 18px;
  }

  .qpz-page .st-site-nav nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 16px;
  }
}

@media (max-width: 900px) {
  .qpz-page .st-site-nav nav a:not(:last-child) {
    display: none;
  }

  .qpz-section-nav {
    top: 74px;
  }

  .qpz-section-head,
  .qpz-field-grid,
  .qpz-pitch-grid,
  .qpz-specs-grid,
  .qpz-supply-grid,
  .qpz-faq-grid,
  .qpz-quote-grid {
    grid-template-columns: 1fr;
  }

  .qpz-section-head {
    align-items: start;
    gap: 14px;
  }

  .qpz-section-head > p {
    max-width: 680px;
  }

  .qpz-decision-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .qpz-boundary-note,
  .qpz-wiring-warning {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .qpz-context-grid .is-tall {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(300px, .8fr) minmax(0, 1fr);
    align-items: center;
  }

  .qpz-context-grid .is-tall figcaption {
    align-self: stretch;
    align-content: center;
    border-top: 0;
    border-left: 1px solid var(--qpz-line);
  }

  .qpz-tables-grid {
    grid-template-columns: 1fr;
  }

  .qpz-tools {
    grid-template-columns: 1fr;
  }

  .qpz-tools ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .qpz-wiring-grid {
    grid-template-columns: 1fr;
  }

  .qpz-wiring-grid .is-main {
    display: grid;
    grid-template-columns: minmax(300px, .85fr) minmax(0, 1fr);
    align-items: center;
  }

  .qpz-wiring-grid .is-main figcaption {
    align-self: stretch;
    align-content: center;
    border-top: 0;
    border-left: 1px solid var(--qpz-line);
  }

  .qpz-wiring-grid .is-controller {
    grid-column: auto;
  }

  .qpz-commissioning {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .qpz-page .st-site-nav {
    min-height: 68px;
    padding-block: 13px;
  }

  .qpz-page .st-site-nav nav a:last-child {
    min-height: 44px;
  }

  .qpz-section-nav {
    top: 68px;
  }

  .qpz-section-nav a {
    min-height: 48px;
  }

  .qpz-page a,
  .qpz-page button {
    min-height: 44px;
  }

  .qpz-page .hnl-inquiry-consent {
    min-height: 44px;
    align-items: center;
  }

  .qpz-hero {
    padding-top: 42px;
  }

  .qpz-hero-grid,
  .qpz-context-grid,
  .qpz-construction-grid,
  .qpz-install-grid {
    grid-template-columns: 1fr;
  }

  .qpz-hero-copy {
    grid-column: auto;
  }

  .qpz-hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.6rem);
    line-height: .9;
  }

  .qpz-breadcrumb {
    margin-bottom: 26px;
  }

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

  .qpz-button {
    width: 100%;
  }

  .qpz-decision-flow,
  .qpz-symbols,
  .qpz-pitch-decisions,
  .qpz-spec-list,
  .qpz-commissioning ul,
  .qpz-data-grid {
    grid-template-columns: 1fr;
  }

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

  .qpz-context-grid .is-tall,
  .qpz-wiring-grid .is-main,
  .qpz-wiring-grid .is-controller {
    display: block;
  }

  .qpz-context-grid .is-tall figcaption,
  .qpz-wiring-grid .is-main figcaption,
  .qpz-wiring-grid .is-controller figcaption {
    border-top: 1px solid var(--qpz-line);
    border-left: 0;
  }

  .qpz-tools ul {
    grid-template-columns: 1fr;
  }

  .qpz-table-wrap {
    overscroll-behavior-inline: contain;
  }

  .qpz-faq-list summary {
    min-height: 72px;
  }

  .qpz-faq-list summary span {
    width: 44px;
    height: 44px;
  }

  .qpz-faq-list details p {
    padding-right: 20px;
  }

  .qpz-page .hnl-inquiry-submit {
    min-height: 48px;
  }

  .qpz-page .hnl-inquiry-grid input:not([type="checkbox"]):not([type="radio"]),
  .qpz-page .hnl-inquiry-grid select {
    min-height: 44px;
  }

  .qpz-page .hnl-inquiry-turnstile-wrap {
    width: 300px;
    max-width: none;
    margin-inline: calc((100% - 300px) / 2);
  }

  .qpz-page .hnl-inquiry-turnstile,
  .qpz-page .hnl-inquiry-turnstile iframe {
    width: 300px;
    max-width: 300px;
  }
}

@media (max-width: 440px) {
  .qpz-page .st-shell {
    width: min(100% - 24px, 1240px);
  }

  .qpz-page .st-site-nav {
    padding-inline: 12px;
  }

  .qpz-page .st-brand img {
    width: 132px;
  }

  .qpz-page .st-brand span {
    font-size: .55rem;
  }

  .qpz-page .st-site-nav nav a:last-child {
    padding-inline: 11px;
    font-size: .68rem;
  }

  .qpz-section-nav .st-shell {
    width: 100%;
    padding-inline: 12px;
  }

  .qpz-hero h1 {
    font-size: clamp(2.45rem, 12.8vw, 3.5rem);
  }

  .qpz-safety-banner {
    padding: 16px;
  }

  .qpz-section-head {
    margin-bottom: 30px;
  }

  .qpz-model-card > header,
  .qpz-tools,
  .qpz-commissioning {
    padding: 18px;
  }

  .qpz-table-wrap table {
    min-width: 580px;
  }

  .qpz-wiring-cards article {
    padding: 18px;
  }

  .qpz-wiring-cards dl div {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}

@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
  .qpz-page .st-site-nav {
    position: relative;
  }

  .qpz-section-nav {
    position: relative;
    top: auto;
  }

  .qpz-hero {
    padding-block: 42px 58px;
  }

  .qpz-page .st-section {
    padding-block: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .qpz-page *,
  .qpz-page *::before,
  .qpz-page *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
