:root {
	--pcxp-bg: #06070b;
	--pcxp-panel: #0d1118;
	--pcxp-red: #e62037;
	--pcxp-red-2: #ff2c46;
	--pcxp-blue: #2ca9ff;
	--pcxp-cyan: #45d6ff;
	--pcxp-text: #ffffff;
	--pcxp-muted: #a0a8b5;
	--pcxp-dim: #6f7785;
	--pcxp-border: rgba(255, 255, 255, 0.1);
	--pcxp-max: 1180px;
	--pcxp-radius: 8px;
}

.pcxp-template {
	margin: 0;
	background: var(--pcxp-bg) !important;
	color: var(--pcxp-text) !important;
}

.pcxp-template .absolutec-pc-tiers,
.pcxp-template .absolutec-category-architecture {
	display: none !important;
}

.pcxp,
.pcxp * {
	box-sizing: border-box;
}

.pcxp {
	position: relative;
	min-height: 600vh;
	overflow: clip;
	background: var(--pcxp-bg);
	color: var(--pcxp-text);
	font-family: Inter, Manrope, Sora, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	letter-spacing: 0;
}

.pcxp a {
	color: inherit;
}

.pcxp-header {
	position: fixed;
	z-index: 50;
	top: 0;
	left: 0;
	right: 0;
	padding: 18px 0;
	background: linear-gradient(180deg, rgba(6, 7, 11, 0.82), rgba(6, 7, 11, 0));
	pointer-events: none;
}

.pcxp-header__inner {
	width: min(var(--pcxp-max), calc(100% - 40px));
	min-height: 48px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 22px;
	pointer-events: auto;
}

.pcxp-brand {
	display: inline-flex;
	align-items: center;
	justify-self: start;
	min-height: 40px;
	text-decoration: none;
	color: #fff;
	font-weight: 900;
}

.pcxp-brand .custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.pcxp-brand img {
	display: block;
	width: auto;
	max-width: 190px;
	max-height: 42px;
	object-fit: contain;
}

.pcxp-brand--text {
	font-size: 20px;
}

.pcxp-header__cta {
	justify-self: end;
	min-height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 18px;
	border-radius: var(--pcxp-radius);
	background: linear-gradient(135deg, var(--pcxp-red), #a90f22);
	color: #fff;
	font-size: 14px;
	font-weight: 900;
	text-decoration: none;
	box-shadow: 0 18px 38px rgba(230, 32, 55, 0.22);
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.pcxp-header__cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 22px 48px rgba(230, 32, 55, 0.34);
}

.pcxp-scene {
	position: fixed;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	background:
		radial-gradient(circle at 20% 20%, rgba(230, 32, 55, 0.18), transparent 34%),
		radial-gradient(circle at 82% 26%, rgba(44, 169, 255, 0.18), transparent 38%),
		var(--pcxp-bg);
}

.pcxp-video,
.pcxp-poster {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.04);
}

.pcxp-video {
	z-index: 2;
	opacity: 0;
	transition: opacity 420ms ease;
}

.pcxp.is-video-ready .pcxp-video {
	opacity: 1;
}

.pcxp-poster {
	z-index: 1;
	opacity: 0.92;
	filter: saturate(1.08) contrast(1.05);
}

