/* =============================================
   404 Page
   ============================================= */

.error-hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	padding: 0 4%;
	background: linear-gradient(135deg, var(--dark-teal) 0%, var(--navy-black) 100%);
}

.error-hero-bg {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
	background-size: 80px 80px;
	pointer-events: none;
}

.error-hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 640px;
}

.error-code {
	display: block;
	font-family: 'Funnel Sans', sans-serif;
	font-size: clamp(6rem, 20vw, 12rem);
	font-weight: 800;
	line-height: 1;
	color: transparent;
	-webkit-text-stroke: 2px rgba(255, 255, 255, 0.15);
	letter-spacing: -4px;
	margin-bottom: 0.25rem;
	user-select: none;
}

.error-title {
	font-size: clamp(2rem, 5vw, 3rem);
	color: var(--white);
	letter-spacing: -1px;
	margin-bottom: 1rem;
}

.error-subtitle {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.7;
	margin-bottom: 2.5rem;
}

.error-ctas {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

@media (max-width: 480px) {
	.error-ctas {
		flex-direction: column;
		align-items: center;
	}
}
