:root {
	--bg: #0e1116;
	--fg: #e6edf3;
	--muted: #8b949e;
	--accent: #58a6ff;
}

* { box-sizing: border-box; }

html, body {
	margin: 0;
	padding: 0;
	background: var(--bg);
	color: var(--fg);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	min-height: 100vh;
}

body {
	display: flex;
	flex-direction: column;
}

main {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 2rem;
}

.logo {
	width: 120px;
	height: 120px;
	margin-bottom: 1rem;
}

h1 {
	font-size: 3rem;
	margin: 0 0 0.5rem 0;
	letter-spacing: -0.02em;
}

.tagline {
	color: var(--muted);
	font-size: 1.1rem;
	margin: 0;
}

footer {
	text-align: center;
	padding: 1rem;
	color: var(--muted);
	font-size: 0.9rem;
}

footer a, main.imprint a {
	color: var(--accent);
	text-decoration: none;
}

footer a:hover, main.imprint a:hover {
	text-decoration: underline;
}

main.imprint {
	max-width: 640px;
	margin: 0 auto;
	padding: 3rem 2rem;
	text-align: left;
	display: block;
}

main.imprint h1 { font-size: 2rem; }
main.imprint h2 { font-size: 1.25rem; margin-top: 2rem; }
