* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	position: relative;
	min-height: 100dvh;
	max-height: 100dvh;
	overflow-x: hidden;
	overflow-y: hidden;
	background-color: #08080b;
	font-family: 'Permanent Marker', cursive;
	color: #fdf7ef;
}

.hero-bg {
	position: fixed;
	inset: -8%;
	z-index: -20;
	background-image: url('../images/bg-hero.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transform: scale(1.05) translate3d(0, 0, 0);
	filter: saturate(0.85) contrast(1.05);
	will-change: transform;
}

.hero-bg::after {
	content: '';
	position: absolute;
	inset: -5%;
	backdrop-filter: blur(6px) brightness(0.4) saturate(0.6);
	-webkit-backdrop-filter: blur(6px) brightness(0.4) saturate(0.6);
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden;
}

.permanent-marker-regular {
	font-family: 'Permanent Marker', cursive;
	font-weight: 400;
	font-style: normal;
}

.content-container {
	position: relative;
	max-height: 100dvh;
	max-width: 720px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 1rem 1rem;
	overflow: hidden;
}

.hero-visual {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin: 0;
}

.hero-logo {
	width: 100%;
	max-width: 460px;
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 18px 38px rgba(0, 0, 0, 0.45));
	opacity: 0.96;
}

.main-heading {
	position: relative;
	top: -4.5rem;
	width: auto;
	max-width: 100%;
	font-size: clamp(2rem, 6.5vw, 3.5rem);
	font-weight: 900;
	letter-spacing: 0.16em;
	line-height: 0.85;
	white-space: nowrap;
	text-transform: uppercase;
	text-shadow:
		0 0.05em 0.2em rgba(0, 0, 0, 0.55),
		0 0.2em 0.7em rgba(0, 0, 0, 0.45),
		0 0 1.3em rgba(255, 255, 255, 0.18);
	color: #fef7ed;
	margin: 0;
}

.notify-form {
	width: min(100%, 300px);
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	margin-top: 0rem;
	margin-bottom: 3rem;
}

.notify-form input {
	padding: 0.95rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 25px;
	background: rgba(10, 10, 14, 0.78);
	color: #fdf7ef;
	font-size: 1rem;
	backdrop-filter: blur(10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.notify-form input::placeholder {
	color: rgba(253, 247, 239, 0.7);
}

.notify-form input:focus {
	outline: 2px solid rgba(255, 255, 255, 0.36);
	outline-offset: 2px;
}

.notify-form button {
	width: min(74%, 220px);
	align-self: center;
	padding: 0.5rem 0.75rem;
	border: none;
	border-radius: 25px;
	background: linear-gradient(135deg, #d93a3a 0%, #a61111 100%);
	color: #fff;
	font-weight: 800;
	font-size: 1rem;
	cursor: pointer;
	box-shadow: 0 12px 30px rgba(166, 17, 17, 0.24);
	transition:
		transform 180ms ease,
		box-shadow 180ms ease;
}

.notify-form button:hover,
.notify-form button:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 16px 36px rgba(166, 17, 17, 0.32);
}

.form-message {
	min-height: 1.2rem;
	margin-top: 0.35rem;
	font-size: 0.95rem;
	color: rgba(253, 247, 239, 0.9);
}

@media (min-width: 768px) {
	.content-container {
		padding: 2rem 2rem 2.5rem;
	}

	.hero-visual {
		width: min(90vw, 640px);
		gap: clamp(1rem, 2.2vh, 1.6rem);
		margin-bottom: clamp(1.4rem, 3vh, 2rem);
	}

	.hero-logo {
		width: min(64vw, 480px);
		max-width: 480px;
	}

	.main-heading {
		font-size: clamp(3rem, 5vw, 4.6rem);
		letter-spacing: 0.18em;
	}

	.notify-form {
		width: min(100%, 330px);
		gap: 0.9rem;
	}

	.notify-form button {
		width: min(70%, 240px);
	}
}
