.hero-section {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 90%);
}

.hero-description {
	max-width: 40rem;
	font-size: 1.1rem;
	color: var(--color-text-muted);
}

.page-intro {
	max-width: 48rem;
}

.product-layout {
	align-items: start;
}

.product-summary__details {
	display: grid;
	gap: 0.4rem;
	color: var(--color-text-muted);
}

.content-grid--product {
	align-items: start;
}

.empty-state {
	display: grid;
	gap: 1rem;
	max-width: 44rem;
}

/* ---------------------------------------------------------------------------
   Premium hero: near-fullscreen on desktop, ambient warm light, gold headline.
   --------------------------------------------------------------------------- */

.hero-section--premium {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	min-height: min(86vh, 820px);
	display: grid;
	align-items: center;
	background: var(--pt-gradient-hero, linear-gradient(180deg, #0b0d10, #070809));
}

.hero-section__ambient {
	position: absolute;
	inset: 0;
	z-index: -1;
	background-image: var(--pt-carbon, none);
	opacity: 0.9;
	pointer-events: none;
}

.hero-section__ambient::after {
	content: "";
	position: absolute;
	top: -25%;
	right: -12%;
	width: 62vw;
	height: 62vw;
	max-width: 860px;
	max-height: 860px;
	background: radial-gradient(circle, rgba(214, 179, 106, 0.16), rgba(214, 179, 106, 0) 64%);
}

.hero-section--premium .hero-title {
	letter-spacing: var(--pt-tracking-tight, -0.02em);
	line-height: 1.02;
}

.hero-section--premium .hero-description {
	font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.hero-section--premium .hero-metrics strong {
	color: var(--pt-gold-text, #e6c887);
}

.hero-section--premium .hero-media {
	border-radius: var(--pt-radius-xl, 30px);
	overflow: hidden;
	box-shadow: var(--pt-shadow-premium, 0 20px 48px rgba(0, 0, 0, 0.48));
}

/* ---------------------------------------------------------------------------
   AI Scanner teaser
   --------------------------------------------------------------------------- */

.scanner-teaser__panel {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
	gap: 2rem;
	padding: clamp(1.5rem, 4vw, 3rem);
	border-radius: var(--pt-radius-xl, 30px);
}

.scanner-teaser__panel > * {
	position: relative;
	z-index: 1;
}

.scanner-teaser__title {
	margin: 0;
	font-size: clamp(1.9rem, 4vw, 3rem);
	letter-spacing: var(--pt-tracking-tight, -0.02em);
	color: var(--pt-gold-text, #e6c887);
	background: var(--pt-gradient-gold, none);
	-webkit-background-clip: text;
	background-clip: text;
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
	.scanner-teaser__title {
		-webkit-text-fill-color: transparent;
	}
}

@media (forced-colors: active) {
	.scanner-teaser__title {
		-webkit-text-fill-color: currentColor;
		background: none;
	}
}

.scanner-teaser__note {
	max-width: 46rem;
	color: var(--pt-text-muted, #9d9d98);
	font-size: 0.95rem;
}

.scanner-teaser__points {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.75rem;
	align-content: center;
}

.scanner-teaser__points li {
	position: relative;
	padding-left: 1.6rem;
	color: var(--pt-text-muted, #9d9d98);
}

.scanner-teaser__points li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--pt-gradient-gold, #d6b36a);
}

@media (max-width: 860px) {
	.hero-section--premium {
		min-height: 0;
		padding: 2.5rem 0 3rem;
	}

	.scanner-teaser__panel {
		grid-template-columns: minmax(0, 1fr);
	}
}
