.hero {
	text-align: left;
}

.hero p {
	margin: 0;
	padding: 0;
}

.hero h1 {
	font-size: clamp(1.9rem, 3.1vw, 2.3rem);
	font-weight: 600;
	margin-bottom: .5rem;
	text-wrap: pretty;
}

.hero p.subheadline {
	font-size: clamp(1.1rem, 1.4vw, 1.2rem);
	color: #52525b;
	margin-bottom: 1rem;
	text-wrap: pretty;
}

.subheadline .underline {
	text-decoration: underline;
}

.hero-meta {
	display: flex;
	flex-direction: column;
	gap: var(--space-xs);
	font-size: 1.05rem;
}

.hero-meta #release-cadence {
	color: #3f3f46;
	font-weight: 500;
}

#release-cadence span {
	white-space: nowrap;
}

.cta {
	display: inline-block;
	margin: 0.4rem 0 0.2rem 0;

	padding: 0.55rem 1rem;
	border-radius: 8px;

	background: #18181b;
	color: white;
	text-decoration: none;
	font-weight: 600;
	white-space: nowrap;

	transition: background 120ms ease, transform 120ms ease;
}

.cta:hover {
	transform: scale(1.03);
}

.cta:focus-visible {
	outline: 2px solid #6A6D8F;
}

/* Link wraps screenshot. Reason link has clamp and screenshot has 100% width*/
.hero-link {
	max-width: 100%;
	display: block;
	width: 400px;
}

.hero-link:hover .hero-screenshot {
	transform: scale(1.03);
}

.hero-link:focus-visible {
	outline: none;
}

.hero-link:focus-visible .hero-screenshot {
	outline: 2px solid #6A6D8F;
}

.hero-screenshot {
	display: block;
	width: 100%;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
	transition: transform 0.15s ease;
}

.design-note {
	margin: 1rem 0 0;
	white-space: nowrap;
}

.design-note-link {
	font-weight: 500;
	color: #27272a;
	text-decoration: none;
}

.design-note-link:hover {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}
