.c-pxe-hero {
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: center;
	min-height: clamp(56rem, 72vh, 78rem);
	overflow: hidden;
	padding: clamp(8rem, 10vw, 13rem) 0 clamp(7rem, 9vw, 11rem);
	color: #fff;
	background:
		linear-gradient(90deg, rgba(4, 18, 28, .90) 0%, rgba(4, 18, 28, .76) 42%, rgba(4, 18, 28, .25) 72%, rgba(4, 18, 28, .34) 100%),
		radial-gradient(circle at 14% 92%, rgba(164, 226, 95, .34), transparent 42%),
		radial-gradient(circle at 78% 30%, rgba(38, 198, 218, .38), transparent 38%),
		linear-gradient(125deg, var(--accent, #a4e25f) 0%, var(--primary, #19b5c9) 48%, #0754b4 100%);
}

.c-pxe-hero::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px) 0 0 / 48px 48px,
		linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px) 0 0 / 48px 48px,
		linear-gradient(180deg, transparent 65%, rgba(0, 0, 0, .18));
	content: "";
	pointer-events: none;
}

.c-pxe-hero__canvas {
	position: absolute;
	inset: 0;
	z-index: -1;
	display: block;
	width: 100%;
	height: 100%;
	opacity: .88;
	pointer-events: none;
}

.c-pxe-hero__inner {
	position: relative;
	z-index: 1;
	width: min(100%, 128rem);
	margin-inline: auto;
	padding-inline: clamp(2.4rem, 5vw, 6.4rem);
}

.c-pxe-hero__copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	max-width: 88rem;
}

.c-pxe-hero__eyebrow {
	margin: 0 0 1.8rem;
	color: #55d4e4;
	font-size: clamp(1.3rem, 1.2vw, 1.6rem);
	font-weight: 700;
	letter-spacing: .13em;
	line-height: 1.3;
	text-transform: uppercase;
}

.c-pxe-hero__heading {
	max-width: 86rem;
	margin: 0;
	color: #fff;
	font-size: clamp(4.6rem, 6vw, 7.8rem);
	font-weight: 800;
	letter-spacing: -.04em;
	line-height: 1.03;
	text-wrap: balance;
}

.c-pxe-hero__text {
	max-width: 76rem;
	margin-top: 2.6rem;
	color: rgba(255, 255, 255, .82);
	font-size: clamp(1.8rem, 1.7vw, 2.2rem);
	line-height: 1.6;
}

.c-pxe-hero__text p {
	margin: 0;
}

.c-pxe-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1.4rem;
	margin-top: 3.6rem;
}

.c-pxe-hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 5.2rem;
	padding: 1.3rem 2.5rem;
	border: 1px solid transparent;
	border-radius: .4rem;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}

.c-pxe-hero__button--primary {
	border-color: var(--accent, #a4e25f);
	background: var(--accent, #a4e25f);
	color: #061721;
}

.c-pxe-hero__button--primary:hover {
	border-color: #bcef83;
	background: #bcef83;
	color: #061721;
	transform: translateY(-2px);
}

.c-pxe-hero__button--secondary {
	border-color: rgba(255, 255, 255, .55);
	background: rgba(255, 255, 255, .04);
	color: #fff;
	backdrop-filter: blur(6px);
}

.c-pxe-hero__button--secondary:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, .12);
	color: #fff;
	transform: translateY(-2px);
}

.c-pxe-hero__button:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 4px;
}

@media (max-width: 767px) {
	.c-pxe-hero {
		min-height: auto;
		padding: 8rem 0 7rem;
	}

	.c-pxe-hero__inner {
		padding-inline: 2.2rem;
	}

	.c-pxe-hero__heading {
		font-size: clamp(4rem, 11vw, 5.4rem);
	}

	.c-pxe-hero__text {
		font-size: 1.8rem;
	}

	.c-pxe-hero__actions {
		width: 100%;
	}

	.c-pxe-hero__button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.c-pxe-hero__canvas {
		opacity: .55;
	}

	.c-pxe-hero__button {
		transition: none;
	}
}
