:root {
	color-scheme: light dark;
	--bg: #dbf2db;
	--bg-subtle: #e8f5e8;
	--surface: #ffffff;
	--text: #0f3d24;
	--text-secondary: #2e5a34;
	--text-muted: #3d6544;
	--accent: #1e6b28;
	--border: rgba(82, 179, 143, 0.18);
	--border-solid: #85b38e;
	--shadow: 0 8px 30px rgba(15, 61, 36, 0.08);
}

@media (prefers-color-scheme: dark) {
	:root {
		--bg: #0f1410;
		--bg-subtle: #121a14;
		--surface: #1c2e22;
		--text: #e3f5e8;
		--text-secondary: #b8d6c6;
		--text-muted: #99bfaa;
		--accent: #00e674;
		--border: rgba(51, 79, 63, 0.4);
		--border-solid: #334f3f;
		--shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
	}
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
		system-ui, sans-serif;
	background: var(--bg);
	color: var(--text);
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

main {
	max-width: 780px;
	margin: 0 auto;
	padding: 48px 20px 80px;
}

article {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 44px 36px;
	box-shadow: var(--shadow);
}

.back {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--accent);
	text-decoration: none;
	margin-bottom: 28px;
	transition: opacity 0.2s;
}

.back:hover {
	opacity: 0.75;
}

.eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--text-muted);
	margin-bottom: 8px;
}

h1 {
	font-size: clamp(2rem, 4.5vw, 2.8rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.15;
	margin-bottom: 8px;
}

.updated {
	font-size: 0.875rem;
	color: var(--text-muted);
	margin-bottom: 32px;
}

h2 {
	font-size: 1.15rem;
	font-weight: 700;
	margin-top: 36px;
	margin-bottom: 12px;
	letter-spacing: -0.01em;
}

p {
	margin-bottom: 14px;
	color: var(--text-secondary);
	font-size: 0.95rem;
}

.contact {
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid var(--border);
	font-weight: 600;
	color: var(--text-muted);
	font-size: 0.9rem;
}

.contact a {
	color: var(--accent);
	text-decoration: none;
}

.contact a:hover {
	text-decoration: underline;
}

@media (max-width: 640px) {
	article {
		padding: 28px 20px;
		border-radius: 16px;
	}
}
