/* Premier Plasmotec Page Studio v19.0.0 - static design and motion system. */

@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url("../fonts/inter-latin-wght-normal.woff2") format("woff2-variations");
}

@font-face {
	font-family: "Inter";
	font-style: italic;
	font-weight: 100 900;
	font-display: swap;
	src: url("../fonts/inter-latin-wght-italic.woff2") format("woff2-variations");
}

:root {
	--ppps-ink: #070809;
	--ppps-graphite: #151719;
	--ppps-charcoal: #292d30;
	--ppps-steel: #7f878a;
	--ppps-aluminium: #d8d8d2;
	--ppps-paper: #f3f1ea;
	--ppps-white: #ffffff;
	--ppps-signal: #9aa8ad;
	--ppps-technical-silver: #9aa8ad;
	--ppps-oxide: #4f696e;
	--ppps-dark-line: rgba(255, 255, 255, 0.14);
	--ppps-light-line: rgba(7, 8, 9, 0.16);
	--ppps-muted-dark: rgba(255, 255, 255, 0.68);
	--ppps-muted-light: rgba(7, 8, 9, 0.64);
	--ppps-ease: cubic-bezier(.22, 1, .36, 1);
	--ppps-ease-mechanical: cubic-bezier(.2, .7, .15, 1);
	--ppps-ease-route: cubic-bezier(.76, 0, .24, 1);
	--ppps-content: 820px;
	--ppps-wide: 1540px;
	--ppps-cinematic: min(1760px, calc(100vw - (2 * var(--ppps-gutter))));
	--ppps-gutter: 72px;
	--ppps-grid-columns: 12;
	--ppps-grid-gap: 24px;
	--ppps-header-height: 76px;
	--ppps-header-reserve-height: var(--ppps-header-height);
	--ppps-admin-offset: 0px;
	--ppps-section-space: 160px;
	--ppps-radius-small: 2px;
	--ppps-radius-medium: 6px;
	--ppps-radius-editorial: 24px;
	--ppps-reveal-distance: 24px;
	--ppps-reveal-duration: 720ms;
	--ppps-heading-distance: 0.22em;
	--ppps-heading-duration: 920ms;
	--ppps-heading-delay: 60ms;
	--ppps-heading-media-duration: 980ms;
	--ppps-heading-media-delay: 80ms;
	--ppps-media-lift: 3.5%;
	--ppps-duration-immediate: 100ms;
	--ppps-duration-micro: 160ms;
	--ppps-duration-control: 280ms;
	--ppps-duration-panel: 480ms;
	--ppps-duration-section: 720ms;
	--ppps-duration-cinematic: 980ms;
	--ppps-stagger: 48ms;
	--ppps-layer-document: 0;
	--ppps-layer-local: 10;
	--ppps-layer-sticky: 100;
	--ppps-layer-header: 700;
	--ppps-layer-route: 800;
	--ppps-layer-menu: 900;
	--ppps-layer-loader: 1000;
	--ppps-layer-diagnostics: 1100;
	--ppps-font-sans: Inter, "Helvetica Neue", Arial, sans-serif;
	--ppps-font-mono: SFMono-Regular, Consolas, "Liberation Mono", monospace;

	/* Stable aliases for companion blocks and migrated V13 markup. */
	--black: var(--ppps-ink);
	--graphite: var(--ppps-graphite);
	--charcoal: var(--ppps-charcoal);
	--panel: var(--ppps-charcoal);
	--steel: var(--ppps-steel);
	--white: var(--ppps-paper);
	--ember: var(--ppps-signal);
	--line: var(--ppps-dark-line);
	--max: var(--ppps-wide);
	--pad: var(--ppps-gutter);
}

* {
	box-sizing: border-box;
}

html {
	background: var(--ppps-ink);
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--ppps-header-height) + 24px);
	scrollbar-gutter: stable;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

body {
	margin: 0;
	padding: 0 !important;
	background: var(--ppps-ink);
	color: var(--ppps-ink);
	font-family: var(--ppps-font-sans);
	font-size: 17px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body.admin-bar {
	--ppps-admin-offset: 32px;
}

body.navigation-is-open {
	overflow: hidden;
}

.ppps-page-transition {
	position: fixed;
	z-index: var(--ppps-layer-route);
	inset: 0;
	display: grid;
	pointer-events: none;
	visibility: hidden;
}

.no-js .ppps-page-transition {
	display: none;
}

.ppps-page-transition__panels {
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ppps-page-transition__panels > span {
	position: absolute;
	top: 0;
	bottom: 0;
	left: calc(var(--ppps-panel-index, 0) * 25%);
	width: 25.1%;
	background: var(--ppps-ink);
	transform: scaleY(0);
	transform-origin: bottom center;
	transition: transform 520ms cubic-bezier(.72,0,.2,1);
}

.ppps-page-transition__panels > span:nth-child(1) { --ppps-panel-index: 0; }
.ppps-page-transition__panels > span:nth-child(2) { --ppps-panel-index: 1; transition-delay: 45ms; }
.ppps-page-transition__panels > span:nth-child(3) { --ppps-panel-index: 2; transition-delay: 90ms; }
.ppps-page-transition__panels > span:nth-child(4) { --ppps-panel-index: 3; transition-delay: 135ms; }

.ppps-page-transition__panels > span:nth-child(even) {
	background:
		linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
		var(--ppps-graphite);
	background-size: 64px 64px;
}

.ppps-page-transition i {
	position: absolute;
	right: 28px;
	bottom: 24px;
	color: rgba(255,255,255,.62);
	font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
	font-size: 10px;
	font-style: normal;
	letter-spacing: .1em;
	opacity: 0;
	transition: opacity 160ms ease 220ms;
}

.ppps-page-transition__content {
	position: relative;
	z-index: 2;
	display: grid;
	width: min(680px, calc(100% - (var(--ppps-gutter) * 2)));
	margin: auto;
	grid-template-columns: 1fr auto;
	align-items: end;
	gap: 24px;
	color: var(--ppps-white);
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 260ms ease 180ms, transform 480ms var(--ppps-ease) 180ms;
}

.ppps-page-transition__brand {
	grid-column: 1 / -1;
	display: flex;
	width: min(300px, 68vw);
	height: 72px;
	align-items: center;
}

.ppps-page-transition__brand .site-branding__image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: left center;
	filter: grayscale(1) brightness(0) invert(1);
}

.ppps-page-transition__content p {
	grid-column: 1 / -1;
	margin: 0;
	color: rgba(255,255,255,.58);
	font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
	font-size: 10px;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.ppps-page-transition__meter {
	height: 2px;
	overflow: hidden;
	background: rgba(255,255,255,.18);
}

.ppps-page-transition__meter b {
	display: block;
	width: 100%;
	height: 100%;
	background: var(--ppps-white);
	transform: scaleX(0);
	transform-origin: left center;
	will-change: transform;
}

.ppps-page-transition__content > strong {
	font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: .08em;
}

body.ppps-is-loading {
	overflow: hidden;
}

.no-js body.ppps-is-loading {
	overflow: visible;
}

body.ppps-is-loading .ppps-page-transition,
body.ppps-is-leaving .ppps-page-transition {
	visibility: visible;
}

body.ppps-is-loading .ppps-page-transition {
	z-index: var(--ppps-layer-loader);
}

body.ppps-is-loading .ppps-page-transition__panels > span {
	transform: scaleY(1);
}

body.ppps-is-loading .ppps-page-transition__content {
	opacity: 1;
	transform: none;
}

body.ppps-is-loaded .ppps-page-transition {
	visibility: hidden;
	transition: visibility 0s linear 760ms;
}

body.ppps-is-loaded .ppps-page-transition__panels > span {
	transform: scaleY(0);
	transform-origin: top center;
}

body.ppps-is-loaded .ppps-page-transition__content {
	opacity: 0;
	transform: translateY(-14px);
	transition-delay: 0s;
}

body.ppps-is-leaving .ppps-page-transition { visibility: visible; }
body.ppps-is-leaving .ppps-page-transition__panels > span { transform: scaleY(1); }
body.ppps-is-leaving .ppps-page-transition i { opacity: 1; }
body.ppps-is-leaving .ppps-page-transition__content { opacity: 0; }

body.ppps-page-studio {
	--pp-ink: var(--ppps-ink);
	--pp-charcoal: var(--ppps-charcoal);
	--pp-graphite: var(--ppps-graphite);
	--pp-steel: var(--ppps-steel);
	--pp-line: #3d4346;
	--pp-paper: var(--ppps-paper);
	--pp-white: var(--ppps-white);
	--pp-ember: var(--ppps-signal);
	--pp-content: var(--ppps-content);
	--pp-wide: var(--ppps-wide);
	--pp-gutter: var(--ppps-gutter);
	--pp-radius: var(--ppps-radius-medium);
	--pp-section: var(--ppps-section-space);
}

::selection {
	background: var(--ppps-signal);
	color: var(--ppps-white);
}

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

a:hover {
	text-decoration-color: var(--ppps-signal);
}

button,
input,
select,
textarea {
	font: inherit;
	letter-spacing: 0;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	cursor: pointer;
}

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

img,
video {
	height: auto;
}

iframe {
	max-width: 100%;
}

figure {
	margin: 0;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

:where(h1, h2, h3, h4, h5, h6, p, ul, ol, dl, blockquote, pre, figure) {
	margin-top: 0;
}

:where(h1, h2, h3, h4, h5, h6) {
	min-width: 0;
	font-weight: 720;
	letter-spacing: -0.05em;
	line-height: 1.08;
	overflow: visible;
	text-wrap: balance;
	word-break: normal;
	overflow-wrap: normal;
}

h1 {
	font-size: clamp(4.75rem, 7.6vw, 9.25rem);
	line-height: .91;
}

h2 {
	font-size: clamp(3rem, 5vw, 6.4rem);
	line-height: .96;
}

h3 {
	font-size: 28px;
	line-height: 1.15;
}

h4 {
	font-size: 21px;
	line-height: 1.25;
}

h5,
h6 {
	font-size: 17px;
	line-height: 1.35;
}

p,
li,
dd,
figcaption,
td,
th {
	min-width: 0;
	overflow-wrap: break-word;
}

:focus-visible {
	outline: 3px solid var(--ppps-signal);
	outline-offset: 4px;
}

.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%);
	border: 0;
	white-space: nowrap;
}

.screen-reader-text:focus {
	z-index: var(--ppps-layer-diagnostics);
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	margin: 0;
	padding: 12px 18px;
	overflow: visible;
	clip: auto;
	clip-path: none;
	background: var(--ppps-paper);
	color: var(--ppps-ink);
	font-size: 14px;
	font-weight: 700;
}

.content-shell,
.wide-shell {
	width: calc(100% - (var(--ppps-gutter) * 2));
	margin-inline: auto;
}

.content-shell {
	max-width: var(--ppps-content);
}

.wide-shell {
	max-width: var(--ppps-wide);
}

.eyebrow {
	margin-bottom: 20px;
	color: currentColor;
	font-size: 12px;
	font-weight: 750;
	letter-spacing: 0;
	line-height: 1.3;
	opacity: 0.62;
	text-transform: uppercase;
}

.button,
.wp-element-button,
.wp-block-button__link,
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 20px;
	border: 1px solid var(--ppps-ink);
	border-radius: var(--ppps-radius-small);
	background: var(--ppps-ink);
	color: var(--ppps-white);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms var(--ppps-ease);
}

.button:hover,
.wp-element-button:hover,
.wp-block-button__link:hover,
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: var(--ppps-signal);
	background: var(--ppps-signal);
	color: var(--ppps-white);
	text-decoration: none;
}

.wp-block-button.is-style-outline > .wp-block-button__link {
	border-color: currentColor;
	background: transparent;
	color: inherit;
}

.wp-block-button.is-style-outline > .wp-block-button__link:hover {
	border-color: var(--ppps-signal);
	background: var(--ppps-signal);
	color: var(--ppps-white);
}

input:not([type="button"]):not([type="checkbox"]):not([type="radio"]):not([type="reset"]):not([type="submit"]),
select,
textarea {
	width: 100%;
	min-height: 48px;
	padding: 12px 14px;
	border: 1px solid rgba(7, 8, 9, 0.32);
	border-radius: var(--ppps-radius-small);
	background: var(--ppps-white);
	color: var(--ppps-ink);
	line-height: 1.4;
}

textarea {
	min-height: 148px;
	resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
	border-color: var(--ppps-oxide);
	outline: 3px solid rgba(79, 105, 110, 0.28);
	outline-offset: 0;
}

label {
	display: block;
	margin-bottom: 7px;
	font-size: 14px;
	font-weight: 700;
}

/* Header and navigation. */
.site-header {
	--ppps-header-hide-x: -50%;
	position: fixed;
	z-index: var(--ppps-layer-header);
	top: calc(var(--ppps-admin-offset) + 28px);
	left: 50%;
	width: min(calc(100% - 48px), 1180px);
	min-height: var(--ppps-header-height);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	background: rgba(7, 8, 9, 0.72);
	-webkit-backdrop-filter: blur(28px) saturate(125%);
	backdrop-filter: blur(28px) saturate(125%);
	color: var(--ppps-white);
	transform: translate3d(-50%, 0, 0);
	transition: transform 360ms cubic-bezier(.2,.7,.2,1), background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.site-header__inner {
	display: grid;
	width: 100%;
	min-height: var(--ppps-header-height);
	grid-template-columns: minmax(150px, 1fr) auto minmax(126px, 1fr);
	align-items: center;
	gap: 22px;
	padding: 16px 22px;
}

.site-header.is-floating {
	top: calc(var(--ppps-admin-offset) + 20px);
	left: 50%;
	width: min(calc(100% - 48px), 1180px);
	min-height: var(--ppps-header-height);
	border-color: rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	background: rgba(7, 8, 9, 0.78);
	box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
	color: var(--ppps-white);
	transform: translate3d(-50%, 0, 0);
}

.site-header.is-floating .site-header__inner {
	min-height: var(--ppps-header-height);
}

.site-header.is-hidden.is-floating {
	transform: translate3d(-50%, calc(-100% - 40px), 0);
}

.site-header.is-hidden:not(.is-floating) {
	transform: translate3d(-50%, calc(-100% - 48px), 0);
}

.site-header.is-navigation-open {
	border-color: transparent;
	border-radius: 8px;
	background: rgba(7, 8, 9, 0.9);
	box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
	color: var(--ppps-white);
	transform: translate3d(-50%, 0, 0);
}

.site-header.is-navigation-open.is-floating {
	top: calc(var(--ppps-admin-offset) + 20px);
	left: 50%;
	width: min(calc(100% - 48px), 1180px);
}

.site-header-reserve {
	height: var(--ppps-header-reserve-height);
	background: var(--ppps-ink);
}

.home .site-header-reserve { height: 0; }

.site-branding {
	display: inline-grid;
	width: 190px;
	height: 42px;
	grid-column: 1;
	align-items: center;
	justify-self: start;
	color: inherit;
	text-decoration: none;
}

.site-branding__surface-logo {
	display: flex;
	width: 100%;
	height: 100%;
	grid-area: 1 / 1;
	align-items: center;
}

.site-branding__surface-logo--light {
	display: none;
}

.site-header .site-branding__surface-logo--dark { display: flex; }
.site-header .site-branding__surface-logo--light { display: none; }

.site-branding__image,
.site-footer__brand .site-branding__image {
	width: auto;
	max-width: 100%;
	height: 34px;
	object-fit: contain;
	object-position: left center;
}

.site-branding__surface-logo--dark .site-branding__image--native,
.site-footer__brand .site-branding__image--native {
	filter: grayscale(1) brightness(0) invert(1);
}

.site-branding__surface-logo--light .site-branding__image--native {
	filter: grayscale(1) brightness(0.08);
}

.site-branding__text {
	display: block;
	font-size: 17px;
	font-weight: 750;
	line-height: 1.1;
	text-transform: uppercase;
}

.primary-navigation {
	min-width: 0;
	grid-column: 2;
	justify-self: center;
}

.primary-menu,
.primary-menu ul,
.mobile-menu,
.mobile-menu ul,
.footer-menu,
.footer-menu ul,
.legal-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.primary-menu > li {
	position: relative;
	flex: 0 0 auto;
}

.primary-menu a,
.header-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 0;
	color: inherit;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.25;
	text-decoration: none;
	text-transform: uppercase;
}

.primary-menu a:hover,
.primary-menu a:focus-visible,
.header-cta:hover,
.header-cta:focus-visible,
.primary-menu .current-menu-item > a,
.primary-menu .current-menu-ancestor > a {
	color: var(--ppps-signal);
}

.primary-menu .sub-menu {
	position: absolute;
	top: calc(100% - 1px);
	left: -18px;
	width: 340px;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--ppps-radius-medium);
	background: rgba(21, 23, 25, 0.97);
	-webkit-backdrop-filter: blur(24px);
	backdrop-filter: blur(24px);
	box-shadow: 0 18px 42px rgba(7, 8, 9, 0.26);
	color: var(--ppps-white);
	opacity: 0;
	pointer-events: none;
	transform: translateY(-7px);
	visibility: hidden;
	transition:
		opacity 160ms ease,
		transform 180ms var(--ppps-ease),
		visibility 0s linear 180ms;
}

.primary-menu .sub-menu .sub-menu {
	top: -13px;
	left: calc(100% - 1px);
}

.primary-menu li:hover > .sub-menu,
.primary-menu li.is-menu-open > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
	visibility: visible;
	transition-delay: 0s;
}

.primary-menu .sub-menu a {
	display: flex;
	width: 100%;
	padding: 12px 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 12px;
	letter-spacing: 0.02em;
	text-transform: none;
}

.primary-menu .ppps-menu-group > .sub-menu {
	left: 50%;
	display: grid;
	width: min(820px, calc(100vw - 80px));
	grid-template-columns: minmax(210px, .72fr) repeat(2, minmax(0, 1fr));
	gap: 0 18px;
	padding: 26px;
	transform: translate(-50%, -7px);
}

.primary-menu .ppps-menu-group:hover > .sub-menu,
.primary-menu .ppps-menu-group.is-menu-open > .sub-menu {
	transform: translate(-50%, 0);
}

.no-js .primary-menu li:focus-within > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
	visibility: visible;
	transition-delay: 0s;
}

.no-js .primary-menu .ppps-menu-group:focus-within > .sub-menu {
	transform: translate(-50%, 0);
}

.primary-menu > li > a:focus-visible {
	border-radius: 2px;
	outline: 2px solid currentColor;
	outline-offset: 4px;
}

.primary-menu .ppps-menu-group > .sub-menu > li:not(.ppps-menu-intro) {
	min-width: 0;
}

.primary-menu .ppps-menu-group > .sub-menu a {
	display: grid;
	gap: 4px;
	min-height: 72px;
	align-content: center;
}

.primary-menu .ppps-menu-group > .sub-menu a span {
	font-size: 13px;
	font-weight: 720;
}

.primary-menu .ppps-menu-group > .sub-menu a small {
	color: rgba(255,255,255,.56);
	font-size: 11px;
	font-weight: 450;
	letter-spacing: 0;
	line-height: 1.4;
}

.ppps-menu-intro {
	grid-row: 1 / span 3;
	display: grid;
	min-height: 100%;
	align-content: space-between;
	gap: 16px;
	padding: 10px 24px 10px 4px;
	border-right: 1px solid rgba(255,255,255,.12);
}

.ppps-menu-intro > span {
	font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
	font-size: 10px;
	letter-spacing: .12em;
	opacity: .5;
}

.ppps-menu-intro strong {
	font-size: 28px;
	letter-spacing: -.04em;
	line-height: 1;
}

.ppps-menu-intro small {
	color: rgba(255,255,255,.58);
	font-size: 12px;
	line-height: 1.5;
}

.header-cta {
	grid-column: 3;
	justify-self: end;
	min-height: 42px;
	padding: 0 16px;
	border: 1px solid var(--ppps-signal);
	border-radius: 6px;
	background: var(--ppps-signal);
	color: var(--ppps-white);
	white-space: nowrap;
}

.header-cta:hover,
.header-cta:focus-visible {
	border-color: var(--ppps-white);
	background: var(--ppps-white);
	color: var(--ppps-ink);
}

.navigation-toggle {
	display: none;
	width: 44px;
	height: 44px;
	min-height: 44px;
	padding: 0;
	border: 1px solid currentColor;
	border-radius: var(--ppps-radius-small);
	background: transparent;
	color: inherit;
	grid-column: 3;
}

.navigation-toggle:hover {
	border-color: var(--ppps-signal);
	background: transparent;
	color: var(--ppps-signal);
}

.navigation-toggle span {
	position: absolute;
	width: 18px;
	height: 1px;
	background: currentColor;
	transition: transform 220ms var(--ppps-ease);
}

.navigation-toggle span:first-of-type {
	transform: translateY(-4px);
}

.navigation-toggle span:last-child {
	transform: translateY(4px);
}

.navigation-toggle[aria-expanded="true"] span:first-of-type {
	transform: rotate(45deg);
}

.navigation-toggle[aria-expanded="true"] span:last-child {
	transform: rotate(-45deg);
}

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

.navigation-drawer {
	position: fixed;
	z-index: var(--ppps-layer-menu);
	inset: var(--ppps-admin-offset) 0 0;
	color: var(--ppps-white);
	opacity: 0;
	pointer-events: none;
	transition: opacity 220ms ease;
}

.navigation-drawer.is-open {
	opacity: 1;
	pointer-events: auto;
}

.navigation-drawer__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(7, 8, 9, 0.7);
}

.navigation-drawer__inner {
	position: relative;
	width: min(680px, 100%);
	height: 100%;
	margin-left: auto;
	padding: calc(var(--ppps-header-height) + 46px) 56px 56px;
	overflow-y: auto;
	background: rgba(15, 17, 18, 0.94);
	-webkit-backdrop-filter: blur(30px);
	backdrop-filter: blur(30px);
	transform: translateX(28px);
	transition: transform 280ms var(--ppps-ease);
}

.navigation-drawer.is-open .navigation-drawer__inner {
	transform: translateX(0);
}

.mobile-menu > li {
	border-bottom: 1px solid var(--ppps-dark-line);
}

.mobile-menu > li > a {
	display: block;
	padding: 17px 0;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.08;
	text-decoration: none;
}

.mobile-menu .sub-menu {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 24px;
	padding: 0 0 18px 18px;
}

.mobile-menu .sub-menu a {
	display: block;
	padding: 7px 0;
	color: var(--ppps-muted-dark);
	font-size: 14px;
	line-height: 1.35;
	text-decoration: none;
}

.mobile-menu .ppps-menu-intro {
	display: none;
}

.mobile-menu .sub-menu a small {
	display: block;
	margin-top: 3px;
	font-size: 10px;
	opacity: .68;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible,
.mobile-menu .current-menu-item > a {
	color: var(--ppps-signal);
}

.navigation-drawer__cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 32px;
	padding: 18px 0;
	border-top: 1px solid var(--ppps-dark-line);
	border-bottom: 1px solid var(--ppps-dark-line);
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
}

/* Generic entry and archive shell. */
.site-main {
	position: relative;
	min-height: 55vh;
	background: var(--ppps-paper);
}

.page-studio-entry,
.presentation-entry,
.standard-page-entry,
.single-entry {
	min-width: 0;
}

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

.page-studio-content > :where(:not(.alignfull):not(.alignwide)),
.presentation-content > :where(:not(.alignfull):not(.alignwide)) {
	width: calc(100% - (var(--ppps-gutter) * 2));
	max-width: var(--ppps-content);
	margin-inline: auto;
}

.page-studio-content > .alignwide,
.presentation-content > .alignwide {
	width: calc(100% - (var(--ppps-gutter) * 2));
	max-width: var(--ppps-wide);
	margin-inline: auto;
}

.page-studio-content > .alignfull,
.presentation-content > .alignfull {
	width: 100%;
	max-width: none;
	margin-inline: 0;
}

/*
 * Page Studio blocks are complete sections, not prose children. Migration and
 * blueprint import intentionally serialize validated block attributes only, so
 * a block may not carry WordPress's optional alignfull class. Keep the readable
 * text-column rule above for core content while allowing every Page Studio
 * section to own the full canvas and its internal wide container.
 */
.page-studio-content > .pp-block,
.presentation-content > .pp-block {
	width: 100%;
	max-width: none;
	margin-inline: 0;
}

/* The gated corporate presentation is a continuous editorial story. These
 * rules keep its titles readable and add scene progress without turning the
 * document into a slide-jacked experience. */
.ppps-presentation-page .presentation-content {
	overflow: clip;
}

.ppps-presentation-page .presentation-content > .pp-block {
	position: relative;
	isolation: isolate;
	overflow: visible;
	scroll-margin-top: clamp(112px, 14vh, 170px);
}

.ppps-presentation-page .presentation-content > .pp-block::before,
.ppps-presentation-page .presentation-content > .pp-block::after {
	pointer-events: none;
}

.ppps-presentation-page .presentation-content > .pp-block > :where(.pp-hero__inner, .pp-section__inner, .pp-block__inner),
.ppps-presentation-page .presentation-content > .pp-block .pp-block__inner {
	position: relative;
	z-index: 10;
}

