/* --- 5. HERO --- */
.hero {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	text-align: center;
	padding-top: var(--navbar-height); /* clear fixed navbar */
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(
			to bottom,
			rgba(6, 6, 10, 0.8) 0%,
			rgba(6, 6, 10, 0.72) 40%,
			rgba(6, 6, 10, 0.72) 70%,
			rgba(6, 6, 10, 0.9) 100%
		),
		url('../../images/hero-bg.jpg') no-repeat center / cover;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 70% 50%, rgba(0, 200, 230, 0.06) 0%, transparent 65%);
	pointer-events: none;
	z-index: 1;
}

.hero-deco-text {
	position: absolute;
	right: -2vw;
	top: 50%;
	transform: translateY(-50%);
	font-family: var(--font-display);
	font-size: clamp(14rem, 26vw, 32rem);
	color: rgba(255, 255, 255, 0.025);
	line-height: 1;
	pointer-events: none;
	user-select: none;
	letter-spacing: -10px;
	z-index: 1;
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: var(--font-condensed);
	font-size: 0.7rem;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--text-gray);
	margin-bottom: 28px;
	position: relative;
	z-index: 2;
}

.hero-pulse-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--cyan);
	flex-shrink: 0;
	animation: hero-pulse 2.4s ease-in-out infinite;
}

@keyframes hero-pulse {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(0, 200, 230, 0.6);
	}
	50% {
		box-shadow: 0 0 0 9px rgba(0, 200, 230, 0);
	}
}

.hero-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 40px 6% 32px;
	position: relative;
	z-index: 2;
	max-width: 100%;
}

.hero h1 {
	font-family: var(--font-display);
	font-size: clamp(2.8rem, 7vw, 8rem);
	letter-spacing: 3px;
	line-height: 0.9;
	text-transform: uppercase;
	color: var(--text-white);
	margin-bottom: 28px;
	max-width: 760px;
}

.hero h1 span {
	color: var(--cyan);
}

.hero p {
	font-size: 1.05rem;
	color: var(--text-gray);
	max-width: 480px;
	margin: 0 auto 44px;
	line-height: 1.75;
}

.hero-btns {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	justify-content: center;
}

/* Hero bottom stats bar — normal flow so it's always visible */
.hero-stats-bar {
	display: flex;
	align-items: stretch;
	flex-shrink: 0;
	border-top: 1px solid var(--border);
	background: rgba(6, 6, 10, 0.82);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	position: relative;
	z-index: 2;
}

.hero-stat {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 26px 16px;
	border-right: 1px solid var(--border);
	transition: background 0.3s;
	cursor: default;
}

.hero-stat:last-child {
	border-right: none;
}

.hero-stat:hover {
	background: var(--cyan-dim);
}

.hero-stat strong {
	font-family: var(--font-display);
	font-size: 2rem;
	color: var(--cyan);
	letter-spacing: 2px;
	line-height: 1;
	display: block;
}

.hero-stat > span {
	font-family: var(--font-condensed);
	font-size: 0.65rem;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--text-gray);
	margin-top: 6px;
	display: block;
}

/* Scroll indicator — hidden; stats bar now in flow */
.hero-scroll-indicator {
	display: none;
}

.hero-scroll-line {
	display: none;
}

@media (max-width: 900px) {
	.hero h1 {
		font-size: clamp(2.8rem, 8vw, 5.5rem);
	}
}

@media (max-width: 768px) {
	.hero-deco-text {
		display: none;
	}

	.hero-content {
		padding: 32px 5% 24px;
	}
}

@media (max-width: 600px) {
	.hero-stat {
		padding: 18px 8px;
	}

	.hero-stat strong {
		font-size: 1.6rem;
	}

	.hero-stat > span {
		font-size: 0.55rem;
		letter-spacing: 1.5px;
	}
}

@media (max-width: 480px) {
	.hero-eyebrow {
		font-size: 0.7rem;
		letter-spacing: 1.5px;
		font-weight: 500;
	}

	.hero p {
		font-size: 0.92rem;
	}
}
