.hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 720px;
	padding: 120px 24px 80px;
	background:
		linear-gradient(
			90deg,
			rgba(22, 50, 79, 0.88) 0%,
			rgba(22, 50, 79, 0.72) 45%,
			rgba(22, 50, 79, 0.35) 100%
		),
		url("/resources/blockfunds-homepage-hero-image.webp") center center / cover no-repeat;
	color: white;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.1) 0%,
		rgba(0, 0, 0, 0.35) 100%
	);
	pointer-events: none;
}

.hero-inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
}

.hero-content {
	max-width: 680px;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 8px 16px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(8px);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
}

.hero h1 {
	margin: 0;
	font-size: clamp(3rem, 6vw, 5.5rem);
	line-height: 1.05;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: white;
}

.hero p {
	margin: 0;
	max-width: 600px;
	font-size: 1.15rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	padding-top: 12px;
}

.hero-actions .button {
	height: 56px;
	padding: 0 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	font-size: 0.95rem;
	font-weight: 700;
	background: white;
	color: var(--color-primary);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
	transition:
		transform 0.2s ease,
		background 0.2s ease,
		color 0.2s ease;
}

.hero-actions .button:hover {
	transform: translateY(-2px);
}

.hero-actions .button-secondary {
	background: rgba(255, 255, 255, 0.08);
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(8px);
}

.hero-actions .button-secondary:hover {
	background: rgba(255, 255, 255, 0.16);
}

@media (max-width: 768px) {
	.hero {
		min-height: 620px;
		padding: 100px 20px 60px;
		background-position: center right;
	}

	.hero-content {
		max-width: 100%;
		gap: 22px;
	}

	.hero h1 {
		font-size: 2.75rem;
	}

	.hero p {
		font-size: 1rem;
		line-height: 1.7;
	}

	.hero-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.hero-actions .button {
		width: 100%;
	}
}