.wgd-hero {
	--wgd-bg: #07090d;
	--wgd-accent: #2865ff;
	--wgd-text: #fff;
	--wgd-muted: #9198a8;
	position: relative;
	min-height: 100svh;
	isolation: isolate;
	overflow: hidden;
	color: var(--wgd-text);
	background:
		radial-gradient(circle at 53% 45%, color-mix(in srgb, var(--wgd-accent) 24%, transparent), transparent 31%),
		radial-gradient(circle at 79% 22%, color-mix(in srgb, var(--wgd-accent) 10%, transparent), transparent 21%),
		var(--wgd-bg);
	font-family: inherit;
}

.wgd-hero::before {
	content: "";
	position: absolute;
	z-index: 1;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(270deg, color-mix(in srgb, var(--wgd-bg) 96%, transparent), color-mix(in srgb, var(--wgd-bg) 45%, transparent) 35%, transparent 57%),
		linear-gradient(0deg, color-mix(in srgb, var(--wgd-bg) 78%, transparent), transparent 35%);
}

.wgd-hero::after {
	content: "";
	position: absolute;
	z-index: 3;
	inset: auto 0 0;
	height: 19%;
	pointer-events: none;
	background: linear-gradient(transparent, var(--wgd-bg));
}

.wgd-hero__grid {
	position: absolute;
	inset: 0;
	opacity: .13;
	background-image:
		linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
	background-size: 7.14vw 7.14vw;
	mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.wgd-hero__scene {
	position: absolute;
	z-index: 0;
	inset: 0 0 0 30%;
}

.wgd-hero__canvas {
	width: 100%;
	height: 100%;
	display: block;
	cursor: crosshair;
	touch-action: pan-y;
	transition: filter .3s ease;
}

.wgd-hero.is-charging .wgd-hero__canvas {
	filter: brightness(1.35) saturate(1.2);
}

.wgd-hero__copy {
	position: relative;
	z-index: 4;
	width: min(91.6vw, 1420px);
	min-height: inherit;
	margin: 0 auto;
	padding: 23vh 0 13vh;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.wgd-hero__kicker {
	width: min(45vw, 620px);
	padding-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 11px;
	border-bottom: 1px solid rgba(255,255,255,.17);
	direction: ltr;
	color: color-mix(in srgb, var(--wgd-muted) 86%, transparent);
	font-size: 9px;
	font-weight: 500;
	letter-spacing: 2.2px;
}

.wgd-hero__kicker i {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--wgd-accent);
	box-shadow: 0 0 18px var(--wgd-accent);
}

.wgd-hero__kicker b {
	margin-left: auto;
	font-size: inherit;
	font-weight: 500;
}

.wgd-hero__title {
	margin: 4.5vh 0 0;
	color: var(--wgd-text);
	font-size: clamp(64px, 8.15vw, 132px);
	font-weight: 700;
	line-height: .84;
	letter-spacing: -.078em;
}

.wgd-hero__title > span {
	display: block;
}

.wgd-hero__title em {
	color: transparent;
	font-style: normal;
	-webkit-text-stroke: 1px color-mix(in srgb, var(--wgd-text) 68%, transparent);
}

.wgd-hero__rotator {
	min-height: 43px;
	margin-top: 28px;
	display: flex;
	align-items: center;
	gap: 13px;
}

.wgd-hero__rotator small {
	color: color-mix(in srgb, var(--wgd-muted) 84%, transparent);
	font-size: 13px;
}

.wgd-hero__rotator strong {
	color: color-mix(in srgb, var(--wgd-accent) 58%, white);
	font-size: clamp(17px, 1.55vw, 25px);
	font-weight: 600;
}

.wgd-hero__rotator strong.is-changing {
	animation: wgd-word-in .65s cubic-bezier(.19,1,.22,1);
}

.wgd-hero__description {
	width: min(40vw, 510px);
	margin: 18px 0 0;
	color: color-mix(in srgb, var(--wgd-muted) 92%, white);
	font-size: 15px;
	line-height: 1.85;
}

.wgd-hero__actions {
	margin-top: 29px;
	display: flex;
	align-items: center;
	gap: 25px;
}

.wgd-hero__primary {
	min-width: 214px;
	min-height: 58px;
	padding: 0 20px 0 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	border-radius: 999px;
	color: var(--wgd-bg);
	background: var(--wgd-text);
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
	transition: color .35s ease, background .35s ease, transform .35s cubic-bezier(.19,1,.22,1);
}

.wgd-hero__primary i {
	width: 39px;
	height: 39px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	color: #fff;
	background: var(--wgd-accent);
	font-size: 18px;
	font-style: normal;
	transition: transform .35s cubic-bezier(.19,1,.22,1);
}

.wgd-hero__primary:hover {
	color: #fff;
	background: var(--wgd-accent);
	transform: scale(1.035);
}

.wgd-hero__primary:hover i {
	color: var(--wgd-accent);
	background: #fff;
	transform: rotate(45deg);
}

.wgd-hero__secondary {
	padding: 17px 0;
	display: flex;
	gap: 17px;
	border-bottom: 1px solid rgba(255,255,255,.25);
	color: color-mix(in srgb, var(--wgd-text) 66%, transparent);
	font-size: 12px;
	text-decoration: none;
}

.wgd-hero__secondary i {
	color: var(--wgd-accent);
	font-style: normal;
}

.wgd-hero__hold {
	position: absolute;
	z-index: 4;
	top: 50%;
	left: 5vw;
	display: flex;
	align-items: center;
	gap: 10px;
	color: color-mix(in srgb, var(--wgd-text) 39%, transparent);
	font-size: 9px;
	transition: color .3s ease;
}

.wgd-hero.is-charging .wgd-hero__hold {
	color: var(--wgd-text);
}

.wgd-hero__hold i {
	width: 27px;
	height: 27px;
	display: block;
	border: 1px solid rgba(255,255,255,.26);
	border-radius: 50%;
}

.wgd-hero__hold i::after {
	content: "";
	width: 4px;
	height: 4px;
	margin: 10px;
	display: block;
	border-radius: 50%;
	background: var(--wgd-accent);
}

.wgd-hero__status {
	position: absolute;
	z-index: 4;
	bottom: 4.3vh;
	left: 4.2vw;
	display: flex;
	direction: ltr;
	gap: 22px;
	align-items: center;
	color: color-mix(in srgb, var(--wgd-text) 37%, transparent);
	font-size: 8px;
	letter-spacing: 1.3px;
}

.wgd-hero__status span {
	display: flex;
	align-items: center;
	gap: 8px;
	direction: rtl;
}

.wgd-hero__status i {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #50d79f;
	box-shadow: 0 0 12px rgba(80,215,159,.7);
}

.wgd-hero__scroll {
	position: absolute;
	z-index: 4;
	right: 50%;
	bottom: 3.7vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	direction: ltr;
	color: rgba(255,255,255,.4);
	font-size: 7px;
	letter-spacing: 1.5px;
	transform: translateX(50%);
}

.wgd-hero__scroll i {
	width: 1px;
	height: 32px;
	overflow: hidden;
	background: rgba(255,255,255,.18);
}

.wgd-hero__scroll i::after {
	content: "";
	width: 1px;
	height: 13px;
	display: block;
	background: #fff;
	animation: wgd-scroll-drop 2s ease-in-out infinite;
}

@keyframes wgd-word-in {
	from { opacity: 0; filter: blur(12px); transform: translateY(15px); }
	to { opacity: 1; filter: blur(0); transform: none; }
}

@keyframes wgd-scroll-drop {
	0% { transform: translateY(-14px); }
	60%, 100% { transform: translateY(34px); }
}

@media (max-width: 900px) {
	.wgd-hero__scene {
		inset: 8% -32% 29% 0;
		opacity: .94;
	}

	.wgd-hero::before {
		background: linear-gradient(0deg, color-mix(in srgb, var(--wgd-bg) 99%, transparent) 6%, color-mix(in srgb, var(--wgd-bg) 52%, transparent) 54%, transparent);
	}

	.wgd-hero__copy {
		width: calc(100% - 40px);
		padding: 43svh 0 10vh;
		justify-content: flex-end;
	}

	.wgd-hero__kicker {
		width: 100%;
		font-size: 7px;
	}

	.wgd-hero__title {
		margin-top: 28px;
		font-size: clamp(52px, 15vw, 78px);
		line-height: .88;
		letter-spacing: -.07em;
	}

	.wgd-hero__rotator {
		margin-top: 18px;
	}

	.wgd-hero__description {
		width: 100%;
		max-width: 520px;
		margin-top: 10px;
		font-size: 13px;
		line-height: 1.72;
	}

	.wgd-hero__actions {
		width: 100%;
		margin-top: 20px;
	}

	.wgd-hero__primary {
		min-width: 0;
		flex: 1;
	}

	.wgd-hero__secondary,
	.wgd-hero__hold,
	.wgd-hero__status {
		display: none;
	}

	.wgd-hero__scroll {
		right: 20px;
		bottom: 20px;
		align-items: flex-start;
		transform: none;
	}

	.wgd-hero__scroll span {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wgd-hero *,
	.wgd-hero *::before,
	.wgd-hero *::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}
