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

.hero__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--gradient-hero);
	z-index: 1;
}

.hero__container {
	position: relative;
	z-index: 2;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero__content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 800px;
	padding: var(--spacing-xl) var(--spacing-md);
}

.hero__title {
	font-size: 64px;
	font-weight: var(--font-weight-bold);
	color: var(--color-white);
	line-height: 1.1;
	margin-bottom: var(--spacing-lg);
	animation: heroReveal 1s var(--ease-out-expo) forwards;
	clip-path: inset(0 0 0 0);
}

.hero__subtitle {
	font-size: 20px;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	margin-bottom: var(--spacing-xl);
	opacity: 0;
	animation: fadeInUp 0.8s var(--ease-out-expo) 0.3s forwards;
}

.hero__actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--spacing-md);
	flex-wrap: wrap;
	opacity: 0;
	animation: fadeInUp 0.8s var(--ease-out-expo) 0.6s forwards;
}

.hero__btn {
	padding: 14px 32px;
	font-size: var(--font-size-body);
	font-weight: var(--font-weight-semibold);
	border-radius: 4px;
	transition: background-color var(--transition-fast),
	            color var(--transition-fast),
	            border-color var(--transition-fast),
	            transform var(--transition-fast);
	text-decoration: none;
	white-space: nowrap;
}

.hero__btn:hover {
	transform: translateY(-2px);
}

.hero__btn--secondary {
	padding: 14px 32px;
	background-color: transparent;
	color: var(--color-white);
	border: 2px solid var(--color-white);
}

.hero__btn--secondary:hover {
	background-color: var(--color-white);
	color: var(--color-primary);
	border-color: var(--color-white);
}

.hero__scroll-indicator {
	position: absolute;
	bottom: var(--spacing-xl);
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--spacing-sm);
	color: rgba(255, 255, 255, 0.6);
	font-size: var(--font-size-small);
}

.hero__scroll-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--spacing-sm);
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
}

.hero__scroll-mouse {
	width: 24px;
	height: 38px;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-radius: 12px;
	position: relative;
	display: flex;
	justify-content: center;
}

.hero__scroll-mouse::after {
	content: '';
	width: 4px;
	height: 8px;
	background-color: rgba(255, 255, 255, 0.6);
	border-radius: 2px;
	position: absolute;
	top: 6px;
	animation: mouseScrollDot 1.5s var(--ease-out-quart) infinite;
}

.hero__scroll-arrow {
	display: block;
	width: 2px;
	height: 30px;
	background-color: rgba(255, 255, 255, 0.4);
	animation: scrollDown 1.5s ease-in-out infinite;
}

video.hero__video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

@keyframes heroReveal {
	from {
		clip-path: inset(0 100% 0 0);
		opacity: 0;
	}
	to {
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}
}

@keyframes mouseScrollDot {
	0% {
		opacity: 1;
		transform: translateY(0);
	}
	100% {
		opacity: 0;
		transform: translateY(12px);
	}
}
