/* Served from nodeapp/public/ by the Node application itself. */
:root {
	color-scheme: light dark;
	--bg: #ffffff; --fg: #1a1d23; --muted: #5b6472;
	--line: #e3e6ea; --card: #f6f7f9;
	--ok: #1a7f45; --warn: #a35b00; --accent: #2f6fd0;
}
@media (prefers-color-scheme: dark) {
	:root {
		--bg: #0f1115; --fg: #e6e8ec; --muted: #9aa3b2;
		--line: #262b34; --card: #161a21;
		--ok: #4ade80; --warn: #fbbf24; --accent: #6ea8fe;
	}
}
* { box-sizing: border-box; }
body {
	margin: 0; background: var(--bg); color: var(--fg);
	font: 16px/1.65 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
main { max-width: 46rem; margin: 0 auto; padding: 3rem 1.25rem 4rem; }
h1 { font-size: 1.9rem; line-height: 1.2; margin: .25rem 0 .5rem; }
h2 {
	font-size: 1.05rem; text-transform: uppercase; letter-spacing: .06em;
	color: var(--muted); margin: 2.25rem 0 .6rem;
}
.lead { color: var(--muted); margin-top: 0; }
.badge {
	display: inline-block; margin: 0; font-size: .8rem; font-weight: 600;
	letter-spacing: .04em; color: var(--ok);
}
.ok { color: var(--ok); }
.warn { color: var(--warn); }
code {
	background: var(--card); border: 1px solid var(--line); border-radius: 4px;
	padding: .1rem .35rem; font-size: .875em;
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
dl { display: grid; grid-template-columns: max-content 1fr; gap: .35rem 1.25rem; margin: 0; }
dt { color: var(--muted); }
dd { margin: 0; font-variant-numeric: tabular-nums; }
table { width: 100%; border-collapse: collapse; margin-top: .75rem; font-size: .9rem; }
th, td { text-align: left; padding: .45rem .5rem; border-bottom: 1px solid var(--line); }
th { color: var(--muted); font-weight: 600; }
a { color: var(--accent); }
ul { padding-left: 1.15rem; }
footer {
	margin-top: 2.5rem; padding-top: 1rem; border-top: 1px solid var(--line);
	color: var(--muted); font-size: .9rem;
}
@media (max-width: 34rem) {
	dl { grid-template-columns: 1fr; gap: 0 0; }
	dt { margin-top: .5rem; }
}
