/* Homepage layout and component styles */
.screen {
	min-height: 100svh;
	display: flex;
	flex-direction: column;
}

nav {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 22px 6vw;
}

.wordmark {
	width: 30px;
	height: 30px;
}

nav span {
	font-family: 'Rajdhani', sans-serif;
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: 0.06em;
}

nav span em {
	color: var(--red-bright);
	font-style: normal;
}

.hero {
	position: relative;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6vh 6vw;
	overflow: hidden;
	text-align: center;
}

.logo-watermark {
	position: absolute;
	top: 50%;
	left: 50%;
	width: min(900px, 180vw);
	height: auto;
	transform: translate(-50%, -50%);
	opacity: 0.14;
	pointer-events: none;
}

.hero-inner {
	position: relative;
	z-index: 2;
	max-width: 900px;
}

.eyebrow {
	margin-bottom: 20px;
}

.hero h1 {
	margin: 0 0 26px;
	font-size: clamp(2.6rem, 9vw, 6rem);
	line-height: 0.98;
}

.hero h1 em {
	color: var(--red-bright);
	font-style: normal;
}

.hero p {
	max-width: 44ch;
	margin: 0 auto 40px;
	color: var(--steel);
	font-size: 1rem;
	line-height: 1.6;
}

.cta-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
}

.pill {
	border: 1px solid var(--line);
	padding: 15px 30px;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: 0.2s;
}

.pill.solid {
	border-color: var(--red-bright);
	background: var(--red-bright);
	color: var(--void);
	font-weight: 600;
}

.pill.solid:hover {
	border-color: var(--white);
	background: var(--white);
}

.pill.ghost:hover {
	border-color: var(--red-bright);
	color: var(--red-bright);
}

.facts {
	display: grid;
	grid-template-columns: 1fr;
	border-top: 1px solid var(--line);
}

.fact {
	padding: 26px 6vw;
	border-bottom: 1px solid var(--line);
}

.fact .mono {
	display: block;
	margin-bottom: 6px;
}

.fact strong {
	font-family: 'Rajdhani', sans-serif;
	font-weight: 700;
	font-size: 1.05rem;
	text-transform: uppercase;
}

footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 18px 6vw;
	border-top: 1px solid var(--line);
	color: var(--steel);
	font-size: 0.72rem;
	letter-spacing: 0.04em;
}

footer a:hover {
	color: var(--red-bright);
}

@media (min-width: 760px) {
	.facts {
		grid-template-columns: repeat(3, 1fr);
	}

	.fact {
		border-right: 1px solid var(--line);
		border-bottom: none;
	}

	.fact:last-child {
		border-right: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		transition: none !important;
	}
}
