/* ==========================================================================
   Polaryx — theme styles
   Dark, high-contrast, grid-driven. Orange is an accent, never the ground.
   ========================================================================== */

:root {
	--px-black: #0f1720;
	--px-ink: #16212c;
	--px-panel: #16212c;
	--px-line: #1e2833;
	--px-line-soft: #22303e;
	--px-white: #ffffff;
	--px-fog: #b4bec9;
	--px-mute: #8892a0;
	--px-grey: #f4f6f8;
	--px-grey-line: #e3e6ea;
	--px-orange: #e2541c;
	--px-orange-ink: #c4410f;

	--px-wrap: 1360px;
	--px-gutter: clamp(18px, 3.4vw, 48px);
	--px-section: clamp(52px, 5.5vw, 84px);

	--px-sans: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
	--px-mono: 'IBM Plex Mono', ui-monospace, monospace;
	--px-ease: cubic-bezier(.22, .61, .36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--px-white); text-decoration: none; transition: color .18s var(--px-ease); }
a:hover { color: var(--px-orange); }
button { font-family: inherit; }

:focus-visible { outline: 2px solid var(--px-orange); outline-offset: 3px; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	margin: -1px; padding: 0;
	overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
	white-space: nowrap; border: 0;
}

.px-skip {
	position: absolute; left: 12px; top: -60px; z-index: 999;
	background: var(--px-white); color: var(--px-black);
	padding: 12px 18px; font-size: 13px; font-weight: 600;
	transition: top .2s var(--px-ease);
}
.px-skip:focus { top: 12px; color: var(--px-black); }

.px-wrap { max-width: var(--px-wrap); margin: 0 auto; padding-inline: var(--px-gutter); }
.px-main { display: block; }
.px-section { padding-block: var(--px-section); border-top: 1px solid var(--px-line-soft); }

/* ---------- Type ---------- */

.px-h2 {
	margin: 0;
	font-size: clamp(30px, 4vw, 54px);
	line-height: 1.04;
	font-weight: 600;
	letter-spacing: -.035em;
	text-transform: uppercase;
	text-wrap: balance;
}
.px-h2 span { display: block; }
.px-h2__muted { color: var(--px-mute); }
.px-h3 {
	margin: 0 0 26px;
	font-size: clamp(20px, 2.4vw, 28px);
	font-weight: 600;
	letter-spacing: -.02em;
	text-transform: uppercase;
}
.px-eyebrow {
	margin: 0 0 18px;
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--px-mute);
}
.px-eyebrow--accent { color: var(--px-orange); }
.px-meta { font-size: 12.5px; color: var(--px-mute); margin: 0 0 10px; }
.px-empty { color: var(--px-fog); font-size: 15px; border: 1px solid var(--px-line); padding: 40px 26px; text-align: center; }

.px-sectionhead { max-width: 780px; margin-bottom: clamp(34px, 4vw, 56px); }
.px-sectionhead__text { margin: 22px 0 0; font-size: 17px; line-height: 1.65; color: var(--px-fog); text-wrap: pretty; }
.px-textlink {
	display: inline-flex; align-items: center; gap: 10px;
	margin-top: 24px; font-size: 12.5px; font-weight: 600;
	letter-spacing: .12em; text-transform: uppercase;
}
.px-arrow { color: var(--px-orange); transition: transform .22s var(--px-ease); }
.px-textlink:hover .px-arrow, .px-cat:hover .px-arrow { transform: translateX(4px); }

/* ---------- Buttons ---------- */

