.dl-product-page {
	background: var(--pr-white);
}

.pr-product-breadcrumb {
	border-bottom: 1px solid var(--pr-line-light);
	background: var(--pr-white);
}

.pr-product-breadcrumb .dl-container {
	display: flex;
	gap: 10px;
	align-items: center;
	min-height: 52px;
	color: var(--pr-gray-600);
	font-size: 12px;
}

.pr-product-breadcrumb a {
	text-decoration: none;
}

.pr-product-breadcrumb a:hover {
	color: var(--pr-purple-500);
}

.pr-product-breadcrumb strong {
	color: var(--pr-ink);
	font-weight: 650;
}

.pr-product-hero {
	padding: 78px 0 86px;
	background:
		radial-gradient(circle at 14% 18%, rgba(189, 3, 247, 0.08), transparent 30%),
		var(--pr-surface-muted);
}

.pr-product-hero__grid {
	display: grid;
	grid-template-columns: 0.94fr 1.06fr;
	gap: 88px;
	align-items: center;
}

.pr-product-hero__media {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--pr-line-light);
	border-radius: var(--pr-radius-media);
	background: var(--pr-black);
	box-shadow: var(--pr-shadow-card);
}

.pr-product-hero__media::after {
	position: absolute;
	inset: auto 0 0;
	height: 5px;
	background: var(--pr-gradient-brand);
	content: "";
}

.pr-product-hero__media img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	height: auto;
	object-fit: cover;
}

.pr-product-hero h1 {
	max-width: 760px;
	margin: 0;
	font-family: var(--pr-font-display);
	font-size: clamp(44px, 4.8vw, 66px);
	font-weight: 750;
	letter-spacing: -0.045em;
	line-height: 1.03;
}

.pr-product-hero__lead {
	max-width: 720px;
	margin: 25px 0 0;
	color: var(--pr-gray-600);
	font-size: 18px;
	line-height: 1.72;
}

.pr-product-hero__metrics {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 34px;
	border-top: 1px solid var(--pr-line-light);
	border-bottom: 1px solid var(--pr-line-light);
}

.pr-product-hero__metrics div {
	display: grid;
	gap: 5px;
	padding: 20px 16px 20px 0;
}

.pr-product-hero__metrics div + div {
	padding-left: 16px;
	border-left: 1px solid var(--pr-line-light);
}

.pr-product-hero__metrics strong {
	font-family: var(--pr-font-display);
	font-size: 20px;
}

.pr-product-hero__metrics span {
	color: var(--pr-gray-600);
	font-size: 10px;
}

.pr-product-hero__facts {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 11px 22px;
	margin: 27px 0 0;
	padding: 0;
	color: var(--pr-gray-600);
	font-size: 13px;
	list-style: none;
}

.pr-product-hero__facts li::before {
	margin-right: 9px;
	color: var(--pr-purple-500);
	content: "◆";
	font-size: 8px;
}

.pr-product-nav {
	position: sticky;
	top: var(--dl-header-height);
	z-index: 100;
	border-top: 1px solid var(--pr-line-dark);
	border-bottom: 1px solid var(--pr-line-dark);
	background: rgba(10, 10, 10, 0.96);
	backdrop-filter: blur(12px);
}

.admin-bar .pr-product-nav {
	top: calc(var(--dl-header-height) + 32px);
}

.pr-product-nav .dl-container {
	display: flex;
	overflow-x: auto;
}

.pr-product-nav a {
	flex: 0 0 auto;
	padding: 18px 22px;
	color: var(--pr-gray-300);
	font-size: 12px;
	font-weight: 650;
	text-decoration: none;
}

.pr-product-nav a:hover {
	color: var(--pr-purple-400);
}

.pr-product-section {
	padding: 100px 0;
}

.pr-product-overview {
	padding: 72px 0;
	border-bottom: 1px solid var(--pr-line-light);
	background: var(--pr-white);
}

.pr-product-overview__grid {
	display: grid;
	grid-template-columns: 0.7fr 1.3fr;
	gap: 80px;
}

.pr-product-overview h2 {
	margin: 0;
	font-family: var(--pr-font-display);
	font-size: clamp(34px, 3.5vw, 48px);
	font-weight: 720;
	letter-spacing: -0.035em;
	line-height: 1.1;
}

.pr-product-overview__grid > div:last-child {
	display: grid;
	gap: 15px;
}

.pr-product-overview__grid > div:last-child p {
	margin: 0;
	color: var(--pr-gray-600);
	line-height: 1.75;
}

.pr-product-heading {
	max-width: 820px;
	margin: 0 auto 48px;
	text-align: center;
}

