/* Hero Section - V8 — spotlight dial + centered ring stage */

.hero-v8 {
	position: relative;
	padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(2.75rem, 5vw, 3.5rem);
	overflow: hidden;
	isolation: isolate;
	background:
		radial-gradient(circle at 50% 38%, color-mix(in srgb, var(--primary-brand-color) 14%, transparent) 0%, transparent 48%),
		radial-gradient(circle at 18% 82%, color-mix(in srgb, var(--secondary-brand-color) 10%, transparent) 0%, transparent 38%),
		var(--secondary-background-color);
}

.hero-v8__aura {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(
			circle at 50% 42%,
			color-mix(in srgb, var(--primary-brand-color) 18%, transparent) 0%,
			transparent 36%
		);
	opacity: 0.7;
}

.hero-v8__grid-bg {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(color-mix(in srgb, var(--primary-text-color) 5%, transparent) 1px, transparent 1px),
		linear-gradient(90deg, color-mix(in srgb, var(--primary-text-color) 5%, transparent) 1px, transparent 1px);
	background-size: 40px 40px;
	mask-image: radial-gradient(circle at 50% 40%, rgba(0, 0, 0, 0.5), transparent 70%);
	pointer-events: none;
}

.hero-v8__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 920px;
}

.hero-v8__label {
	margin: 0 0 0.65rem;
	font-size: 0.6875rem;
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--sc-hero-v8-label-text, var(--primary-brand-color));
}

.hero-v8__title {
	margin: 0;
	max-width: 820px;
	font-size: clamp(1.85rem, 4.8vw, 3.35rem);
	font-weight: 800;
	line-height: 1.04;
	letter-spacing: -0.035em;
	color: var(--sc-hero-v8-title-text, var(--primary-title-color));
	font-family: var(--font-family, "Roboto", sans-serif);
}

.hero-v8__stage {
	position: relative;
	width: min(100%, 420px);
	aspect-ratio: 1;
	margin: clamp(1.35rem, 3vw, 2rem) auto clamp(1rem, 2.4vw, 1.5rem);
}

.hero-v8__dial {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	color: var(--sc-hero-v8-dial-text, var(--primary-brand-color));
	animation: hero-v8-dial-spin 48s linear infinite;
}

.hero-v8__ring {
	position: absolute;
	border-radius: 50%;
	border: 1px solid var(--sc-hero-v8-ring-border, color-mix(in srgb, var(--primary-brand-color) 28%, transparent));
	pointer-events: none;
}

.hero-v8__ring--outer {
	inset: 2%;
	animation: hero-v8-pulse 4s ease-in-out infinite;
}

.hero-v8__ring--inner {
	inset: 10%;
	border-style: dashed;
	opacity: 0.55;
	animation: hero-v8-dial-spin 36s linear infinite reverse;
}

.hero-v8__spotlight {
	position: absolute;
	inset: 18%;
	border-radius: 50%;
	overflow: hidden;
	border: 4px solid var(--sc-hero-v8-spotlight-border, color-mix(in srgb, var(--primary-background-color) 92%, transparent));
	box-shadow:
		0 0 0 1px color-mix(in srgb, var(--primary-brand-color) 22%, transparent),
		0 24px 56px rgba(0, 0, 0, 0.18),
		0 0 48px color-mix(in srgb, var(--primary-brand-color) 24%, transparent);
	z-index: 2;
}

.hero-v8__spotlight picture {
	display: block;
	height: 100%;
	width: 100%;
}

.hero-v8__spotlight img,
.hero-v8__spotlight .hero-responsive-media__image {
	width: 100%;
	height: 100%;
	object-fit: var(--hero-image-fit, cover);
	display: block;
	transition: transform 0.6s ease;
}

.hero-v8__stage:hover .hero-v8__spotlight img,
.hero-v8__stage:hover .hero-v8__spotlight .hero-responsive-media__image {
	transform: scale(1.06);
}