.px-btnrow { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.px-btnrow--center { justify-content: center; }

.px-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	padding: 17px 28px;
	font-size: 12px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
	border: 1px solid transparent; white-space: nowrap;
	transition: background .2s var(--px-ease), color .2s var(--px-ease), border-color .2s var(--px-ease);
}
.px-btn--accent { background: var(--px-orange-ink); color: var(--px-white); }
.px-btn--accent:hover { background: var(--px-orange); color: var(--px-white); }
.px-btn--ghost { border-color: #3a4045; color: var(--px-white); }
.px-btn--ghost:hover { border-color: var(--px-orange); color: var(--px-white); }
.px-btn--light { background: var(--px-white); color: var(--px-black); }
.px-btn--light:hover { background: var(--px-orange); color: var(--px-white); }

/* ---------- Image placeholder ---------- */

.px-placeholder {
	display: flex; align-items: center; justify-content: center;
	width: 100%; min-height: 180px; aspect-ratio: 3 / 2;
	background-color: #101314;
	background-image: linear-gradient(90deg, #191d20 1px, transparent 1px), linear-gradient(#191d20 1px, transparent 1px);
	background-size: 16px 16px;
	border: 1px dashed #2b3034;
}
.px-placeholder__label {
	font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
	color: var(--px-mute); text-align: center; padding: 0 18px;
}

/* ---------- Header ---------- */

.px-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(11, 12, 13, .92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--px-line-soft);
	transition: padding .24s var(--px-ease), background .24s var(--px-ease);
}
.px-header__inner {
	max-width: var(--px-wrap); margin: 0 auto;
	padding: 18px var(--px-gutter);
	display: flex; align-items: center; justify-content: space-between; gap: 28px;
	transition: padding .24s var(--px-ease);
}
.px-header.is-compact .px-header__inner { padding-block: 10px; }
.px-header__brand img, .custom-logo { height: 24px; width: auto; object-fit: contain; }

.px-nav { flex: 1; display: flex; justify-content: center; }
.px-nav__list { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.px-nav__list a {
	font-size: 12px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
	color: var(--px-fog); white-space: nowrap;
}
.px-nav__list a:hover, .px-nav__list .current-menu-item > a { color: var(--px-white); }
.px-nav__list .menu-item-has-children { position: relative; }
.px-nav__list .sub-menu {
	position: absolute; left: 0; top: 100%; min-width: 220px;
	background: var(--px-panel); border: 1px solid var(--px-line);
	list-style: none; margin: 10px 0 0; padding: 8px 0;
	opacity: 0; visibility: hidden; transform: translateY(6px);
	transition: opacity .18s var(--px-ease), transform .18s var(--px-ease), visibility .18s;
}
.px-nav__list .menu-item-has-children:hover .sub-menu,
.px-nav__list .menu-item-has-children:focus-within .sub-menu { opacity: 1; visibility: visible; transform: none; }
.px-nav__list .sub-menu a { display: block; padding: 10px 18px; letter-spacing: .08em; }

.px-header__actions { display: flex; align-items: center; gap: 14px; }
.px-iconbtn {
	display: grid; place-items: center; width: 38px; height: 38px;
	background: transparent; border: 1px solid var(--px-line); color: var(--px-fog); cursor: pointer;
	transition: border-color .18s var(--px-ease), color .18s var(--px-ease);
}
.px-iconbtn:hover { border-color: var(--px-orange); color: var(--px-white); }
.px-header__cta { padding: 12px 20px; }

.px-burger {
	display: none; width: 40px; height: 38px;
	background: transparent; border: 1px solid var(--px-line); cursor: pointer;
	position: relative;
}
.px-burger span {
	position: absolute; left: 10px; right: 10px; height: 1px; background: var(--px-white);
	transition: transform .2s var(--px-ease), opacity .2s var(--px-ease);
}
.px-burger span:nth-child(1) { top: 15px; }
.px-burger span:nth-child(2) { top: 21px; }
.px-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.px-burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

.px-search { border-top: 1px solid var(--px-line-soft); background: var(--px-ink); }
.px-search__inner { max-width: var(--px-wrap); margin: 0 auto; padding: 18px var(--px-gutter); }

.px-searchform { display: flex; gap: 10px; }
.px-searchform__input {
	flex: 1; min-width: 0; background: transparent; color: var(--px-white);
	border: 1px solid var(--px-line); padding: 14px 16px; font-size: 15px; outline: none;
	transition: border-color .18s var(--px-ease);
}
.px-searchform__input:focus { border-color: var(--px-orange); }
.px-searchform__input::placeholder { color: #7d858b; }
.px-searchform__submit {
	background: var(--px-orange-ink); color: var(--px-white); border: 0; cursor: pointer;
	padding: 14px 22px; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
	transition: background .2s var(--px-ease);
}
.px-searchform__submit:hover { background: var(--px-orange); }

/* Mobile panel */
.px-mobile {
	position: fixed; inset: 0; z-index: 99;
	background: var(--px-black);
	padding: 96px var(--px-gutter) 40px;
	display: flex; flex-direction: column; justify-content: space-between;
	overflow-y: auto;
}
.px-mobile__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.px-mobile__list a {
	display: block; padding: 16px 0; border-bottom: 1px solid var(--px-line-soft);
	font-size: 22px; font-weight: 600; letter-spacing: -.02em; text-transform: uppercase;
}
.px-mobile__list .sub-menu { list-style: none; margin: 0; padding: 0 0 0 18px; }
.px-mobile__list .sub-menu a { font-size: 15px; font-weight: 500; text-transform: none; letter-spacing: 0; }
.px-mobile__foot { margin-top: 40px; display: flex; flex-direction: column; gap: 16px; }
.px-mobile__mail { font-size: 15px; color: var(--px-fog); }

/* ---------- Hero ---------- */

.px-hero { position: relative; overflow: hidden; background: var(--px-black); min-height: clamp(560px, 78vh, 840px); display: flex; align-items: center; }
.px-hero__grid {
	position: absolute; inset: 0;
	background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(ellipse 80% 70% at 60% 30%, #000 30%, transparent 78%);
}
.px-hero__bloom {
	position: absolute; top: -16%; right: -8%; width: 900px; height: 760px;
	background: radial-gradient(ellipse at center, rgba(232,85,42,.15), transparent 62%);
	animation: px-beam 9s ease-in-out infinite; pointer-events: none;
}
.px-hero__beam {
	position: absolute; top: -10%; left: 46%; width: 42%; height: 130%;
	background: linear-gradient(180deg, rgba(255,255,255,.07), transparent 72%);
	transform: rotate(11deg); filter: blur(30px); animation: px-beam 7s ease-in-out infinite; pointer-events: none;
}
.px-hero__inner { position: relative; width: 100%; padding-block: clamp(56px, 8vw, 96px); }
.px-hero__cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: clamp(28px, 4vw, 56px); align-items: center; }
.px-hero__title {
	margin: 0;
	font-size: clamp(38px, 5.4vw, 96px);
	line-height: .88; font-weight: 700; letter-spacing: -.05em; text-transform: uppercase;
}
.px-hero__title span { display: block; }
.px-hero__title span:last-child { color: var(--px-mute); }
.px-hero__text { margin: 28px 0 0; font-size: clamp(16px, 1.5vw, 19px); line-height: 1.55; color: var(--px-fog); max-width: 460px; text-wrap: pretty; }

.px-hero__scrim {
	position: absolute; inset: 0; pointer-events: none;
	background: linear-gradient(90deg, rgba(11,12,13,.95) 0%, rgba(11,12,13,.88) 42%, rgba(11,12,13,.5) 72%, rgba(11,12,13,.8) 100%);
}
.px-hero__bg { position: absolute; inset: 0; opacity: .26; filter: grayscale(.35) contrast(1.05); }
.px-hero__bg img { width: 100%; height: 100%; object-fit: cover; }

.px-hero__stage { position: relative; min-width: 0; margin-right: clamp(-56px, -4vw, 0px); }
.px-hero__float { position: relative; animation: px-float 11s ease-in-out infinite; }
.px-hero__halo {
	position: absolute; left: 6%; right: 6%; top: 24%; height: 50%;
	background: radial-gradient(ellipse at center, rgba(255,246,232,.62), transparent 66%);
	filter: blur(36px); pointer-events: none;
}
.px-hero__product { position: relative; display: grid; place-items: center; }
.px-hero__product img, .px-hero__product .px-placeholder {
	height: clamp(240px, 30vw, 400px); width: 100%; object-fit: contain;
	filter: drop-shadow(0 40px 56px rgba(0,0,0,.85)) brightness(1.12) contrast(1.06);
}
.px-hero__reflection {
	height: clamp(90px, 12vw, 150px); overflow: hidden; opacity: .15;
	transform: scaleY(-1); filter: blur(1px);
	-webkit-mask-image: linear-gradient(#000, transparent 60%);
	mask-image: linear-gradient(#000, transparent 60%);
}
.px-hero__reflection img { width: 100%; object-fit: contain; object-position: center top; }

.px-hero__readouts {
	position: relative; display: flex; flex-wrap: wrap; gap: 0;
	margin-top: clamp(40px, 6vw, 80px); border-top: 1px solid var(--px-line);
}
.px-hero__readout-item { flex: 1 1 150px; padding: 22px 26px 0 0; }
.px-hero__readout-label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--px-mute); }
.px-hero__readout-value { font-size: 19px; font-weight: 500; letter-spacing: -.01em; margin-top: 9px; white-space: nowrap; }

@keyframes px-float { 0%, 100% { transform: translateY(-8px); } 50% { transform: translateY(8px); } }
@keyframes px-beam { 0%, 100% { opacity: .5; } 50% { opacity: 1; } }

/* ---------- Categories ---------- */

.px-cats { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1px; background: var(--px-line-soft); border: 1px solid var(--px-line-soft); }
.px-cat { display: flex; flex-direction: column; background: var(--px-ink); transition: background .22s var(--px-ease); }
.px-cat:hover { background: var(--px-panel); color: var(--px-white); }
.px-cat__media { display: block; overflow: hidden; background: #0f1213; }
.px-cat__img, .px-cat .px-placeholder { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .5s var(--px-ease); }
.px-cat:hover .px-cat__img { transform: scale(1.05); }
.px-cat__body { padding: 26px 24px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.px-cat__name { font-size: 17px; font-weight: 600; letter-spacing: .02em; text-transform: uppercase; }
.px-cat__text { font-size: 13.5px; line-height: 1.6; color: var(--px-fog); }
.px-cat__cta { margin-top: auto; display: inline-flex; align-items: center; gap: 9px; font-size: 11.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--px-white); }

/* ---------- Products ---------- */

.px-prods { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px; }
.px-prodgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }

.px-prod { display: flex; flex-direction: column; background: var(--px-ink); border: 1px solid var(--px-line-soft); transition: border-color .22s var(--px-ease), transform .22s var(--px-ease); }
.px-prod:hover { border-color: #333a3f; transform: translateY(-3px); }
.px-prod__media { display: block; overflow: hidden; background: #0f1213; border-bottom: 1px solid var(--px-line-soft); }
.px-prod__media img, .px-prod__media .px-placeholder { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; padding: 18px; transition: transform .5s var(--px-ease); }
.px-prod:hover .px-prod__media img { transform: scale(1.05); }
.px-prod__body { padding: 24px 22px 26px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.px-prod__model { margin: 0; font-size: 12px; font-weight: 600; letter-spacing: .1em; color: var(--px-orange); }
.px-prod__title { margin: 0; font-size: 18px; font-weight: 600; letter-spacing: -.02em; line-height: 1.3; }
.px-prod__type { margin: 0; font-size: 13.5px; color: var(--px-fog); }
.px-prod__text { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--px-mute); }
.px-prod__cta { margin-top: auto; align-self: flex-start; }

.px-chips { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 6px 0 0; padding: 0; }
.px-chip { font-size: 11px; letter-spacing: .06em; color: var(--px-fog); border: 1px solid var(--px-line); padding: 5px 9px; }

.px-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.px-filter {
	font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
	border: 1px solid var(--px-line); padding: 11px 17px; color: var(--px-fog);
}
.px-filter:hover { border-color: var(--px-orange); color: var(--px-white); }
.px-filter.is-active { background: var(--px-orange-ink); border-color: var(--px-orange-ink); color: var(--px-white); }

/* ---------- Technology ---------- */

.px-pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1px; background: var(--px-line-soft); border: 1px solid var(--px-line-soft); }
.px-pillar { background: var(--px-ink); padding: 34px 26px 38px; }
.px-pillar__icon { color: var(--px-orange); margin-bottom: 20px; }
.px-pillar__title { margin: 0; font-size: 14px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.px-pillar__text { margin: 10px 0 0; font-size: 13.5px; line-height: 1.65; color: var(--px-fog); text-wrap: pretty; }

/* ---------- Difference ---------- */

.px-diff { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(32px, 5vw, 64px); align-items: center; }
.px-diff__media { overflow: hidden; }
.px-diff__img, .px-diff .px-placeholder { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.px-diff__text { margin: 26px 0 0; font-size: 16.5px; line-height: 1.7; color: var(--px-fog); max-width: 460px; text-wrap: pretty; }

/* ---------- Final CTA ---------- */

.px-finalcta { position: relative; overflow: hidden; border-top: 1px solid var(--px-line-soft); background: var(--px-black); }
.px-finalcta__bg { position: absolute; inset: 0; opacity: .3; }
.px-finalcta__bg img { width: 100%; height: 100%; object-fit: cover; }
.px-finalcta__beam {
	position: absolute; inset: 0;
	background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(232,85,42,.18), transparent 70%);
	pointer-events: none;
}
.px-finalcta__inner { position: relative; padding-block: clamp(72px, 10vw, 148px); text-align: center; }
.px-finalcta__title { margin: 0; font-size: clamp(34px, 6vw, 80px); line-height: .96; font-weight: 700; letter-spacing: -.045em; text-transform: uppercase; }
.px-finalcta__text { margin: 24px auto 0; max-width: 560px; font-size: 17px; line-height: 1.6; color: var(--px-fog); text-wrap: pretty; }

/* ---------- Pages, posts, prose ---------- */

.px-pagehead { padding-block: clamp(48px, 6vw, 92px) clamp(24px, 3vw, 40px); }
.px-pagehead__title { margin: 0; font-size: clamp(32px, 5vw, 62px); line-height: 1.02; font-weight: 600; letter-spacing: -.04em; text-transform: uppercase; text-wrap: balance; }
.px-pagehead__text { margin: 22px 0 0; font-size: 17px; line-height: 1.65; color: var(--px-fog); max-width: 620px; }
.px-pagehead__search { margin-top: 30px; max-width: 520px; }
.px-pagemedia { margin-bottom: clamp(28px, 4vw, 48px); }

.px-prose { max-width: 760px; padding-bottom: var(--px-section); font-size: 16.5px; line-height: 1.75; color: var(--px-fog); }
.px-prose h2, .px-prose h3, .px-prose h4 { color: var(--px-white); letter-spacing: -.02em; margin-top: 2em; }
.px-prose h2 { font-size: 28px; } .px-prose h3 { font-size: 21px; }
.px-prose a { color: var(--px-orange); text-decoration: underline; text-underline-offset: 3px; }
.px-prose blockquote { margin: 2em 0; padding-left: 24px; border-left: 2px solid var(--px-orange); color: var(--px-white); }
.px-prose img { margin: 2em 0; }
.px-prose ul, .px-prose ol { padding-left: 22px; }
.px-prose code { background: var(--px-panel); padding: 2px 6px; font-size: .9em; }

.px-postlist { padding-bottom: var(--px-section); display: grid; gap: 20px; }
.px-postcard { display: grid; grid-template-columns: minmax(0, 260px) 1fr; gap: 26px; align-items: center; border-bottom: 1px solid var(--px-line-soft); padding-bottom: 20px; }
.px-postcard__media img, .px-postcard__media .px-placeholder { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.px-postcard__title { margin: 0; font-size: 22px; font-weight: 600; letter-spacing: -.025em; }
.px-postcard__text { margin: 10px 0 0; color: var(--px-fog); font-size: 14.5px; line-height: 1.65; }

.px-pagination { padding-block: 30px; display: flex; gap: 10px; }
.px-pagination .page-numbers { border: 1px solid var(--px-line); padding: 10px 15px; font-size: 13px; }
.px-pagination .current { background: var(--px-orange-ink); border-color: var(--px-orange-ink); }

.px-postnav { display: flex; justify-content: space-between; gap: 20px; padding-block: 30px; border-top: 1px solid var(--px-line-soft); font-size: 14px; }
.px-comments { padding-bottom: var(--px-section); }

/* ---------- Single product ---------- */

.px-crumbs { padding-block: 26px 0; display: flex; gap: 10px; font-size: 12.5px; color: var(--px-mute); }
.px-pdp { padding-block: clamp(30px, 4vw, 52px); display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(32px, 4vw, 56px); align-items: start; }
.px-pdp__main { border: 1px solid var(--px-line-soft); background: linear-gradient(160deg, #1a1e21, #101314 65%); padding: 30px; }
.px-pdp__main img, .px-pdp__main .px-placeholder { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; }
.px-pdp__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 10px; }
.px-pdp__thumb { border: 1px solid var(--px-line-soft); background: #101314; padding: 10px; }
.px-pdp__thumb img { aspect-ratio: 1; object-fit: contain; }
.px-pdp__title { margin: 0; font-size: clamp(28px, 3.6vw, 44px); line-height: 1.06; font-weight: 600; letter-spacing: -.035em; text-transform: uppercase; }
.px-pdp__type { margin: 14px 0 0; font-size: 16px; color: var(--px-fog); }
.px-pdp__desc { padding-bottom: 0; max-width: none; }

.px-spectable { width: 100%; border-collapse: collapse; }
.px-spectable th, .px-spectable td { text-align: left; padding: 15px 0; border-bottom: 1px solid var(--px-line-soft); font-size: 14.5px; vertical-align: top; }
.px-spectable th { width: 40%; font-weight: 500; color: var(--px-white); }
.px-spectable td { color: var(--px-fog); }

.px-applist { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 0 30px; }
.px-applist__item { display: grid; grid-template-columns: 40px 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--px-line-soft); font-size: 15px; color: var(--px-fog); }
.px-applist__n { color: var(--px-orange); font-size: 12.5px; padding-top: 3px; }

.px-dllist { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--px-line-soft); }
.px-dllist__item a { display: flex; justify-content: space-between; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--px-line-soft); font-size: 15px; }
.px-dllist__meta { color: var(--px-mute); font-size: 12px; }

/* ---------- 404 ---------- */

.px-404 { padding-block: clamp(80px, 12vw, 180px); }
.px-404__title { margin: 0; font-size: clamp(32px, 5vw, 64px); line-height: 1.02; font-weight: 700; letter-spacing: -.045em; text-transform: uppercase; }
.px-404__text { margin: 22px 0 0; max-width: 520px; color: var(--px-fog); font-size: 17px; line-height: 1.6; }
.px-404__search { margin-top: 28px; max-width: 520px; }

/* ---------- Footer ---------- */

.px-footer { border-top: 1px solid var(--px-line-soft); background: var(--px-ink); padding-block: clamp(48px, 6vw, 76px) 30px; }
.px-footer__widgets { padding-bottom: 40px; border-bottom: 1px solid var(--px-line-soft); margin-bottom: 40px; }
.px-footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 40px; }
.px-footer__tagline { margin: 18px 0 0; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--px-orange); }
.px-footer__note { margin: 14px 0 0; font-size: 13px; line-height: 1.7; color: var(--px-mute); max-width: 280px; }
.px-footer__title { margin: 0; font-size: 11.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--px-white); }
.px-footer__list { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.px-footer__list a, .px-footer__list li { font-size: 13.5px; color: var(--px-fog); }
.px-footer__social { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 14px; }
.px-footer__social a { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--px-mute); }
.px-footer__legal { margin-top: clamp(36px, 4vw, 56px); padding-top: 22px; border-top: 1px solid var(--px-line-soft); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 12.5px; color: var(--px-mute); }
.px-footer__legal p { margin: 0; }
.px-footer__legallist { list-style: none; margin: 0; padding: 0; display: flex; gap: 18px; flex-wrap: wrap; }
.px-footer__legallist a { color: var(--px-mute); font-size: 12.5px; }

/* ---------- Reveal on scroll ---------- */

.px-reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--px-ease), transform .6s var(--px-ease); }
.px-reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
	.px-nav { display: none; }
	.px-burger { display: block; }
}
@media (max-width: 560px) {
	.px-header__cta { display: none; }
}