.ppps-presentation-page .presentation-content > :is(.pp-tone--paper, .pp-tone--white) :is(.pp-technical-card, .pp-equipment, .pp-customer, .pp-award, .pp-table-scroll),
.ppps-presentation-page .presentation-content > :is(.pp-tone--ink, .pp-tone--graphite, .pp-tone--charcoal) :is(.pp-technical-card, .pp-equipment, .pp-customer, .pp-award, .pp-table-scroll) {
	opacity: 1;
}

.ppps-presentation-page .presentation-content > [class*="pp-texture--"]::before {
	z-index: 0;
	opacity: .035;
}

.ppps-presentation-page .presentation-content :is(.pp-block__title, .pp-hero__title, h1, h2, h3) {
	max-width: min(100%, 19ch);
	overflow-wrap: normal;
	word-break: normal;
	hyphens: none;
	text-wrap: balance;
}

.ppps-presentation-page [data-ppps-presentation-scene]::after {
	content: "";
	position: absolute;
	z-index: 8;
	inset: auto var(--ppps-gutter) 0;
	height: 1px;
	pointer-events: none;
	background: currentColor;
	opacity: .28;
	transform: scaleX(var(--ppps-presentation-progress, 0));
	transform-origin: left center;
}

.ppps-presentation-page [data-ppps-presentation-scene]::before {
	content: attr(data-ppps-presentation-scene);
	position: absolute;
	z-index: 7;
	top: clamp(34px, 5vw, 76px);
	right: var(--ppps-gutter);
	pointer-events: none;
	font-family: var(--ppps-font-mono);
	font-size: clamp(.7rem, .6vw + .54rem, .94rem);
	font-weight: 680;
	letter-spacing: .16em;
	opacity: .46;
}

.ppps-presentation-page [data-ppps-presentation-scene="01"]::before {
	display: none;
}

.ppps-presentation-page [data-ppps-presentation-scene] :is(.pp-technical-card__media, .pp-equipment-card figure, .pp-component-card figure) img {
	transform: scale(1.025);
	transition: transform 900ms cubic-bezier(.2,.65,.25,1), filter 500ms ease;
}

.ppps-presentation-page [data-ppps-presentation-scene].is-presentation-active :is(.pp-technical-card__media, .pp-equipment-card figure, .pp-component-card figure) img {
	transform: scale(1);
}

.ppps-presentation-page [data-ppps-presentation-scene] > :where(.pp-hero__inner, .pp-section__inner, .pp-block__inner),
.ppps-presentation-page [data-ppps-presentation-scene] .pp-block__header {
	opacity: clamp(.82, calc(var(--ppps-presentation-progress, 0) * 1.35), 1);
	transform: translate3d(0, var(--ppps-presentation-lift, 34px), 0);
	transition: opacity 180ms linear, transform 180ms linear;
}

.ppps-presentation-page [data-ppps-presentation-scene] :is(.pp-technical-card, .pp-equipment-card, .pp-customer, .pp-award) {
	transform: translate3d(0, var(--ppps-presentation-card-lift, 22px), 0) scale(var(--ppps-presentation-card-scale, .975));
	transform-origin: center bottom;
	transition: transform 220ms cubic-bezier(.2,.65,.25,1);
}

@media (prefers-reduced-motion: reduce) {
	.ppps-presentation-page [data-ppps-presentation-scene] > :where(.pp-hero__inner, .pp-section__inner, .pp-block__inner),
	.ppps-presentation-page [data-ppps-presentation-scene] .pp-block__header,
	.ppps-presentation-page [data-ppps-presentation-scene] :is(.pp-technical-card, .pp-equipment-card, .pp-customer, .pp-award) {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/*
 * Structural layouts live inside the server-rendered block wrappers
 * (.pp-split__inner, .pp-card-grid, .pp-plant-grid, and peers). Prevent legacy
 * theme compatibility selectors from turning the outer section into a second,
 * nested grid and crushing the real layout into its first column.
 */
:where(.page-studio-content, .presentation-content, .pp-section__inner) > .pp-block:not(.pp-block--industrial-hero) {
	display: block;
}

.page-studio-content > :where(p, ul, ol, blockquote, pre, figure, .wp-block-table):first-child,
.presentation-content > :where(p, ul, ol, blockquote, pre, figure, .wp-block-table):first-child {
	margin-top: 80px;
}

.page-studio-content > :where(p, ul, ol, blockquote, pre, figure, .wp-block-table):last-child,
.presentation-content > :where(p, ul, ol, blockquote, pre, figure, .wp-block-table):last-child {
	margin-bottom: 80px;
}

.entry-hero,
.listing-header {
	position: relative;
	overflow: clip;
	background: var(--ppps-ink);
	color: var(--ppps-white);
}

.entry-hero::before,
.listing-header::before,
.presentation-gate__grid {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
	background-size: 96px 96px;
	content: "";
	pointer-events: none;
}

.entry-hero__inner,
.listing-header__inner {
	position: relative;
	z-index: 1;
	padding-top: 112px;
	padding-bottom: 112px;
}

.entry-hero__copy {
	min-width: 0;
}

.entry-hero h1,
.listing-header h1,
.presentation-gate h1,
.system-message h1 {
	max-width: 16ch;
	margin-bottom: 30px;
	padding-bottom: 0.08em;
}

.entry-hero__summary,
.listing-header__description,
.presentation-gate__inner > p,
.system-message__inner > p {
	max-width: 720px;
	margin-bottom: 0;
	color: var(--ppps-muted-dark);
	font-size: 21px;
	line-height: 1.55;
}

.entry-hero__date {
	display: block;
	margin-top: 26px;
	color: var(--ppps-muted-dark);
	font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
	font-size: 13px;
}

.entry-hero--single .entry-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
	align-items: center;
	gap: 80px;
}

.entry-hero--procedural {
	min-height: min(760px, calc(100svh - 20px));
}

.entry-hero--procedural .entry-hero__inner {
	min-height: min(760px, calc(100svh - 20px));
	grid-template-columns: minmax(0, 1fr);
	align-content: end;
}

.entry-hero--procedural .entry-hero__copy {
	position: relative;
	z-index: 4;
	max-width: 900px;
}

.entry-hero--procedural .pp-procedural__readout {
	top: 118px;
}

.entry-hero__media {
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border: 1px solid var(--ppps-dark-line);
	background: var(--ppps-graphite);
}

.entry-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ppps-singular-pp_award .entry-hero__media,
.ppps-singular-pp_document .entry-hero__media {
	background: var(--ppps-paper);
}

.ppps-singular-pp_award .entry-hero__media img,
.ppps-singular-pp_document .entry-hero__media img {
	object-fit: contain;
	padding: 20px;
}

.standard-entry-content,
.single-entry-content {
	padding-top: 96px;
	padding-bottom: 104px;
}

.standard-entry-content > *:last-child,
.single-entry-content > *:last-child {
	margin-bottom: 0;
}

.component-dossier {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	padding: 72px 0;
	border-top: 1px solid var(--ppps-light-line);
	gap: 64px;
}

.component-dossier__heading h2 {
	max-width: 620px;
	margin: 14px 0 0;
	font-size: clamp(2.25rem, 4vw, 4.4rem);
	line-height: 1;
	letter-spacing: -0.045em;
}

.component-dossier__facts {
	margin: 0 0 32px;
	border-top: 1px solid var(--ppps-light-line);
}

.component-dossier__facts div {
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr);
	padding: 17px 0;
	border-bottom: 1px solid var(--ppps-light-line);
	gap: 24px;
}

.component-dossier__facts dt {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	opacity: 0.62;
}

.component-dossier__facts dd { margin: 0; }
.component-dossier__note { max-width: 620px; color: var(--ppps-muted-light); }

.listing-section {
	padding: 104px 0 120px;
}

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

.record-card {
	min-width: 0;
	border-top: 2px solid var(--ppps-ink);
	background: transparent;
}

.record-card__link {
	display: flex;
	height: 100%;
	flex-direction: column;
	color: inherit;
	text-decoration: none;
}

.record-card__media {
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-bottom: 1px solid var(--ppps-light-line);
	background: var(--ppps-aluminium);
}

.record-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 520ms var(--ppps-ease);
}

.record-card.type-pp_award .record-card__media img,
.record-card.type-pp_customer .record-card__media img,
.record-card.type-pp_document .record-card__media img {
	object-fit: contain;
	padding: 18px;
	background: var(--ppps-white);
}

.record-card__link:hover .record-card__media img {
	transform: scale(1.025);
}

.record-card__body {
	display: flex;
	min-width: 0;
	flex: 1;
	flex-direction: column;
	padding: 24px 0 0;
}

.record-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 18px;
	color: var(--ppps-muted-light);
	font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
	font-size: 12px;
}

.record-card h2 {
	margin-bottom: 16px;
	font-size: 28px;
	line-height: 1.16;
}

.record-card p {
	margin-bottom: 24px;
	color: var(--ppps-muted-light);
	font-size: 15px;
	line-height: 1.6;
}

.record-card__action {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	font-size: 13px;
	font-weight: 750;
	text-transform: uppercase;
}

.record-card__action span {
	transition: transform 180ms var(--ppps-ease);
}

.record-card__link:hover .record-card__action span {
	transform: translateX(5px);
}

.navigation.pagination {
	margin-top: 76px;
}

.nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
}

.page-numbers {
	display: inline-flex;
	min-width: 44px;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	padding: 8px 12px;
	border: 1px solid var(--ppps-light-line);
	border-radius: var(--ppps-radius-small);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.page-numbers.current,
.page-numbers:hover {
	border-color: var(--ppps-ink);
	background: var(--ppps-ink);
	color: var(--ppps-white);
}

.post-navigation {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	padding-top: 32px;
	padding-bottom: 72px;
	border-top: 1px solid var(--ppps-light-line);
}

.post-navigation > div:last-child {
	text-align: right;
}

.post-navigation a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.empty-state {
	max-width: 680px;
	padding: 64px 0;
	border-top: 2px solid var(--ppps-ink);
}

.empty-state h2 {
	margin-bottom: 18px;
}

.empty-state p {
	color: var(--ppps-muted-light);
}

.page-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding-bottom: 48px;
}

/* Core block system. */
.entry-content :where(p, li) {
	font-size: 17px;
}

.entry-content :where(h2, h3, h4) {
	margin-top: 1.6em;
	margin-bottom: 0.55em;
}

.entry-content :where(p, ul, ol, dl, blockquote, pre, figure, table) {
	margin-bottom: 1.5em;
}

.entry-content ul,
.entry-content ol {
	padding-left: 1.35em;
}

.entry-content li + li {
	margin-top: 0.45em;
}

.wp-block-image img,
.wp-block-cover,
.wp-block-video video,
.wp-block-media-text__media img,
.wp-block-media-text__media video {
	width: 100%;
}

.wp-block-image.is-style-industrial-frame img {
	border: 1px solid var(--ppps-light-line);
	padding: 8px;
	background: var(--ppps-white);
}

.wp-element-caption,
.wp-block-image figcaption,
.wp-block-gallery figcaption {
	margin-top: 9px;
	color: var(--ppps-muted-light);
	font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
	font-size: 12px;
	line-height: 1.5;
}

.wp-block-cover {
	min-height: 480px;
}

.wp-block-cover__inner-container {
	min-width: 0;
}

.wp-block-columns {
	gap: 40px;
}

.wp-block-column {
	min-width: 0;
}

.wp-block-quote {
	margin-left: 0;
	padding-left: 28px;
	border-left: 3px solid var(--ppps-signal);
}

.wp-block-quote p,
.wp-block-pullquote blockquote p {
	font-size: 24px;
	line-height: 1.45;
}

.wp-block-pullquote {
	padding: 52px 0;
	border-top: 1px solid var(--ppps-light-line);
	border-bottom: 1px solid var(--ppps-light-line);
}

.wp-block-separator {
	border: 0;
	border-top: 1px solid currentColor;
	opacity: 0.24;
}

