/**
 * StepDecor Hero Banner — consumed by Hero_Banner::render().
 */

.sd-hero {
	position: relative;
	height: 100vh;
	min-height: 680px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.sd-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(140deg, rgba(10, 10, 10, .78) 0%, rgba(10, 138, 145, .28) 55%, rgba(10, 10, 10, .7) 100%);
}

.sd-hero__content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 0 1.5rem;
	max-width: 960px;
}

.sd-hero__eyebrow {
	font-size: .68rem;
	letter-spacing: .45em;
	text-transform: uppercase;
	color: var(--sd-color-accent);
	margin-bottom: 1.4rem;
	font-weight: 700;
}

.sd-hero__title {
	font-family: var(--sd-font-heading);
	font-size: clamp(3rem, 7.5vw, 6rem);
	color: #fff;
	font-weight: 700;
	line-height: 1.08;
	margin-bottom: 1.5rem;
}

.sd-hero__title em {
	font-style: italic;
	color: var(--sd-color-accent);
}

.sd-hero__subtitle {
	font-size: clamp(1rem, 2vw, 1.18rem);
	color: rgba(255, 255, 255, .75);
	line-height: 1.75;
	max-width: 560px;
	margin: 0 auto 2.5rem;
	font-weight: 300;
}

.sd-hero__buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.sd-btn--glass {
	border: 1px solid rgba(255, 255, 255, .45);
	color: #fff;
	background: rgba(255, 255, 255, .07);
	backdrop-filter: blur(10px);
}

.sd-btn--glass:hover {
	border-color: var(--sd-color-accent);
	color: var(--sd-color-accent);
	transform: translateY(-2px);
}

.sd-hero__stats {
	position: absolute;
	bottom: 2.5rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	background: rgba(255, 255, 255, .09);
	backdrop-filter: blur(24px);
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: var(--sd-radius-md);
	overflow: hidden;
	white-space: nowrap;
	z-index: 2;
}

.sd-hero__stat {
	padding: 1.2rem 2.2rem;
	text-align: center;
	border-right: 1px solid rgba(255, 255, 255, .1);
}

.sd-hero__stat:last-child {
	border-right: none;
}

.sd-hero__stat-num {
	font-family: var(--sd-font-heading);
	font-size: 2.1rem;
	color: #fff;
	font-weight: 700;
	line-height: 1;
}

.sd-hero__stat-num span {
	color: var(--sd-color-accent);
}

.sd-hero__stat-label {
	font-size: .6rem;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .5);
	margin-top: .3rem;
}

@media (max-width: 680px) {
	.sd-hero__stats {
		display: none;
	}
}