@media (max-width: 720px) {
	.px-postcard { grid-template-columns: 1fr; gap: 16px; }
	.px-pdp__thumbs { grid-template-columns: repeat(3, 1fr); }
	.px-spectable th, .px-spectable td { display: block; width: auto; padding: 0; border: 0; }
	.px-spectable tr { display: block; padding: 14px 0; border-bottom: 1px solid var(--px-line-soft); }
	.px-spectable th { font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--px-mute); margin-bottom: 5px; }
	.px-spectable td { font-size: 15.5px; color: var(--px-white); }
	.px-btnrow .px-btn { flex: 1 1 100%; }
	.px-footer__legal { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
	.px-reveal { opacity: 1; transform: none; }
}


/* ---------- 2026 skin: Plex type, navy grounds, orange accent ---------- */

body { background: #0f1720; color: #ffffff; }

/* type: sentence case, no wide uppercase display */
.px-h2, .px-h3, .px-hero__title, .px-pagehead__title, .px-pdp__title,
.px-cta__title, .px-404__title, .px-cat__name, .px-pillar__title,
.px-prod__title, .px-postcard__title, .px-diff__title, .px-mobile__list a {
	text-transform: none; letter-spacing: -.02em; font-weight: 600;
}
.px-h2 { font-size: clamp(26px, 2.8vw, 38px); line-height: 1.15; }
.px-h2 span { display: inline; }
.px-h2__muted { color: #8892a0; }
.px-h3 { font-size: clamp(19px, 2vw, 24px); }
.px-hero__title { font-size: clamp(32px, 4.2vw, 56px); line-height: 1.06; }
.px-hero__title span { display: inline; }
.px-pagehead__title { font-size: clamp(28px, 3.2vw, 44px); line-height: 1.1; }
.px-pdp__title, .px-cta__title { font-size: clamp(24px, 2.8vw, 40px); line-height: 1.12; }
.px-cat__name, .px-pillar__title, .px-prod__title { font-size: 16.5px; letter-spacing: -.01em; text-transform: none; }
.px-sectionhead__text { font-size: 15px; line-height: 1.7; }

.px-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #e2541c; }
.px-meta, .px-hero__readout-label, .px-spectable th, .px-placeholder__label,
.px-prod__model, .px-chip {
	font-family: 'IBM Plex Mono', ui-monospace, monospace; letter-spacing: 0; text-transform: none;
}

/* buttons + links */
.px-btn, .px-filter, .px-searchform__submit, .px-textlink, .px-cat__cta, .px-prod__cta {
	font-size: 13.5px; font-weight: 600; letter-spacing: 0; text-transform: none;
}
.px-btn { padding: 15px 26px; }
.px-btn--accent { background: #e2541c; color: #ffffff; }
.px-btn--accent:hover { background: #ffffff; color: #0f1720; }
.px-btn--light { background: #ffffff; color: #0f1720; }
.px-btn--light:hover { background: #e2541c; color: #ffffff; }
.px-btn--ghost { border-color: #34424f; color: #ffffff; }
.px-btn--ghost:hover { border-color: #5a6875; background: #1a2530; color: #ffffff; }
.px-btnrow { display: flex; flex-wrap: wrap; gap: 10px; }
.px-searchform__submit { background: #e2541c; letter-spacing: 0; text-transform: none; }

/* header stays navy */
.px-header { background: rgba(15, 23, 32, .95); border-bottom: 1px solid #1e2833; }
.px-nav__list a { font-size: 14px; font-weight: 500; letter-spacing: 0; text-transform: none; color: #d7dce2; }
.px-nav__list a:hover, .px-nav__list .current-menu-item > a { color: #e2541c; }
.px-iconbtn { border-color: #34424f; color: #ffffff; }
.px-header__cta { padding: 13px 20px; }

/* hero + footer navy */
.px-hero, .px-cta, .px-footer { background: #0f1720; }
.px-hero__text, .px-cta__text, .px-footer__note, .px-footer__list a, .px-footer__list li { color: #9aa6b4; }
.px-hero__chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 0; padding: 0; list-style: none; }
.px-hero__chips li {
	font-family: 'IBM Plex Mono', ui-monospace, monospace; font-size: 11.5px; color: #d7dce2;
	border: 1px solid #34424f; background: rgba(15, 23, 32, .65); padding: 6px 11px; white-space: nowrap;
}
.px-hero__readout-label { color: #e2541c; font-size: 11.5px; }
.px-hero__readout-value { color: #ffffff; }
.px-hero__readouts { border-color: #1e2833; }

/* content sections on white */
.px-section, .px-main > .px-wrap, .px-prodgrid, .px-postlist { background: #ffffff; color: #10141a; }
.px-section { border-top: 1px solid #e3e6ea; }
.px-section a, .px-prodgrid a, .px-postlist a { color: #10141a; }
.px-section a:hover, .px-prodgrid a:hover, .px-postlist a:hover { color: #e2541c; }
.px-section .px-h2, .px-section .px-h3, .px-section h2, .px-section h3 { color: #10141a; }
.px-section .px-sectionhead__text, .px-section .px-cat__text,
.px-section .px-pillar__text, .px-section .px-prod__text, .px-section .px-prod__type { color: #5b6572; }
.px-section .px-meta, .px-section .px-placeholder__label { color: #8892a0; }
.px-section .px-textlink, .px-section .px-cat__cta, .px-section .px-prod__model { color: #e2541c; }

/* cards */
.px-cats, .px-prods, .px-pillars, .px-prodgrid {
	background: transparent; border: 0; display: grid; gap: clamp(14px, 1.4vw, 20px);
}
.px-cats { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.px-prods, .px-prodgrid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.px-pillars { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.px-cat, .px-prod, .px-pillar, .px-postcard {
	background: #ffffff; border: 1px solid #e3e6ea;
	transition: border-color .25s var(--px-ease), box-shadow .25s var(--px-ease);
}
.px-cat:hover, .px-prod:hover, .px-postcard:hover { border-color: #c9cfd7; box-shadow: 0 14px 30px rgba(16, 20, 26, .08); background: #ffffff; }
.px-pillar { padding: 24px 22px 26px; }
.px-pillar__icon { color: #e2541c; }
.px-cat__media, .px-prod__media, .px-postcard__media { background: #f4f6f8; }
.px-cat__body, .px-prod__body, .px-postcard__body { padding: 20px 20px 24px; }
.px-placeholder { background: #f4f6f8; color: #8892a0; }
.px-chips { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0 0; padding: 0; list-style: none; }
.px-chip { font-size: 11px; color: #5b6572; background: #f4f6f8; border: 1px solid #e3e6ea; padding: 4px 8px; white-space: nowrap; }

/* filters, tables, misc on light */
.px-pagehead { background: #f4f6f8; color: #10141a; border-bottom: 1px solid #e3e6ea; }
.px-pagehead__title { color: #10141a; }
.px-pagehead__text { color: #5b6572; }
.px-filters { background: #ffffff; display: flex; flex-wrap: wrap; gap: 8px; }
.px-filter { border-color: #c9cfd7; color: #3c4552; }
.px-filter:hover { border-color: #10141a; color: #10141a; }
.px-filter.is-active { background: #e2541c; border-color: #e2541c; color: #ffffff; }
.px-section .px-btn--ghost, .px-prodgrid .px-btn--ghost { border-color: #c9cfd7; color: #10141a; }
.px-section .px-btn--ghost:hover, .px-prodgrid .px-btn--ghost:hover { border-color: #10141a; background: #f4f6f8; color: #10141a; }
.px-section .px-btn--light { background: #10141a; color: #ffffff; }
.px-section .px-btn--light:hover { background: #e2541c; color: #ffffff; }
.px-spectable th { color: #10141a; }
.px-spectable td { color: #5b6572; }
.px-empty { border: 1px dashed #e3e6ea; color: #5b6572; padding: 28px; }
.px-prose { color: #2c3440; }
.px-prose h2, .px-prose h3, .px-prose h4 { color: #10141a; }
.px-prose blockquote { color: #10141a; }
.px-footer__title, .px-footer__tagline { color: #ffffff; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.px-footer__tagline { color: #e2541c; }

@media (max-width: 720px) {
	.px-spectable td { color: #10141a; }
}

/* ---------- Hero: photo ground + product spec card ---------- */

.px-hero { min-height: clamp(560px, 62vw, 760px); }
.px-hero__scrim {
	background: linear-gradient(84deg, #0f1720 0%, rgba(15,23,32,.94) 34%, rgba(15,23,32,.72) 58%, rgba(15,23,32,.35) 100%);
}
.px-hero__bg { opacity: .55; filter: none; }
.px-hero__cols {
	grid-template-columns: minmax(0, 1.7fr) minmax(0, .9fr);
	gap: clamp(14px, 2.2vw, 40px); align-items: center;
}
.px-hero__copy { min-width: 0; }
.px-hero__title { margin: 20px 0 0; text-transform: none; }
.px-hero__text { margin: 18px 0 0; font-size: clamp(14.5px, 1.2vw, 17px); line-height: 1.7; max-width: 480px; }
.px-hero .px-btnrow { margin-top: 30px; }

.px-hero__card {
	min-width: 0; max-width: 300px; justify-self: end; align-self: start;
	background: #ffffff; box-shadow: 0 28px 60px rgba(0, 0, 0, .35);
}
.px-hero__card-media { display: block; background: #f4f6f8; border-bottom: 1px solid #e3e6ea; }
.px-hero__card-media img, .px-hero__card-media .px-placeholder {
	width: 100%; height: clamp(104px, 10vw, 132px); object-fit: contain; padding: 10px;
}
.px-hero__card-body { padding: 14px 16px 16px; }
.px-hero__card-ref {
	margin: 0; font-family: 'IBM Plex Mono', ui-monospace, monospace;
	font-size: 11.5px; color: #e2541c;
}
.px-hero__card-name { margin: 6px 0 0; font-size: 13.5px; font-weight: 600; line-height: 1.35; letter-spacing: -.01em; }
.px-hero__card-name a { color: #10141a; }
.px-hero__card-name a:hover { color: #e2541c; }
.px-hero__card-specs { margin: 10px 0 0; }
.px-hero__card-row {
	display: flex; justify-content: space-between; gap: 12px;
	padding: 7px 0; border-top: 1px solid #edeff2;
}
.px-hero__card-row dt { margin: 0; font-size: 12px; color: #8892a0; }
.px-hero__card-row dd {
	margin: 0; font-family: 'IBM Plex Mono', ui-monospace, monospace;
	font-size: 12px; color: #10141a; text-align: right;
}

.px-hero__readout-label { letter-spacing: .08em; }
.px-hero__readout-value { font-size: clamp(20px, 2vw, 28px); font-weight: 600; }

@media (max-width: 760px) {
	.px-hero__cols { grid-template-columns: minmax(0, 1fr); }
	.px-hero__card { max-width: 320px; justify-self: start; }
}


/* ==========================================================================
   Page templates: about, solutions, certifications, downloads, contact
   ========================================================================== */

.px-band { background: #f4f6f8; border-top: 1px solid #e3e6ea; border-bottom: 1px solid #e3e6ea; }
.px-band .px-h2 { max-width: 620px; }
.px-bandmedia { margin-top: 36px; background: #edeff2; overflow: hidden; }
.px-bandmedia img, .px-bandmedia .px-placeholder { width: 100%; height: clamp(240px, 30vw, 420px); object-fit: cover; }
.px-note { margin: 28px 0 0; font-size: 13.5px; line-height: 1.7; color: #5b6572; max-width: 620px; }
.px-note--tight { margin-top: 14px; }
.px-mono { font-family: var(--px-mono); font-size: 13px; }

/* figures */
.px-figs { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 0 40px; }
.px-fig { padding: 20px 0 24px; border-top: 1px solid #e3e6ea; }
.px-fig__value { font-size: clamp(28px, 3vw, 40px); font-weight: 600; letter-spacing: -.015em; line-height: 1; color: #10141a; }
.px-fig__label { margin-top: 10px; font-size: 12.5px; color: #8892a0; text-wrap: pretty; }

/* text blocks */
.px-blocks { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(28px, 3vw, 48px); margin-top: clamp(36px, 4vw, 56px); }
.px-block { border-top: 1px solid #10141a; padding-top: 20px; }
.px-block__title { font-family: var(--px-mono); font-size: 11.5px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: #e2541c; }
.px-block__text { margin: 14px 0 0; font-size: 15.5px; line-height: 1.75; color: #2c3440; text-wrap: pretty; }

/* numbered steps */
.px-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: clamp(28px, 3vw, 44px); margin-top: clamp(36px, 4vw, 48px); }
.px-step__n { font-size: 30px; font-weight: 600; line-height: 1; color: #e2541c; }
.px-step__title { margin-top: 14px; font-size: 16.5px; font-weight: 500; letter-spacing: -.01em; color: #10141a; }
.px-step__text { margin: 9px 0 0; font-size: 13.5px; line-height: 1.75; color: #5b6572; text-wrap: pretty; }

/* two-column split */
.px-split { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: clamp(30px, 4vw, 60px); align-items: center; }
.px-split__media { background: #f4f6f8; overflow: hidden; }
.px-split__media img, .px-split__media .px-placeholder { width: 100%; height: clamp(260px, 28vw, 380px); object-fit: cover; }

/* solutions */
.px-sols { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: clamp(16px, 1.6vw, 24px); }
.px-sol { background: #ffffff; border: 1px solid #e3e6ea; display: flex; flex-direction: column; transition: border-color .25s var(--px-ease), box-shadow .25s var(--px-ease); }
.px-sol:hover { border-color: #c9cfd7; box-shadow: 0 14px 30px rgba(16, 20, 26, .08); }
.px-sol__media { background: #f4f6f8; overflow: hidden; }
.px-sol__media img, .px-sol__media .px-placeholder { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.px-sol__body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.px-sol__title { margin: 0; font-size: 18px; font-weight: 600; letter-spacing: -.015em; color: #10141a; }
.px-sol__text { margin: 12px 0 0; font-size: 14px; line-height: 1.7; color: #5b6572; text-wrap: pretty; }
.px-sol .px-textlink { margin-top: auto; padding-top: 18px; color: #e2541c; }

/* certification marks */
.px-marks { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(16px, 1.6vw, 24px); }
.px-mark { background: #ffffff; border: 1px solid #e3e6ea; padding: 26px 24px 30px; }
.px-mark__code { font-family: var(--px-mono); font-size: 22px; font-weight: 500; color: #e2541c; }
.px-mark__title { margin: 16px 0 0; font-size: 16.5px; font-weight: 600; letter-spacing: -.01em; color: #10141a; }
.px-mark__text { margin: 10px 0 0; font-size: 13.5px; line-height: 1.75; color: #5b6572; text-wrap: pretty; }
.px-standards { display: flex; flex-wrap: wrap; gap: 8px; margin-top: clamp(30px, 3vw, 42px); }

/* documents table */
.px-tablewrap { overflow-x: auto; }
.px-doctable { width: 100%; border-collapse: collapse; min-width: 620px; }
.px-doctable th, .px-doctable td { text-align: left; padding: 15px 18px 15px 0; border-bottom: 1px solid #e3e6ea; font-size: 14.5px; color: #10141a; vertical-align: middle; }
.px-doctable th { font-family: var(--px-mono); font-size: 11.5px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: #8892a0; border-bottom-color: #10141a; }
.px-doctable tbody tr:hover td { background: #f8f9fb; }
.px-doctable__act { padding-right: 0; text-align: right; white-space: nowrap; }
.px-doctable__act .px-textlink { margin-top: 0; color: #e2541c; }

/* contact */
.px-contact { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, .8fr); gap: clamp(28px, 3.4vw, 56px); align-items: start; }
.px-formcard { background: #ffffff; border: 1px solid #e3e6ea; padding: clamp(24px, 3vw, 38px); }
.px-formcard .px-h3 { margin-bottom: 24px; color: #10141a; }
.px-form { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.px-field { display: flex; flex-direction: column; gap: 8px; }
.px-field > span { font-family: var(--px-mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: #8892a0; }
.px-field input, .px-field textarea {
	font-family: var(--px-sans); font-size: 15px; color: #10141a;
	background: #ffffff; border: 1px solid #c9cfd7; padding: 13px 14px; outline: none;
	transition: border-color .18s var(--px-ease);
}
.px-field input:focus, .px-field textarea:focus { border-color: #e2541c; }
.px-field textarea { resize: vertical; }
.px-field--wide { grid-column: 1 / -1; }
.px-deets { background: #f4f6f8; border: 1px solid #e3e6ea; padding: clamp(24px, 3vw, 34px); }
.px-deets .px-h3 { margin-bottom: 18px; color: #10141a; }
.px-deets__row { display: flex; flex-direction: column; gap: 4px; padding: 14px 0; border-top: 1px solid #e3e6ea; }
.px-deets__row dt { margin: 0; font-family: var(--px-mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: #8892a0; }
.px-deets__row dd { margin: 0; font-size: 15px; color: #10141a; }
.px-deets__list { margin: 0; }

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


/* hidden-attribute guard: .px-mobile and .px-search set display, which beats
   [hidden]'s display:none, so the panels have to opt out explicitly. */
.px-mobile[hidden], .px-search[hidden], [hidden] { display: none !important; }
@media (min-width: 901px) { .px-mobile { display: none !important; } }


/* bundled product photography sits on a light ground, so it is fitted
   rather than cropped and given breathing room inside its frame. */
.px-sol__media { background: #f4f6f8; }
.px-sol__media img { object-fit: contain; padding: 14px; }
.px-bandmedia img { object-fit: contain; padding: clamp(18px, 3vw, 44px); background: #edeff2; }
.px-split__media img { object-fit: contain; padding: clamp(16px, 2.4vw, 34px); }


/* light-ground product shots: fitted inside their frame, never cropped */
.px-prod__media, .px-cat__media, .px-hero__card-media, .px-pdp__main, .px-pdp__thumb { background: #f4f6f8; }
.px-prod__media img, .px-cat__img, .px-hero__card-media img, .px-pdp__main img, .px-pdp__thumb img { object-fit: contain; }
.px-prod__media img { padding: 12px; }
.px-cat__img { padding: 18px; }
.px-diff__img { object-fit: contain; padding: clamp(18px, 3vw, 48px); background: #edeff2; }


/* ==========================================================================
   3D turntable, photographic mosaic, comparison table
   ========================================================================== */

/* 3D turntable */
.px-turn { overflow: hidden; }
.px-turn__stage {
	position: relative; height: clamp(360px, 42vw, 520px); margin-top: clamp(28px, 3.4vw, 48px);
	perspective: 1400px; perspective-origin: 50% 42%;
	cursor: grab; outline: none; touch-action: pan-y;
}
.px-turn__stage:focus-visible { outline: 2px solid #e2541c; outline-offset: 4px; }
.px-turn__stage.is-dragging { cursor: grabbing; }
.px-turn__ring {
	position: absolute; inset: 0; margin: auto;
	width: clamp(200px, 22vw, 280px); height: clamp(240px, 26vw, 330px);
	transform-style: preserve-3d;
	transform: rotateY(0deg);
	will-change: transform;
}
.px-turn__face {
	position: absolute; inset: 0;
	display: flex; flex-direction: column;
	background: #ffffff; border: 1px solid #e3e6ea;
	text-decoration: none; overflow: hidden;
	backface-visibility: hidden;
	box-shadow: 0 22px 44px rgba(16, 20, 26, .10);
	transition: border-color .25s var(--px-ease);
}
.px-turn__face:hover { border-color: #e2541c; }
.px-turn__media { flex: 1; display: block; background: #f4f6f8; overflow: hidden; }
.px-turn__media img, .px-turn__media .px-placeholder { width: 100%; height: 100%; object-fit: contain; padding: 16px; }
.px-turn__meta { display: block; padding: 14px 16px 16px; border-top: 1px solid #e3e6ea; }
.px-turn__ref { display: block; font-family: var(--px-mono); font-size: 11.5px; letter-spacing: .08em; color: #e2541c; }
.px-turn__name { display: block; margin-top: 6px; font-size: 14px; font-weight: 500; letter-spacing: -.01em; color: #10141a; text-wrap: pretty; }
.px-turn__floor {
	position: absolute; left: 50%; bottom: 8%; transform: translateX(-50%);
	width: min(760px, 78%); height: 44px;
	background: radial-gradient(ellipse at center, rgba(16, 20, 26, .16), rgba(16, 20, 26, 0) 70%);
}
.px-turn__controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 26px; }
.px-turn__btn {
	width: 44px; height: 44px; display: grid; place-items: center;
	background: #ffffff; border: 1px solid #c9cfd7; color: #10141a;
	font-size: 16px; cursor: pointer;
	transition: border-color .2s var(--px-ease), color .2s var(--px-ease);
}
.px-turn__btn:hover { border-color: #e2541c; color: #e2541c; }
.px-turn__hint { margin: 0; font-family: var(--px-mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: #8892a0; }

@media (prefers-reduced-motion: reduce) {
	.px-turn__ring { transition: none !important; }
}

/* photographic mosaic */
.px-mosaic { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(12px, 1.4vw, 20px); margin-top: clamp(28px, 3vw, 44px); }
.px-mosaic__tile { margin: 0; background: #ffffff; border: 1px solid #e3e6ea; display: flex; flex-direction: column; }
.px-mosaic__tile--wide { grid-column: span 2; }
.px-mosaic__tile img, .px-mosaic__tile .px-placeholder { width: 100%; height: clamp(200px, 22vw, 300px); object-fit: contain; padding: 18px; background: #f4f6f8; }
.px-mosaic__tile figcaption { padding: 13px 16px 15px; border-top: 1px solid #e3e6ea; font-family: var(--px-mono); font-size: 11.5px; letter-spacing: .04em; color: #5b6572; text-wrap: pretty; }

@media (max-width: 620px) {
	.px-mosaic__tile--wide { grid-column: span 1; }
}

/* comparison table */
.px-comptable th[scope="row"] { font-family: var(--px-mono); font-size: 13px; font-weight: 500; white-space: nowrap; }
.px-comptable th[scope="row"] a { color: #10141a; text-decoration: none; border-bottom: 1px solid #c9cfd7; }
.px-comptable th[scope="row"] a:hover { color: #e2541c; border-bottom-color: #e2541c; }
.px-comptable td { color: #5b6572; }


/* ==========================================================================
   Hero v2, catalogue archive, product detail
   ========================================================================== */

/* hero v2 */
.px-hero2 { background: #ffffff; border-bottom: 1px solid #e3e6ea; overflow: hidden; }
.px-hero2__grid {
	display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(28px, 4vw, 72px); align-items: center;
	padding-block: clamp(44px, 5.5vw, 92px);
}
.px-hero2__copy { min-width: 0; }
.px-hero2__eyebrow {
	margin: 0 0 22px; padding-left: 14px; border-left: 3px solid #e2541c;
	font-family: var(--px-mono); font-size: 12px; letter-spacing: .14em;
	text-transform: uppercase; color: #5b6572;
}
.px-hero2__title {
	margin: 0; color: #10141a;
	font-size: clamp(34px, 4.4vw, 62px); line-height: 1.03;
	font-weight: 600; letter-spacing: -.035em; text-transform: none; text-wrap: balance;
}
.px-hero2__text { margin: 22px 0 0; max-width: 54ch; font-size: clamp(15.5px, 1.3vw, 18px); line-height: 1.65; color: #3c4552; text-wrap: pretty; }
.px-hero2__btns { margin-top: clamp(26px, 3vw, 36px); display: flex; flex-wrap: wrap; gap: 12px; }
.px-btn--outline { border: 1px solid #10141a; color: #10141a; background: transparent; }
.px-btn--outline:hover { background: #10141a; color: #ffffff; }

.px-hero2__readouts {
	margin: clamp(30px, 3.4vw, 46px) 0 0;
	display: grid; grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
	border-top: 1px solid #10141a;
}
.px-hero2__readout { padding: 16px 16px 0 0; }
.px-hero2__readout dt { margin: 0; font-family: var(--px-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: #8892a0; }
.px-hero2__readout dd { margin: 7px 0 0; font-size: clamp(15px, 1.3vw, 19px); font-weight: 600; letter-spacing: -.015em; color: #10141a; }

.px-hero2__stage { position: relative; min-width: 0; min-height: clamp(300px, 34vw, 480px); display: grid; place-items: center; perspective: 1200px; }
.px-hero2__platform {
	position: absolute; inset: 6% 0 6% 0; background: #f4f6f8;
	border: 1px solid #e3e6ea;
}
.px-hero2__object { position: relative; width: 100%; padding: clamp(18px, 3vw, 44px); transform-style: preserve-3d; transition: transform .28s var(--px-ease); }
.px-hero2__objlink { display: block; }
.px-hero2__objlink img, .px-hero2__objlink .px-placeholder {
	width: 100%; height: clamp(220px, 24vw, 340px); object-fit: contain;
	filter: drop-shadow(0 26px 34px rgba(16, 20, 26, .18));
}
.px-hero2__tag {
	position: relative; margin: clamp(14px, 2vw, 22px) auto 0; max-width: 340px;
	background: #ffffff; border: 1px solid #e3e6ea; padding: 16px 18px 18px;
	box-shadow: 0 18px 38px rgba(16, 20, 26, .10);
	transform: translateZ(40px);
}
.px-hero2__tag-ref { display: block; font-family: var(--px-mono); font-size: 11.5px; letter-spacing: .1em; color: #e2541c; }
.px-hero2__tag-name { display: block; margin-top: 7px; font-size: 16px; font-weight: 600; letter-spacing: -.015em; color: #10141a; text-decoration: none; }
.px-hero2__tag-name:hover { color: #e2541c; }
.px-hero2__tag-specs { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 7px; }
.px-hero2__tag-specs li { display: flex; justify-content: space-between; gap: 14px; padding-top: 7px; border-top: 1px solid #eef0f3; }
.px-hero2__tag-specs span { font-family: var(--px-mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: #8892a0; }
.px-hero2__tag-specs b { font-size: 12.5px; font-weight: 600; color: #10141a; text-align: right; }

@media (max-width: 900px) {
	.px-hero2__grid { grid-template-columns: minmax(0, 1fr); }
	.px-hero2__stage { min-height: 0; order: -1; }
}
@media (prefers-reduced-motion: reduce) {
	.px-hero2__object { transition: none; }
}

/* archive header */
.px-archhead { background: #f4f6f8; border-bottom: 1px solid #e3e6ea; padding-block: clamp(26px, 3vw, 44px) clamp(28px, 3.4vw, 48px); }
.px-crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-family: var(--px-mono); font-size: 11.5px; letter-spacing: .06em; color: #8892a0; padding-block: 16px 0; }
.px-crumbs a { color: #5b6572; text-decoration: none; }
.px-crumbs a:hover { color: #e2541c; }
.px-archhead__row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 340px); gap: clamp(22px, 3vw, 48px); align-items: end; margin-top: 22px; }
.px-archhead__title { margin: 14px 0 0; font-size: clamp(30px, 3.6vw, 50px); line-height: 1.04; font-weight: 600; letter-spacing: -.035em; text-transform: none; color: #10141a; }
.px-archhead__text { margin: 16px 0 0; max-width: 56ch; font-size: 15.5px; line-height: 1.7; color: #5b6572; text-wrap: pretty; }
.px-archhead__search .px-searchform__input { background: #ffffff; border-color: #c9cfd7; color: #10141a; }
.px-archhead__search .px-searchform__input::placeholder { color: #8892a0; }

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

/* catalogue layout */
.px-catalogue { display: grid; grid-template-columns: 232px minmax(0, 1fr); gap: clamp(24px, 3vw, 52px); padding-block: clamp(30px, 3.6vw, 56px); background: #ffffff; }
.px-catrail { align-self: start; position: sticky; top: 104px; }
.px-catrail__label { margin: 0 0 14px; font-family: var(--px-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #8892a0; }
.px-catrail__label--spaced { margin-top: 34px; }
.px-catrail__list { list-style: none; margin: 0; padding: 0; border-top: 1px solid #e3e6ea; }
.px-catrail__item {
	display: flex; align-items: center; justify-content: space-between; gap: 12px;
	padding: 13px 0; border-bottom: 1px solid #e3e6ea;
	font-size: 14.5px; color: #10141a; text-decoration: none;
	transition: color .18s var(--px-ease), padding-left .18s var(--px-ease);
}
.px-catrail__item:hover { color: #e2541c; padding-left: 5px; }
.px-catrail__item b { font-family: var(--px-mono); font-size: 11.5px; font-weight: 500; color: #8892a0; }
.px-catrail__item.is-active { color: #e2541c; font-weight: 600; box-shadow: inset 3px 0 0 #e2541c; padding-left: 12px; }
.px-catrail__item.is-active b { color: #e2541c; }

.px-catmain { min-width: 0; }
.px-catbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid #10141a; margin-bottom: clamp(18px, 2vw, 26px); }
.px-catbar__count { margin: 0; font-family: var(--px-mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: #8892a0; }
.px-catbar__count b { color: #10141a; }

@media (max-width: 880px) {
	.px-catalogue { grid-template-columns: minmax(0, 1fr); }
	.px-catrail { position: static; }
	.px-catrail__list { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
}

/* product card v2 */
.px-prodgrid2 { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: clamp(14px, 1.4vw, 22px); }
.px-prod2 { display: flex; flex-direction: column; background: #ffffff; border: 1px solid #e3e6ea; transition: border-color .22s var(--px-ease), box-shadow .22s var(--px-ease); }
.px-prod2:hover { border-color: #c9cfd7; box-shadow: 0 16px 34px rgba(16, 20, 26, .09); }
.px-prod2__media { position: relative; display: block; background: #f4f6f8; overflow: hidden; }
.px-prod2__media img, .px-prod2__media .px-placeholder { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; padding: 16px; transition: transform .45s var(--px-ease); }
.px-prod2:hover .px-prod2__media img { transform: scale(1.04); }
.px-prod2__badge {
	position: absolute; left: 0; top: 0;
	background: #10141a; color: #ffffff;
	font-family: var(--px-mono); font-size: 10px; letter-spacing: .09em; text-transform: uppercase;
	padding: 6px 10px; max-width: 78%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.px-prod2__body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.px-prod2__ref { margin: 0; font-family: var(--px-mono); font-size: 11.5px; letter-spacing: .1em; color: #e2541c; }
.px-prod2__title { margin: 9px 0 0; font-size: 16.5px; font-weight: 600; letter-spacing: -.02em; line-height: 1.3; }
.px-prod2__title a { color: #10141a; text-decoration: none; }
.px-prod2__title a:hover { color: #e2541c; }
.px-prod2__specs { margin: 16px 0 0; display: grid; gap: 0; }
.px-prod2__row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 8px 0; border-top: 1px solid #eef0f3; }
.px-prod2__row dt { margin: 0; font-family: var(--px-mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: #8892a0; }
.px-prod2__row dd { margin: 0; font-size: 13px; font-weight: 600; color: #10141a; text-align: right; }
.px-prod2__cta {
	margin-top: auto; padding-top: 18px;
	display: inline-flex; align-items: center; gap: 9px;
	font-family: var(--px-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
	color: #e2541c; text-decoration: none;
}
.px-prod2:hover .px-prod2__cta .px-arrow { transform: translateX(4px); }

/* product detail */
.px-pdp2 { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(28px, 3.6vw, 64px); padding-block: clamp(24px, 3vw, 44px) clamp(34px, 4vw, 60px); background: #ffffff; align-items: start; }
.px-pdp2__gallery { min-width: 0; }
.px-pdp2__main { background: #f4f6f8; border: 1px solid #e3e6ea; }
.px-pdp2__main img, .px-pdp2__main .px-placeholder { width: 100%; height: clamp(280px, 34vw, 480px); object-fit: contain; padding: clamp(20px, 3vw, 46px); }
.px-pdp2__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 10px; }
.px-pdp2__thumb { background: #f4f6f8; border: 1px solid #e3e6ea; }
.px-pdp2__thumb img { width: 100%; aspect-ratio: 1; object-fit: contain; padding: 8px; }

.px-pdp2__info { min-width: 0; position: sticky; top: 104px; }
.px-pdp2__ref { margin: 0; font-family: var(--px-mono); font-size: 12.5px; letter-spacing: .12em; color: #e2541c; }
.px-pdp2__title { margin: 12px 0 0; font-size: clamp(26px, 3.2vw, 44px); line-height: 1.06; font-weight: 600; letter-spacing: -.035em; text-transform: none; color: #10141a; text-wrap: balance; }
.px-pdp2__type { margin: 12px 0 0; font-size: 14px; color: #5b6572; }
.px-pdp2__desc { margin-top: 20px; font-size: 15.5px; line-height: 1.75; color: #3c4552; }
.px-pdp2__desc p { margin: 0 0 14px; }
.px-pdp2__key { margin: clamp(24px, 3vw, 34px) 0 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); border-top: 1px solid #10141a; }
.px-pdp2__keyitem { padding: 16px 16px 4px 0; }
.px-pdp2__keyitem dt { margin: 0; font-family: var(--px-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: #8892a0; }
.px-pdp2__keyitem dd { margin: 7px 0 0; font-size: 17px; font-weight: 600; letter-spacing: -.02em; color: #10141a; }
.px-pdp2 .px-btnrow { margin-top: clamp(24px, 3vw, 34px); display: flex; flex-wrap: wrap; gap: 12px; }
.px-pdp2__contact { margin: 18px 0 0; font-size: 13.5px; color: #5b6572; }
.px-pdp2__contact a { color: #e2541c; }

@media (max-width: 900px) {
	.px-pdp2 { grid-template-columns: minmax(0, 1fr); }
	.px-pdp2__info { position: static; }
}

/* full spec table */
.px-spectable2 { width: 100%; border-collapse: collapse; }
.px-spectable2 tr { border-bottom: 1px solid #e3e6ea; }
.px-spectable2 tr:first-child { border-top: 1px solid #10141a; }
.px-spectable2 th { text-align: left; padding: 15px 24px 15px 0; width: 38%; font-family: var(--px-mono); font-size: 11.5px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: #8892a0; vertical-align: top; }
.px-spectable2 td { padding: 15px 0; font-size: 15px; color: #10141a; }

/* applications + downloads on light */
.px-applist { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(18px, 2.4vw, 34px); }
.px-applist__item { display: flex; gap: 14px; font-size: 15px; line-height: 1.7; color: #3c4552; border-top: 1px solid #e3e6ea; padding-top: 16px; text-wrap: pretty; }
.px-applist__n { font-family: var(--px-mono); font-size: 12px; color: #e2541c; }
.px-dllist { list-style: none; margin: 0; padding: 0; }
.px-dllist__item { border-bottom: 1px solid #e3e6ea; }
.px-dllist__item:first-child { border-top: 1px solid #10141a; }
.px-dllist__item a { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 0; font-size: 15px; color: #10141a; text-decoration: none; }
.px-dllist__item a:hover { color: #e2541c; }
.px-dllist__meta { font-family: var(--px-mono); font-size: 11px; letter-spacing: .1em; color: #8892a0; }


/* ==========================================================================
   === v2 header ===  utility bar, main bar, mega dropdown
   ========================================================================== */

.px-header { display: none !important; }

.px-top { position: relative; z-index: 60; background: #ffffff; color: #10141a; }
.px-utility { background: #f4f6f8; border-bottom: 1px solid #e3e6ea; }
.px-utility__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; min-height: 38px; }
.px-utility__note { margin: 0; display: flex; align-items: center; gap: 10px; font-size: 12px; color: #5b6572; }
.px-utility__dot { width: 6px; height: 6px; border-radius: 50%; background: #e2541c; flex: none; }
.px-utility__links { display: flex; align-items: center; gap: 6px 20px; flex-wrap: wrap; }
.px-utility__links a { font-size: 12px; color: #5b6572; text-decoration: none; }
.px-utility__links a:hover { color: #e2541c; }

.px-bar { background: #ffffff; border-bottom: 1px solid #e3e6ea; }
.px-bar__inner { display: flex; align-items: stretch; justify-content: space-between; gap: 12px 18px; min-height: 74px; }
.px-logo { display: flex; align-items: center; flex: none; padding: 14px 0; }
.px-logo img { height: 20px; width: auto; object-fit: contain; display: block; }
.px-logo .custom-logo { height: 24px; width: auto; }

.px-nav2 { display: flex; align-items: stretch; gap: 2px clamp(2px, .8vw, 12px); min-width: 0; }
.px-nav2__item { display: flex; align-items: stretch; }
.px-nav2__link {
	display: flex; align-items: center; gap: 6px;
	font-size: 14px; font-weight: 500; color: #3c4552; white-space: nowrap;
	padding: 26px 8px; text-decoration: none; text-transform: none; letter-spacing: 0;
	border-bottom: 2px solid transparent;
	transition: color .2s var(--px-ease), border-color .2s var(--px-ease);
}
.px-nav2__link:hover { color: #10141a; border-bottom-color: #e2541c; }
.px-nav2__link.is-current { color: #10141a; border-bottom-color: #e2541c; }
.px-nav2__chev { opacity: .55; }

.px-mega {
	position: absolute; left: 0; right: 0; top: 100%;
	background: #ffffff; border-bottom: 1px solid #e3e6ea;
	box-shadow: 0 24px 44px rgba(16, 20, 26, .08);
	opacity: 0; visibility: hidden; transform: translateY(-6px);
	transition: opacity .2s var(--px-ease), transform .2s var(--px-ease), visibility .2s;
}
.px-nav2__item--mega:hover .px-mega,
.px-nav2__item--mega:focus-within .px-mega,
.px-mega.is-open { opacity: 1; visibility: visible; transform: none; }
.px-mega__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 36px; padding-block: 38px 42px; }
.px-mega__head {
	display: inline-flex; font-family: var(--px-mono); font-size: 12px; font-weight: 600;
	letter-spacing: .08em; text-transform: uppercase; color: #e2541c; text-decoration: none;
}
.px-mega__list { display: flex; flex-direction: column; margin-top: 16px; }
.px-mega__row {
	display: flex; justify-content: space-between; gap: 16px; padding: 10px 0;
	font-size: 14px; color: #2c3440; text-decoration: none; border-bottom: 1px solid #eef0f3;
}
.px-mega__row:hover { color: #e2541c; }
.px-mega__ref { font-family: var(--px-mono); font-size: 13px; }
.px-mega__tag { color: #8892a0; font-size: 12.5px; white-space: nowrap; }
.px-mega__feature { display: flex; flex-direction: column; justify-content: space-between; gap: 18px; background: #f4f6f8; padding: 26px; }
.px-mega__flabel { margin: 0; font-family: var(--px-mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: #8892a0; }
.px-mega__fname { margin: 12px 0 0; font-size: 19px; font-weight: 600; line-height: 1.3; color: #10141a; text-wrap: pretty; }
.px-mega__ftags { margin: 8px 0 0; font-family: var(--px-mono); font-size: 12.5px; color: #5b6572; }
.px-mega__fmedia { height: 120px; }
.px-mega__fmedia img, .px-mega__fmedia .px-placeholder { width: 100%; height: 100%; object-fit: contain; background: transparent; }
.px-mega__flink { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: #e2541c; text-decoration: none; align-self: flex-start; }

.px-bar__actions { display: flex; align-items: center; gap: 10px; flex: none; margin-left: auto; }
.px-iconbtn2 {
	display: grid; place-items: center; width: 40px; height: 40px;
	border: 1px solid #e3e6ea; color: #10141a; text-decoration: none;
	transition: border-color .2s var(--px-ease), background .2s var(--px-ease);
}
.px-iconbtn2:hover { border-color: #10141a; background: #f4f6f8; }
.px-barcta {
	display: inline-flex; align-items: center; gap: 9px;
	font-size: 13px; font-weight: 600; color: #ffffff; background: #e2541c;
	padding: 13px 18px; white-space: nowrap; text-decoration: none;
	transition: background .25s var(--px-ease);
}
.px-barcta:hover { background: #10141a; color: #ffffff; }
.px-burger { display: none; }

@media (max-width: 1100px) {
	.px-nav2 { display: none; }
	.px-burger { display: block; width: 40px; height: 38px; background: transparent; border: 1px solid #c9cfd7; cursor: pointer; position: relative; }
	.px-burger span { position: absolute; left: 10px; right: 10px; height: 1px; background: #10141a; }
	.px-burger span:nth-child(1) { top: 15px; }
	.px-burger span:nth-child(2) { top: 21px; }
	.px-barcta span { display: none; }
	.px-barcta { padding: 13px 14px; }
}
@media (max-width: 620px) {
	.px-utility__note { display: none; }
}
.px-mobile { background: #0f1720; }

/* ==========================================================================
   Products index
   ========================================================================== */

.px-cathead { background: #f4f6f8; border-bottom: 1px solid #e3e6ea; padding-block: clamp(28px, 3.2vw, 44px) clamp(32px, 3.6vw, 50px); }
.px-cathead__eyebrow { display: flex; align-items: center; gap: 14px; font-family: var(--px-mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: #e2541c; }
.px-cathead__rule { width: 26px; height: 1px; background: #e2541c; flex: none; }
.px-cathead__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 14px 40px; align-items: end; margin-top: 14px; }
.px-cathead__title { margin: 0; font-size: clamp(31px, 3.3vw, 46px); line-height: 1.02; font-weight: 600; letter-spacing: -.02em; text-transform: none; color: #10141a; }
.px-cathead__body { margin: 0; max-width: 480px; font-size: 16px; line-height: 1.75; color: #5b6572; text-wrap: pretty; }

.px-catsearch { display: flex; align-items: center; gap: 14px; border-bottom: 1px solid #e3e6ea; padding: 0 2px; background: #ffffff; }
.px-catsearch input { flex: 1; min-width: 0; background: transparent; border: none; outline: none; color: #10141a; font-family: var(--px-sans); font-size: 16px; padding: 20px 0; }
.px-catsearch input::placeholder { color: #8892a0; }
.px-catsearch__count { font-family: var(--px-mono); font-size: 12px; letter-spacing: .06em; color: #8892a0; white-space: nowrap; }

.px-catgrid { display: grid; grid-template-columns: minmax(0, 240px) minmax(0, 1fr); gap: clamp(32px, 4vw, 64px); align-items: start; padding-block: clamp(36px, 4vw, 56px) 0; background: #ffffff; }
.px-facets { position: sticky; top: 24px; min-width: 0; }
.px-facet { border-top: 1px solid #10141a; padding: 20px 0 26px; }
.px-facet__title { margin: 0; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #10141a; }
.px-facet__opts { display: flex; flex-direction: column; gap: 2px; margin-top: 16px; }
.px-facet__opt {
	font-family: inherit; text-align: left; display: flex; justify-content: space-between; gap: 12px; align-items: baseline;
	background: transparent; border: none; padding: 7px 0; cursor: pointer; color: #5b6572; font-size: 13.5px;
	transition: color .2s var(--px-ease);
}
.px-facet__opt:hover { color: #10141a; }
.px-facet__opt.is-on { color: #e2541c; font-weight: 600; }
.px-facet__n { font-family: var(--px-mono); font-size: 11.5px; color: #8892a0; white-space: nowrap; }
.px-facet__static { margin: 16px 0 0; font-size: 13.5px; color: #5b6572; }
.px-facet__clear { font-family: inherit; font-size: 13px; font-weight: 600; background: transparent; border: none; border-bottom: 1px solid #c9cfd7; padding: 8px 2px; cursor: pointer; color: #e2541c; }

.px-catbody { min-width: 0; }
.px-catsec__head { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; flex-wrap: wrap; border-top: 1px solid #10141a; padding-top: 22px; }
.px-catsec__title { margin: 0; font-size: clamp(26px, 2.6vw, 36px); font-weight: 600; letter-spacing: -.02em; text-transform: none; color: #10141a; }
.px-catsec__note { font-family: var(--px-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: #8892a0; }
.px-catsec--power { margin-top: clamp(56px, 6vw, 88px); }
.px-underlink { font-size: 13px; font-weight: 600; color: #10141a; text-decoration: none; border-bottom: 1px solid #c9cfd7; padding-bottom: 5px; white-space: nowrap; transition: border-color .25s var(--px-ease), color .25s var(--px-ease); }
.px-underlink:hover { color: #e2541c; border-bottom-color: #e2541c; }

.px-lightgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 34px; margin-top: 32px; }
.px-light { display: flex; flex-direction: column; min-width: 0; }
.px-light__media { display: block; height: 236px; background: linear-gradient(158deg, #f4f6f8 0%, #edeff2 100%); overflow: hidden; }
.px-light__media img, .px-light__media .px-placeholder { width: 100%; height: 100%; object-fit: contain; padding: 22px; background: transparent; transition: transform .7s var(--px-ease); }
.px-light:hover .px-light__media img { transform: scale(1.05); }
.px-light__meta { display: flex; justify-content: space-between; gap: 14px; border-top: 1px solid #e3e6ea; padding-top: 14px; margin-top: 18px; }
.px-light__ref { font-family: var(--px-mono); font-size: 11.5px; letter-spacing: .08em; color: #e2541c; }
.px-light__factory { font-family: var(--px-mono); font-size: 11.5px; color: #8892a0; }
.px-light__name { margin: 11px 0 0; font-size: 20px; font-weight: 600; line-height: 1.3; letter-spacing: -.02em; text-transform: none; text-wrap: pretty; }
.px-light__name a { color: #10141a; text-decoration: none; }
.px-light__name a:hover { color: #e2541c; }
.px-light__lead { margin: 9px 0 0; font-size: 13.5px; line-height: 1.7; color: #5b6572; text-wrap: pretty; }
.px-light__tags { margin: 12px 0 0; font-family: var(--px-mono); font-size: 12px; color: #8892a0; }
.px-light__cta { margin-top: 18px; align-self: flex-start; }

.px-fam { margin-top: 52px; scroll-margin-top: 100px; }
.px-fam__head { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 32px; align-items: start; }
.px-fam__title { margin: 0; font-size: 26px; font-weight: 600; letter-spacing: -.02em; line-height: 1.25; text-transform: none; color: #10141a; text-wrap: pretty; }
.px-fam__meta { margin: 12px 0 0; font-family: var(--px-mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: #8892a0; }
.px-fam__body { margin: 0; font-size: 15px; line-height: 1.75; color: #5b6572; text-wrap: pretty; }
.px-fam__table { margin-top: 26px; }
.px-fam__row { display: grid; grid-template-columns: .8fr 1.6fr 1fr; gap: 24px; padding: 20px 0; border-bottom: 1px solid #e3e6ea; transition: background .25s var(--px-ease); }
.px-fam__row:hover { background: #f4f6f8; }
.px-fam__row--head { padding: 13px 0; }
.px-fam__row--head span { font-family: var(--px-mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: #8892a0; }
.px-fam__row--head:hover { background: transparent; }
.px-fam__ref { font-family: var(--px-mono); font-size: 12px; letter-spacing: .06em; color: #e2541c; line-height: 1.5; }
.px-fam__name { font-size: 15.5px; color: #10141a; line-height: 1.5; letter-spacing: -.012em; text-wrap: pretty; }
.px-fam__tags { font-family: var(--px-mono); font-size: 12.5px; color: #5b6572; line-height: 1.6; }
.px-catempty { border-top: 1px solid #e3e6ea; padding: 80px 0; text-align: center; font-size: 16px; color: #5b6572; }

@media (max-width: 900px) {
	.px-catgrid { grid-template-columns: minmax(0, 1fr); }
	.px-facets { position: static; }
	.px-fam__row { grid-template-columns: minmax(0, 1fr); gap: 6px; }
	.px-fam__row--head { display: none; }
}

/* ==========================================================================
   Product detail
   ========================================================================== */

.px-pmast { background: #f4f6f8; border-bottom: 1px solid #e3e6ea; padding-block: clamp(28px, 3vw, 44px) clamp(48px, 5vw, 72px); }
.px-pmast__crumbs { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; font-family: var(--px-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: #8892a0; }
.px-pmast__crumbs a { color: #8892a0; text-decoration: none; }
.px-pmast__crumbs a:hover { color: #e2541c; }
.px-pmast__here { color: #e2541c; }
.px-pmast__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(32px, 4vw, 64px); align-items: center; margin-top: 32px; }
.px-pmast__ref { margin: 0; font-family: var(--px-mono); font-size: 12px; font-weight: 500; letter-spacing: .2em; color: #e2541c; }
.px-pmast__title { margin: 18px 0 0; font-size: clamp(25px, 2.7vw, 37px); line-height: 1.04; font-weight: 600; letter-spacing: -.02em; text-transform: none; color: #10141a; text-wrap: balance; }
.px-pmast__lead { margin: 22px 0 0; max-width: 460px; font-size: 16.5px; line-height: 1.72; color: #5b6572; text-wrap: pretty; }
.px-pmast__btns { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-top: 32px; }
.px-pmast__readouts { display: flex; flex-wrap: wrap; margin: 40px 0 0; border-top: 1px solid #e3e6ea; }
.px-pmast__readout { flex: 1 1 120px; padding: 20px 24px 0 0; }
.px-pmast__readout dt { margin: 0; font-family: var(--px-mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: #8892a0; }
.px-pmast__readout dd { margin: 8px 0 0; font-size: 20px; font-weight: 600; color: #10141a; }
.px-pmast__main { background: #ffffff; border: 1px solid #e3e6ea; }
.px-pmast__main img, .px-pmast__main .px-placeholder { width: 100%; height: clamp(260px, 30vw, 400px); object-fit: contain; padding: 28px; background: transparent; }

.px-pbody { background: #ffffff; padding-block: clamp(44px, 5vw, 72px) 0; }
.px-pbody__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(36px, 5vw, 72px); align-items: start; }
.px-plabel { margin: 0; font-family: var(--px-mono); font-size: 10px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: #10141a; }
.px-plabel--accent { color: #e2541c; }
.px-pbody__overview { margin: 20px 0 0; font-size: 16.5px; line-height: 1.8; color: #10141a; text-wrap: pretty; }
.px-pbody__extras { margin: 18px 0 0; font-size: 15px; line-height: 1.8; color: #5b6572; text-wrap: pretty; }
.px-pbody__install { margin: 16px 0 0; font-size: 15.5px; line-height: 1.8; color: #5b6572; text-wrap: pretty; }
.px-pblock { margin-top: 44px; border-top: 1px solid #10141a; padding-top: 24px; }
.px-drows { margin-top: 18px; }
.px-drow { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 15px 0; border-bottom: 1px solid #e3e6ea; font-size: 14px; }
.px-drow span:first-child { color: #10141a; }
.px-drow span:last-child { color: #5b6572; }
.px-drawing { margin: 26px 0 0; background: #f4f6f8; border: 1px solid #e3e6ea; padding: 28px; }
.px-drawing svg { width: 100%; height: auto; display: block; }
.px-drawing figcaption { margin-top: 16px; font-family: var(--px-mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: #8892a0; }

.px-srows { margin-top: 20px; }
.px-srow { display: grid; grid-template-columns: 1fr 1.15fr; gap: 20px; padding: 15px 0; border-bottom: 1px solid #e3e6ea; }
.px-srow__k { font-size: 13.5px; color: #8892a0; }
.px-srow__v { font-size: 14.5px; color: #10141a; line-height: 1.55; text-wrap: pretty; }
.px-pfigs { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 26px; margin-top: 40px; }
.px-pfig { border-top: 1px solid #10141a; padding-top: 20px; }
.px-pfig__value { margin: 14px 0 0; font-size: 30px; font-weight: 600; letter-spacing: -.02em; color: #10141a; }
.px-pfig__note { margin: 8px 0 0; font-size: 13px; line-height: 1.7; color: #5b6572; text-wrap: pretty; }
.px-plinks { margin-top: 10px; }
.px-plink { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 0; border-bottom: 1px solid #e3e6ea; color: #10141a; text-decoration: none; font-size: 15px; }
.px-plink:hover { color: #e2541c; }
.px-plink__right { display: flex; align-items: center; gap: 18px; flex: none; }
.px-plink__fmt { font-family: var(--px-mono); font-size: 11px; letter-spacing: .16em; color: #8892a0; }

.px-related { margin-top: clamp(44px, 5vw, 72px); background: #f4f6f8; border-top: 1px solid #e3e6ea; border-bottom: 1px solid #e3e6ea; padding-block: clamp(52px, 6vw, 84px); }
.px-related__head { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; flex-wrap: wrap; }
.px-related__title { margin: 0; font-size: clamp(28px, 3vw, 42px); font-weight: 600; letter-spacing: -.02em; text-transform: none; color: #10141a; }
.px-related__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 32px; margin-top: 36px; }
.px-rel { display: flex; flex-direction: column; color: #10141a; text-decoration: none; }
.px-rel__media { display: block; height: 184px; background: #ffffff; border: 1px solid #e3e6ea; overflow: hidden; }
.px-rel__media img, .px-rel__media .px-placeholder { width: 100%; height: 100%; object-fit: contain; padding: 20px; background: transparent; transition: transform .7s var(--px-ease); }
.px-rel:hover .px-rel__media img { transform: scale(1.05); }
.px-rel__meta { display: flex; justify-content: space-between; gap: 12px; border-top: 1px solid #e3e6ea; padding-top: 13px; margin-top: 16px; }
.px-rel__ref { font-family: var(--px-mono); font-size: 11.5px; letter-spacing: .08em; color: #e2541c; }
.px-rel__tag { font-family: var(--px-mono); font-size: 11.5px; color: #8892a0; }
.px-rel__name { margin-top: 10px; font-size: 18.5px; font-weight: 600; line-height: 1.3; letter-spacing: -.02em; text-wrap: pretty; }


/* mega stacking: the dropdown spans the full header width and must paint
   above whatever section follows the bar. */
.px-top { overflow: visible; }
.px-bar, .px-nav2, .px-nav2__item { overflow: visible; }
.px-mega { z-index: 70; }
.px-nav2__item--mega { position: static; }
@media (max-width: 1100px) { .px-mega { display: none; } }
