html,
body {
	margin: 0;
	padding: 0;
	background: #fafafa;
}

a {
	color: #c41e24;
}
a:hover {
	color: #9e171c;
}

.accent-bar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: #c41e24;
	z-index: 2;
}

.coming-soon {
	min-height: 100vh;
	background: #fafafa;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 80px 40px;
	position: relative;
	overflow: hidden;
}

.grid-bg {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
	background-size: 40px 40px;
	pointer-events: none;
}

.content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 600px;
	text-align: center;
	animation: fadeUp 0.8s ease-out both;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.banner {
	width: 220px;
	height: auto;
	margin-bottom: 44px;
}

.eyebrow {
	font-family: 'DM Sans', sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #c41e24;
	margin-bottom: 16px;
}

h1 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 38px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 16px;
	line-height: 1.2;
	letter-spacing: -0.3px;
}

.lede {
	font-family: 'DM Sans', sans-serif;
	font-size: 16px;
	color: #555;
	line-height: 1.7;
	margin: 0 0 12px;
	max-width: 520px;
}

.tagline {
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #1a1a1a;
	letter-spacing: 0.5px;
	margin: 0 0 40px;
}

.signup {
	display: flex;
	gap: 12px;
	width: 100%;
	max-width: 440px;
}

.signup input {
	flex: 1;
	padding: 14px 18px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	outline: none;
	background: #fff;
}
.signup input:focus {
	border-color: #c41e24;
}

.signup button {
	padding: 14px 28px;
	background: #c41e24;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-family: 'Space Grotesk', sans-serif;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.15s ease;
}
.signup button:hover {
	background: #a8181d;
}

.fineprint {
	font-family: 'DM Sans', sans-serif;
	font-size: 12px;
	color: #999;
	margin: 12px 0 0;
}

.copyright {
	position: absolute;
	bottom: 24px;
	font-family: 'DM Sans', sans-serif;
	font-size: 11px;
	color: #aaa;
}

@media (max-width: 560px) {
	h1 {
		font-size: 30px;
	}
	.signup {
		flex-direction: column;
	}
}
