#hero {
	min-height: 100dvh;
	padding: 8.75rem 5% 5rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
	position: relative;
}

.hero-left {
	position: relative;
	z-index: 1;
}

.hero-eyebrow {
	font-family: var(--font-mono);
	font-size: 13px;
	color: var(--accent);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	margin-bottom: 1.75rem;
}

.hero-eyebrow u {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.hero-headline {
	font-family: var(--font-mono);
	font-size: clamp(40px, 5vw, 68px);
	line-height: 1.05;
	color: var(--text);
	margin-bottom: 1.75rem;
}

.hero-headline .hero-em {
	font-style: italic;
	color: var(--accent);
}

.hero-sub {
	font-size: 17px;
	color: var(--text-dim);
	line-height: 1.7;
	max-width: 44ch;
	margin-bottom: 2.75rem;
}

.hero-actions {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.install-strip {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 0.75rem 1rem;
	width: fit-content;
}

.install-strip span {
	font-family: var(--font-mono);
	font-size: 14px;
	color: var(--text);
}

.install-strip .prompt {
	color: var(--accent);
	user-select: none;
}

.copy-btn {
	background: none;
	border: none;
	cursor: pointer;
	color: var(--text-muted);
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.25rem 0.5rem;
	border-radius: 3px;
	transition:
		color 0.2s,
		background 0.2s;
	margin-left: 0.5rem;
}

.copy-btn:hover {
	color: var(--accent);
	background: var(--accent-glow);
}

.hero-note {
	font-family: var(--font-mono);
	font-size: 13px;
	color: var(--text-muted);
}

.hero-note a {
	color: var(--accent-dim);
	text-decoration: none;
}

.hero-note a:hover {
	color: var(--accent);
}
