:root {
	color-scheme: light;
	--background: #f7f8f4;
	--ink: #17211c;
	--muted: #536058;
	--accent: #0b7a75;
	--accent-dark: #074f4c;
	--line: #dfe4dc;
}

* {
	box-sizing: border-box;
}

html {
	min-height: 100%;
}

body {
	min-height: 100%;
	margin: 0;
	background:
		radial-gradient(circle at 18% 20%, rgba(11, 122, 117, 0.14), transparent 28rem),
		linear-gradient(135deg, #fbfcf8 0%, var(--background) 52%, #eef3ef 100%);
	color: var(--ink);
	font-family:
		Inter,
		ui-sans-serif,
		system-ui,
		-apple-system,
		BlinkMacSystemFont,
		'Segoe UI',
		sans-serif;
}

.site-shell {
	display: grid;
	min-height: 100vh;
	padding: 48px 24px;
	place-items: center;
}

.hero {
	width: min(100%, 780px);
	text-align: center;
}

.logo {
	display: block;
	width: min(100%, 640px);
	height: auto;
	margin: 0 auto 48px;
}

.eyebrow {
	margin: 0 0 14px;
	color: var(--accent-dark);
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

h1 {
	max-width: 720px;
	margin: 0 auto;
	font-size: clamp(3rem, 8vw, 6.25rem);
	line-height: 0.95;
	letter-spacing: 0;
}

.description {
	max-width: 620px;
	margin: 28px auto 0;
	color: var(--muted);
	font-size: clamp(1.1rem, 2vw, 1.35rem);
	line-height: 1.6;
}

@media (max-width: 640px) {
	.site-shell {
		align-items: start;
		padding: 36px 20px;
	}

	.logo {
		width: min(100%, 360px);
		height: auto;
		margin: 0 auto 32px;
	}

	h1 {
		font-size: 3rem;
	}
}