.pcxp-scene__shade,
.pcxp-scene__vignette {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.pcxp-scene__shade {
	z-index: 3;
	background:
		linear-gradient(90deg, rgba(6, 7, 11, 0.82) 0%, rgba(6, 7, 11, 0.34) 42%, rgba(6, 7, 11, 0.72) 100%),
		linear-gradient(180deg, rgba(6, 7, 11, 0.78) 0%, rgba(6, 7, 11, 0.2) 44%, rgba(6, 7, 11, 0.86) 100%);
}

.pcxp-scene__vignette {
	z-index: 4;
	background:
		radial-gradient(circle at 50% 44%, transparent 0%, rgba(6, 7, 11, 0.24) 52%, rgba(6, 7, 11, 0.88) 100%),
		linear-gradient(180deg, transparent 0%, rgba(6, 7, 11, 0.84) 92%);
}

.pcxp-progress {
	position: fixed;
	z-index: 45;
	right: max(22px, calc((100vw - var(--pcxp-max)) / 2 - 74px));
	top: 50%;
	transform: translateY(-50%);
	display: grid;
	gap: 13px;
	width: 110px;
	color: #fff;
}

.pcxp-progress__rail {
	position: absolute;
	top: 3px;
	bottom: 3px;
	left: 8px;
	width: 1px;
	background: rgba(255, 255, 255, 0.12);
}

.pcxp-progress__fill {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: calc(var(--pcxp-progress, 0) * 100%);
	background: linear-gradient(180deg, var(--pcxp-cyan), var(--pcxp-red));
	box-shadow: 0 0 18px rgba(69, 214, 255, 0.46);
}

.pcxp-progress a {
	position: relative;
	display: grid;
	grid-template-columns: 18px minmax(0, 1fr);
	align-items: center;
	gap: 10px;
	min-height: 24px;
	color: rgba(255, 255, 255, 0.48);
	font-size: 11px;
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
	transition: color 160ms ease;
}

.pcxp-progress a::before {
	content: "";
	width: 17px;
	height: 17px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 50%;
	background: rgba(6, 7, 11, 0.74);
	box-shadow: inset 0 0 0 4px rgba(6, 7, 11, 0.9);
}

.pcxp-progress a span {
	position: absolute;
	left: 0;
	width: 17px;
	text-align: center;
	color: transparent;
}

.pcxp-progress a strong {
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0;
}

.pcxp-progress a.is-active {
	color: #fff;
}

.pcxp-progress a.is-active::before {
	border-color: var(--pcxp-cyan);
	background: var(--pcxp-cyan);
	box-shadow: 0 0 20px rgba(69, 214, 255, 0.56);
}

.pcxp-panel {
	position: relative;
	z-index: 5;
	min-height: 100vh;
	width: min(var(--pcxp-max), calc(100% - 40px));
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.44fr);
	align-items: center;
	gap: 56px;
	padding: 118px 0 86px;
}

.pcxp-panel--right {
	grid-template-columns: minmax(280px, 0.44fr) minmax(0, 0.86fr);
}

.pcxp-panel--right .pcxp-copy {
	grid-column: 2;
}

.pcxp-panel--right .pcxp-specs {
	grid-column: 1;
	grid-row: 1;
}

.pcxp-panel--hero {
	grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.34fr);
}

.pcxp-panel--cta {
	min-height: 108vh;
	grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.42fr);
}

.pcxp-copy {
	max-width: 710px;
	transform: translateY(28px);
	opacity: 0.22;
	transition: opacity 360ms ease, transform 360ms ease;
}

.pcxp-panel.is-active .pcxp-copy,
.pcxp-panel--hero .pcxp-copy {
	opacity: 1;
	transform: translateY(0);
}