.wp-block-table {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.wp-block-table table,
.technical-table table,
.pp-technical-table table {
	width: 100%;
	min-width: 640px;
	border-top: 2px solid currentColor;
}

.wp-block-table th,
.wp-block-table td,
.technical-table th,
.technical-table td,
.pp-technical-table th,
.pp-technical-table td {
	padding: 15px 14px;
	border: 0;
	border-bottom: 1px solid currentColor;
	text-align: left;
	vertical-align: top;
}

.wp-block-table th,
.technical-table th,
.pp-technical-table th {
	font-size: 13px;
	font-weight: 750;
	text-transform: uppercase;
}

.wp-block-table.is-style-technical-compact th,
.wp-block-table.is-style-technical-compact td {
	padding: 9px 11px;
	font-size: 14px;
}

.wp-block-details {
	padding: 18px 0;
	border-top: 1px solid var(--ppps-light-line);
	border-bottom: 1px solid var(--ppps-light-line);
}

.wp-block-details summary {
	cursor: pointer;
	font-weight: 700;
}

.wp-block-details[open] summary {
	margin-bottom: 18px;
}

pre,
code,
kbd,
samp {
	font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
}

pre {
	max-width: 100%;
	padding: 20px;
	overflow-x: auto;
	border: 1px solid var(--ppps-light-line);
	background: var(--ppps-aluminium);
	font-size: 14px;
}

.wp-block-file {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 15px 0;
	border-top: 1px solid var(--ppps-light-line);
	border-bottom: 1px solid var(--ppps-light-line);
}

.wp-block-file__button {
	margin-left: auto;
}

.wp-block-embed iframe {
	width: 100%;
}

.wp-block-group.is-style-tone-ink,
.tone-ink,
[data-section-tone="dark"],
.has-ink-background-color {
	background-color: var(--ppps-ink);
	color: var(--ppps-white);
}

.wp-block-group.is-style-tone-graphite,
.tone-graphite,
.has-graphite-background-color {
	background-color: var(--ppps-graphite);
	color: var(--ppps-white);
}

.wp-block-group.is-style-tone-paper,
.tone-paper,
[data-section-tone="light"],
.has-paper-background-color {
	background-color: var(--ppps-paper);
	color: var(--ppps-ink);
}

:where(.tone-ink, .tone-graphite, [data-section-tone="dark"], .has-ink-background-color, .has-graphite-background-color) :where(p, figcaption) {
	color: var(--ppps-muted-dark);
}

:where(.tone-ink, .tone-graphite, [data-section-tone="dark"], .has-ink-background-color, .has-graphite-background-color) :where(input:not([type="submit"]), select, textarea) {
	border-color: var(--ppps-dark-line);
	background: var(--ppps-charcoal);
	color: var(--ppps-white);
}

/* Companion block visual system. Structural plugin CSS may extend these hooks. */
:where(.wp-block-plasmotec-section, .plasmotec-section, .pp-section) {
	position: relative;
	min-width: 0;
	padding-top: var(--ppps-section-space);
	padding-bottom: var(--ppps-section-space);
}

:where(.wp-block-plasmotec-section, .plasmotec-section, .pp-section).is-spacing-compact,
:where(.wp-block-plasmotec-section, .plasmotec-section, .pp-section)[data-spacing="compact"] {
	padding-top: 72px;
	padding-bottom: 72px;
}

:where(.wp-block-plasmotec-section, .plasmotec-section, .pp-section).is-spacing-none,
:where(.wp-block-plasmotec-section, .plasmotec-section, .pp-section)[data-spacing="none"] {
	padding-top: 0;
	padding-bottom: 0;
}

:where(.pp-section__inner, .plasmotec-section__inner) {
	width: calc(100% - (var(--ppps-gutter) * 2));
	max-width: var(--ppps-wide);
	margin-inline: auto;
}

:where(.wp-block-plasmotec-industrial-hero, .plasmotec-industrial-hero, .pp-industrial-hero) {
	position: relative;
	display: grid;
	min-height: max(600px, calc(100svh - var(--ppps-header-height)));
	align-items: end;
	overflow: clip;
	background: var(--ppps-ink);
	color: var(--ppps-white);
}

:where(.pp-industrial-hero__media, .plasmotec-industrial-hero__media) {
	position: absolute;
	inset: 0;
}

:where(.pp-industrial-hero__media, .plasmotec-industrial-hero__media) :where(img, video) {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

:where(.pp-industrial-hero__overlay, .plasmotec-industrial-hero__overlay) {
	position: absolute;
	inset: 0;
	background: rgba(7, 8, 9, var(--pp-overlay-strength, 0.58));
}

:where(.pp-industrial-hero__inner, .plasmotec-industrial-hero__inner) {
	position: relative;
	z-index: 1;
	width: calc(100% - (var(--ppps-gutter) * 2));
	max-width: var(--ppps-wide);
	margin-inline: auto;
	padding-top: 104px;
	padding-bottom: 72px;
}

:where(.wp-block-plasmotec-industrial-hero, .plasmotec-industrial-hero, .pp-industrial-hero) h1 {
	max-width: 13ch;
	margin-bottom: 26px;
	padding-bottom: 0.08em;
	font-size: 80px;
	line-height: 1.04;
}

:where(.pp-industrial-hero__copy, .plasmotec-industrial-hero__copy) {
	max-width: 680px;
	color: var(--ppps-muted-dark);
	font-size: 21px;
	line-height: 1.55;
}

:where(.pp-industrial-hero__actions, .plasmotec-industrial-hero__actions) {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 34px;
	flex-wrap: wrap;
}

:where(.wp-block-plasmotec-metric-strip, .plasmotec-metric-strip, .pp-metric-strip, .pp-industrial-hero__metrics) {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	border-top: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	color: inherit;
}

:where(.pp-metric-strip__item, .plasmotec-metric-strip__item, .pp-metric-item) {
	min-width: 0;
	padding: 30px 24px;
	border-right: 1px solid currentColor;
}

:where(.pp-metric-strip__item, .plasmotec-metric-strip__item, .pp-metric-item):last-child {
	border-right: 0;
}

:where(.pp-metric-strip__item, .plasmotec-metric-strip__item, .pp-metric-item) :where(strong, [data-counter], [data-count]) {
	display: block;
	font-size: 42px;
	font-weight: 720;
	font-variant-numeric: tabular-nums;
	line-height: 1.05;
}

:where(.pp-metric-strip__label, .plasmotec-metric-strip__label, .pp-metric-item > span:last-child) {
	display: block;
	margin-top: 10px;
	font-size: 12px;
	font-weight: 700;
	opacity: 0.64;
	text-transform: uppercase;
}

:where(.wp-block-plasmotec-editorial-split, .plasmotec-editorial-split, .pp-editorial-split) {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: center;
	gap: 72px;
}

:where(.wp-block-plasmotec-editorial-split, .plasmotec-editorial-split, .pp-editorial-split).is-media-right :where(.pp-editorial-split__media, .plasmotec-editorial-split__media) {
	order: 2;
}

:where(.pp-editorial-split__content, .plasmotec-editorial-split__content, .pp-editorial-split__media, .plasmotec-editorial-split__media) {
	min-width: 0;
}

:where(.pp-editorial-split__media, .plasmotec-editorial-split__media) {
	aspect-ratio: var(--pp-media-ratio, 4 / 3);
	overflow: hidden;
	background: var(--ppps-aluminium);
}

:where(.pp-editorial-split__media, .plasmotec-editorial-split__media) :where(img, video) {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

:where(.wp-block-plasmotec-technical-card-grid, .plasmotec-technical-card-grid, .pp-technical-card-grid, .pp-card-grid),
:where(.pp-technical-card-grid__items, .plasmotec-technical-card-grid__items) {
	display: grid;
	grid-template-columns: repeat(var(--pp-grid-columns, var(--pp-columns, 3)), minmax(0, 1fr));
	gap: 28px;
}

:where(.is-columns-2, [data-columns="2"]) {
	--pp-grid-columns: 2;
}

:where(.is-columns-4, [data-columns="4"]) {
	--pp-grid-columns: 4;
}

:where(.pp-technical-card, .plasmotec-technical-card, .pp-card-grid__item) {
	min-width: 0;
	padding-top: 20px;
	border-top: 2px solid currentColor;
}

:where(.pp-technical-card, .plasmotec-technical-card, .pp-card-grid__item) figure {
	width: 100%;
	aspect-ratio: 4 / 3;
	margin-bottom: 24px;
	overflow: hidden;
	background: var(--ppps-aluminium);
}

:where(.pp-technical-card, .plasmotec-technical-card, .pp-card-grid__item) figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

:where(.pp-technical-card, .plasmotec-technical-card, .pp-card-grid__item) h3 {
	margin-bottom: 14px;
}

:where(.wp-block-plasmotec-process-chain, .plasmotec-process-chain, .pp-process-chain) {
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	-webkit-overflow-scrolling: touch;
}

:where(.pp-process-chain__items, .plasmotec-process-chain__items) {
	display: grid;
	min-width: max-content;
	grid-auto-columns: minmax(220px, 1fr);
	grid-auto-flow: column;
	border-top: 1px solid currentColor;
}

:where(.pp-process-chain__stage, .plasmotec-process-chain__stage) {
	position: relative;
	width: 260px;
	padding: 28px 30px 34px 0;
	border-right: 1px solid currentColor;
}

:where(.pp-process-chain__number, .plasmotec-process-chain__number) {
	display: block;
	margin-bottom: 52px;
	font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
	font-size: 13px;
	opacity: 0.58;
}

:where(.wp-block-plasmotec-timeline, .plasmotec-timeline, .pp-timeline) {
	position: relative;
}

:where(.pp-timeline__items, .plasmotec-timeline__items) {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 0;
	border-top: 1px solid currentColor;
}

:where(.pp-timeline__item, .plasmotec-timeline__item) {
	position: relative;
	min-width: 0;
	padding: 34px 28px 42px 0;
	border-right: 1px solid currentColor;
}

:where(.pp-timeline__date, .plasmotec-timeline__date) {
	display: block;
	margin-bottom: 34px;
	font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
	font-size: 13px;
	font-weight: 700;
}

:where(.wp-block-plasmotec-media-mosaic, .plasmotec-media-mosaic, .pp-media-mosaic) {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	grid-auto-rows: 96px;
	gap: 12px;
}

:where(.pp-media-mosaic__item, .plasmotec-media-mosaic__item) {
	grid-column: span 4;
	grid-row: span 3;
	min-width: 0;
	overflow: hidden;
	background: var(--ppps-aluminium);
}

:where(.pp-media-mosaic__item, .plasmotec-media-mosaic__item):first-child {
	grid-column: span 8;
	grid-row: span 5;
}

:where(.pp-media-mosaic__item, .plasmotec-media-mosaic__item) :where(img, video) {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

:where(.wp-block-plasmotec-equipment-gallery, .plasmotec-equipment-gallery, .pp-equipment-gallery),
:where(.pp-equipment-gallery__items, .plasmotec-equipment-gallery__items) {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

:where(.pp-equipment-card, .plasmotec-equipment-card) {
	min-width: 0;
	border-top: 2px solid currentColor;
	padding-top: 14px;
}

:where(.pp-equipment-card, .plasmotec-equipment-card) figure {
	aspect-ratio: 4 / 3;
	margin-bottom: 20px;
	overflow: hidden;
}

:where(.pp-equipment-card, .plasmotec-equipment-card) figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

:where(.wp-block-plasmotec-technical-table, .plasmotec-technical-table, .pp-technical-table) {
	max-width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

:where(.wp-block-plasmotec-plant-network, .plasmotec-plant-network, .pp-plant-network) {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
	gap: 48px;
}

:where(.pp-plant-network__map, .plasmotec-plant-network__map) {
	position: relative;
	min-height: 560px;
	border: 1px solid currentColor;
	background: var(--ppps-graphite);
}

:where(.pp-plant-network__cards, .plasmotec-plant-network__cards) {
	display: grid;
	align-content: start;
	gap: 1px;
}

:where(.pp-plant-card, .plasmotec-plant-card) {
	min-width: 0;
	padding: 22px 0;
	border-top: 1px solid currentColor;
}

:where(.wp-block-plasmotec-plant-profile-sections, .plasmotec-plant-profile-sections, .pp-plant-profile-sections) > section {
	padding: 64px 0;
	border-top: 1px solid currentColor;
}

:where(.wp-block-plasmotec-component-portfolio, .plasmotec-component-portfolio, .pp-component-portfolio) {
	min-width: 0;
}

:where(.pp-portfolio-filters, .plasmotec-portfolio-filters) {
	display: flex;
	align-items: center;
	gap: 1px;
	margin-bottom: 38px;
	overflow-x: auto;
	border: 1px solid currentColor;
	background: currentColor;
}

:where(.pp-portfolio-filters, .plasmotec-portfolio-filters) button {
	min-height: 42px;
	flex: 0 0 auto;
	border: 0;
	border-radius: 0;
	background: var(--ppps-paper);
	color: var(--ppps-ink);
}

:where(.pp-portfolio-filters, .plasmotec-portfolio-filters) button[aria-selected="true"],
:where(.pp-portfolio-filters, .plasmotec-portfolio-filters) button.is-active {
	background: var(--ppps-ink);
	color: var(--ppps-white);
}

:where(.pp-component-grid, .plasmotec-component-grid, .pp-component-portfolio__grid) {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 38px 24px;
}

:where(.pp-component-card, .plasmotec-component-card) {
	min-width: 0;
	border-top: 2px solid currentColor;
}

:where(.pp-component-card, .plasmotec-component-card) figure {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--ppps-aluminium);
}

:where(.pp-component-card, .plasmotec-component-card) figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

:where(.wp-block-plasmotec-awards-rail, .plasmotec-awards-rail),
:where(.pp-awards-rail__items, .plasmotec-awards-rail__items) {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 28px;
}

:where(.pp-award-card, .plasmotec-award-card) {
	min-width: 0;
	padding-top: 14px;
	border-top: 2px solid currentColor;
}

:where(.pp-award-card, .plasmotec-award-card) figure {
	display: grid;
	aspect-ratio: 4 / 3;
	margin-bottom: 20px;
	place-items: center;
	overflow: hidden;
	background: var(--ppps-white);
}

:where(.pp-award-card, .plasmotec-award-card) figure img {
	width: 100%;
	height: 100%;
	padding: 18px;
	object-fit: contain;
}

:where(.wp-block-plasmotec-customer-trust-grid, .plasmotec-customer-trust-grid, .pp-customer-trust-grid),
:where(.pp-customer-trust-grid__items, .plasmotec-customer-trust-grid__items) {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	border: 1px solid currentColor;
	background: currentColor;
}

:where(.pp-customer-card, .plasmotec-customer-card) {
	display: grid;
	min-height: 190px;
	min-width: 0;
	align-content: center;
	padding: 24px;
	background: var(--ppps-paper);
	color: var(--ppps-ink);
}

:where(.pp-customer-card, .plasmotec-customer-card) img {
	width: 100%;
	height: 72px;
	object-fit: contain;
}

:where(.wp-block-plasmotec-journal-feature, .plasmotec-journal-feature, .pp-journal-feature),
:where(.pp-journal-feature__grid, .plasmotec-journal-feature__grid) {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
	gap: 48px;
}

:where(.wp-block-plasmotec-newsroom-feed, .plasmotec-newsroom-feed, .pp-newsroom-feed),
:where(.pp-newsroom-feed__items, .plasmotec-newsroom-feed__items) {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

:where(.pp-journal-card, .plasmotec-journal-card, .pp-news-card, .plasmotec-news-card) {
	min-width: 0;
	padding-top: 18px;
	border-top: 2px solid currentColor;
}

:where(.pp-journal-card, .plasmotec-journal-card, .pp-news-card, .plasmotec-news-card) figure {
	aspect-ratio: 16 / 10;
	margin-bottom: 20px;
	overflow: hidden;
}

:where(.pp-journal-card, .plasmotec-journal-card, .pp-news-card, .plasmotec-news-card) figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

:where(.wp-block-plasmotec-csr-proof, .plasmotec-csr-proof, .pp-csr-proof),
:where(.pp-csr-proof__grid, .plasmotec-csr-proof__grid) {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 48px;
}

:where(.wp-block-plasmotec-compliance-document-list, .plasmotec-compliance-document-list, .pp-compliance-document-list) {
	border-top: 2px solid currentColor;
}

:where(.pp-compliance-document, .plasmotec-compliance-document) {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(100px, 0.4fr)) auto;
	align-items: center;
	gap: 20px;
	min-width: 0;
	padding: 18px 0;
	border-bottom: 1px solid currentColor;
}

:where(.wp-block-plasmotec-enquiry-cta, .plasmotec-enquiry-cta, .pp-enquiry-cta) {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.4fr);
	align-items: end;
	gap: 48px;
	padding: 80px var(--ppps-gutter);
	background: var(--ppps-ink);
	color: var(--ppps-white);
}

:where(.wp-block-plasmotec-enquiry-cta, .plasmotec-enquiry-cta, .pp-enquiry-cta) h2 {
	max-width: 18ch;
	margin-bottom: 18px;
}

:where(.wp-block-plasmotec-rich-editorial, .plasmotec-rich-editorial, .pp-rich-editorial) {
	max-width: var(--ppps-content);
	margin-inline: auto;
}

:where(.wp-block-plasmotec-form-embed, .plasmotec-form-embed, .pp-form-embed) {
	max-width: 1180px;
	margin-inline: auto;
}

:where(.wp-block-plasmotec-form-embed, .plasmotec-form-embed, .pp-form-embed) form.pp-native-form {
	display: block;
}

:where(.wp-block-plasmotec-form-embed, .plasmotec-form-embed, .pp-form-embed) form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

:where(.wp-block-plasmotec-form-embed, .plasmotec-form-embed, .pp-form-embed) :where(.form-field--full, .pp-form-field--full, button[type="submit"], .form-status) {
	grid-column: 1 / -1;
}

/* Motion primitives initialize only after JavaScript opts elements in. */
[data-reveal-ready="true"] {
	opacity: 0;
	transform: translate3d(0, var(--ppps-reveal-distance), 0);
	transition: opacity var(--ppps-reveal-duration) var(--ppps-ease), transform var(--ppps-reveal-duration) var(--ppps-ease);
	will-change: opacity, transform;
}

[data-reveal-ready="true"].is-revealed,
[data-reveal-ready="true"].is-inview {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

[data-counter],
[data-count] {
	font-variant-numeric: tabular-nums;
}

body.ppps-page-studio .pp-hero__technical-field {
	background-color: var(--ppps-ink);
	background-image: linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
	background-size: 64px 64px;
}

body.ppps-motion-off [data-reveal-ready="true"],
body.ppps-motion-reduced [data-reveal-ready="true"],
body.ppps-motion-off [data-pp-reveal],
body.ppps-motion-reduced [data-pp-reveal] {
	opacity: 1;
	transform: none;
}

body.ppps-motion-off *,
body.ppps-motion-off *::before,
body.ppps-motion-off *::after,
body.ppps-motion-reduced *,
body.ppps-motion-reduced *::before,
body.ppps-motion-reduced *::after {
	animation: none !important;
	transition-duration: 0.01ms !important;
}

body.ppps-motion-reduced [data-ppps-heading="true"],
body.ppps-motion-reduced [data-ppps-media-frame="true"],
body.ppps-motion-off [data-ppps-heading="true"],
body.ppps-motion-off [data-ppps-media-frame="true"] {
	clip-path: none;
	opacity: 1;
	transform: none;
}

body.ppps-motion-reduced [data-ppps-media-frame="true"]::after,
body.ppps-motion-off [data-ppps-media-frame="true"]::after {
	display: none;
}

body.ppps-motion-reduced [data-ppps-media-frame="true"] > :is(img, video),
body.ppps-motion-reduced [data-ppps-media-frame="true"] picture > :is(img, video),
body.ppps-motion-off [data-ppps-media-frame="true"] > :is(img, video),
body.ppps-motion-off [data-ppps-media-frame="true"] picture > :is(img, video) {
	transform: none;
}

/* Password, system, comments, and search surfaces. */
.protected-entry,
.presentation-gate,
.system-message {
	position: relative;
	min-height: 620px;
	display: grid;
	align-items: center;
	overflow: clip;
	background: var(--ppps-ink);
	color: var(--ppps-white);
}

.protected-entry__inner,
.presentation-gate__inner,
.system-message__inner {
	position: relative;
	z-index: 1;
	padding-top: 96px;
	padding-bottom: 96px;
}

.password-form,
.search-form {
	margin-top: 34px;
}

.password-form__controls,
.search-form__controls {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
}

.password-form__error {
	margin-top: 14px;
	color: #f6b5a5;
	font-size: 14px;
}

.system-message__actions {
	margin-top: 30px;
}

.system-message .search-form {
	max-width: 620px;
	margin-top: 58px;
}

.comments-area {
	padding-top: 72px;
	padding-bottom: 96px;
	border-top: 1px solid var(--ppps-light-line);
}

.comment-list {
	margin: 36px 0 64px;
	padding: 0;
	list-style: none;
}

.comment-list .children {
	margin-left: 28px;
	padding-left: 24px;
	border-left: 1px solid var(--ppps-light-line);
	list-style: none;
}

.comment-body {
	padding: 24px 0;
	border-top: 1px solid var(--ppps-light-line);
}

.comment-meta {
	margin-bottom: 16px;
	font-size: 13px;
}

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

.comment-form-comment,
.comment-notes,
.comment-form-cookies-consent,
.form-submit {
	grid-column: 1 / -1;
}

.comment-form-cookies-consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.comment-form-cookies-consent input {
	width: auto;
	min-height: 0;
	margin-top: 7px;
}

/* Footer. */
.site-footer {
	position: relative;
	background: var(--ppps-ink);
	color: var(--ppps-white);
}

.site-footer__cta {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
	gap: clamp(48px, 8vw, 140px);
	align-items: end;
	padding-top: clamp(76px, 10vw, 150px);
	padding-bottom: clamp(72px, 9vw, 132px);
	border-bottom: 1px solid var(--ppps-dark-line);
}

.site-footer__cta .eyebrow {
	margin-bottom: 24px;
	color: var(--ppps-muted-dark);
}

.site-footer__cta h2 {
	max-width: 820px;
	margin: 0;
	font-size: clamp(3.2rem, 5.6vw, 6.2rem);
	line-height: .96;
}

.site-footer__cta > div:last-child {
	display: grid;
	gap: 28px;
}

.site-footer__cta > div:last-child p {
	margin: 0;
	color: var(--ppps-muted-dark);
}

.site-footer__cta-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 18px 0;
	border-top: 1px solid rgba(255,255,255,.35);
	border-bottom: 1px solid rgba(255,255,255,.35);
	font-size: 14px;
	font-weight: 720;
	text-decoration: none;
}

.site-footer__cta-link .pp-icon {
	display: block;
	flex: 0 0 2.5rem;
	inline-size: 2.5rem;
	block-size: 2.5rem;
	max-inline-size: 2.5rem;
	max-block-size: 2.5rem;
}

.site-footer__cta-link:hover,
.site-footer__cta-link:focus-visible {
	color: var(--ppps-signal);
}

.site-footer__main {
	display: grid;
	grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
	gap: 80px;
	padding-top: 82px;
	padding-bottom: 72px;
}

.site-footer__identity {
	min-width: 0;
}

.site-footer__brand {
	display: inline-flex;
	width: 210px;
	height: 44px;
	align-items: center;
	margin-bottom: 24px;
}

.site-footer__identity p {
	max-width: 380px;
	margin-bottom: 0;
	color: var(--ppps-muted-dark);
	font-size: 15px;
}

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

.footer-menu .ppps-menu-intro,
.footer-menu .sub-menu a small {
	display: none;
}

.footer-menu > li > a {
	display: block;
	margin-bottom: 18px;
	font-size: 13px;
	font-weight: 750;
	text-decoration: none;
	text-transform: uppercase;
}

.footer-menu .sub-menu a {
	display: block;
	padding: 5px 0;
	color: var(--ppps-muted-dark);
	font-size: 14px;
	text-decoration: none;
}

.footer-menu a:hover,
.footer-menu a:focus-visible,
.footer-menu .current-menu-item > a {
	color: var(--ppps-signal);
}

.site-footer__bottom {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 28px;
	padding-top: 24px;
	padding-bottom: 28px;
	border-top: 1px solid var(--ppps-dark-line);
	color: var(--ppps-muted-dark);
	font-size: 12px;
}

.site-footer__bottom p {
	margin: 0;
}

.site-footer__credit {
	justify-self: end;
}

/* V15 homepage composition: curated editorial rhythm over generic directories. */
.home .pp-block__title {
	letter-spacing: -0.045em;
}

.home .pp-block--technical-card-grid .pp-card-grid {
	border: 0;
	gap: 18px;
	background: transparent;
}

.home .pp-block--technical-card-grid .pp-technical-card {
	display: grid;
	grid-template-rows: auto auto auto minmax(0, 1fr) auto;
	min-height: 440px;
	align-content: stretch;
	padding: 36px;
	border: 1px solid rgba(7, 8, 9, 0.1);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.62);
	transition: transform 320ms var(--ppps-ease), background-color 220ms ease, box-shadow 320ms ease;
}

.home .pp-block--technical-card-grid .pp-technical-card:nth-child(2) { min-height: 440px; }
.home .pp-block--technical-card-grid .pp-technical-card:hover,
.home .pp-block--technical-card-grid .pp-technical-card:focus-within {
	background: var(--ppps-white);
	box-shadow: 0 24px 54px rgba(7, 8, 9, 0.1);
	transform: translateY(-6px);
}

.home .pp-block--technical-card-grid .pp-technical-card__number {
	position: absolute;
	top: 28px;
	right: 30px;
	font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
	font-size: 12px;
	opacity: 0.48;
}

.home .pp-block--technical-card-grid .pp-technical-card h3 {
	font-size: clamp(1.8rem, 2.3vw, 2.45rem);
	letter-spacing: -0.035em;
}

.home .pp-block--component-portfolio {
	background:
		linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
		var(--ppps-graphite);
	background-size: 72px 72px;
}

.home .pp-awards-rail {
	gap: 16px;
	border: 0;
}

.home .pp-award {
	border: 1px solid rgba(7, 8, 9, 0.12);
	border-radius: 12px;
	overflow: hidden;
	background: var(--ppps-white);
}

/* V17 process story: the proposition owns the canvas; evidence and stages follow. */
.pp-block--process-chain.pp-process--pinned .pp-block__inner {
	display: block;
}

.pp-process-story__header {
	width: 100%;
	max-width: none;
	margin-bottom: clamp(52px, 8vw, 124px);
}

.pp-process-story__header .pp-block__header {
	width: 100%;
	max-width: none;
	margin: 0;
}

.pp-process-story__header .pp-block__title {
	max-width: 13ch;
	margin: 0;
	overflow: visible;
	font-size: clamp(3.8rem, 7.4vw, 8.8rem);
	letter-spacing: -.065em;
	line-height: .89;
	overflow-wrap: normal;
	word-break: normal;
}

/* The story heading is deliberately stable. Its scale and wrapping carry the reveal. */
.pp-process-story__header [data-ppps-heading="true"] {
	clip-path: none;
	transform: none;
	transition: none;
}

.pp-process-story__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
	gap: clamp(48px, 6vw, 112px);
	align-items: start;
}

.pp-block--process-chain.pp-process--pinned .pp-process-story__layout .pp-process__sticky {
	position: sticky;
	top: calc(var(--ppps-admin-offset) + var(--ppps-header-height) + 48px);
	min-width: 0;
}

.pp-process__media-stack {
	position: relative;
	width: 100%;
	min-height: clamp(430px, 47vw, 720px);
	aspect-ratio: 1 / 1;
	overflow: clip;
	background:
		linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
		#111516;
	background-size: 48px 48px;
	isolation: isolate;
}

.pp-process__media {
	position: absolute;
	inset: 0;
	margin: 0;
	opacity: 0;
	pointer-events: none;
	transform: scale(1.025);
	transition: opacity 520ms ease, transform 880ms var(--ppps-ease), visibility 0s linear 880ms;
	visibility: hidden;
}

.pp-process__media.is-active,
.pp-process__media[aria-hidden="false"] {
	opacity: 1;
	transform: none;
	transition-delay: 0s;
	visibility: visible;
}

.no-js .pp-process__media:first-child {
	opacity: 1;
	transform: none;
	visibility: visible;
}

.pp-process__media :is(picture, img, video),
.pp-process__media > :is(img, video),
.pp-process__stage-media :is(picture, img, video),
.pp-process__stage-media > :is(img, video) {
	display: block;
	width: 100%;
	height: 100%;
}

.pp-process__media :is(img, video),
.pp-process__media > :is(img, video),
.pp-process__stage-media :is(img, video),
.pp-process__stage-media > :is(img, video) {
	object-fit: cover;
	object-position: var(--pp-media-focal-x, 50%) var(--pp-media-focal-y, 50%);
}

.pp-process__media figcaption,
.pp-process__stage-media figcaption {
	position: absolute;
	right: 18px;
	bottom: 16px;
	left: 18px;
	z-index: 2;
	margin: 0;
	color: rgba(255,255,255,.72);
	font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
	font-size: 9px;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.pp-process__stage-media {
	position: relative;
	display: none;
	width: 100%;
	aspect-ratio: 4 / 3;
	margin: 0 0 30px;
	overflow: clip;
	background: #111516;
}

@media (min-width: 901px) {
	.pp-block--process-chain.pp-process--pinned .pp-process-story__layout .pp-process {
		display: grid;
		padding: 0;
		overflow: visible;
		scroll-snap-type: none;
	}

	.pp-block--process-chain.pp-process--pinned .pp-process-story__layout .pp-process__stage {
		display: grid;
		min-height: clamp(260px, 34vh, 390px);
		padding: 34px 0 52px;
		grid-template-columns: 68px minmax(0, 1fr);
		align-content: start;
		column-gap: 24px;
		border-top: 1px solid rgba(255,255,255,.24);
	}

	.pp-block--process-chain.pp-process--pinned .pp-process-story__layout .pp-process__stage::before { top: -5px; }
	.pp-block--process-chain.pp-process--pinned .pp-process-story__layout .pp-process__number { margin: 0; grid-row: 1 / span 4; }
	.pp-block--process-chain.pp-process--pinned .pp-process-story__layout .pp-process h3 { margin: 0 0 16px; font-size: clamp(2rem, 2.7vw, 3.35rem); letter-spacing: -.045em; }
	.pp-block--process-chain.pp-process--pinned .pp-process-story__layout .pp-process p { max-width: 560px; }
	.pp-block--process-chain.pp-process--pinned .pp-process-story__layout .pp-process .pp-text-link { grid-column: 2; justify-self: start; margin-top: 20px; }
}

@media (max-width: 900px) {
	.pp-process-story__header {
		margin-bottom: 48px;
	}

	.pp-process-story__header .pp-block__title {
		max-width: none;
		font-size: clamp(3rem, 12.5vw, 6.2rem);
		line-height: .92;
	}

	.pp-process-story__layout {
		display: block;
	}

	.pp-block--process-chain.pp-process--pinned .pp-process-story__layout .pp-process__sticky {
		position: static;
	}

	.pp-process__media-stack {
		display: none;
	}

	.pp-process__stage-media {
		display: block;
	}

	.pp-block--process-chain.pp-process--pinned .pp-process-story__layout .pp-process {
		display: grid;
		width: auto;
		min-width: 0;
		margin-right: 0;
		padding: 0;
		overflow: visible;
		scroll-snap-type: none;
	}

	.pp-block--process-chain.pp-process--pinned .pp-process-story__layout .pp-process__stage {
		flex: none;
		width: 100%;
		min-height: 0;
		padding: 36px 0 52px;
		border-top: 1px solid rgba(255,255,255,.24);
		scroll-snap-align: none;
	}

	.pp-block--process-chain.pp-process--pinned .pp-process-story__layout .pp-process__number {
		margin-bottom: 24px;
	}
}

.legal-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	flex-wrap: wrap;
}

.legal-menu a {
	color: inherit;
	text-decoration: none;
}

/* V17 studio system: compact chrome, full-screen index, editorial motion. */
.site-header,
.site-header.is-floating,
.site-header.is-navigation-open,
.site-header.is-navigation-open.is-floating {
	top: calc(var(--ppps-admin-offset) + 18px);
	width: min(calc(100% - 36px), var(--ppps-wide));
	min-height: 68px;
	border-radius: 2px;
	background: rgba(7, 8, 9, .84);
	box-shadow: none;
}

.site-header__inner,
.site-header.is-floating .site-header__inner {
	min-height: 68px;
	grid-template-columns: minmax(176px, 1fr) auto auto auto;
	gap: clamp(14px, 2vw, 32px);
	padding: 12px 16px 12px 22px;
}

.site-branding {
	width: 176px;
	height: 38px;
}

.site-header__descriptor {
	grid-column: 2;
	margin: 0;
	color: rgba(255,255,255,.52);
	font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
	font-size: 9px;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.no-js .site-header {
	position: relative;
	top: auto;
	left: auto;
	width: min(calc(100% - 36px), var(--ppps-wide));
	margin-inline: auto;
	transform: none;
}

.no-js .site-header__inner {
	grid-template-columns: minmax(176px, 1fr) auto auto;
	grid-auto-rows: auto;
}

.no-js .primary-navigation {
	display: block;
	width: 100%;
	grid-column: 1 / -1;
	overflow-x: auto;
}

.no-js .primary-menu {
	justify-content: flex-start;
	flex-wrap: wrap;
}

.no-js .navigation-toggle,
.no-js .site-header-reserve {
	display: none;
}

.js .primary-navigation {
	display: none;
}

.header-cta {
	grid-column: 3;
	min-height: 42px;
	padding-inline: 17px;
	border-radius: 2px;
}

.js .navigation-toggle,
.navigation-toggle {
	position: relative;
	display: inline-grid;
	width: auto;
	min-width: 92px;
	height: 42px;
	min-height: 42px;
	grid-column: 4;
	grid-template-columns: auto 20px;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 0 14px;
	border-color: rgba(255,255,255,.34);
}

.navigation-toggle strong {
	font-size: 10px;
	font-weight: 760;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.navigation-toggle span {
	position: absolute;
	right: 14px;
	width: 18px;
}

.navigation-drawer {
	z-index: var(--ppps-layer-menu);
	color: var(--ppps-ink);
	transition: opacity 260ms ease;
}

.navigation-drawer__backdrop {
	background: rgba(7,8,9,.76);
}

.navigation-drawer__inner {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: calc(var(--ppps-admin-offset) + 118px) max(var(--ppps-gutter), calc((100% - var(--ppps-wide)) / 2)) 42px;
	background:
		linear-gradient(rgba(7,8,9,.055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(7,8,9,.055) 1px, transparent 1px),
		var(--ppps-paper);
	background-size: 80px 80px;
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
	transform: translateY(-24px);
	transition: transform 620ms var(--ppps-ease);
}

.navigation-drawer.is-open .navigation-drawer__inner {
	transform: translateY(0);
}

.navigation-drawer__heading,
.navigation-drawer__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
	font-size: 10px;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.navigation-drawer__heading {
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(7,8,9,.22);
}

.mobile-menu {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
	gap: 1px;
	counter-reset: ppps-menu-groups;
	background: rgba(7,8,9,.18);
}

.mobile-menu > li {
	position: relative;
	min-width: 0;
	padding: clamp(26px, 3.5vw, 58px) clamp(18px, 2.2vw, 38px) 32px;
	border: 0;
	background: var(--ppps-paper);
	counter-increment: ppps-menu-groups;
}

.mobile-menu > li::before {
	display: block;
	margin-bottom: clamp(40px, 8vh, 96px);
	content: "0" counter(ppps-menu-groups);
	font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
	font-size: 10px;
	letter-spacing: .1em;
	opacity: .5;
}

.mobile-menu > li > a {
	padding: 0 0 24px;
	font-size: clamp(2rem, 2.6vw, 3.75rem);
	font-weight: 720;
	letter-spacing: -.055em;
	line-height: .92;
	overflow-wrap: normal;
	word-break: normal;
}

.mobile-menu .sub-menu {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	padding: 0;
	border-top: 1px solid rgba(7,8,9,.24);
}

.mobile-menu .sub-menu a {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid rgba(7,8,9,.12);
	color: var(--ppps-ink);
	font-size: 13px;
}

.mobile-menu .sub-menu a::after {
	content: "";
	width: 14px;
	height: 14px;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 12 12 4M6 4h6v6' fill='none' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 12 12 4M6 4h6v6' fill='none' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E") center / contain no-repeat;
	opacity: 0;
	transform: translate(-5px, 5px);
	transition: opacity 180ms ease, transform 260ms var(--ppps-ease);
}

.mobile-menu .sub-menu a:hover::after,
.mobile-menu .sub-menu a:focus-visible::after {
	opacity: 1;
	transform: none;
}

.mobile-menu .sub-menu a small {
	display: block;
	grid-column: 1 / -1;
	margin: 0;
	font-size: 10px;
	line-height: 1.45;
	opacity: .52;
}

.mobile-menu .ppps-menu-intro {
	display: none;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible,
.mobile-menu .current-menu-item > a,
.mobile-menu .current-menu-ancestor > a {
	color: var(--ppps-oxide);
	font-weight: 820;
}

.navigation-drawer__footer {
	margin-top: 28px;
	padding-top: 18px;
	border-top: 1px solid rgba(7,8,9,.22);
}

.navigation-drawer__footer p {
	margin: 0;
	opacity: .56;
}

.navigation-drawer__footer a {
	font-family: Inter, "Helvetica Neue", Arial, sans-serif;
	font-size: 12px;
	font-weight: 760;
	letter-spacing: 0;
	text-decoration: none;
	text-transform: none;
}

.navigation-drawer__cta {
	display: none;
}

[data-ppps-heading="true"] {
	clip-path: inset(0 0 106% 0);
	transform: translate3d(0, var(--ppps-heading-distance), 0);
	transition: clip-path var(--ppps-heading-duration) var(--ppps-ease), transform var(--ppps-heading-duration) var(--ppps-ease);
	transition-delay: calc(var(--ppps-heading-order, 0) * var(--ppps-heading-delay));
}

[data-ppps-heading="true"].is-choreography-visible {
	clip-path: inset(-.12em 0 -.16em 0);
	transform: none;
}

[data-ppps-media-frame="true"] {
	position: relative;
	overflow: clip;
	clip-path: inset(0 0 100% 0);
	transition: clip-path var(--ppps-heading-media-duration) var(--ppps-ease);
	transition-delay: calc(var(--ppps-media-order, 0) * var(--ppps-heading-media-delay));
}

[data-ppps-media-frame="true"]::after {
	position: absolute;
	z-index: 5;
	inset: 0;
	background: var(--ppps-signal);
	content: "";
	pointer-events: none;
	transform: translateY(0);
	transition: transform var(--ppps-heading-media-duration) var(--ppps-ease) var(--ppps-heading-media-delay);
}

[data-ppps-media-frame="true"].is-choreography-visible {
	clip-path: inset(0);
}

[data-ppps-media-frame="true"].is-choreography-visible::after {
	transform: translateY(-101%);
}

[data-ppps-media-frame="true"] > :is(img, video),
[data-ppps-media-frame="true"] picture > :is(img, video) {
	transform: translate3d(0, calc((var(--ppps-media-progress, .5) - .5) * var(--ppps-media-lift)), 0) scale(1.055);
	transition: transform 100ms linear;
}

.pp-award [data-ppps-media-frame="true"] img,
.pp-award figure[data-ppps-media-frame="true"] img {
	transform: none;
}

.site-main > .pp-block[data-ppps-section-ready="true"]::after,
.page-studio-content > .pp-block[data-ppps-section-ready="true"]::after {
	position: absolute;
	z-index: 6;
	top: 28px;
	right: max(var(--ppps-gutter), calc((100% - var(--ppps-wide)) / 2));
	content: attr(data-ppps-section-index);
	font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
	font-size: 9px;
	letter-spacing: .12em;
	opacity: .42;
}

.pp-button,
.button,
.site-footer__cta-link,
.record-card__action {
	transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, transform 320ms var(--ppps-ease);
}

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

.site-footer {
	overflow: clip;
}

.site-footer__wordmark {
	box-sizing: border-box;
	width: 100%;
	padding: 0 clamp(8px, 1.2vw, 20px) 14px;
	overflow: hidden;
	border-top: 1px solid var(--ppps-dark-line);
}

.site-footer__wordmark span {
	display: block;
	width: 100%;
	font-size: clamp(1.75rem, 8.2vw, 11.8rem);
	font-weight: 760;
	letter-spacing: -.064em;
	line-height: .88;
	text-align: center;
	text-transform: uppercase;
	white-space: nowrap;
}

/* Responsive composition. */
@media (max-width: 1280px) {
	:root {
		--ppps-gutter: 44px;
		--ppps-section-space: 104px;
	}

	.site-header__inner {
		gap: 20px;
	}

	.primary-menu {
		gap: 18px;
	}

	.primary-menu a,
	.header-cta {
		font-size: 11px;
	}

	:where(.wp-block-plasmotec-technical-card-grid, .plasmotec-technical-card-grid, .pp-technical-card-grid, .pp-card-grid),
	:where(.pp-technical-card-grid__items, .plasmotec-technical-card-grid__items) {
		--pp-grid-columns: 3;
	}
}

@media (max-width: 1120px) {
	h1 {
		font-size: 58px;
	}

	h2 {
		font-size: 42px;
	}

	.js .primary-navigation {
		display: none;
	}

	.js .navigation-toggle {
		position: relative;
		display: inline-flex;
		justify-self: end;
	}

	.header-cta {
		grid-column: 2;
	}

	.navigation-toggle {
		grid-column: 3;
	}

	.site-header__inner {
		grid-template-columns: minmax(160px, 1fr) auto auto;
	}

	.site-header:not(.has-header-cta) .navigation-toggle {
		grid-column: 3;
	}

	.no-js .site-header {
		position: relative;
		top: auto;
	}

	.no-js .site-header__inner {
		grid-template-columns: 1fr auto;
	}

	.no-js .primary-navigation {
		grid-column: 1 / -1;
		width: 100%;
		overflow-x: auto;
	}

	.no-js .primary-menu {
		justify-content: flex-start;
	}

	.no-js .navigation-toggle,
	.no-js .site-header-reserve {
		display: none;
	}

	.entry-hero--single .entry-hero__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 48px;
	}

	.record-grid,
	:where(.pp-component-grid, .plasmotec-component-grid, .pp-component-portfolio__grid),
	:where(.wp-block-plasmotec-newsroom-feed, .plasmotec-newsroom-feed, .pp-newsroom-feed),
	:where(.pp-newsroom-feed__items, .plasmotec-newsroom-feed__items),
	:where(.wp-block-plasmotec-equipment-gallery, .plasmotec-equipment-gallery, .pp-equipment-gallery),
	:where(.pp-equipment-gallery__items, .plasmotec-equipment-gallery__items) {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	:where(.wp-block-plasmotec-customer-trust-grid, .plasmotec-customer-trust-grid, .pp-customer-trust-grid),
	:where(.pp-customer-trust-grid__items, .plasmotec-customer-trust-grid__items) {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	:root {
		--ppps-gutter: 32px;
		--ppps-section-space: 88px;
	}

	.entry-hero__inner,
	.listing-header__inner {
		padding-top: 88px;
		padding-bottom: 88px;
	}

	.entry-hero--single .entry-hero__inner,
	.component-dossier,
	:where(.wp-block-plasmotec-editorial-split, .plasmotec-editorial-split, .pp-editorial-split),
	:where(.wp-block-plasmotec-plant-network, .plasmotec-plant-network, .pp-plant-network),
	:where(.wp-block-plasmotec-journal-feature, .plasmotec-journal-feature, .pp-journal-feature),
	:where(.pp-journal-feature__grid, .plasmotec-journal-feature__grid),
	:where(.wp-block-plasmotec-csr-proof, .plasmotec-csr-proof, .pp-csr-proof),
	:where(.pp-csr-proof__grid, .plasmotec-csr-proof__grid) {
		grid-template-columns: 1fr;
	}

	.component-dossier { padding: 52px 0; gap: 36px; }
	.component-dossier__facts div { grid-template-columns: 1fr; gap: 6px; }

	.entry-hero__media {
		max-width: 680px;
	}

	:where(.wp-block-plasmotec-editorial-split, .plasmotec-editorial-split, .pp-editorial-split).is-media-right :where(.pp-editorial-split__media, .plasmotec-editorial-split__media) {
		order: initial;
	}

	:where(.wp-block-plasmotec-technical-card-grid, .plasmotec-technical-card-grid, .pp-technical-card-grid, .pp-card-grid),
	:where(.pp-technical-card-grid__items, .plasmotec-technical-card-grid__items) {
		--pp-grid-columns: 2;
	}

	:where(.wp-block-plasmotec-customer-trust-grid, .plasmotec-customer-trust-grid, .pp-customer-trust-grid),
	:where(.pp-customer-trust-grid__items, .plasmotec-customer-trust-grid__items) {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	:where(.pp-compliance-document, .plasmotec-compliance-document) {
		grid-template-columns: minmax(0, 1fr) auto;
	}

	:where(.pp-compliance-document, .plasmotec-compliance-document) > :not(:first-child):not(:last-child) {
		display: none;
	}

	.site-footer__main {
		grid-template-columns: 1fr;
		gap: 52px;
	}

	.site-footer__cta {
		grid-template-columns: 1fr;
		gap: 44px;
	}

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

@media (max-width: 782px) {
	body.admin-bar {
		--ppps-admin-offset: 46px;
	}
}

@media (max-width: 720px) {
	:root {
		--ppps-gutter: 20px;
		--ppps-header-height: 64px;
		--ppps-section-space: 72px;
	}

	body {
		font-size: 16px;
	}

	h1 {
		font-size: 42px;
		line-height: 1.07;
	}

	h2 {
		font-size: 34px;
		line-height: 1.12;
	}

	h3 {
		font-size: 24px;
	}

	.site-header__inner,
	.site-header.is-floating .site-header__inner {
		min-height: var(--ppps-header-height);
		grid-template-columns: minmax(128px, 1fr) auto;
		gap: 14px;
		padding: 10px 18px;
	}

	.site-header,
	.site-header.is-floating,
	.site-header.is-navigation-open,
	.site-header.is-navigation-open.is-floating {
		top: calc(var(--ppps-admin-offset) + 16px);
		left: 50%;
		width: calc(100% - 32px);
		transform: translate3d(-50%, 0, 0);
	}

	.site-header.has-header-cta .header-cta {
		display: none;
	}

	.site-header.has-header-cta .navigation-toggle,
	.site-header:not(.has-header-cta) .navigation-toggle {
		grid-column: 2;
	}

	.site-branding {
		width: 160px;
		height: 38px;
	}

	.site-branding__image {
		height: 29px;
	}

	.navigation-drawer__inner {
		width: min(320px, calc(100% - 44px));
		padding: calc(var(--ppps-header-height) + 28px) var(--ppps-gutter) 36px;
	}

	.mobile-menu > li > a {
		padding: 14px 0;
		font-size: 29px;
	}

	.mobile-menu .sub-menu {
		grid-template-columns: 1fr;
		padding-left: 12px;
	}

	.entry-hero__inner,
	.listing-header__inner {
		padding-top: 70px;
		padding-bottom: 72px;
	}

	.entry-hero h1,
	.listing-header h1,
	.presentation-gate h1,
	.system-message h1 {
		margin-bottom: 22px;
	}

	.entry-hero__summary,
	.listing-header__description,
	.presentation-gate__inner > p,
	.system-message__inner > p {
		font-size: 18px;
	}

	.standard-entry-content,
	.single-entry-content,
	.listing-section {
		padding-top: 72px;
		padding-bottom: 80px;
	}

	.record-grid,
	:where(.wp-block-plasmotec-technical-card-grid, .plasmotec-technical-card-grid, .pp-technical-card-grid, .pp-card-grid),
	:where(.pp-technical-card-grid__items, .plasmotec-technical-card-grid__items),
	:where(.pp-component-grid, .plasmotec-component-grid, .pp-component-portfolio__grid),
	:where(.wp-block-plasmotec-newsroom-feed, .plasmotec-newsroom-feed, .pp-newsroom-feed),
	:where(.pp-newsroom-feed__items, .plasmotec-newsroom-feed__items),
	:where(.wp-block-plasmotec-equipment-gallery, .plasmotec-equipment-gallery, .pp-equipment-gallery),
	:where(.pp-equipment-gallery__items, .plasmotec-equipment-gallery__items),
	:where(.wp-block-plasmotec-customer-trust-grid, .plasmotec-customer-trust-grid, .pp-customer-trust-grid),
	:where(.pp-customer-trust-grid__items, .plasmotec-customer-trust-grid__items) {
		grid-template-columns: 1fr;
	}

	.record-card h2 {
		font-size: 25px;
	}

	.post-navigation {
		grid-template-columns: 1fr;
	}

	.post-navigation > div:last-child {
		text-align: left;
	}

	.wp-block-columns:not(.is-not-stacked-on-mobile) {
		gap: 24px;
	}

	:where(.wp-block-plasmotec-industrial-hero, .plasmotec-industrial-hero, .pp-industrial-hero) {
		min-height: max(560px, calc(100svh - var(--ppps-header-height)));
	}

	:where(.pp-industrial-hero__inner, .plasmotec-industrial-hero__inner) {
		padding-top: 80px;
		padding-bottom: 44px;
	}

	:where(.wp-block-plasmotec-industrial-hero, .plasmotec-industrial-hero, .pp-industrial-hero) h1 {
		font-size: 44px;
		line-height: 1.07;
	}

	:where(.pp-industrial-hero__copy, .plasmotec-industrial-hero__copy) {
		font-size: 18px;
	}

	:where(.wp-block-plasmotec-metric-strip, .plasmotec-metric-strip, .pp-metric-strip, .pp-industrial-hero__metrics) {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	:where(.pp-metric-strip__item, .plasmotec-metric-strip__item, .pp-metric-item) {
		padding: 22px 16px;
		border-bottom: 1px solid currentColor;
	}

	:where(.pp-metric-strip__item, .plasmotec-metric-strip__item, .pp-metric-item) :where(strong, [data-counter], [data-count]) {
		font-size: 32px;
	}

	:where(.pp-process-chain__items, .plasmotec-process-chain__items) {
		display: block;
		min-width: 0;
		border-left: 1px solid currentColor;
		border-top: 0;
	}

	:where(.pp-process-chain__stage, .plasmotec-process-chain__stage) {
		width: auto;
		padding: 24px 0 24px 22px;
		border-right: 0;
		border-bottom: 1px solid currentColor;
	}

	:where(.pp-process-chain__number, .plasmotec-process-chain__number) {
		margin-bottom: 16px;
	}

	:where(.pp-timeline__items, .plasmotec-timeline__items) {
		grid-template-columns: 1fr;
		border-top: 0;
		border-left: 1px solid currentColor;
	}

	:where(.pp-timeline__item, .plasmotec-timeline__item) {
		padding: 24px 0 24px 22px;
		border-right: 0;
		border-bottom: 1px solid currentColor;
	}

	:where(.pp-timeline__date, .plasmotec-timeline__date) {
		margin-bottom: 14px;
	}

	:where(.wp-block-plasmotec-media-mosaic, .plasmotec-media-mosaic, .pp-media-mosaic) {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-auto-rows: 150px;
	}

	:where(.pp-media-mosaic__item, .plasmotec-media-mosaic__item),
	:where(.pp-media-mosaic__item, .plasmotec-media-mosaic__item):first-child {
		grid-column: span 1;
		grid-row: span 1;
	}

	:where(.pp-plant-network__map, .plasmotec-plant-network__map) {
		min-height: 400px;
	}

	:where(.wp-block-plasmotec-enquiry-cta, .plasmotec-enquiry-cta, .pp-enquiry-cta) {
		grid-template-columns: 1fr;
		align-items: start;
		padding: 64px var(--ppps-gutter);
	}

	:where(.wp-block-plasmotec-form-embed, .plasmotec-form-embed, .pp-form-embed) form,
	.comment-form {
		grid-template-columns: 1fr;
	}

	:where(.wp-block-plasmotec-form-embed, .plasmotec-form-embed, .pp-form-embed) :where(.form-field--full, .pp-form-field--full, button[type="submit"], .form-status),
	.comment-form > * {
		grid-column: 1;
	}

	.password-form__controls,
	.search-form__controls {
		grid-template-columns: 1fr;
	}

	.site-footer__main {
		padding-top: 64px;
		padding-bottom: 56px;
	}

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

	.site-footer__bottom {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.site-footer__credit {
		justify-self: start;
	}

	.legal-menu {
		justify-content: flex-start;
	}
}

@media (max-width: 430px) {
	h1,
	:where(.wp-block-plasmotec-industrial-hero, .plasmotec-industrial-hero, .pp-industrial-hero) h1 {
		font-size: 36px;
	}

	h2 {
		font-size: 30px;
	}

	.site-branding {
		width: 142px;
	}

	:where(.wp-block-plasmotec-metric-strip, .plasmotec-metric-strip, .pp-metric-strip, .pp-industrial-hero__metrics),
	.footer-menu {
		grid-template-columns: 1fr;
	}

	:where(.pp-metric-strip__item, .plasmotec-metric-strip__item, .pp-metric-item) {
		border-right: 0;
	}

	:where(.wp-block-plasmotec-media-mosaic, .plasmotec-media-mosaic, .pp-media-mosaic) {
		grid-template-columns: 1fr;
	}

	.button,
	.wp-element-button,
	.wp-block-button__link,
	button,
	input[type="button"],
	input[type="reset"],
	input[type="submit"] {
		max-width: 100%;
		white-space: normal;
	}
}

@media (max-width: 1120px) {
	.site-header__descriptor {
		display: none;
	}

	.site-header__inner {
		grid-template-columns: minmax(160px, 1fr) auto auto;
	}

	.header-cta { grid-column: 2; }
	.js .navigation-toggle,
	.navigation-toggle { grid-column: 3; }

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

	.mobile-menu > li::before {
		margin-bottom: 40px;
	}
}

@media (max-width: 720px) {
	.site-header,
	.site-header.is-floating,
	.site-header.is-navigation-open,
	.site-header.is-navigation-open.is-floating {
		top: var(--ppps-admin-offset);
		left: 0;
		width: 100%;
		min-height: 64px;
		border-width: 0 0 1px;
		border-radius: 0;
		background: rgba(7, 8, 9, .96);
		transform: translate3d(0, 0, 0);
	}

	.site-header.is-hidden,
	.site-header.is-hidden.is-floating,
	.site-header.is-hidden:not(.is-floating) {
		transform: translate3d(0, calc(-100% - var(--ppps-admin-offset)), 0);
	}

	.site-header__inner,
	.site-header.is-floating .site-header__inner {
		grid-template-columns: minmax(128px, 1fr) auto;
		width: 100%;
		min-height: 64px;
		gap: 12px;
		padding: 9px 16px;
	}

	.js .navigation-toggle,
	.navigation-toggle,
	.site-header.has-header-cta .navigation-toggle,
	.site-header:not(.has-header-cta) .navigation-toggle {
		min-width: 98px;
		height: 40px;
		min-height: 40px;
		grid-column: 2;
		padding-inline: 12px;
	}

	.site-branding {
		width: min(148px, 44vw);
		height: 36px;
	}

	.site-branding__image {
		height: 27px;
	}

	.navigation-drawer__inner {
		width: 100%;
		padding: calc(var(--ppps-admin-offset) + 84px) var(--ppps-gutter) 28px;
	}

	.navigation-drawer__heading {
		padding-bottom: 12px;
	}

	.mobile-menu {
		display: block;
		background: transparent;
	}

	.mobile-menu > li {
		display: grid;
		grid-template-columns: 34px minmax(0, 1fr);
		padding: 18px 0;
		border-bottom: 1px solid rgba(7,8,9,.22);
	}

	.mobile-menu > li::before {
		margin: 7px 0 0;
	}

	.mobile-menu > li > a {
		padding: 0 0 14px;
		font-size: clamp(2rem, 10vw, 3.2rem);
	}

	.mobile-menu .sub-menu {
		grid-column: 2;
		padding: 0;
	}

	.mobile-menu .sub-menu a small,
	.navigation-drawer__footer p {
		display: none;
	}

	.navigation-drawer__footer {
		justify-content: flex-end;
		margin-top: 20px;
	}

	.site-main > .pp-block[data-ppps-section-ready="true"]::after,
	.page-studio-content > .pp-block[data-ppps-section-ready="true"]::after {
		top: 18px;
	}

	.site-footer__wordmark span {
		font-size: clamp(1.45rem, 8vw, 3rem);
	}
}

/* Legacy V18 semantic selectors retained as static compatibility while V19
 * discovers the final scene contract.
 */
.pp-block[data-pp-scene] {
	--pp-scene-progress: 0;
	isolation: isolate;
}

.pp-block[data-pp-scene="chapter"] > .pp-section__background {
	transform: translate3d(0, calc((var(--pp-scene-progress) - .5) * 4%), 0) scale(1.06);
}

.pp-block[data-pp-scene="editorial"] .pp-block__copy,
.pp-block[data-pp-scene="proof"] .pp-block__copy,
.pp-block[data-pp-scene="closing"] .pp-block__copy {
	opacity: .28;
	transform: translate3d(0, 16px, 0);
	transition: opacity .68s ease .1s, transform .82s var(--ppps-ease) .1s;
}

.pp-block[data-pp-scene="editorial"].is-scene-active .pp-block__copy,
.pp-block[data-pp-scene="proof"].is-scene-active .pp-block__copy,
.pp-block[data-pp-scene="closing"].is-scene-active .pp-block__copy {
	opacity: 1;
	transform: none;
}

@media (min-width: 901px) and (hover: hover) {
	.pp-block[data-pp-scene="index"] :is(.pp-technical-card-grid, .pp-card-grid) > * {
		filter: saturate(.88);
		transform-origin: 50% 70%;
		transition:
			opacity .38s ease,
			filter .38s ease,
			transform .58s var(--ppps-ease),
			box-shadow .58s var(--ppps-ease);
	}

	.pp-block[data-pp-scene="index"] :is(.pp-technical-card-grid, .pp-card-grid):has(> :is(:hover, :focus-within)) > * {
		opacity: .46;
		transform: scale(.985);
	}

	.pp-block[data-pp-scene="index"] :is(.pp-technical-card-grid, .pp-card-grid) > :is(:hover, :focus-within) {
		z-index: 2;
		opacity: 1;
		filter: none;
		transform: translate3d(0, -10px, 0) scale(1.018);
		box-shadow: 0 26px 64px rgba(7,8,9,.2);
	}
}

.pp-motion-progress {
	--pp-motion-progress: 0;
	display: grid;
	grid-template-columns: minmax(120px, 1fr) auto auto;
	gap: 10px;
	align-items: center;
	width: min(100%, 520px);
	margin: 22px 0 0 auto;
	color: currentColor;
	font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
	font-size: 10px;
	font-style: normal;
	font-weight: 650;
	letter-spacing: .08em;
}

.pp-motion-progress[hidden] {
	display: none;
}

.pp-motion-progress > span {
	position: relative;
	height: 1px;
	overflow: hidden;
	background: currentColor;
	opacity: .32;
}

.pp-motion-progress > span::after {
	position: absolute;
	inset: 0;
	background: currentColor;
	content: "";
	transform: scaleX(var(--pp-motion-progress));
	transform-origin: 0 50%;
	transition: transform 120ms linear;
}

.pp-motion-progress > b,
.pp-motion-progress > i {
	font: inherit;
}

.pp-motion-progress > b::after {
	content: " /";
	opacity: .5;
}

.site-footer {
	opacity: 0;
	transform: translate3d(0, 56px, 0);
	transition: opacity .72s ease, transform 1s var(--ppps-ease);
}

.site-footer.is-footer-visible {
	opacity: 1;
	transform: none;
}

.no-js .site-footer {
	opacity: 1;
	transform: none;
}

:is(body.ppps-motion-off, body.ppps-motion-reduced) .site-footer,
:is(body.ppps-motion-off, body.ppps-motion-reduced) [data-pp-scene] .pp-block__copy {
	opacity: 1;
	transform: none;
}

:is(body.ppps-motion-off, body.ppps-motion-reduced) .pp-motion-progress > span::after {
	transform: scaleX(1);
}

/* -------------------------------------------------------------------------- */
/* V19 static composition, semantic scenes, and shared interaction grammar.    */
/* -------------------------------------------------------------------------- */

body.ppps-page-studio {
	--ppps-page-background: var(--ppps-paper);
	--ppps-page-foreground: var(--ppps-ink);
	background: var(--ppps-page-background);
	color: var(--ppps-page-foreground);
	transition:
		background-color var(--ppps-duration-panel) ease,
		color var(--ppps-duration-control) ease;
}

body.ppps-tone-ink {
	--ppps-page-background: var(--ppps-ink);
	--ppps-page-foreground: var(--ppps-white);
}

body.ppps-tone-graphite {
	--ppps-page-background: var(--ppps-graphite);
	--ppps-page-foreground: var(--ppps-white);
}

body.ppps-tone-aluminium {
	--ppps-page-background: var(--ppps-aluminium);
	--ppps-page-foreground: var(--ppps-ink);
}

body.ppps-tone-paper {
	--ppps-page-background: var(--ppps-paper);
	--ppps-page-foreground: var(--ppps-ink);
}

[data-page-wrapper] {
	background: var(--ppps-page-background);
	color: var(--ppps-page-foreground);
	transform-origin: 50% 0;
}

body.ppps-runtime-enabled.ppps-runtime-ready:not(.home):not(.ppps-presentation-page):not(.ppps-is-loading):not(.ppps-is-leaving) [data-page-wrapper] {
	animation: ppps-v19-page-arrive var(--ppps-duration-panel) var(--ppps-ease) both;
}

@keyframes ppps-v19-page-arrive {
	from {
		opacity: 0;
		transform: translate3d(0, 24px, 0) scale(.985);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.content-shell {
	width: calc(100% - (2 * var(--ppps-gutter)));
	max-width: var(--ppps-content);
}

.wide-shell,
.pp-block > :where(.pp-block__inner, .pp-section__inner, .pp-hero__inner),
.pp-block :where(.pp-block__inner, .pp-section__inner):not(.pp-block .pp-block :where(.pp-block__inner, .pp-section__inner)) {
	width: calc(100% - (2 * var(--ppps-gutter)));
	max-width: var(--ppps-wide);
	margin-inline: auto;
}

.pp-block > :where(.pp-block__inner, .pp-section__inner, .pp-hero__inner) {
	position: relative;
	z-index: var(--ppps-layer-local);
}

.page-studio-content > .pp-block:not(.pp-block--industrial-hero),
.page-studio-content > [data-pp-scene]:not([data-pp-scene="hero"]) {
	padding-block: clamp(10rem, 12vw, 15rem);
}

.ppps-profile-editorial .page-studio-content > .pp-block,
.ppps-profile-utility .page-studio-content > .pp-block {
	padding-block: clamp(6rem, 8vw, 10rem);
}

.pp-block__header {
	display: grid;
	max-width: min(100%, 1120px);
	gap: 24px;
}

.pp-block__eyebrow,
[data-pp-phase-label],
.pp-media-truth-label,
[data-pp-truth-label] {
	font-family: var(--ppps-font-mono);
	font-size: clamp(.625rem, .18vw + .59rem, .75rem);
	font-weight: 650;
	letter-spacing: .12em;
	line-height: 1.25;
	text-transform: uppercase;
}

.pp-media-truth-label,
[data-pp-truth-label] {
	display: block;
	width: fit-content;
	max-width: min(100%, 38rem);
	margin-top: 10px;
	color: currentColor;
	opacity: .72;
}

.pp-block__title {
	max-width: 16ch;
	margin-bottom: 0;
	font-size: clamp(2.8rem, 4.8vw, 5.5rem);
	letter-spacing: -.05em;
	line-height: 1.02;
}

.pp-block__copy {
	max-width: 68ch;
	margin-bottom: 0;
	font-size: 17px;
	line-height: 1.65;
}

.pp-block--industrial-hero .pp-block__title,
[data-pp-scene="hero"] h1 {
	max-width: 12ch;
	font-size: clamp(5rem, 9.2vw, 11rem);
	letter-spacing: -.055em;
	line-height: .9;
}

.ppps-profile-narrative .page-studio-content > [data-pp-scene]:first-child .pp-block__title,
.ppps-profile-editorial .page-studio-content > [data-pp-scene]:first-child .pp-block__title {
	max-width: 13ch;
	font-size: clamp(4rem, 7vw, 8rem);
	line-height: .96;
}

.ppps-page-transition {
	z-index: var(--ppps-layer-route);
}

.ppps-page-transition__panels > span {
	transition-duration: var(--ppps-duration-control);
	transition-delay: 0s;
	transition-timing-function: var(--ppps-ease-route);
}

.ppps-page-transition__content {
	transition:
		opacity var(--ppps-duration-micro) ease,
		transform var(--ppps-duration-panel) var(--ppps-ease);
}

.ppps-page-transition[data-loader-state="preparing"],
.ppps-page-transition[data-loader-state="ready"],
.ppps-page-transition[data-loader-state="exiting"],
.ppps-page-transition[data-loader-state="failed"] {
	visibility: visible;
}

.ppps-page-transition[data-loader-state="preparing"] .ppps-page-transition__panels > span,
.ppps-page-transition[data-loader-state="ready"] .ppps-page-transition__panels > span,
.ppps-page-transition[data-loader-state="failed"] .ppps-page-transition__panels > span {
	transform: scaleY(1);
}

.ppps-page-transition[data-loader-state="exiting"] .ppps-page-transition__panels > span,
.ppps-page-transition[data-loader-state="complete"] .ppps-page-transition__panels > span {
	transform: scaleY(0);
	transform-origin: top;
	transition-duration: var(--ppps-duration-panel);
}

.ppps-page-transition[data-loader-state="preparing"] .ppps-page-transition__content,
.ppps-page-transition[data-loader-state="ready"] .ppps-page-transition__content {
	opacity: 1;
	transform: none;
}

.ppps-page-transition[data-loader-state="failed"] .ppps-page-transition__content,
.ppps-page-transition[data-loader-state="exiting"] .ppps-page-transition__content {
	opacity: 0;
	transform: translate3d(0, -14px, 0);
}

body.ppps-is-leaving .ppps-page-transition__panels > span {
	transform: scaleY(1);
	transform-origin: bottom;
	transition-duration: var(--ppps-duration-control);
}

.site-header,
.site-header.is-floating,
.site-header.is-navigation-open,
.site-header.is-navigation-open.is-floating {
	--ppps-header-hide-x: 0;
	z-index: var(--ppps-layer-header);
	top: var(--ppps-admin-offset);
	left: 0;
	width: 100%;
	max-width: none;
	min-height: var(--ppps-header-height);
	border: 0;
	border-bottom: 1px solid rgba(255, 255, 255, .14);
	border-radius: 0;
	background: rgba(7, 8, 9, .9);
	box-shadow: none;
	color: var(--ppps-white);
	transform: none;
	transition:
		background-color var(--ppps-duration-control) ease,
		border-color var(--ppps-duration-control) ease,
		color var(--ppps-duration-control) ease;
}

.home .site-header.is-at-top,
.ppps-profile-cinematic .site-header.is-at-top {
	background: linear-gradient(180deg, rgba(7, 8, 9, .78), rgba(7, 8, 9, 0));
	border-color: transparent;
}

.site-header__inner,
.site-header.is-floating .site-header__inner {
	width: calc(100% - (2 * var(--ppps-gutter)));
	max-width: var(--ppps-wide);
	min-height: var(--ppps-header-height);
	margin-inline: auto;
	padding: 12px 0;
}

.site-header [data-header-center] {
	opacity: 1;
	transform: none;
	transition:
		opacity var(--ppps-duration-control) ease,
		transform var(--ppps-duration-control) var(--ppps-ease);
}

.site-header.has-header-cta .site-header__descriptor {
	display: none;
}

.site-header.is-hidden,
.site-header.is-hidden.is-floating,
.site-header.is-hidden:not(.is-floating) {
	transform: none;
}

.site-header.is-hidden [data-header-center] {
	opacity: 0;
	pointer-events: none;
	transform: translate3d(0, -18px, 0);
}

.site-header.is-quiet [data-header-center] {
	opacity: .58;
}

.site-header[data-header-surface="dark"] {
	border-color: rgba(7, 8, 9, .16);
	background: rgba(243, 241, 234, .93);
	color: var(--ppps-ink);
}

.site-header[data-header-surface="dark"] .site-branding__surface-logo--dark {
	display: none;
}

.site-header[data-header-surface="dark"] .site-branding__surface-logo--light {
	display: flex;
}

.site-header[data-header-surface="dark"] .navigation-toggle {
	border-color: rgba(7, 8, 9, .32);
}

.site-header.is-navigation-open,
.site-header.is-navigation-open.is-floating {
	z-index: var(--ppps-layer-header);
	border-color: transparent;
	background: transparent;
	color: var(--ppps-white);
}

.site-header.is-navigation-open [data-header-center] {
	opacity: 0;
	pointer-events: none;
	transform: translate3d(0, -18px, 0);
}

.site-header.is-navigation-open .site-branding__surface-logo--dark {
	display: flex;
}

.site-header.is-navigation-open .site-branding__surface-logo--light {
	display: none;
}

.site-header.is-navigation-open .navigation-toggle {
	border-color: rgba(255, 255, 255, .38);
	opacity: 0;
	pointer-events: none;
}

.navigation-drawer {
	z-index: var(--ppps-layer-menu);
	color: var(--ppps-white);
	opacity: 1;
	visibility: hidden;
	transition: visibility 0s linear var(--ppps-duration-panel);
}

.navigation-drawer:not([hidden]) {
	visibility: visible;
	transition-delay: 0s;
}

.navigation-drawer__backdrop {
	background: rgba(7, 8, 9, .78);
	opacity: 0;
	transition: opacity var(--ppps-duration-control) ease;
}

.navigation-drawer__inner {
	min-height: 100%;
	padding: 118px max(var(--ppps-gutter), calc((100% - var(--ppps-wide)) / 2)) 42px;
	background:
		linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px),
		var(--ppps-ink);
	background-size: 80px 80px;
	transform: translate3d(0, -100%, 0);
	transition: transform var(--ppps-duration-panel) var(--ppps-ease-route);
}

.navigation-drawer[data-navigation-state="closing"] .navigation-drawer__inner {
	transition-duration: 360ms;
}

.navigation-drawer__heading,
.navigation-drawer__footer {
	border-color: rgba(255, 255, 255, .2);
}

.navigation-drawer__close {
	position: absolute;
	top: 22px;
	right: max(var(--ppps-gutter), calc((100% - var(--ppps-wide)) / 2));
	display: inline-grid;
	min-width: 92px;
	min-height: 42px;
	grid-template-columns: auto 18px;
	align-items: center;
	justify-content: center;
	gap: 12px;
	border: 1px solid rgba(255, 255, 255, .38);
	border-radius: 0;
	background: transparent;
	color: var(--ppps-white);
	font-size: 10px;
	font-weight: 760;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.navigation-drawer__close i,
.navigation-drawer__close i::after {
	display: block;
	width: 18px;
	height: 1px;
	background: currentColor;
	content: "";
	transform: rotate(45deg);
}

.navigation-drawer__close i::after {
	transform: rotate(90deg);
}

.navigation-drawer .mobile-menu {
	background: rgba(255, 255, 255, .16);
}

.navigation-drawer .mobile-menu > li {
	background: var(--ppps-ink);
}

.navigation-drawer .mobile-menu .sub-menu {
	border-color: rgba(255, 255, 255, .22);
}

.navigation-drawer .mobile-menu .sub-menu a {
	border-color: rgba(255, 255, 255, .12);
	color: rgba(255, 255, 255, .7);
}

.navigation-drawer .mobile-menu a:is(:hover, :focus-visible),
.navigation-drawer .mobile-menu .current-menu-item > a,
.navigation-drawer .mobile-menu .current-menu-ancestor > a {
	color: var(--ppps-technical-silver);
}

.navigation-drawer[data-navigation-state="open"] .navigation-drawer__backdrop,
.navigation-drawer[data-navigation-state="opening"] .navigation-drawer__backdrop {
	opacity: 1;
}

.navigation-drawer.is-open .navigation-drawer__inner {
	transform: none;
}

.navigation-drawer .mobile-menu > li {
	opacity: 0;
	transform: translate3d(0, 24px, 0);
	transition:
		opacity var(--ppps-duration-panel) ease,
		transform var(--ppps-duration-panel) var(--ppps-ease);
}

.navigation-drawer.is-open .mobile-menu > li {
	opacity: 1;
	transform: none;
}

.navigation-drawer.is-open .mobile-menu > li:nth-child(1) { transition-delay: 0ms; }
.navigation-drawer.is-open .mobile-menu > li:nth-child(2) { transition-delay: 48ms; }
.navigation-drawer.is-open .mobile-menu > li:nth-child(3) { transition-delay: 96ms; }
.navigation-drawer.is-open .mobile-menu > li:nth-child(4) { transition-delay: 144ms; }
.navigation-drawer.is-open .mobile-menu > li:nth-child(5) { transition-delay: 192ms; }
.navigation-drawer.is-open .mobile-menu > li:nth-child(6) { transition-delay: 240ms; }
.navigation-drawer.is-open .mobile-menu > li:nth-child(7) { transition-delay: 288ms; }
.navigation-drawer.is-open .mobile-menu > li:nth-child(8) { transition-delay: 336ms; }

[data-pp-scene] {
	--pp-scene-progress: 0;
	--pp-scene-local-progress: 0;
	--pp-scene-direction: 0;
	position: relative;
	isolation: isolate;
}

[data-pp-scene].is-motion-mounted {
	contain: paint;
}

[data-pp-scene].is-scene-before {
	--pp-scene-entrance: 0;
}

[data-pp-scene].is-scene-active,
[data-pp-scene].is-scene-after {
	--pp-scene-entrance: 1;
}

[data-pp-scene].is-motion-mounted > :where(.pp-block__inner, .pp-section__inner) {
	opacity: clamp(.01, var(--pp-scene-entrance), 1);
	transform: translate3d(0, calc((1 - var(--pp-scene-entrance)) * 48px), 0);
	transition:
		opacity var(--ppps-duration-section) ease,
		transform var(--ppps-duration-section) var(--ppps-ease);
}

/* H01: one registered poster-derived transformation. */
body.ppps-profile-cinematic.ppps-capability-full [data-pp-scene="hero"][data-pp-registered-asset-set].is-motion-mounted.is-signature-scene {
	padding: 0;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	grid-template-columns: minmax(0, 1fr);
	overflow: clip;
	background: var(--ppps-ink);
	color: var(--ppps-white);
	contain: layout paint;
}

[data-pp-scene="hero"][data-pp-registered-asset-set] .pp-v19-hero__sticky {
	position: relative;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	height: auto;
	min-height: 0;
}

[data-pp-scene="hero"][data-pp-registered-asset-set] .pp-v19-hero__registered-media {
	position: relative;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	min-height: clamp(520px, 76svh, 860px);
	margin: 0;
	overflow: clip;
	background: var(--ppps-ink);
}

[data-pp-scene="hero"][data-pp-registered-asset-set] .pp-v19-hero__content {
	position: relative;
	z-index: 30;
	display: grid;
	height: auto;
	align-content: end;
	padding-top: clamp(64px, 9vw, 128px);
	padding-bottom: clamp(64px, 9vw, 128px);
	background: var(--ppps-ink);
	color: var(--ppps-white);
}

body.ppps-profile-cinematic.ppps-capability-full [data-pp-scene="hero"][data-pp-registered-asset-set].is-motion-mounted.is-signature-scene .pp-v19-hero__sticky {
	position: relative;
	height: 320svh;
	min-height: 1860px;
}

body.ppps-profile-narrative.ppps-capability-full [data-pp-scene="hero"][data-pp-registered-asset-set].is-motion-mounted.is-signature-scene .pp-v19-hero__sticky {
	position: relative;
	height: 220svh;
	min-height: 1280px;
}

body.ppps-capability-full [data-pp-scene="hero"][data-pp-registered-asset-set].is-motion-mounted.is-signature-scene :where(
	.pp-hero__registered-stage,
	.pp-hero__stage,
	[data-pp-registered-stage],
	.pp-v19-hero__registered-media
) {
	position: sticky;
	z-index: var(--ppps-layer-sticky);
	top: 0;
	height: 100svh;
	min-height: 620px;
	overflow: clip;
	background: var(--ppps-ink);
}

body.ppps-capability-full [data-pp-scene="hero"][data-pp-registered-asset-set].is-motion-mounted.is-signature-scene .pp-v19-hero__registered-media {
	margin: 0;
}

body.ppps-capability-full [data-pp-scene="hero"][data-pp-registered-asset-set].is-motion-mounted.is-signature-scene .pp-v19-hero__content {
	position: sticky;
	z-index: calc(var(--ppps-layer-sticky) + 20);
	top: 0;
	display: grid;
	width: calc(100% - (2 * var(--ppps-gutter)));
	max-width: var(--ppps-wide);
	min-width: 0;
	height: 100svh;
	margin-inline: auto;
	margin-top: -100svh;
	align-content: end;
	padding-top: calc(var(--ppps-header-height) + 7vh);
	padding-bottom: clamp(54px, 8vh, 112px);
	background: transparent;
	pointer-events: none;
}

body.ppps-capability-full [data-pp-scene="hero"][data-pp-registered-asset-set].is-motion-mounted.is-signature-scene .pp-v19-hero__content :where(a, button) {
	pointer-events: auto;
}

/* Preserve the bright registered reveal without allowing the large white copy
 * to disappear over its illumination/detail plates. The treatment is local to
 * the copy field and exits before the paper-resolved state takes ownership. */
body.ppps-capability-full
	[data-pp-scene="hero"][data-pp-registered-asset-set].is-motion-mounted.is-signature-scene
	.pp-v19-hero__content::before {
	position: absolute;
	z-index: 0;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(7, 8, 9, .88) 0%,
		rgba(7, 8, 9, .78) 42%,
		rgba(7, 8, 9, .58) 64%,
		rgba(7, 8, 9, .18) 84%,
		transparent 100%
	);
	content: "";
	opacity: 0;
	pointer-events: none;
	transition: opacity var(--ppps-duration-control) ease;
}

body.ppps-capability-full
	[data-pp-scene="hero"][data-pp-registered-asset-set].is-motion-mounted.is-signature-scene:is(
		[data-pp-scene-phase="03"],
		[data-pp-scene-phase="04"],
		[data-pp-scene-phase="05"],
		[data-pp-scene-phase="06"]
	)
	.pp-v19-hero__content::before {
	opacity: 1;
}

body.ppps-capability-full
	[data-pp-scene="hero"][data-pp-registered-asset-set].is-motion-mounted.is-signature-scene
	.pp-v19-hero__content > * {
	position: relative;
	z-index: 1;
}

[data-pp-scene="hero"][data-pp-registered-asset-set] [data-pp-registered-layer] {
	position: absolute;
	z-index: var(--ppps-layer-local);
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	transform-origin: 50% 50%;
}

[data-pp-registered-layer] :where(picture, img, video, svg),
[data-pp-registered-layer] > :where(img, video, svg) {
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: var(--pp-focal-x, 50%) var(--pp-focal-y, 50%);
}

[data-pp-registered-layer="source"] {
	opacity: calc(1 - (var(--pp-h01-source-recede, 0) * .82));
	filter:
		brightness(calc(.42 + (var(--pp-h01-detail, 0) * .58)))
		saturate(calc(.52 + (var(--pp-h01-detail, 0) * .48)));
	transform: scale(calc(1 - (var(--pp-h01-source-recede, 0) * .035)));
}

[data-pp-registered-layer="dark"] {
	z-index: 12;
	opacity: var(--pp-h01-dark, 1);
	mix-blend-mode: multiply;
}

[data-pp-registered-layer="illumination"] {
	z-index: 14;
	opacity: var(--pp-h01-illumination, 0);
	mix-blend-mode: screen;
	clip-path: inset(0 calc((1 - var(--pp-h01-illumination, 0)) * 74%) 0 0);
}

[data-pp-registered-layer="detail"] {
	z-index: 16;
	opacity: calc(var(--pp-h01-detail, 0) * .86);
	mix-blend-mode: screen;
}

[data-pp-registered-layer="datum"] {
	z-index: 18;
	opacity: calc(var(--pp-h01-annotation, 0) * .74);
}

[data-pp-registered-layer="technical"] {
	z-index: 20;
	opacity: var(--pp-h01-line, 0);
	color: var(--ppps-technical-silver);
}

[data-pp-registered-layer="technical"] :where(path, line, polyline, polygon, rect, circle, ellipse),
[data-pp-handoff-layer="technical"] :where(path, line, polyline, polygon, rect, circle, ellipse) {
	stroke-dasharray: 1;
	stroke-dashoffset: calc(1 - var(--pp-h01-line, 0));
	vector-effect: non-scaling-stroke;
}

[data-pp-registered-layer="mobile"],
[data-pp-registered-layer="reduced"] {
	display: none;
}

[data-pp-scene="hero"][data-pp-registered-asset-set] .pp-v19-hero__sticky::after {
	position: absolute;
	z-index: calc(var(--ppps-layer-sticky) + 10);
	inset: 0;
	background: var(--ppps-paper);
	content: "";
	opacity: var(--pp-h01-paper, 0);
	pointer-events: none;
}

[data-pp-scene="hero"][data-pp-registered-asset-set] :where(
	.pp-hero__inner,
	[data-pp-hero-copy],
	.pp-v19-hero__content
) {
	z-index: 30;
	color: var(--ppps-white);
}

[data-pp-scene="hero"][data-pp-registered-asset-set][data-pp-scene-phase="07"] :where(
	.pp-hero__inner,
	[data-pp-hero-copy],
	.pp-v19-hero__content
) {
	color: var(--ppps-ink);
}

[data-pp-scene="hero"][data-pp-registered-asset-set][data-pp-scene-phase="07"]
	.pp-v19-hero__content .pp-block__copy {
	color: rgba(7, 8, 9, .72);
}

[data-pp-scene="hero"][data-pp-registered-asset-set][data-pp-scene-phase="07"]
	.pp-v19-hero__content .pp-button:not(.pp-button--ghost) {
	border-color: var(--ppps-ink);
	background: var(--ppps-ink);
	color: var(--ppps-white);
}

.pp-v19-hero__phases {
	display: grid;
	max-width: min(100%, 760px);
	margin: 0;
	padding: 0;
	gap: 36px;
	list-style: none;
}

.pp-v19-hero__phases > li {
	grid-area: auto;
	align-self: end;
}

.pp-v19-hero__truth {
	position: absolute;
	z-index: 26;
	right: var(--ppps-gutter);
	bottom: 24px;
	color: var(--ppps-white);
}

[data-pp-editorial-prelude].pp-v19-prelude {
	position: relative;
	z-index: 30;
	display: grid;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	margin: 0;
	padding: 160px var(--ppps-gutter);
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--ppps-grid-gap);
	background: var(--ppps-paper);
	color: var(--ppps-ink);
	isolation: isolate;
}

[data-pp-editorial-prelude] > .pp-v19-prelude__chapter {
	display: grid;
	min-width: 0;
	grid-template-columns: minmax(0, 1fr);
	gap: 24px;
	align-content: start;
}

[data-pp-editorial-prelude] .pp-v19-prelude__chapter :where(figure, video, img, picture) {
	display: block;
	min-width: 0;
	width: 100%;
}

[data-pp-editorial-prelude] .pp-v19-prelude__chapter figure {
	position: relative;
	overflow: clip;
	aspect-ratio: 16 / 10;
	margin: 0;
	background: var(--ppps-graphite);
}

[data-pp-editorial-prelude] .pp-v19-prelude__chapter :where(img, video) {
	height: 100%;
	object-fit: cover;
}

[data-pp-editorial-prelude] .pp-v19-prelude__content {
	display: grid;
	min-width: 0;
	gap: 14px;
	align-content: start;
}

[data-pp-editorial-prelude] .pp-v19-prelude__content > * {
	min-width: 0;
	margin: 0;
}

[data-pp-editorial-prelude] .pp-v19-prelude__content .pp-block__title {
	max-width: 13ch;
	padding: 0;
	font-size: clamp(2rem, 2.65vw, 3.15rem);
	letter-spacing: -.052em;
	line-height: .98;
	overflow-wrap: break-word;
	text-wrap: balance;
	word-break: normal;
}

[data-pp-editorial-prelude] .pp-v19-prelude__content .pp-block__copy {
	max-width: 34ch;
	font-size: clamp(.95rem, .35vw + .86rem, 1.08rem);
	line-height: 1.55;
}

[data-pp-editorial-prelude] .pp-v19-prelude__truth {
	position: absolute;
	z-index: 5;
	right: 12px;
	bottom: 12px;
	left: 12px;
	width: fit-content;
	max-width: calc(100% - 24px);
	margin: 0;
	color: var(--ppps-white);
}

[data-pp-prelude-media] [data-pp-prelude-video],
[data-pp-prelude-media] [data-pp-prelude-poster-fallback] {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	transition: opacity var(--ppps-duration-control) ease;
}

[data-pp-prelude-media] [data-pp-prelude-video] {
	z-index: 2;
	opacity: 0;
}

[data-pp-prelude-media] [data-pp-prelude-poster-fallback] {
	z-index: 1;
	opacity: 1;
}

[data-pp-prelude-media] [data-pp-prelude-poster-fallback] :where(img, picture),
[data-pp-prelude-media] [data-pp-prelude-poster-fallback] > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

[data-pp-prelude-chapter][data-pp-prelude-media-state="playing"] [data-pp-prelude-video] {
	opacity: 1;
}

[data-pp-prelude-chapter][data-pp-prelude-media-state="playing"] [data-pp-prelude-poster-fallback] {
	opacity: 0;
}

[data-pp-prelude-chapter][data-pp-prelude-media-state="failed"] [data-pp-prelude-video] {
	display: none;
}

body.ppps-capability-full
	[data-pp-editorial-prelude]
	[data-pp-prelude-media]
	[data-pp-prelude-video] {
	display: block;
}

:where(
	.no-js body,
	body.ppps-runtime-disabled,
	body.ppps-capability-static,
	body.ppps-capability-lite,
	body.ppps-capability-reduced,
	body.ppps-capability-off,
	body.ppps-motion-reduced,
	body.ppps-motion-off
) [data-pp-prelude-video] {
	display: none;
}

:where(
	.no-js body,
	body.ppps-runtime-disabled,
	body.ppps-capability-static,
	body.ppps-capability-lite,
	body.ppps-capability-reduced,
	body.ppps-capability-off,
	body.ppps-motion-reduced,
	body.ppps-motion-off
) [data-pp-prelude-poster-fallback] {
	opacity: 1;
}

@media (max-width: 1100px) {
	[data-pp-editorial-prelude].pp-v19-prelude {
		padding-block: 112px;
		grid-template-columns: minmax(0, 1fr);
		gap: 64px;
	}

	[data-pp-editorial-prelude] > .pp-v19-prelude__chapter {
		grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
		gap: clamp(28px, 5vw, 56px);
		align-items: center;
	}

	[data-pp-editorial-prelude] .pp-v19-prelude__content .pp-block__title {
		font-size: clamp(2.2rem, 5vw, 3.65rem);
	}
}

@media (max-width: 720px) {
	[data-pp-editorial-prelude].pp-v19-prelude {
		padding-block: 80px;
		gap: 56px;
	}

	[data-pp-editorial-prelude] > .pp-v19-prelude__chapter {
		grid-template-columns: minmax(0, 1fr);
		gap: 22px;
	}

	[data-pp-editorial-prelude] .pp-v19-prelude__content .pp-block__title {
		max-width: 100%;
		font-size: clamp(2.15rem, 10vw, 3.25rem);
	}

	[data-pp-editorial-prelude] .pp-v19-prelude__content .pp-block__copy {
		max-width: 42ch;
	}
}

body.ppps-capability-full [data-pp-scene="hero"].is-motion-mounted.is-signature-scene [data-pp-hero-phase] {
	grid-area: 1 / 1;
	opacity: 0;
	pointer-events: none;
	transform: translate3d(0, 24px, 0);
	transition:
		opacity var(--ppps-duration-control) ease,
		transform var(--ppps-duration-control) var(--ppps-ease);
}

body.ppps-capability-full [data-pp-scene="hero"].is-motion-mounted.is-signature-scene [data-pp-hero-phase].is-active {
	opacity: 1;
	pointer-events: auto;
	transform: none;
}

[data-pp-scroll-prompt] {
	opacity: clamp(0, calc((.12 - var(--pp-scene-progress)) * 16.666), 1);
	transform: translate3d(0, calc(var(--pp-scene-progress) * -12px), 0);
}

:where(
	.no-js body,
	body.ppps-runtime-disabled:not(.ppps-presentation-page),
	body.ppps-capability-static,
	body.ppps-capability-lite,
	body.ppps-capability-reduced,
	body.ppps-capability-off,
	body.ppps-motion-reduced,
	body.ppps-motion-off,
	body.ppps-readiness-failed
) [data-pp-scroll-prompt],
[data-pp-scene].has-motion-failure [data-pp-scroll-prompt],
[data-pp-scene].is-motion-settled [data-pp-scroll-prompt] {
	display: none;
}

[data-pp-scene="hero"].has-media-failure [data-pp-registered-layer]:not([data-pp-registered-layer="reduced"]):not([data-pp-registered-layer="source"]) {
	display: none;
}

[data-pp-scene="hero"].has-media-failure [data-pp-registered-layer="source"],
[data-pp-scene="hero"].has-media-failure [data-pp-registered-layer="reduced"] {
	display: block;
	opacity: 1;
	filter: none;
	transform: none;
}

/* Registered source-to-line handoff used outside H01. */
body.ppps-profile-narrative.ppps-capability-full [data-pp-scene="handoff"].is-motion-mounted.is-signature-scene {
	min-height: 190svh;
	padding: 0;
	overflow: clip;
}

[data-pp-scene="handoff"] :where(.pp-handoff__stage, [data-pp-handoff-stage], .pp-block__inner) {
	position: relative;
	top: auto;
	min-height: 0;
	overflow: clip;
}

[data-pp-scene="handoff"] .pp-handoff__inner {
	position: relative;
	top: auto;
	display: grid;
	width: calc(100% - (2 * var(--ppps-gutter)));
	max-width: var(--ppps-wide);
	min-height: 0;
	margin-inline: auto;
	grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
	gap: clamp(40px, 7vw, 128px);
	align-items: center;
}

body.ppps-capability-full [data-pp-scene="handoff"].is-motion-mounted.is-signature-scene .pp-handoff__inner {
	position: sticky;
	top: 0;
	min-height: 100svh;
}

[data-pp-scene="handoff"] .pp-handoff__media {
	position: relative;
	min-width: 0;
	aspect-ratio: 1672 / 941;
	overflow: clip;
	border-radius: 24px;
	transform: none;
	transform-origin: center;
}

body.ppps-capability-full [data-pp-scene="handoff"].is-motion-mounted.is-signature-scene .pp-handoff__media {
	transform: scale(calc(.92 + (var(--pp-handoff-panel, 0) * .08)));
}

[data-pp-scene="handoff"] .pp-handoff__content {
	position: relative;
	z-index: 30;
}

[data-pp-handoff-layer] {
	position: absolute;
	z-index: var(--ppps-layer-local);
	inset: 0;
	pointer-events: none;
}

[data-pp-handoff-layer] :where(img, svg, picture),
[data-pp-handoff-layer] > :where(img, svg) {
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
}

[data-pp-handoff-layer="primary"] {
	opacity: calc(1 - (var(--pp-handoff-exchange, 0) * .86));
	transform: none;
}

body.ppps-capability-full [data-pp-scene="handoff"].is-motion-mounted.is-signature-scene [data-pp-handoff-layer="primary"] {
	transform: scale(calc(1.08 - (var(--pp-handoff-panel, 0) * .08)));
}

[data-pp-handoff-layer="technical"] {
	z-index: 20;
	opacity: var(--pp-handoff-line, 0);
	color: var(--ppps-oxide);
}

[data-pp-handoff-layer="technical"] :where(path, line, polyline, polygon, rect, circle, ellipse) {
	stroke-dashoffset: calc(1 - var(--pp-handoff-line, 0));
}

[data-pp-handoff-layer="fallback"] {
	display: none;
}

[data-pp-scene="handoff"].has-media-failure [data-pp-handoff-layer] {
	display: none;
}

[data-pp-scene="handoff"].has-media-failure [data-pp-handoff-layer="fallback"] {
	display: block;
}

/* Indexed stories and accessible rails. */
[data-pp-scene="indexed-story"] :where(.pp-process__sticky, [data-pp-indexed-sticky]) {
	position: relative;
	top: auto;
	height: auto;
}

/* Neutralize the V17 pinned-process selector first. Only the one scene
 * explicitly claimed by the Full-tier director is allowed to restore it. */
.pp-block--process-chain.pp-process--pinned .pp-process-story__layout .pp-process__sticky {
	position: relative;
	top: auto;
	height: auto;
}

[data-pp-scene-step],
[data-pp-process-stage] {
	opacity: 1;
	transition:
		opacity var(--ppps-duration-control) ease,
		color var(--ppps-duration-micro) ease,
		transform var(--ppps-duration-panel) var(--ppps-ease);
}

@media (min-width: 901px) and (min-height: 501px) and (prefers-reduced-motion: no-preference) {
	body.ppps-profile-narrative.ppps-capability-full [data-pp-scene="indexed-story"].is-motion-mounted.is-signature-scene {
		min-height: 200svh;
	}

	body.ppps-capability-full [data-pp-scene="indexed-story"].is-motion-mounted.is-signature-scene :where(.pp-process__sticky, [data-pp-indexed-sticky]) {
		position: sticky;
		top: calc(var(--ppps-header-height) + var(--ppps-admin-offset));
		height: calc(100svh - var(--ppps-header-height) - var(--ppps-admin-offset));
	}

	body.ppps-capability-full [data-pp-scene="indexed-story"].is-motion-mounted.is-signature-scene :where([data-pp-scene-step], [data-pp-process-stage]) {
		opacity: .3;
	}

	body.ppps-capability-full [data-pp-scene="indexed-story"].is-motion-mounted.is-signature-scene :where([data-pp-scene-step], [data-pp-process-stage]).is-active {
		opacity: 1;
		transform: translate3d(12px, 0, 0);
	}
}

[data-pp-scene="rail"] :where([data-pp-horizontal-track], .pp-equipment-grid, .pp-awards) {
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
}

[data-pp-scene="rail"] :where([data-pp-horizontal-track], .pp-equipment-grid, .pp-awards) > * {
	scroll-snap-align: start;
}

/* Differential collage and surrounded-heading compositions. */
body.ppps-profile-narrative.ppps-capability-full [data-pp-scene="collage"].is-motion-mounted.is-signature-scene {
	min-height: 200svh;
	padding: 0;
}

body.ppps-profile-narrative.ppps-capability-full [data-pp-scene="surrounded-heading"].is-motion-mounted.is-signature-scene {
	min-height: 180svh;
	padding: 0;
}

[data-pp-scene="collage"] > :where(.pp-block__inner, .pp-section__inner),
[data-pp-scene="surrounded-heading"] > :where(.pp-block__inner, .pp-section__inner) {
	position: relative;
	top: auto;
	display: grid;
	min-height: clamp(680px, 82svh, 940px);
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: var(--ppps-grid-gap);
	align-items: center;
	overflow: clip;
}

[data-pp-scene="collage"] .pp-mosaic,
[data-pp-scene="surrounded-heading"] .pp-mosaic {
	display: contents;
}

body.ppps-capability-full [data-pp-scene="collage"].is-motion-mounted.is-signature-scene > :where(.pp-block__inner, .pp-section__inner),
body.ppps-capability-full [data-pp-scene="surrounded-heading"].is-motion-mounted.is-signature-scene > :where(.pp-block__inner, .pp-section__inner) {
	position: sticky;
	top: 0;
	min-height: 100svh;
}

[data-pp-scene="collage"] :where(.pp-block__header, .pp-mosaic__protected-copy),
[data-pp-scene="surrounded-heading"] :where(.pp-block__header, .pp-mosaic__protected-copy) {
	position: relative;
	z-index: 30;
	grid-column: 4 / 10;
	max-width: none;
	padding: clamp(32px, 4vw, 64px);
	background: rgba(243, 241, 234, .92);
	background: color-mix(in srgb, var(--ppps-paper) 92%, transparent);
}

[data-pp-scene="collage"] [data-pp-media-role],
[data-pp-scene="surrounded-heading"] [data-pp-media-role] {
	position: absolute;
	z-index: calc(10 + var(--pp-layer-index, 0));
	overflow: clip;
	background: var(--ppps-graphite);
	opacity: var(--pp-layer-progress, 1);
	transform-origin: center;
	will-change: auto;
}

body.ppps-capability-full
	[data-pp-scene].is-motion-mounted.is-signature-scene [data-pp-media-role] {
	will-change: transform;
}

[data-pp-scene] [data-pp-media-role] :where(img, picture, video),
[data-pp-scene] [data-pp-media-role] > :where(img, video) {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: var(--pp-focal-x, 50%) var(--pp-focal-y, 50%);
}

[data-pp-media-role="anchor"] {
	top: 6%;
	left: 2%;
	width: min(45%, 720px);
	aspect-ratio: 4 / 3;
	transform: translate3d(0, calc((1 - var(--pp-layer-progress, 1)) * 48px), 0) scale(calc(.92 + (var(--pp-layer-progress, 1) * .08)));
}

[data-pp-media-role="inset"] {
	right: 3%;
	bottom: 8%;
	width: min(25%, 390px);
	aspect-ratio: 3 / 4;
	transform: translate3d(0, calc((1 - var(--pp-layer-progress, 1)) * -72px), 0);
}

[data-pp-media-role="inset"] ~ [data-pp-media-role="inset"] {
	right: auto;
	bottom: 4%;
	left: 3%;
	width: min(21%, 340px);
	aspect-ratio: 16 / 10;
	transform:
		translate3d(
			calc((1 - var(--pp-layer-progress, 1)) * -66px),
			calc((1 - var(--pp-layer-progress, 1)) * 36px),
			0
		)
		scale(calc(.9 + (var(--pp-layer-progress, 1) * .1)));
}

[data-pp-media-role="object"] {
	top: 8%;
	right: 8%;
	width: min(22%, 340px);
	aspect-ratio: 1;
	background: transparent;
	transform: translate3d(calc((1 - var(--pp-layer-progress, 1)) * 64px), 0, 0) scale(calc(.84 + (var(--pp-layer-progress, 1) * .16)));
}

[data-pp-media-role="object"] :where(img, picture) {
	object-fit: contain;
}

[data-pp-media-role="evidence"] {
	bottom: 6%;
	left: 29%;
	width: min(21%, 350px);
	aspect-ratio: 16 / 10;
	transform: translate3d(calc((1 - var(--pp-layer-progress, 1)) * -54px), 0, 0);
}

/* Route-specific static art direction is selected by semantic roles, not by
 * hardcoded page content. Gutenberg remains the source of section order. */
.ppps-route-company .page-studio-content > [data-pp-scene="hero"]:not([data-pp-registered-asset-set]),
.ppps-route-tool-room-engineering .page-studio-content > [data-pp-scene="hero"]:not([data-pp-registered-asset-set]) {
	display: grid;
	min-height: min(100svh, 1040px);
	grid-template-columns: repeat(12, minmax(0, 1fr));
	align-items: end;
	padding: calc(var(--ppps-header-height) + 8vh) var(--ppps-gutter) 10vh;
	overflow: clip;
	background: var(--ppps-ink);
	color: var(--ppps-white);
}

.ppps-route-company [data-pp-scene="hero"] :where(.pp-hero__media, .pp-hero__technical-field),
.ppps-route-tool-room-engineering [data-pp-scene="hero"] :where(.pp-hero__media, .pp-hero__technical-field) {
	position: absolute;
	inset: 0 0 0 42%;
}

.ppps-route-company [data-pp-scene="hero"] :where(.pp-hero__media, .pp-hero__technical-field) :where(img, video),
.ppps-route-tool-room-engineering [data-pp-scene="hero"] :where(.pp-hero__media, .pp-hero__technical-field) :where(img, video) {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(calc(1.08 - (var(--pp-scene-progress, 0) * .08)));
	transform-origin: var(--pp-focal-x, 50%) var(--pp-focal-y, 50%);
}

.ppps-route-company [data-pp-scene="hero"] .pp-hero__inner,
.ppps-route-tool-room-engineering [data-pp-scene="hero"] .pp-hero__inner {
	width: auto;
	max-width: none;
	margin: 0;
	grid-column: 1 / 8;
}

.ppps-route-components [data-pp-scene="hero"],
.ppps-route-infrastructure [data-pp-scene="hero"] {
	min-height: clamp(680px, 88svh, 980px);
}

.ppps-route-components .pp-block--component-portfolio .pp-component-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(18px, 2vw, 32px);
	border: 0;
}

.ppps-route-components .pp-block--component-portfolio .pp-record-card {
	display: flex;
	min-height: 100%;
	grid-column: auto;
	flex-direction: column;
	background: var(--ppps-paper);
	color: var(--ppps-ink);
}

.ppps-route-components .pp-block--component-portfolio .pp-record-card:first-child {
	display: flex;
	grid-column: auto;
	grid-row: auto;
	flex-direction: column;
	background: var(--ppps-paper);
	color: var(--ppps-ink);
}

.ppps-route-components .pp-block--component-portfolio
	.pp-component-grid > .pp-record-card:nth-child(n) {
	display: flex;
	width: auto;
	max-width: none;
	grid-column: auto;
	grid-row: auto;
	grid-template-columns: none;
	flex-direction: column;
}

.ppps-route-components .pp-block--component-portfolio .pp-record-card figure,
.ppps-route-components .pp-block--component-portfolio .pp-record-card:first-child figure {
	min-height: 0;
	max-height: 420px;
	aspect-ratio: 4 / 3;
}

.ppps-route-components .pp-block--component-portfolio .pp-record-card .pp-record-card__body,
.ppps-route-components .pp-block--component-portfolio .pp-record-card:first-child .pp-record-card__body {
	display: grid;
	flex: 1;
	padding: 0;
	align-content: start;
}

.ppps-route-infrastructure .pp-block--plant-network {
	background: var(--ppps-ink);
	color: var(--ppps-white);
}

.ppps-route-infrastructure .pp-block--plant-network .pp-plant-map {
	min-height: clamp(520px, 68svh, 820px);
	margin-top: clamp(48px, 7vw, 112px);
	border: 1px solid rgba(255, 255, 255, .18);
	background:
		radial-gradient(circle at 50% 50%, rgba(154, 168, 173, .17), transparent 56%),
		var(--ppps-graphite);
}

.ppps-route-infrastructure .pp-block--plant-network .pp-plant-grid {
	margin-top: 0;
	border-top: 1px solid rgba(255, 255, 255, .18);
}

.ppps-route-infrastructure .pp-block--plant-network .pp-plant-card {
	min-height: clamp(280px, 28vw, 420px);
	padding: clamp(28px, 3vw, 48px);
	border-color: rgba(255, 255, 255, .18);
}

:is(body.ppps-route-plant-profile, body.ppps-singular-pp_plant)
	.pp-block--plant-profile-sections > .pp-block__inner {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 0 var(--ppps-grid-gap);
	align-items: start;
}

:is(body.ppps-route-plant-profile, body.ppps-singular-pp_plant)
	.pp-block--plant-profile-sections .pp-plant-facts {
	position: sticky;
	top: calc(var(--ppps-admin-offset) + var(--ppps-header-height) + 40px);
	grid-column: 1 / 5;
	grid-row: 1 / span 20;
	padding-right: clamp(20px, 3vw, 48px);
}

:is(body.ppps-route-plant-profile, body.ppps-singular-pp_plant)
	.pp-block--plant-profile-sections > .pp-block__inner > :not(.pp-plant-facts) {
	grid-column: 6 / -1;
}

.ppps-route-oem-trust-awards .pp-block--awards-rail {
	background: var(--ppps-aluminium);
	color: var(--ppps-ink);
}

.ppps-route-oem-trust-awards .pp-block--awards-rail .pp-awards-story {
	color: var(--ppps-ink);
}

.ppps-route-oem-trust-awards .pp-block--awards-rail .pp-award {
	border-color: rgba(7, 8, 9, .24);
	background: rgba(243, 241, 234, .78);
	color: var(--ppps-ink);
}

.ppps-route-oem-trust-awards .pp-block--awards-rail .pp-award time {
	color: var(--ppps-oxide);
}

.ppps-route-oem-trust-awards .pp-block--awards-rail .pp-award__description {
	opacity: .84;
}

.ppps-route-oem-trust-awards .pp-block--awards-rail .pp-award__entity {
	opacity: .78;
}

.ppps-route-oem-trust-awards .pp-block--customer-trust-grid .pp-customer-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	background: var(--ppps-light-line);
}

.ppps-route-oem-trust-awards .pp-block--customer-trust-grid .pp-customer {
	min-height: 220px;
	padding: clamp(24px, 3vw, 44px);
	background: var(--ppps-paper);
}

.ppps-profile-utility .pp-block__title {
	max-width: 18ch;
	font-size: clamp(2.8rem, 4.2vw, 4.8rem);
}

.ppps-profile-utility [data-pp-scene] {
	min-height: 0;
}

.ppps-route-careers .page-studio-content > [data-pp-scene="hero"] .pp-block__title {
	max-width: 15ch;
	font-size: clamp(4.5rem, 7.5vw, 8.8rem);
	letter-spacing: -.055em;
	line-height: .94;
	text-wrap: balance;
}

@media (min-width: 1101px) {
	:is(body.ppps-route-careers, body.ppps-route-contact)
		:where(.pp-form--career, .pp-form--manufacturing) .pp-form-block__inner {
		display: grid;
		width: 100%;
		max-width: var(--ppps-wide);
		grid-template-columns: minmax(250px, .54fr) minmax(0, 1.46fr);
		align-items: start;
		gap: clamp(48px, 7vw, 112px);
	}

	:is(body.ppps-route-careers, body.ppps-route-contact)
		:where(.pp-form--career, .pp-form--manufacturing) .pp-form-block__inner > .pp-block__header {
		max-width: 30rem;
		margin: 0;
	}

	:is(body.ppps-route-careers, body.ppps-route-contact)
		:where(.pp-form--career, .pp-form--manufacturing) .pp-native-form-wrap {
		min-width: 0;
	}

	:is(body.ppps-route-careers, body.ppps-route-contact)
		:where(.pp-form--career, .pp-form--manufacturing) .pp-form-footer {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: end;
		justify-content: initial;
		gap: 24px;
	}
}

/* Editorial and utility profiles never inherit the legacy pinned process
 * canvas. Their evidence remains adjacent to the text in source order. */
:is(body.ppps-profile-editorial, body.ppps-profile-utility)
	.pp-block--process-chain.pp-process--pinned .pp-process-story__layout {
	display: block;
}

:is(body.ppps-profile-editorial, body.ppps-profile-utility)
	.pp-block--process-chain.pp-process--pinned .pp-process-story__layout .pp-process__sticky {
	position: relative;
	top: auto;
}

:is(body.ppps-profile-editorial, body.ppps-profile-utility)
	.pp-block--process-chain.pp-process--pinned .pp-process__media-stack,
:is(body.ppps-profile-editorial, body.ppps-profile-utility)
	.pp-block--process-chain.pp-process--pinned .pp-process__counter {
	display: none;
}

:is(body.ppps-profile-editorial, body.ppps-profile-utility)
	.pp-block--process-chain.pp-process--pinned .pp-process__stage-media {
	display: block;
}

/* One compound active-state vocabulary for panels, cards, records and CTAs. */
:where([data-pp-card-role], [data-pp-record], .pp-technical-card, .record-card, .pp-component-card, .pp-equipment-card, .pp-plant-card, .pp-journal-card, .pp-news-item) {
	position: relative;
	border-radius: var(--ppps-radius-medium);
	transform: translateZ(0);
}

:where([data-pp-card-role], [data-pp-record], .pp-technical-card, .record-card, .pp-component-card, .pp-equipment-card, .pp-plant-card, .pp-journal-card, .pp-news-item)::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 1px;
	background: currentColor;
	content: "";
	opacity: .48;
	transform: scaleX(.22);
	transform-origin: left;
	transition: transform var(--ppps-duration-control) var(--ppps-ease);
}

:where([data-pp-card-role], [data-pp-record], .pp-technical-card, .record-card, .pp-component-card, .pp-equipment-card, .pp-plant-card, .pp-journal-card, .pp-news-item)
	:is(h2, h3, .pp-technical-card__title, .record-card__title) {
	transition:
		color var(--ppps-duration-micro) ease,
		transform var(--ppps-duration-control) var(--ppps-ease);
}

:where([data-pp-card-role], [data-pp-record], .pp-technical-card, .record-card, .pp-component-card, .pp-equipment-card, .pp-plant-card, .pp-journal-card, .pp-news-item)
	:is(img, video) {
	transition:
		filter var(--ppps-duration-control) ease,
		transform var(--ppps-duration-panel) var(--ppps-ease);
}

:where([data-pp-card-role], [data-pp-record], .pp-technical-card, .record-card, .pp-component-card, .pp-equipment-card, .pp-plant-card, .pp-journal-card, .pp-news-item)
	:is(.pp-icon--arrow, .record-card__action span) {
	transition: transform var(--ppps-duration-control) var(--ppps-ease);
}

:where([data-pp-card-role], [data-pp-record], .pp-technical-card, .record-card, .pp-component-card, .pp-equipment-card, .pp-plant-card, .pp-journal-card, .pp-news-item):is(:hover, :focus-within)::after {
	transform: scaleX(1);
}

:where([data-pp-card-role], [data-pp-record], .pp-technical-card, .record-card, .pp-component-card, .pp-equipment-card, .pp-plant-card, .pp-journal-card, .pp-news-item):is(:hover, :focus-within)
	:is(h2, h3, .pp-technical-card__title, .record-card__title) {
	color: var(--ppps-oxide);
	transform: translate3d(0, -12px, 0);
}

:where([data-pp-card-role], [data-pp-record], .pp-technical-card, .record-card, .pp-component-card, .pp-equipment-card, .pp-plant-card, .pp-journal-card, .pp-news-item):is(:hover, :focus-within)
	:is(img, video) {
	transform: scale(1.035);
}

:where([data-pp-card-role], [data-pp-record], .pp-technical-card, .record-card, .pp-component-card, .pp-equipment-card, .pp-plant-card, .pp-journal-card, .pp-news-item):is(:hover, :focus-within)
	:is(.pp-icon--arrow, .record-card__action span) {
	transform: translate3d(6px, -6px, 0);
}

:where(.pp-button, .header-cta, .site-footer__cta-link) {
	position: relative;
	isolation: isolate;
	overflow: hidden;
}

:where(.pp-button, .header-cta, .site-footer__cta-link)::before {
	position: absolute;
	z-index: -1;
	inset: 0;
	border-radius: inherit;
	background: var(--ppps-oxide);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform var(--ppps-duration-control) var(--ppps-ease);
}

:where(.pp-button, .header-cta, .site-footer__cta-link):is(:hover, :focus-visible)::before {
	transform: scaleX(1);
	transform-origin: left;
}

[data-pp-scene="records"].is-motion-mounted :where([data-pp-record], .record-card, tr) {
	opacity: 0;
	transform: translate3d(-10px, 0, 0);
	transition:
		opacity var(--ppps-duration-panel) ease,
		transform var(--ppps-duration-panel) var(--ppps-ease);
	transition-delay: calc(min(var(--pp-record-index, 0), 7) * var(--ppps-stagger));
}

[data-pp-scene="records"].has-entered :where([data-pp-record], .record-card, tr) {
	opacity: 1;
	transform: none;
}

:where(input, select, textarea):focus-visible {
	border-color: var(--ppps-oxide);
	outline: 3px solid var(--ppps-technical-silver);
	outline-offset: 2px;
	transition:
		border-color var(--ppps-duration-micro) ease,
		outline-color var(--ppps-duration-micro) ease;
}

[data-pp-media-state="failed"],
.has-media-failure :where(.pp-media-fallback, [data-pp-media-fallback]) {
	background:
		linear-gradient(135deg, rgba(154, 168, 173, .16), transparent 65%),
		var(--ppps-graphite);
}

.site-footer {
	--pp-footer-progress: 0;
	opacity: 1;
	transform: none;
}

.site-footer__cta,
.site-footer__main,
.site-footer__wordmark {
	opacity: calc(.3 + (var(--pp-footer-progress) * .7));
	transform: translate3d(0, calc((1 - var(--pp-footer-progress)) * 48px), 0);
}

.site-footer__bottom {
	opacity: 1;
	transform: none;
}

.site-footer__wordmark span {
	font-size: clamp(3rem, 8.6vw, 10.5rem);
	letter-spacing: -.06em;
	line-height: .78;
}

:where(
	.no-js body,
	body.ppps-runtime-disabled:not(.ppps-presentation-page),
	body.ppps-capability-static,
	body.ppps-capability-off,
	body.ppps-capability-reduced,
	body.ppps-capability-lite,
	body.ppps-readiness-failed,
	body.ppps-presentation-page
) .site-footer {
	--pp-footer-progress: 1;
}

/* Static, Off, Reduced, no-JavaScript, failed-runtime, and Lite forms. */
:where(
	.no-js body,
	body.ppps-runtime-disabled:not(.ppps-presentation-page),
	body.ppps-capability-static,
	body.ppps-capability-off,
	body.ppps-capability-reduced,
	body.ppps-motion-off,
	body.ppps-motion-reduced
) [data-pp-scene] {
	min-height: 0 !important;
	padding-block: clamp(5rem, 9vw, 10rem);
	overflow: visible;
	contain: none;
}

:where(
	.no-js body,
	body.ppps-runtime-disabled,
	body.ppps-capability-static,
	body.ppps-capability-off,
	body.ppps-capability-reduced,
	body.ppps-motion-off,
	body.ppps-motion-reduced
) [data-pp-scene] > :where(.pp-block__inner, .pp-section__inner, .pp-hero__inner),
:where(
	.no-js body,
	body.ppps-runtime-disabled,
	body.ppps-capability-static,
	body.ppps-capability-off,
	body.ppps-capability-reduced,
	body.ppps-motion-off,
	body.ppps-motion-reduced
) [data-pp-scene] :where(.pp-hero__stage, .pp-hero__registered-stage, [data-pp-registered-stage], .pp-handoff__stage, [data-pp-handoff-stage]) {
	position: relative;
	top: auto;
	height: auto;
	min-height: 0;
	opacity: 1;
	transform: none;
}

:where(
	.no-js body,
	body.ppps-runtime-disabled,
	body.ppps-capability-static,
	body.ppps-capability-off,
	body.ppps-capability-reduced,
	body.ppps-motion-off,
	body.ppps-motion-reduced
) [data-pp-scene="hero"][data-pp-registered-asset-set] :where(.pp-hero__stage, .pp-hero__registered-stage, [data-pp-registered-stage]) {
	min-height: clamp(620px, 86svh, 920px);
}

:where(
	.no-js body,
	body.ppps-runtime-disabled,
	body.ppps-capability-static,
	body.ppps-capability-off,
	body.ppps-capability-reduced,
	body.ppps-motion-off,
	body.ppps-motion-reduced
) [data-pp-scene="hero"][data-pp-registered-asset-set] .pp-v19-hero__sticky {
	height: auto;
	min-height: 0;
}

:where(
	.no-js body,
	body.ppps-runtime-disabled,
	body.ppps-capability-static,
	body.ppps-capability-off,
	body.ppps-capability-reduced,
	body.ppps-motion-off,
	body.ppps-motion-reduced
) [data-pp-scene="hero"][data-pp-registered-asset-set] .pp-v19-hero__registered-media {
	position: relative;
	top: auto;
	width: 100%;
	height: auto;
	min-height: clamp(520px, 76svh, 860px);
	transform: none;
}

:where(
	.no-js body,
	body.ppps-runtime-disabled,
	body.ppps-capability-static,
	body.ppps-capability-off,
	body.ppps-capability-reduced,
	body.ppps-motion-off,
	body.ppps-motion-reduced
) [data-pp-scene="hero"][data-pp-registered-asset-set] .pp-v19-hero__content {
	position: relative;
	top: auto;
	height: auto;
	margin-top: 0;
	padding-top: clamp(64px, 9vw, 128px);
	padding-bottom: clamp(64px, 9vw, 128px);
	background: var(--ppps-ink);
	color: var(--ppps-white);
}

:where(
	.no-js body,
	body.ppps-runtime-disabled,
	body.ppps-capability-static,
	body.ppps-capability-off,
	body.ppps-capability-reduced,
	body.ppps-motion-off,
	body.ppps-motion-reduced
) .pp-v19-hero__phases {
	gap: 44px;
}

:where(
	.no-js body,
	body.ppps-runtime-disabled,
	body.ppps-capability-static,
	body.ppps-capability-off,
	body.ppps-capability-reduced,
	body.ppps-motion-off,
	body.ppps-motion-reduced
) .pp-v19-hero__phases > li {
	grid-area: auto;
}

:where(
	.no-js body,
	body.ppps-runtime-disabled,
	body.ppps-capability-static,
	body.ppps-capability-off,
	body.ppps-capability-reduced,
	body.ppps-motion-off,
	body.ppps-motion-reduced
) [data-pp-registered-layer]:not([data-pp-registered-layer="source"]):not([data-pp-registered-layer="technical"]):not([data-pp-registered-layer="reduced"]),
:where(
	.no-js body,
	body.ppps-runtime-disabled,
	body.ppps-capability-static,
	body.ppps-capability-off,
	body.ppps-capability-reduced,
	body.ppps-motion-off,
	body.ppps-motion-reduced
) [data-pp-handoff-layer]:not([data-pp-handoff-layer="primary"]):not([data-pp-handoff-layer="technical"]):not([data-pp-handoff-layer="fallback"]) {
	display: none;
}

:where(
	.no-js body,
	body.ppps-runtime-disabled,
	body.ppps-capability-static,
	body.ppps-capability-off,
	body.ppps-capability-reduced,
	body.ppps-motion-off,
	body.ppps-motion-reduced
) [data-pp-registered-layer="source"] {
	opacity: .46;
	filter: brightness(.78) saturate(.72);
	transform: none;
}

:where(
	.no-js body,
	body.ppps-runtime-disabled,
	body.ppps-capability-static,
	body.ppps-capability-off,
	body.ppps-capability-reduced,
	body.ppps-motion-off,
	body.ppps-motion-reduced
) [data-pp-registered-layer="technical"],
:where(
	.no-js body,
	body.ppps-runtime-disabled,
	body.ppps-capability-static,
	body.ppps-capability-off,
	body.ppps-capability-reduced,
	body.ppps-motion-off,
	body.ppps-motion-reduced
) [data-pp-handoff-layer="technical"] {
	display: block;
	opacity: .82;
}

:where(
	.no-js body,
	body.ppps-runtime-disabled,
	body.ppps-capability-static,
	body.ppps-capability-off,
	body.ppps-capability-reduced,
	body.ppps-motion-off,
	body.ppps-motion-reduced
) [data-pp-registered-layer="technical"] :where(path, line, polyline, polygon, rect, circle, ellipse),
:where(
	.no-js body,
	body.ppps-runtime-disabled,
	body.ppps-capability-static,
	body.ppps-capability-off,
	body.ppps-capability-reduced,
	body.ppps-motion-off,
	body.ppps-motion-reduced
) [data-pp-handoff-layer="technical"] :where(path, line, polyline, polygon, rect, circle, ellipse) {
	stroke-dashoffset: 0;
}

:where(
	body.ppps-capability-reduced,
	body.ppps-capability-off,
	body.ppps-motion-reduced,
	body.ppps-motion-off
) [data-pp-scene="hero"][data-pp-registered-asset-set] [data-pp-registered-layer] {
	display: none;
}

:where(
	body.ppps-capability-reduced,
	body.ppps-capability-off,
	body.ppps-motion-reduced,
	body.ppps-motion-off
) [data-pp-scene="hero"][data-pp-registered-asset-set] [data-pp-registered-layer="reduced"] {
	display: block;
	opacity: 1;
	filter: none;
	transform: none;
}

:where(
	.no-js body,
	body.ppps-runtime-disabled,
	body.ppps-capability-static,
	body.ppps-capability-off,
	body.ppps-capability-reduced,
	body.ppps-motion-off,
	body.ppps-motion-reduced
) :where([data-pp-hero-phase], [data-pp-scene-step], [data-pp-process-stage], [data-pp-record], .record-card, tr) {
	opacity: 1;
	pointer-events: auto;
	transform: none;
}

:where(
	.no-js body,
	body.ppps-runtime-disabled,
	body.ppps-capability-static,
	body.ppps-capability-off,
	body.ppps-capability-reduced,
	body.ppps-motion-off,
	body.ppps-motion-reduced
) [data-pp-scene="collage"] > :where(.pp-block__inner, .pp-section__inner),
:where(
	.no-js body,
	body.ppps-runtime-disabled,
	body.ppps-capability-static,
	body.ppps-capability-off,
	body.ppps-capability-reduced,
	body.ppps-motion-off,
	body.ppps-motion-reduced
) [data-pp-scene="surrounded-heading"] > :where(.pp-block__inner, .pp-section__inner) {
	position: relative;
	top: auto;
	min-height: clamp(680px, 82svh, 940px);
}

:where(
	.no-js body,
	body.ppps-runtime-disabled,
	body.ppps-capability-static,
	body.ppps-capability-off,
	body.ppps-capability-reduced,
	body.ppps-motion-off,
	body.ppps-motion-reduced
) [data-pp-scene="handoff"] .pp-handoff__inner {
	position: relative;
	top: auto;
	min-height: 0;
}

:where(
	.no-js body,
	body.ppps-runtime-disabled,
	body.ppps-capability-static,
	body.ppps-capability-off,
	body.ppps-capability-reduced,
	body.ppps-motion-off,
	body.ppps-motion-reduced
) .pp-block--process-chain.pp-process--indexed-story .pp-process-story__layout {
	display: block;
}

:where(
	.no-js body,
	body.ppps-runtime-disabled,
	body.ppps-capability-static,
	body.ppps-capability-off,
	body.ppps-capability-reduced,
	body.ppps-motion-off,
	body.ppps-motion-reduced
) .pp-block--process-chain.pp-process--indexed-story :where(.pp-process__sticky, .pp-process) {
	position: relative;
	top: auto;
	width: 100%;
	height: auto;
	min-height: 0;
	overflow: visible;
}

:where(
	.no-js body,
	body.ppps-runtime-disabled,
	body.ppps-capability-static,
	body.ppps-capability-off,
	body.ppps-capability-reduced,
	body.ppps-motion-off,
	body.ppps-motion-reduced
) .pp-block--process-chain.pp-process--indexed-story :where(.pp-process__media-stack, .pp-process__counter) {
	display: none;
}

:where(
	.no-js body,
	body.ppps-runtime-disabled,
	body.ppps-capability-static,
	body.ppps-capability-off,
	body.ppps-capability-reduced,
	body.ppps-motion-off,
	body.ppps-motion-reduced
) .pp-block--process-chain.pp-process--indexed-story .pp-process__stage {
	opacity: 1;
	transform: none;
}

:where(
	.no-js body,
	body.ppps-runtime-disabled,
	body.ppps-capability-static,
	body.ppps-capability-off,
	body.ppps-capability-reduced,
	body.ppps-motion-off,
	body.ppps-motion-reduced
) .pp-block--process-chain.pp-process--indexed-story .pp-process__stage-media {
	display: block;
}

body.ppps-capability-lite [data-pp-scene] {
	min-height: 0 !important;
	overflow: visible;
}

body.ppps-capability-lite [data-pp-scene] > :where(.pp-block__inner, .pp-section__inner, .pp-hero__inner),
body.ppps-capability-lite [data-pp-scene] :where(.pp-hero__stage, .pp-hero__registered-stage, [data-pp-registered-stage], .pp-handoff__stage, [data-pp-handoff-stage]) {
	position: relative;
	top: auto;
	height: auto;
	min-height: 0;
}

body.ppps-capability-lite [data-pp-scene="hero"][data-pp-registered-asset-set] :where(.pp-hero__stage, .pp-hero__registered-stage, [data-pp-registered-stage]) {
	min-height: min(860px, 100svh);
}

body.ppps-capability-lite [data-pp-scene="hero"][data-pp-registered-asset-set] .pp-v19-hero__sticky {
	height: auto;
	min-height: 0;
}

body.ppps-capability-lite [data-pp-scene="hero"][data-pp-registered-asset-set] .pp-v19-hero__registered-media {
	position: relative;
	top: auto;
	width: min(960px, calc(100% - var(--ppps-gutter) - var(--ppps-gutter)));
	height: auto;
	min-height: 0;
	aspect-ratio: 1672 / 941;
	margin-inline: auto;
	background: var(--ppps-ink);
	transform: none;
}

body.ppps-capability-lite [data-pp-scene="hero"][data-pp-registered-asset-set] .pp-v19-hero__content {
	position: relative;
	top: auto;
	height: auto;
	margin-top: 0;
	padding-top: clamp(64px, 9vw, 112px);
	padding-bottom: clamp(64px, 9vw, 112px);
}

body.ppps-capability-lite .pp-v19-hero__phases {
	display: grid;
	gap: 0;
}

body.ppps-capability-lite .pp-v19-hero__phases > li {
	grid-area: 1 / 1;
	opacity: 0;
	pointer-events: none;
	transform: translate3d(0, 16px, 0);
	transition:
		opacity var(--ppps-duration-control) ease,
		transform var(--ppps-duration-control) var(--ppps-ease);
}

body.ppps-capability-lite .pp-v19-hero__phases > li.is-active {
	opacity: 1;
	transform: none;
}

body.ppps-capability-lite [data-pp-scene="hero"][data-pp-registered-asset-set] [data-pp-registered-layer] {
	display: none;
}

body.ppps-capability-lite [data-pp-scene="hero"][data-pp-registered-asset-set] :is(
	[data-pp-registered-layer="source"],
	[data-pp-registered-layer="dark"],
	[data-pp-registered-layer="illumination"],
	[data-pp-registered-layer="detail"],
	[data-pp-registered-layer="datum"],
	[data-pp-registered-layer="technical"]
) {
	display: block;
}

body.ppps-capability-lite
	[data-pp-scene="hero"][data-pp-registered-asset-set]
	[data-pp-registered-layer="illumination"] {
	opacity: calc(var(--pp-h01-illumination, 0) * .42);
}

body.ppps-capability-lite
	[data-pp-scene="hero"][data-pp-registered-asset-set]
	[data-pp-registered-layer="detail"] {
	opacity: calc(var(--pp-h01-detail, 0) * .5);
}

body.ppps-capability-lite [data-pp-scene="hero"][data-pp-registered-asset-set] [data-pp-registered-layer] :where(picture, img, svg),
body.ppps-capability-lite [data-pp-scene="hero"][data-pp-registered-asset-set] [data-pp-registered-layer] > :where(img, svg) {
	object-fit: contain;
}

body.ppps-capability-lite [data-pp-scene="hero"][data-pp-registered-asset-set] [data-pp-registered-layer="reduced"],
body.ppps-capability-lite [data-pp-scene="hero"][data-pp-registered-asset-set] [data-pp-registered-layer="mobile"] {
	display: none;
}

body.ppps-capability-lite [data-pp-scene="handoff"] .pp-handoff__inner {
	position: relative;
	top: auto;
	min-height: 0;
}

body.ppps-capability-lite .pp-block--process-chain.pp-process--indexed-story .pp-process-story__layout {
	display: block;
}

body.ppps-capability-lite .pp-block--process-chain.pp-process--indexed-story .pp-process {
	display: grid;
	width: 100%;
	min-width: 0;
	margin: 0;
	padding: 0;
	grid-template-columns: minmax(0, 1fr);
	overflow: visible;
	scroll-snap-type: none;
}

body.ppps-capability-lite .pp-block--process-chain.pp-process--indexed-story :where(.pp-process__sticky, .pp-process) {
	position: relative;
	top: auto;
	width: 100%;
	height: auto;
	min-height: 0;
	overflow: visible;
}

body.ppps-capability-lite .pp-block--process-chain.pp-process--indexed-story :where(.pp-process__media-stack, .pp-process__counter) {
	display: none;
}

body.ppps-capability-lite .pp-block--process-chain.pp-process--indexed-story .pp-process__stage {
	display: block;
	flex: none;
	width: 100%;
	min-width: 0;
	min-height: 0;
	padding: 36px 0 48px;
	border-top: 1px solid rgba(255, 255, 255, .24);
	opacity: 1;
	scroll-snap-align: none;
	transform: none;
}

body.ppps-capability-lite .pp-block--process-chain.pp-process--indexed-story .pp-process__number {
	margin-bottom: 24px;
}

body.ppps-capability-lite .pp-block--process-chain.pp-process--indexed-story .pp-process__stage-media {
	display: block;
}

/* Lite H01 is a bounded five-state composition: one source poster followed by
 * four short, reversible registered crossfades. It never creates a long
 * sticky trap and never substitutes the H01 reference video for scroll state. */
@media (max-width: 760px) {
	body.ppps-capability-lite [data-pp-scene="hero"][data-pp-registered-asset-set] .pp-v19-hero__registered-media {
		width: min(100%, 560px);
		aspect-ratio: 4 / 5;
	}

	body.ppps-capability-lite [data-pp-scene="hero"][data-pp-registered-asset-set] [data-pp-registered-layer="source"] {
		display: none;
	}

	body.ppps-capability-lite [data-pp-scene="hero"][data-pp-registered-asset-set] [data-pp-registered-layer="mobile"] {
		display: block;
		z-index: 8;
		opacity: 1;
		filter: none;
		transform: none;
		transition:
			opacity var(--ppps-duration-control) ease,
			filter var(--ppps-duration-control) ease;
	}
}

body.ppps-capability-lite
	[data-pp-scene="hero"][data-pp-registered-asset-set][data-pp-lite-state="05"]
	[data-pp-registered-layer="mobile"] {
	opacity: .28;
	filter: brightness(.45) saturate(.35);
}

body.ppps-capability-lite
	[data-pp-scene="hero"][data-pp-registered-asset-set][data-pp-lite-state="05"]
	[data-pp-registered-layer="technical"] {
	opacity: 1;
	color: var(--ppps-white);
	filter: drop-shadow(0 0 1px rgba(255, 255, 255, .82));
	mix-blend-mode: screen;
}

body.ppps-capability-lite
	[data-pp-scene="hero"][data-pp-registered-asset-set][data-pp-lite-state="05"]
	[data-pp-registered-layer="technical"] :where(path, line, polyline, polygon, rect, circle, ellipse) {
	stroke-width: 4;
}

body.ppps-capability-lite [data-pp-scene="hero"].has-media-failure [data-pp-registered-layer] {
	display: none;
}

body.ppps-capability-lite [data-pp-scene="hero"].has-media-failure [data-pp-registered-layer="reduced"] {
	display: block;
	opacity: 1;
	filter: none;
	transform: none;
}

/* A controller exception, readiness timeout, or explicit director teardown
 * resolves to a complete linear composition instead of leaving pinned or
 * opacity-gated fragments behind. */
:where(
	body.ppps-readiness-failed [data-pp-scene],
	[data-pp-scene].has-motion-failure,
	[data-pp-scene].is-motion-settled
) {
	min-height: 0 !important;
	overflow: visible !important;
	contain: none !important;
}

:where(
	body.ppps-readiness-failed [data-pp-scene],
	[data-pp-scene].has-motion-failure,
	[data-pp-scene].is-motion-settled
) > :where(.pp-block__inner, .pp-section__inner, .pp-hero__inner),
:where(
	body.ppps-readiness-failed [data-pp-scene],
	[data-pp-scene].has-motion-failure,
	[data-pp-scene].is-motion-settled
) :where(
	.pp-hero__stage,
	.pp-hero__registered-stage,
	[data-pp-registered-stage],
	.pp-handoff__stage,
	[data-pp-handoff-stage],
	.pp-process__sticky,
	[data-pp-indexed-sticky]
) {
	position: relative !important;
	top: auto !important;
	height: auto !important;
	min-height: 0 !important;
	opacity: 1 !important;
	transform: none !important;
}

:where(
	body.ppps-readiness-failed [data-pp-scene="hero"],
	[data-pp-scene="hero"].has-motion-failure,
	[data-pp-scene="hero"].is-motion-settled
) .pp-v19-hero__sticky {
	height: auto !important;
	min-height: 0 !important;
}

:where(
	body.ppps-readiness-failed [data-pp-scene="hero"],
	[data-pp-scene="hero"].has-motion-failure,
	[data-pp-scene="hero"].is-motion-settled
) .pp-v19-hero__registered-media,
:where(
	body.ppps-readiness-failed [data-pp-scene="hero"],
	[data-pp-scene="hero"].has-motion-failure,
	[data-pp-scene="hero"].is-motion-settled
) .pp-v19-hero__content {
	position: relative !important;
	top: auto !important;
	height: auto !important;
	margin-top: 0 !important;
	transform: none !important;
}

:where(
	body.ppps-readiness-failed [data-pp-scene="hero"],
	[data-pp-scene="hero"].has-motion-failure,
	[data-pp-scene="hero"].is-motion-settled
) [data-pp-registered-layer] {
	display: none !important;
}

:where(
	body.ppps-readiness-failed [data-pp-scene="hero"],
	[data-pp-scene="hero"].has-motion-failure,
	[data-pp-scene="hero"].is-motion-settled
) [data-pp-registered-layer="reduced"] {
	display: block !important;
	opacity: 1 !important;
	filter: none !important;
	transform: none !important;
}

:where(
	body.ppps-readiness-failed,
	[data-pp-scene].has-motion-failure,
	[data-pp-scene].is-motion-settled
) :where([data-pp-hero-phase], [data-pp-scene-step], [data-pp-process-stage], [data-pp-record], .record-card, tr) {
	opacity: 1 !important;
	pointer-events: auto !important;
	transform: none !important;
}

:where(
	body.ppps-readiness-failed [data-pp-scene="indexed-story"],
	[data-pp-scene="indexed-story"].has-motion-failure,
	[data-pp-scene="indexed-story"].is-motion-settled
) .pp-process-story__layout {
	display: block;
}

:where(
	body.ppps-readiness-failed [data-pp-scene="indexed-story"],
	[data-pp-scene="indexed-story"].has-motion-failure,
	[data-pp-scene="indexed-story"].is-motion-settled
) :where(.pp-process__media-stack, .pp-process__counter) {
	display: none;
}

:where(
	body.ppps-readiness-failed [data-pp-scene="indexed-story"],
	[data-pp-scene="indexed-story"].has-motion-failure,
	[data-pp-scene="indexed-story"].is-motion-settled
) .pp-process__stage-media {
	display: block;
}

/* The approved 1672 x 941 continuity source is DPR1 full-bleed authority.
 * At higher pixel density it becomes a deliberate contained engineering stage,
 * capped at 960 x 540 CSS pixels instead of being cosmetically upscaled. */
@media (min-resolution: 1.5dppx) {
	[data-pp-scene="hero"][data-pp-registered-asset-set] .pp-v19-hero__registered-media {
		width: min(
			960px,
			calc(100vw - var(--ppps-gutter) - var(--ppps-gutter))
		);
		height: auto;
		min-height: 0;
		aspect-ratio: 1672 / 941;
		margin-inline: auto;
		border: 1px solid rgba(255, 255, 255, .14);
		background: var(--ppps-graphite);
		box-shadow: 0 36px 96px rgba(0, 0, 0, .38);
	}

	body.ppps-capability-full [data-pp-scene="hero"][data-pp-registered-asset-set].is-motion-mounted.is-signature-scene .pp-v19-hero__registered-media {
		top: 50%;
		transform: translate3d(0, -50%, 0);
	}

	[data-pp-scene="handoff"] .pp-handoff__media {
		width: 100%;
		max-width: 960px;
	}

	:where(
		.no-js body,
		body.ppps-runtime-disabled,
		body.ppps-capability-static,
		body.ppps-capability-off,
		body.ppps-capability-reduced,
		body.ppps-motion-off,
		body.ppps-motion-reduced,
		body.ppps-capability-lite
	) [data-pp-scene="hero"][data-pp-registered-asset-set] .pp-v19-hero__registered-media {
		top: auto;
		transform: none;
	}
}

@media (min-resolution: 1.5dppx) and (max-height: 620px) {
	[data-pp-scene="hero"][data-pp-registered-asset-set] .pp-v19-hero__registered-media {
		width: min(960px, calc(100vw - var(--ppps-gutter) - var(--ppps-gutter)), calc(177.778svh - 96px));
	}
}

/* The protected corporate presentation owns its own route-scoped adapter.
 * Public V19 scene geometry is explicitly neutralized on that template. */
body.ppps-presentation-page [data-pp-scene] {
	min-height: 0 !important;
	contain: none !important;
}

body.ppps-presentation-page [data-pp-scene="hero"][data-pp-registered-asset-set] .pp-v19-hero__sticky,
body.ppps-presentation-page [data-pp-scene="hero"][data-pp-registered-asset-set] .pp-v19-hero__registered-media,
body.ppps-presentation-page [data-pp-scene="hero"][data-pp-registered-asset-set] .pp-v19-hero__content,
body.ppps-presentation-page [data-pp-scene="handoff"] .pp-handoff__inner,
body.ppps-presentation-page [data-pp-scene="collage"] > :where(.pp-block__inner, .pp-section__inner),
body.ppps-presentation-page [data-pp-scene="surrounded-heading"] > :where(.pp-block__inner, .pp-section__inner),
body.ppps-presentation-page [data-pp-scene="indexed-story"] :where(.pp-process__sticky, [data-pp-indexed-sticky]) {
	position: relative;
	top: auto;
	height: auto;
	min-height: 0;
	margin-top: 0;
	transform: none;
}

@media (max-width: 1280px) {
	:root {
		--ppps-gutter: 44px;
		--ppps-grid-gap: 20px;
	}
}

@media (min-width: 1281px) {
	.js .primary-navigation {
		display: block;
	}

	.js .navigation-toggle {
		display: none;
	}

	.js .site-header__descriptor {
		display: none;
	}
}

@media (max-width: 900px) {
	:root {
		--ppps-gutter: 32px;
		--ppps-grid-columns: 8;
		--ppps-grid-gap: 20px;
		--ppps-header-height: 64px;
	}

	.page-studio-content > .pp-block:not(.pp-block--industrial-hero),
	.page-studio-content > [data-pp-scene]:not([data-pp-scene="hero"]) {
		padding-block: clamp(5rem, 12vw, 7.5rem);
	}

	[data-pp-scene="collage"] > :where(.pp-block__inner, .pp-section__inner),
	[data-pp-scene="surrounded-heading"] > :where(.pp-block__inner, .pp-section__inner) {
		position: relative;
		top: auto;
		display: grid;
		min-height: 0;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px;
		overflow: visible;
	}

	[data-pp-scene="collage"] .pp-block__header,
	[data-pp-scene="collage"] .pp-mosaic__protected-copy,
	[data-pp-scene="surrounded-heading"] .pp-block__header,
	[data-pp-scene="surrounded-heading"] .pp-mosaic__protected-copy {
		grid-column: 1 / -1;
		padding: 0 0 28px;
		background: transparent;
	}

	[data-pp-scene="collage"] [data-pp-media-role],
	[data-pp-scene="surrounded-heading"] [data-pp-media-role] {
		position: relative;
		top: auto;
		right: auto;
		bottom: auto;
		left: auto;
		width: auto;
		aspect-ratio: 4 / 3;
		opacity: 1;
		transform: none;
	}

	[data-pp-media-role="anchor"] {
		grid-column: 1 / -1;
	}

	.pp-v19-prelude {
		padding-block: 100px;
		grid-template-columns: 1fr;
	}

	[data-pp-scene="handoff"] .pp-handoff__inner {
		position: relative;
		top: auto;
		min-height: 0;
		grid-template-columns: 1fr;
	}

	[data-pp-media-role="inset"] {
		aspect-ratio: 3 / 4;
	}

	.ppps-route-company .page-studio-content > [data-pp-scene="hero"]:not([data-pp-registered-asset-set]),
	.ppps-route-tool-room-engineering .page-studio-content > [data-pp-scene="hero"]:not([data-pp-registered-asset-set]) {
		display: block;
		min-height: 0;
		padding: calc(var(--ppps-header-height) + 56px) var(--ppps-gutter) 80px;
	}

	.ppps-route-company [data-pp-scene="hero"] :where(.pp-hero__media, .pp-hero__technical-field),
	.ppps-route-tool-room-engineering [data-pp-scene="hero"] :where(.pp-hero__media, .pp-hero__technical-field) {
		position: relative;
		inset: auto;
		aspect-ratio: 4 / 3;
		margin-bottom: 48px;
	}

	.ppps-route-components .pp-block--component-portfolio .pp-component-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ppps-route-components .pp-block--component-portfolio .pp-record-card,
	.ppps-route-components .pp-block--component-portfolio .pp-record-card:first-child {
		display: flex;
		grid-column: auto;
		grid-row: auto;
		flex-direction: column;
	}

	.ppps-route-components .pp-block--component-portfolio .pp-record-card figure,
	.ppps-route-components .pp-block--component-portfolio .pp-record-card:first-child figure {
		min-height: 0;
		max-height: none;
		aspect-ratio: 4 / 3;
	}

	.ppps-route-careers .page-studio-content > [data-pp-scene="hero"] .pp-block__title {
		max-width: 14ch;
		font-size: clamp(3.25rem, 11vw, 5.5rem);
		line-height: .96;
	}

	:is(body.ppps-route-plant-profile, body.ppps-singular-pp_plant)
		.pp-block--plant-profile-sections > .pp-block__inner {
		display: block;
	}

	:is(body.ppps-route-plant-profile, body.ppps-singular-pp_plant)
		.pp-block--plant-profile-sections .pp-plant-facts {
		position: relative;
		top: auto;
		padding-right: 0;
	}

	.ppps-route-oem-trust-awards .pp-block--customer-trust-grid .pp-customer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	:root {
		--ppps-gutter: 20px;
		--ppps-grid-columns: 4;
		--ppps-grid-gap: 16px;
		--ppps-section-space: 80px;
	}

	body {
		font-size: 16px;
	}

	.pp-block--industrial-hero .pp-block__title,
	[data-pp-scene="hero"] h1 {
		max-width: 11ch;
		font-size: clamp(3.2rem, 15vw, 5.8rem);
		line-height: .92;
	}

	.pp-block__title,
	.ppps-profile-narrative .page-studio-content > [data-pp-scene]:first-child .pp-block__title,
	.ppps-profile-editorial .page-studio-content > [data-pp-scene]:first-child .pp-block__title {
		font-size: clamp(2.2rem, 9vw, 3.5rem);
		line-height: 1.03;
	}

	.pp-block__copy {
		font-size: 16px;
	}

	.site-header__inner,
	.site-header.is-floating .site-header__inner {
		width: calc(100% - 32px);
	}

	.navigation-drawer__close {
		top: 12px;
		right: 16px;
		min-width: 84px;
	}

	[data-pp-scene="collage"] > :where(.pp-block__inner, .pp-section__inner),
	[data-pp-scene="surrounded-heading"] > :where(.pp-block__inner, .pp-section__inner) {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	[data-pp-media-role="anchor"],
	[data-pp-media-role="inset"],
	[data-pp-media-role="object"],
	[data-pp-media-role="evidence"] {
		grid-column: 1;
	}

	[data-pp-scene="hero"][data-pp-registered-asset-set] [data-pp-registered-layer] :where(img, svg, picture),
	[data-pp-scene="hero"][data-pp-registered-asset-set] [data-pp-registered-layer] > :where(img, svg) {
		object-fit: contain;
	}

	body.ppps-capability-lite [data-pp-scene="hero"]:not(.has-media-failure) [data-pp-registered-layer="mobile"] {
		display: block;
	}

	body.ppps-capability-lite [data-pp-scene="hero"]:not(.has-media-failure) [data-pp-registered-layer="reduced"] {
		display: none;
	}

	.site-footer__cta {
		padding-top: 80px;
		padding-bottom: 80px;
	}

	.site-footer__wordmark span {
		font-size: clamp(2.7rem, 13vw, 5.2rem);
		line-height: .82;
	}

	.ppps-route-components .pp-block--component-portfolio .pp-component-grid,
	.ppps-route-oem-trust-awards .pp-block--customer-trust-grid .pp-customer-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-height: 500px) and (orientation: landscape) {
	[data-pp-scene] {
		min-height: 0 !important;
	}

	[data-pp-scene] > :where(.pp-block__inner, .pp-section__inner, .pp-hero__inner),
	[data-pp-scene] :where(.pp-hero__stage, .pp-hero__registered-stage, [data-pp-registered-stage], .pp-handoff__stage, [data-pp-handoff-stage]) {
		position: relative;
		top: auto;
		height: auto;
		min-height: 0;
	}
}

@media (hover: none) {
	.record-card__link:hover .record-card__media img,
	.record-card__link:hover .record-card__action span {
		transform: none;
	}

	:where([data-pp-card-role], [data-pp-record], .pp-technical-card, .record-card, .pp-component-card, .pp-equipment-card, .pp-plant-card, .pp-journal-card, .pp-news-item):hover:not(:focus-within)::after {
		transform: scaleX(.22);
	}

	:where([data-pp-card-role], [data-pp-record], .pp-technical-card, .record-card, .pp-component-card, .pp-equipment-card, .pp-plant-card, .pp-journal-card, .pp-news-item):hover:not(:focus-within)
		:is(h2, h3, .pp-technical-card__title, .record-card__title, img, video, .pp-icon--arrow, .record-card__action span) {
		color: inherit;
		transform: none;
	}
}

:where(
	.no-js body,
	body.ppps-runtime-disabled,
	body.ppps-capability-static,
	body.ppps-capability-reduced,
	body.ppps-capability-off,
	body.ppps-motion-reduced,
	body.ppps-motion-off
) *,
:where(
	.no-js body,
	body.ppps-runtime-disabled,
	body.ppps-capability-static,
	body.ppps-capability-reduced,
	body.ppps-capability-off,
	body.ppps-motion-reduced,
	body.ppps-motion-off
) *::before,
:where(
	.no-js body,
	body.ppps-runtime-disabled,
	body.ppps-capability-static,
	body.ppps-capability-reduced,
	body.ppps-capability-off,
	body.ppps-motion-reduced,
	body.ppps-motion-off
) *::after {
	animation-delay: 0.01ms !important;
	animation-duration: 0.01ms !important;
	animation-iteration-count: 1 !important;
	scroll-behavior: auto !important;
	transition-delay: 0.01ms !important;
	transition-duration: 0.01ms !important;
}

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

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

	[data-reveal-ready="true"] {
		opacity: 1;
		transform: none;
	}

	[data-ppps-heading="true"],
	[data-ppps-media-frame="true"] {
		clip-path: none;
		opacity: 1;
		transform: none;
	}

	[data-ppps-media-frame="true"]::after {
		display: none;
	}

	[data-ppps-media-frame="true"] > :is(img, video),
	[data-ppps-media-frame="true"] picture > :is(img, video) {
		transform: none;
	}

	.record-card__media img,
	.record-card__action span {
		transform: none !important;
	}
}

/* Resilience modes are complete static compositions, not paused motion frames.
 * Inline director progress must never leave their content or footer dimmed. */
:where(
	.no-js body,
	body.ppps-runtime-disabled:not(.ppps-presentation-page),
	body.ppps-capability-static,
	body.ppps-capability-reduced,
	body.ppps-capability-off,
	body.ppps-motion-reduced,
	body.ppps-motion-off,
	body.ppps-readiness-failed
) [data-pp-scene].is-motion-mounted > :where(.pp-block__inner, .pp-section__inner, .pp-hero__inner) {
	opacity: 1 !important;
	transform: none !important;
}

:where(
	.no-js body,
	body.ppps-runtime-disabled:not(.ppps-presentation-page),
	body.ppps-capability-static,
	body.ppps-capability-reduced,
	body.ppps-capability-off,
	body.ppps-motion-reduced,
	body.ppps-motion-off,
	body.ppps-readiness-failed
) .pp-v19-hero__phases,
:where(
	[data-pp-scene="hero"].has-media-failure,
	[data-pp-scene="hero"].has-motion-failure,
	[data-pp-scene="hero"].is-motion-settled
) .pp-v19-hero__phases {
	display: none !important;
}

:where(
	.no-js body,
	body.ppps-runtime-disabled:not(.ppps-presentation-page),
	body.ppps-capability-static,
	body.ppps-capability-reduced,
	body.ppps-capability-off,
	body.ppps-motion-reduced,
	body.ppps-motion-off,
	body.ppps-readiness-failed
) [data-pp-scene="hero"][data-pp-registered-asset-set] [data-pp-registered-layer],
:where(
	[data-pp-scene="hero"].has-media-failure,
	[data-pp-scene="hero"].has-motion-failure,
	[data-pp-scene="hero"].is-motion-settled
) [data-pp-registered-layer] {
	display: none !important;
}

:where(
	.no-js body,
	body.ppps-runtime-disabled:not(.ppps-presentation-page),
	body.ppps-capability-static,
	body.ppps-capability-reduced,
	body.ppps-capability-off,
	body.ppps-motion-reduced,
	body.ppps-motion-off,
	body.ppps-readiness-failed
) [data-pp-scene="hero"][data-pp-registered-asset-set] [data-pp-registered-layer="reduced"],
:where(
	[data-pp-scene="hero"].has-media-failure,
	[data-pp-scene="hero"].has-motion-failure,
	[data-pp-scene="hero"].is-motion-settled
) [data-pp-registered-layer="reduced"] {
	display: block !important;
	opacity: 1 !important;
	filter: none !important;
	transform: none !important;
}

:where(
	.no-js body,
	body.ppps-runtime-disabled:not(.ppps-presentation-page),
	body.ppps-capability-static,
	body.ppps-capability-reduced,
	body.ppps-capability-off,
	body.ppps-motion-reduced,
	body.ppps-motion-off,
	body.ppps-readiness-failed
) [data-pp-scene="hero"][data-pp-registered-asset-set] .pp-v19-hero__sticky::after,
:where(
	[data-pp-scene="hero"].has-media-failure,
	[data-pp-scene="hero"].has-motion-failure,
	[data-pp-scene="hero"].is-motion-settled
) .pp-v19-hero__sticky::after {
	content: none !important;
	opacity: 0 !important;
}

:where(
	[data-pp-scene="hero"].has-media-failure,
	[data-pp-scene="hero"].has-motion-failure,
	[data-pp-scene="hero"].is-motion-settled
) .pp-v19-hero__sticky {
	height: auto !important;
	min-height: 0 !important;
}

:where(
	[data-pp-scene="hero"].has-media-failure,
	[data-pp-scene="hero"].has-motion-failure,
	[data-pp-scene="hero"].is-motion-settled
) :where(.pp-v19-hero__registered-media, .pp-v19-hero__content) {
	position: relative !important;
	top: auto !important;
	height: auto !important;
	margin-top: 0 !important;
	transform: none !important;
}

:where(
	.no-js body,
	body.ppps-runtime-disabled:not(.ppps-presentation-page),
	body.ppps-capability-static,
	body.ppps-capability-reduced,
	body.ppps-capability-off,
	body.ppps-motion-reduced,
	body.ppps-motion-off,
	body.ppps-readiness-failed
) [data-pp-scene="hero"][data-pp-registered-asset-set] .pp-v19-hero__content,
:where(
	[data-pp-scene="hero"].has-media-failure,
	[data-pp-scene="hero"].has-motion-failure,
	[data-pp-scene="hero"].is-motion-settled
) .pp-v19-hero__content {
	opacity: 1 !important;
	visibility: visible !important;
	transform: none !important;
}

:where(
	.no-js body,
	body.ppps-runtime-disabled:not(.ppps-presentation-page),
	body.ppps-capability-static,
	body.ppps-capability-reduced,
	body.ppps-capability-off,
	body.ppps-motion-reduced,
	body.ppps-motion-off,
	body.ppps-readiness-failed
) [data-pp-scene="hero"][data-pp-registered-asset-set] .pp-v19-hero__content :where(.pp-block__eyebrow, .pp-block__actions),
:where(
	[data-pp-scene="hero"].has-media-failure,
	[data-pp-scene="hero"].has-motion-failure,
	[data-pp-scene="hero"].is-motion-settled
) .pp-v19-hero__content :where(.pp-block__eyebrow, .pp-block__actions) {
	color: var(--ppps-white) !important;
}

/* Complete media loss resolves to designed, source-free editorial panels. The
 * fallback uses only CSS geometry, keeps every content claim visible, and
 * never exposes a broken image icon or an empty outlined media stage. */
[data-pp-scene="hero"].has-media-failure .pp-v19-hero__registered-media {
	min-height: clamp(440px, 68svh, 720px) !important;
	border: 0 !important;
	background:
		radial-gradient(circle at 64% 48%, rgba(189, 207, 211, .22) 0 7%, transparent 7.5% 16%, rgba(189, 207, 211, .11) 16.5% 17%, transparent 17.5%),
		linear-gradient(135deg, rgba(189, 207, 211, .09), transparent 42%),
		var(--ppps-ink) !important;
	box-shadow: none !important;
	isolation: isolate;
}

[data-pp-scene="hero"].has-media-failure .pp-v19-hero__registered-media::before,
[data-pp-scene="hero"].has-media-failure .pp-v19-hero__registered-media::after {
	position: absolute;
	z-index: 2;
	content: "";
	pointer-events: none;
}

[data-pp-scene="hero"].has-media-failure .pp-v19-hero__registered-media::before {
	inset: 0;
	background:
		linear-gradient(rgba(189, 207, 211, .075) 1px, transparent 1px),
		linear-gradient(90deg, rgba(189, 207, 211, .075) 1px, transparent 1px);
	background-size: clamp(38px, 4vw, 64px) clamp(38px, 4vw, 64px);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
}

[data-pp-scene="hero"].has-media-failure .pp-v19-hero__registered-media::after {
	inset: 18% 22%;
	border: 1px solid rgba(189, 207, 211, .56);
	background:
		linear-gradient(90deg, transparent 49.8%, rgba(189, 207, 211, .44) 50%, transparent 50.2%),
		linear-gradient(transparent 49.8%, rgba(189, 207, 211, .44) 50%, transparent 50.2%);
	border-radius: 50%;
	box-shadow:
		0 0 0 clamp(24px, 4vw, 64px) rgba(189, 207, 211, .045),
		0 0 0 1px rgba(189, 207, 211, .16);
	transform: rotate(-14deg);
}

[data-pp-scene="hero"].has-media-failure [data-pp-registered-layer] {
	display: none !important;
}

[data-pp-scene="hero"].has-media-failure .pp-v19-hero__content,
[data-pp-scene="hero"].has-media-failure .pp-v19-hero__content .pp-block__title {
	color: var(--ppps-white) !important;
}

[data-pp-prelude-chapter][data-pp-prelude-media-state="failed"] {
	--pp-prelude-fallback-index: "01";
}

[data-pp-prelude-chapter]:nth-child(2)[data-pp-prelude-media-state="failed"] {
	--pp-prelude-fallback-index: "02";
}

[data-pp-prelude-chapter]:nth-child(3)[data-pp-prelude-media-state="failed"] {
	--pp-prelude-fallback-index: "03";
}

[data-pp-prelude-chapter][data-pp-prelude-media-state="failed"] [data-pp-prelude-media] {
	min-height: clamp(220px, 28vw, 360px);
	border: 1px solid rgba(7, 8, 9, .18);
	background:
		linear-gradient(rgba(189, 207, 211, .11) 1px, transparent 1px),
		linear-gradient(90deg, rgba(189, 207, 211, .11) 1px, transparent 1px),
		linear-gradient(135deg, #111516, #20292b);
	background-size: 32px 32px, 32px 32px, auto;
}

[data-pp-prelude-chapter][data-pp-prelude-media-state="failed"] [data-pp-prelude-media]::before {
	position: absolute;
	z-index: 2;
	inset: 18% 24%;
	border: 1px solid rgba(189, 207, 211, .42);
	border-radius: 50%;
	box-shadow: 0 0 0 28px rgba(189, 207, 211, .045);
	content: "";
	transform: rotate(-12deg);
}

[data-pp-prelude-chapter][data-pp-prelude-media-state="failed"] [data-pp-prelude-media]::after {
	position: absolute;
	z-index: 3;
	top: 18px;
	left: 18px;
	color: rgba(255, 255, 255, .7);
	content: "EDITORIAL SYSTEM / " var(--pp-prelude-fallback-index);
	font-family: SFMono-Regular, Consolas, "Liberation Mono", monospace;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .12em;
	pointer-events: none;
}

[data-pp-prelude-chapter][data-pp-prelude-media-state="failed"] :where(
	[data-pp-prelude-video],
	[data-pp-prelude-poster-fallback]
) {
	display: none !important;
}

:where(
	.no-js body,
	body.ppps-runtime-disabled:not(.ppps-presentation-page),
	body.ppps-capability-static,
	body.ppps-capability-reduced,
	body.ppps-capability-off,
	body.ppps-motion-reduced,
	body.ppps-motion-off,
	body.ppps-readiness-failed
) [data-pp-scene="hero"][data-pp-registered-asset-set] .pp-v19-hero__content .pp-block__copy,
:where(
	[data-pp-scene="hero"].has-media-failure,
	[data-pp-scene="hero"].has-motion-failure,
	[data-pp-scene="hero"].is-motion-settled
) .pp-v19-hero__content .pp-block__copy {
	color: rgba(255, 255, 255, .76) !important;
	opacity: 1 !important;
}

:where(
	.no-js body,
	body.ppps-runtime-disabled:not(.ppps-presentation-page),
	body.ppps-capability-static,
	body.ppps-capability-reduced,
	body.ppps-capability-off,
	body.ppps-motion-reduced,
	body.ppps-motion-off,
	body.ppps-readiness-failed
) [data-pp-scene="hero"][data-pp-registered-asset-set] .pp-v19-hero__content .pp-button:not(.pp-button--ghost),
:where(
	[data-pp-scene="hero"].has-media-failure,
	[data-pp-scene="hero"].has-motion-failure,
	[data-pp-scene="hero"].is-motion-settled
) .pp-v19-hero__content .pp-button:not(.pp-button--ghost) {
	border-color: var(--pp-ember) !important;
	background: var(--pp-ember) !important;
	color: var(--pp-white) !important;
}

:where(
	.no-js body,
	body.ppps-runtime-disabled:not(.ppps-presentation-page),
	body.ppps-capability-static,
	body.ppps-capability-reduced,
	body.ppps-capability-off,
	body.ppps-motion-reduced,
	body.ppps-motion-off,
	body.ppps-readiness-failed
) [data-pp-scene="hero"][data-pp-registered-asset-set] .pp-v19-hero__content .pp-button--ghost,
:where(
	[data-pp-scene="hero"].has-media-failure,
	[data-pp-scene="hero"].has-motion-failure,
	[data-pp-scene="hero"].is-motion-settled
) .pp-v19-hero__content .pp-button--ghost {
	border-color: var(--ppps-white) !important;
	background: transparent !important;
	color: var(--ppps-white) !important;
}

:where(
	.no-js body,
	body.ppps-runtime-disabled:not(.ppps-presentation-page),
	body.ppps-capability-static,
	body.ppps-capability-reduced,
	body.ppps-capability-off,
	body.ppps-motion-reduced,
	body.ppps-motion-off,
	body.ppps-readiness-failed
) .site-header {
	border-color: rgba(255, 255, 255, .14) !important;
	background: linear-gradient(180deg, rgba(7, 8, 9, .97), rgba(7, 8, 9, .88)) !important;
	color: var(--ppps-white) !important;
}

:where(
	.no-js body,
	body.ppps-runtime-disabled:not(.ppps-presentation-page),
	body.ppps-capability-static,
	body.ppps-capability-reduced,
	body.ppps-capability-off,
	body.ppps-motion-reduced,
	body.ppps-motion-off,
	body.ppps-readiness-failed
) .site-header .site-branding__surface-logo--dark {
	display: flex !important;
}

:where(
	.no-js body,
	body.ppps-runtime-disabled:not(.ppps-presentation-page),
	body.ppps-capability-static,
	body.ppps-capability-reduced,
	body.ppps-capability-off,
	body.ppps-motion-reduced,
	body.ppps-motion-off,
	body.ppps-readiness-failed
) .site-header .site-branding__surface-logo--light {
	display: none !important;
}

:where(
	.no-js body,
	body.ppps-runtime-disabled:not(.ppps-presentation-page),
	body.ppps-capability-static,
	body.ppps-capability-reduced,
	body.ppps-capability-off,
	body.ppps-motion-reduced,
	body.ppps-motion-off,
	body.ppps-readiness-failed
) .site-header .navigation-toggle {
	border-color: rgba(255, 255, 255, .34) !important;
}

:where(
	.no-js body,
	body.ppps-runtime-disabled:not(.ppps-presentation-page),
	body.ppps-capability-static,
	body.ppps-capability-reduced,
	body.ppps-capability-off,
	body.ppps-motion-reduced,
	body.ppps-motion-off,
	body.ppps-readiness-failed
) .site-footer {
	--pp-footer-progress: 1 !important;
}

:where(
	.no-js body,
	body.ppps-runtime-disabled:not(.ppps-presentation-page),
	body.ppps-capability-static,
	body.ppps-capability-reduced,
	body.ppps-capability-off,
	body.ppps-motion-reduced,
	body.ppps-motion-off,
	body.ppps-readiness-failed
) :where(.site-footer__cta, .site-footer__main, .site-footer__wordmark) {
	opacity: 1 !important;
	transform: none !important;
}

@media (forced-colors: active) {
	.site-header,
	.site-footer,
	.entry-hero,
	.listing-header,
	.presentation-gate,
	.system-message {
		border-color: CanvasText;
		background: Canvas;
		color: CanvasText;
	}

	:focus-visible {
		outline-color: Highlight;
	}
}

@media print {
	.site-header,
	.site-header-reserve,
	.navigation-drawer,
	.site-footer,
	.post-navigation,
	.comments-area {
		display: none !important;
	}

	.site-main,
	body,
	.entry-hero,
	.listing-header {
		background: #fff !important;
		color: #000 !important;
	}

	.entry-hero__inner,
	.listing-header__inner,
	.standard-entry-content,
	.single-entry-content {
		padding-top: 24px;
		padding-bottom: 24px;
	}

	a {
		color: #000 !important;
	}
}
