/* Hero Component Styles */

.hero-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 140px 30px 80px;
	overflow: hidden;
	background: radial-gradient(ellipse at center,
		rgba(0, 168, 255, 0.12) 0%,
		transparent 70%);
}

.hero-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.hero-bg::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: var(--hero-bg-image, none);
	background-size: cover;
	background-position: center;
	opacity: 0.45;
	filter: blur(3px) brightness(0.7);
}

@keyframes heroShimmer {
	0% {
		opacity: 0.35;
		transform: scale(1) rotate(0deg);
	}
	50% {
		opacity: 0.5;
		transform: scale(1.1) rotate(2deg);
	}
	100% {
		opacity: 0.38;
		transform: scale(1.05) rotate(-2deg);
	}
}

.hero-grid {
	position: absolute;
	inset: -10% -10%;
	background-image:
		linear-gradient(rgba(153, 69, 255, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(153, 69, 255, 0.08) 1px, transparent 1px);
	background-size: 140px 140px;
	filter: blur(0.2px);
	opacity: 0.35;
	animation: heroGridMove 18s linear infinite;
	z-index: 1;
}

@keyframes heroGridMove {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(140px, 140px);
	}
}

.hero-container {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	width: 100%;
	text-align: center;
}

.hero-content {
	max-width: 980px;
	margin: 0 auto;
}

.hero-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 30px;
}

.hero-logo img {
	max-height: 120px;
	max-width: 200px;
	height: auto;
	width: auto;
	object-fit: contain;
	filter: drop-shadow(0 8px 20px rgba(0, 168, 255, 0.3));
}

.hero-headline {
	font-size: 64px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 4px;
	line-height: 1.05;
	margin-bottom: 22px;
	background: linear-gradient(135deg,
		var(--text-primary) 0%,
		var(--accent-purple) 25%,
		var(--accent-blue) 55%,
		var(--accent-cyan) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	background-size: 200% 200%;
	animation: heroGradientFlow 6s ease infinite;
}

@keyframes heroGradientFlow {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.hero-subheading {
	font-size: 20px;
	color: var(--text-secondary);
	line-height: 1.6;
	font-weight: 300;
	max-width: 760px;
	margin: 0 auto 36px;
}

.hero-actions {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.hero-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	padding: 14px 34px;
	border-radius: 30px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 700;
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

.hero-btn--primary {
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
	color: var(--text-primary);
	box-shadow: 0 10px 30px rgba(153, 69, 255, 0.35);
}

.hero-btn--primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(153, 69, 255, 0.55);
}

.hero-btn--secondary {
	background: linear-gradient(135deg, rgba(18, 18, 18, 0.75), rgba(26, 26, 26, 0.35));
	color: var(--text-primary);
	border-color: var(--metal-dark);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
}

.hero-btn--secondary:hover {
	transform: translateY(-3px);
	border-color: var(--accent-purple);
	box-shadow: 0 15px 40px rgba(153, 69, 255, 0.25);
}

.hero-hint {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--text-dim);
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 12px;
}

.hero-hint-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
	box-shadow: 0 0 12px rgba(153, 69, 255, 0.6);
	animation: heroDotPulse 2.4s ease-in-out infinite;
}

@keyframes heroDotPulse {
	0%, 100% {
		transform: scale(1);
		opacity: 0.6;
	}
	50% {
		transform: scale(1.35);
		opacity: 1;
	}
}

@media (max-width: 768px) {
	.hero-section {
		padding: 120px 20px 70px;
	}

	.hero-logo img {
		max-height: 80px;
		max-width: 150px;
	}

	.hero-headline {
		font-size: 40px;
		letter-spacing: 3px;
	}

	.hero-subheading {
		font-size: 16px;
	}
}
