:root {
	color-scheme: light;
	--primary: #5ec297;
	--primary-dark: #349b72;
	--surface: #ffffff;
	--surface-page: #f6f6f7;
	--border: #ebebeb;
	--text: #444444;
	--text-strong: #23252c;
	--text-inverse: #ffffff;
	--shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

* {
	box-sizing: border-box;
}

html,
body {
	min-height: 100%;
}

body {
	margin: 0;
	font-family: Roboto, "Segoe UI", Arial, sans-serif;
	font-size: 0.875rem;
	color: var(--text);
	background: var(--surface-page);
}

.page {
	max-width: 1120px;
	margin: 0 auto;
	padding: 2rem;
}

.hero {
	background: var(--surface);
	box-shadow: var(--shadow);
	padding: 2rem;
}

.hero-kicker {
	margin: 0 0 0.75rem;
	color: var(--primary-dark);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

h1 {
	margin: 0 0 0.5rem;
	font-size: 1.75rem;
	font-weight: 500;
	color: var(--text-strong);
}

p {
	margin: 0;
	max-width: 46rem;
	color: #6b7280;
	line-height: 1.6;
}

nav {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1.5rem;
}

a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 11rem;
	padding: 1.5rem;
	border: 1px solid var(--border);
	background: var(--surface);
	color: var(--text-strong);
	font-size: 1.75rem;
	font-weight: 500;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	box-shadow: var(--shadow);
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

a:hover,
a:focus-visible {
	border-color: var(--primary);
	background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), var(--primary);
}

a:focus-visible {
	outline: 0;
}

.health-checks {
	background: var(--primary-dark);
	border-color: var(--primary-dark);
	color: var(--text-inverse);
}

.health-checks:hover,
.health-checks:focus-visible {
	background: var(--primary-dark);
	border-color: var(--primary-dark);
	filter: brightness(0.94);
}

@media (max-width: 760px) {
	.page {
		padding: 1rem;
	}

	.hero {
		padding: 1rem;
	}

	nav {
		grid-template-columns: 1fr;
	}

	a {
		min-height: 7rem;
		font-size: 1.35rem;
	}
}
