/* Hesper — placeholder stylesheet. Root task R2.
   Replaced wholesale by hesper/web/style.css once `hesper publish-web` exists.
   The Caddy block sets style-src 'self', so there is no inline <style>. */

:root {
	color-scheme: dark;
	--ground: #0f1120;
	--text: #e8e3d8;
	--text-strong: #fbf8f1;
	--text-dim: #a9a2c6;
	--rule: #262a44;
	--accent: #f2b544;
	--mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

html {
	background: var(--ground);
}

body {
	margin: 0;
	padding: 6rem 2rem;
	background: var(--ground);
	color: var(--text);
	font-family: var(--mono);
	font-size: 1.0625rem;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
}

main {
	max-width: 52rem;
	margin: 0 auto;
}

h1 {
	margin: 0 0 1.5rem;
	color: var(--text-strong);
	font-size: 1.4375rem;
	font-weight: 400;
	letter-spacing: 0.02em;
}

p {
	margin: 0 0 1.5rem;
	max-width: 40rem;
}

hr {
	border: 0;
	border-top: 1px solid var(--rule);
	margin: 2rem 0;
}

.turn {
	color: var(--accent);
}

.dim {
	color: var(--text-dim);
	font-size: 0.875rem;
}

a {
	color: var(--accent);
	text-underline-offset: 0.2em;
}