.pr-product-heading h2,
.pr-product-copy h2,
.pr-product-proof h2 {
	margin: 0;
	font-family: var(--pr-font-display);
	font-size: clamp(37px, 4vw, 54px);
	font-weight: 720;
	letter-spacing: -0.035em;
	line-height: 1.08;
}

.pr-product-heading > p:last-child,
.pr-product-copy > p:last-child {
	margin: 20px 0 0;
	color: var(--pr-gray-600);
	font-size: 16px;
	line-height: 1.75;
}

.pr-product-specifications {
	background: var(--pr-white);
}

.pr-specification-table {
	max-width: 1040px;
	margin: 0 auto;
	overflow: hidden;
	border: 1px solid var(--pr-line-light);
	border-radius: var(--pr-radius-card);
	box-shadow: 0 18px 50px rgba(10, 10, 10, 0.08);
}

.pr-specification-table__title {
	display: flex;
	min-height: 78px;
	padding: 17px 24px;
	background: var(--pr-gradient-brand);
	align-items: center;
	justify-content: center;
}

.pr-specification-table__title img {
	width: auto;
	max-width: 270px;
	height: 44px;
	object-fit: contain;
}

.pr-specification-table__row {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	min-height: 56px;
	border-bottom: 1px solid var(--pr-line-light);
}

.pr-specification-table__row strong,
.pr-specification-table__row span {
	display: flex;
	padding: 16px 24px;
	align-items: center;
}

.pr-specification-table__row strong {
	background: var(--pr-surface-muted);
	font-size: 13px;
}

.pr-specification-table__row span {
	border-left: 1px solid var(--pr-line-light);
	color: var(--pr-gray-800);
	font-family: var(--pr-font-mono);
	font-size: 13px;
}

.pr-specification-table__row span a {
	color: inherit;
	text-decoration-color: var(--pr-purple-500);
	text-underline-offset: 3px;
}

.pr-specification-table__applications {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
}

.pr-specification-table__applications > strong {
	display: flex;
	padding: 20px 24px;
	background: var(--pr-surface-muted);
	align-items: flex-start;
	font-size: 13px;
}

.pr-specification-table__applications ol {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 20px 24px 20px 48px;
	border-left: 1px solid var(--pr-line-light);
	font-size: 13px;
}

.pr-specification-table [hidden] {
	display: none;
}

.pr-specification-toggle-wrap {
	display: flex;
	justify-content: center;
	margin-top: 28px;
}

.pr-specification-toggle {
	display: inline-flex;
	gap: 14px;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 24px;
	border: 1px solid var(--pr-ink);
	border-radius: var(--pr-radius-button);
	background: transparent;
	color: var(--pr-ink);
	cursor: pointer;
	font-family: var(--pr-font-body);
	font-size: 12px;
	font-weight: 750;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	transition: border-color var(--pr-transition), color var(--pr-transition), background var(--pr-transition);
}

.pr-specification-toggle:hover {
	border-color: var(--pr-purple-500);
	color: var(--pr-purple-500);
}

.pr-specification-toggle__icon {
	color: var(--pr-purple-500);
	font-size: 22px;
	line-height: 1;
	transition: transform var(--pr-transition);
}

.pr-specification-toggle[aria-expanded="true"] .pr-specification-toggle__icon {
	transform: rotate(180deg);
}

.pr-product-data,
.pr-product-range,
.pr-product-faq {
	background: var(--pr-black);
	color: var(--pr-white);
}

.pr-product-split {
	display: grid;
	grid-template-columns: 0.72fr 1.28fr;
	gap: 80px;
	align-items: center;
}

.pr-product-split--reverse {
	grid-template-columns: 1.2fr 0.8fr;
}

.pr-product-split--reverse figure {
	order: 0;
}

.pr-product-copy > p:last-child,
.pr-product-data .pr-product-copy > p:last-child {
	color: var(--pr-gray-300);
}

.pr-product-copy h2 {
	font-size: clamp(38px, 4vw, 56px);
}

.pr-product-split figure {
	margin: 0;
}

.pr-product-split figure img,
.pr-product-wide-image {
	display: block;
	width: 100%;
	border-radius: var(--pr-radius-media);
}