.pcxp-kicker {
	margin: 0 0 16px;
	color: var(--pcxp-cyan);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.pcxp h1,
.pcxp h2 {
	max-width: 860px;
	margin: 0;
	color: #fff;
	font-size: clamp(48px, 7vw, 104px);
	font-weight: 950;
	line-height: 0.92;
	letter-spacing: 0;
	text-wrap: balance;
}

.pcxp h2 {
	font-size: clamp(40px, 5.6vw, 82px);
}

.pcxp-copy > p:not(.pcxp-kicker) {
	max-width: 640px;
	margin: 24px 0 0;
	color: rgba(255, 255, 255, 0.74);
	font-size: clamp(17px, 1.45vw, 21px);
	line-height: 1.65;
}

.pcxp-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.pcxp-btn {
	min-height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 22px;
	border-radius: var(--pcxp-radius);
	border: 1px solid transparent;
	font-size: 15px;
	font-weight: 900;
	text-decoration: none;
	transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.pcxp-btn--primary {
	background: linear-gradient(135deg, var(--pcxp-red), #a90f22);
	color: #fff;
	box-shadow: 0 18px 38px rgba(230, 32, 55, 0.28);
}

.pcxp-btn--primary:hover {
	background: linear-gradient(135deg, var(--pcxp-red-2), var(--pcxp-red));
	box-shadow: 0 22px 48px rgba(230, 32, 55, 0.38);
}

.pcxp-btn--secondary {
	border-color: rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.045);
	color: #fff;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(14px);
}

.pcxp-btn--secondary:hover {
	border-color: rgba(69, 214, 255, 0.55);
	box-shadow: 0 18px 38px rgba(44, 169, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pcxp-hud,
.pcxp-specs,
.pcxp-cta-card {
	justify-self: end;
	width: min(100%, 330px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--pcxp-radius);
	background: linear-gradient(180deg, rgba(13, 17, 24, 0.64), rgba(13, 17, 24, 0.26));
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(18px);
}

.pcxp-hud {
	display: grid;
	gap: 12px;
	padding: 22px;
}

.pcxp-hud span,
.pcxp-cta-card span {
	color: var(--pcxp-cyan);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.pcxp-hud strong {
	color: #fff;
	font-size: 32px;
	font-weight: 950;
	line-height: 1;
}

.pcxp-specs {
	display: grid;
	gap: 1px;
	padding: 8px;
}

.pcxp-specs span {
	min-height: 54px;
	display: flex;
	align-items: center;
	padding: 0 16px;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.045);
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	font-weight: 850;
}

.pcxp-specs span::before {
	content: "";
	width: 8px;
	height: 8px;
	margin-right: 12px;
	border-radius: 50%;
	background: var(--pcxp-cyan);
	box-shadow: 0 0 18px rgba(69, 214, 255, 0.58);
	flex: 0 0 auto;
}

.pcxp-cta-card {
	display: grid;
	gap: 10px;
	padding: 26px;
}

.pcxp-cta-card strong {
	color: #fff;
	font-size: 25px;
	font-weight: 950;
	line-height: 1.08;
}

.pcxp-cta-card p {
	margin: 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 15px;
}

@media (max-width: 1024px) {
	.pcxp-progress {
		display: none;
	}

	.pcxp-panel,
	.pcxp-panel--right,
	.pcxp-panel--hero,
	.pcxp-panel--cta {
		grid-template-columns: 1fr;
		gap: 26px;
		width: min(100% - 32px, var(--pcxp-max));
	}

	.pcxp-panel--right .pcxp-copy,
	.pcxp-panel--right .pcxp-specs {
		grid-column: auto;
		grid-row: auto;
	}

	.pcxp-hud,
	.pcxp-specs,
	.pcxp-cta-card {
		justify-self: start;
	}
}

@media (max-width: 767px) {
	.pcxp {
		min-height: auto;
		overflow: hidden;
		background:
			linear-gradient(180deg, rgba(6, 7, 11, 0.2), var(--pcxp-bg) 36rem),
			var(--pcxp-bg);
	}

	.pcxp-header {
		position: absolute;
		padding-top: 14px;
	}

	.pcxp-header__inner {
		width: min(100% - 28px, var(--pcxp-max));
		min-height: 44px;
	}

	.pcxp-brand img {
		max-width: 154px;
		max-height: 36px;
	}

	.pcxp-header__cta {
		min-height: 38px;
		padding: 0 14px;
		font-size: 13px;
	}

	.pcxp-scene {
		position: absolute;
		height: 100vh;
		min-height: 620px;
	}

	.pcxp-video,
	.pcxp-poster {
		position: absolute;
		height: 100%;
		transform: scale(1.06);
	}

	.pcxp-scene__shade {
		background:
			linear-gradient(180deg, rgba(6, 7, 11, 0.68) 0%, rgba(6, 7, 11, 0.24) 30%, var(--pcxp-bg) 100%),
			linear-gradient(90deg, rgba(6, 7, 11, 0.52), rgba(6, 7, 11, 0.18), rgba(6, 7, 11, 0.52));
	}

	.pcxp-panel,
	.pcxp-panel--right,
	.pcxp-panel--hero,
	.pcxp-panel--cta {
		min-height: auto;
		padding: 104px 0 76px;
	}

	.pcxp-panel:first-of-type {
		min-height: 100vh;
		padding-top: 138px;
	}

	.pcxp-panel:not(:first-of-type) {
		border-top: 1px solid rgba(255, 255, 255, 0.08);
	}

	.pcxp-copy {
		opacity: 1;
		transform: none;
	}

	.pcxp h1,
	.pcxp h2 {
		font-size: clamp(42px, 13vw, 64px);
		line-height: 0.95;
	}

	.pcxp-copy > p:not(.pcxp-kicker) {
		font-size: 16px;
		line-height: 1.62;
	}

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

	.pcxp-btn {
		width: 100%;
	}

	.pcxp-hud {
		display: none;
	}

	.pcxp-specs,
	.pcxp-cta-card {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.pcxp,
	.pcxp *,
	.pcxp *::before,
	.pcxp *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}

	.pcxp {
		min-height: auto;
	}

	.pcxp-scene {
		position: fixed;
	}

	.pcxp-panel {
		min-height: auto;
		padding-top: 150px;
		padding-bottom: 120px;
	}

	.pcxp-copy {
		opacity: 1;
		transform: none;
	}
}