.hero-v8__satellite {
	position: absolute;
	width: clamp(52px, 14vw, 72px);
	height: clamp(52px, 14vw, 72px);
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid var(--sc-hero-v8-satellite-border, color-mix(in srgb, var(--primary-background-color) 90%, transparent));
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
	z-index: 3;
}

.hero-v8__satellite-media {
	position: absolute;
	inset: 0;
}

.hero-v8__satellite[data-orbit-index="0"] {
	top: 8%;
	right: 4%;
}

.hero-v8__satellite[data-orbit-index="1"] {
	bottom: 10%;
	left: 2%;
}

.hero-v8__stage-badge {
	position: absolute;
	left: 50%;
	bottom: 6%;
	z-index: 4;
	transform: translateX(-50%);
	padding: 0.4rem 0.85rem;
	border-radius: 999px;
	background: var(--sc-hero-v8-stage-badge-bg, var(--secondary-button-background-color));
	color: var(--sc-hero-v8-stage-badge-text, var(--secondary-button-text-color));
	font-size: 0.625rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.hero-v8__subtitle {
	margin: 0;
	max-width: 620px;
	font-size: clamp(0.95rem, 1.5vw, 1.15rem);
	line-height: 1.65;
	font-weight: 400;
	color: var(--sc-hero-v8-subtitle-text, var(--primary-text-color));
	opacity: 0.84;
	font-family: var(--font-family, "Roboto", sans-serif);
}

.hero-v8__actions {
	margin-top: clamp(1.1rem, 2.4vw, 1.6rem);
}

.hero-v8__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.75rem;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--primary-button-background-color), var(--secondary-brand-color));
	color: var(--sc-hero-v8-btn-text, var(--primary-button-text-color));
	font-size: 0.9375rem;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 12px 28px color-mix(in srgb, var(--primary-brand-color) 32%, transparent);
	transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.hero-v8__btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 34px color-mix(in srgb, var(--primary-brand-color) 42%, transparent);
	filter: brightness(1.04);
	color: var(--sc-hero-v8-btn-hover-text, var(--primary-button-hover-text-color));
}

.hero-v8__legend {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.55rem;
	margin-top: clamp(1.25rem, 2.6vw, 1.75rem);
}

.hero-v8__legend-item {
	padding: 0.4rem 0.8rem;
	border-radius: 999px;
	border: 1px solid var(--sc-hero-v8-legend-item-border, color-mix(in srgb, var(--primary-text-color) 10%, transparent));
	background: var(--sc-hero-v8-legend-item-bg, color-mix(in srgb, var(--primary-background-color) 76%, transparent));
	color: var(--sc-hero-v8-legend-item-text, var(--primary-text-color));
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

@keyframes hero-v8-dial-spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

@keyframes hero-v8-pulse {
	0%,
	100% {
		opacity: 0.55;
		transform: scale(1);
	}
	50% {
		opacity: 1;
		transform: scale(1.02);
	}
}

@media (max-width: 992px) {
	.hero-v8__title {
		font-size: clamp(1.45rem, 4.5vw, 1.875rem);
	}

	.hero-v8__subtitle {
		font-size: 0.9375rem;
	}

	.hero-v8__stage {
		width: min(100%, 340px);
	}
}

@media (max-width: 576px) {
	.hero-v8 {
		padding: 1.5rem 0 2rem;
	}

	.hero-v8 .container {
		padding: 0 14px;
	}

	.hero-v8__title {
		font-size: 1.375rem;
	}

	.hero-v8__subtitle {
		font-size: 0.9rem;
		line-height: 1.5;
	}

	.hero-v8__stage {
		width: min(100%, 280px);
	}

	.hero-v8__btn {
		width: 100%;
	}

	.hero-v8__legend {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero-v8__dial,
	.hero-v8__ring--inner,
	.hero-v8__ring--outer {
		animation: none;
	}

	.hero-v8__spotlight img {
		transition: none;
	}

	.hero-v8__stage:hover .hero-v8__spotlight img {
		transform: none;
	}
}