.pr-product-split figcaption {
	margin-top: 10px;
	color: var(--pr-gray-300);
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.pr-product-range {
	padding-top: 0;
}

.pr-product-heading--light > p:last-child {
	color: var(--pr-gray-300);
}

.pr-product-range .pr-product-wide-image {
	max-width: 1100px;
	margin: 0 auto;
	background: var(--pr-white);
}

.pr-product-adaptability {
	background: var(--pr-surface-muted);
}

.pr-product-adaptability .pr-product-copy > p:last-child {
	color: var(--pr-gray-600);
}

.pr-product-applications {
	background: var(--pr-white);
}

.pr-product-applications .pr-product-wide-image {
	border: 1px solid var(--pr-line-light);
}

.pr-product-proof {
	background: var(--pr-surface-muted);
}

.pr-product-proof__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.pr-product-proof article {
	overflow: hidden;
	border: 1px solid var(--pr-line-light);
	border-radius: var(--pr-radius-card);
	background: var(--pr-white);
}

.pr-product-proof article > div {
	padding: 34px;
}

.pr-product-proof h2 {
	font-size: 32px;
}

.pr-product-proof img {
	display: block;
	width: 100%;
	height: 410px;
	object-fit: contain;
	background: var(--pr-white);
}

.pr-product-logistics {
	background: var(--pr-white);
}

.pr-product-logistics__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.pr-product-logistics article {
	overflow: hidden;
	border: 1px solid var(--pr-line-light);
	border-radius: var(--pr-radius-card);
	background: var(--pr-surface-muted);
}

.pr-product-logistics h3 {
	margin: 0;
	padding: 27px 30px;
	font-family: var(--pr-font-display);
	font-size: 25px;
}

.pr-product-logistics img {
	display: block;
	width: 100%;
	height: 380px;
	object-fit: contain;
	background: var(--pr-white);
}

.pr-product-faq__grid {
	display: grid;
	grid-template-columns: 0.7fr 1.3fr;
	gap: 90px;
}

.pr-product-faq .pr-product-heading {
	margin: 0;
	text-align: left;
}

.pr-product-faq .pr-product-heading > p:last-child {
	color: var(--pr-gray-300);
}

.pr-product-faq__items {
	border-top: 1px solid var(--pr-line-dark);
}

.pr-product-faq details {
	border-bottom: 1px solid var(--pr-line-dark);
}

.pr-product-faq summary {
	display: flex;
	gap: 24px;
	min-height: 76px;
	padding: 21px 0;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	font-family: var(--pr-font-display);
	font-size: 18px;
	font-weight: 650;
	list-style: none;
}

.pr-product-faq summary::-webkit-details-marker {
	display: none;
}

.pr-product-faq summary span {
	color: var(--pr-purple-400);
	font-size: 25px;
	transition: transform var(--pr-transition);
}

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

.pr-product-faq details p {
	max-width: 760px;
	margin: 0;
	padding: 0 45px 25px 0;
	color: var(--pr-gray-300);
	line-height: 1.7;
}

@media (max-width: 979px) {
	.admin-bar .pr-product-nav {
		top: calc(var(--dl-header-height) + 46px);
	}

	.pr-product-hero__grid,
	.pr-product-split,
	.pr-product-split--reverse,
	.pr-product-overview__grid,
	.pr-product-faq__grid {
		grid-template-columns: 1fr;
	}

	.pr-product-hero__media {
		max-width: 650px;
	}

	.pr-product-hero__content {
		order: -1;
	}

	.pr-product-split--reverse figure {
		order: 2;
	}

	.pr-product-proof__grid,
	.pr-product-logistics__grid {
		grid-template-columns: 1fr;
	}

	.pr-product-faq__grid {
		gap: 48px;
	}
}

@media (max-width: 639px) {
	.pr-product-hero,
	.pr-product-overview,
	.pr-product-section {
		padding: 64px 0;
	}

	.pr-product-hero__grid,
	.pr-product-split {
		gap: 44px;
	}

	.pr-product-hero h1 {
		font-size: 41px;
	}

	.pr-product-hero__metrics,
	.pr-product-hero__facts {
		grid-template-columns: repeat(2, 1fr);
	}

	.pr-product-hero__metrics div:nth-child(3) {
		border-left: 0;
	}

	.pr-product-hero__metrics div:nth-child(-n+2) {
		border-bottom: 1px solid var(--pr-line-light);
	}

	.pr-product-heading h2,
	.pr-product-copy h2 {
		font-size: 36px;
	}

	.pr-specification-table__row,
	.pr-specification-table__applications {
		grid-template-columns: 1fr;
	}

	.pr-specification-table__row span,
	.pr-specification-table__applications ol {
		border-left: 0;
	}

	.pr-specification-table__row strong {
		padding-bottom: 8px;
	}

	.pr-specification-table__row span {
		padding-top: 8px;
	}

	.pr-product-proof img,
	.pr-product-logistics img {
		height: auto;
	}

	.pr-product-faq summary {
		font-size: 16px;
	}
}
