@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
	--brass: #d9a652;
	--background: #141210;
	--well: #100f0d;
	--raised: #24211c;
	--border: rgba(255, 228, 190, 0.09);
	--border-strong: rgba(255, 228, 190, 0.18);
	--text: #f1ebe0;
	--text-soft: #cfc6b8;
	--muted: #a3998a;
	--faint: #7a7062;
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	min-height: 100%;
}

body {
	font-family: 'IBM Plex Sans', Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: var(--text);
	background: radial-gradient(circle at 50% 0%, rgb(217 166 82 / 7%), transparent 36rem), var(--background);
	font-synthesis: none;
	text-rendering: optimizeLegibility;
}

a {
	color: var(--brass);
}

.wrap {
	max-width: 720px;
	margin: 0 auto;
	padding: 0 24px;
}

header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 28px 0;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}

.inscr {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--brass);
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 8px;
}

.nav-link {
	display: inline-flex;
	align-items: center;
	height: 36px;
	padding: 0 14px;
	border: 1px solid var(--border);
	border-radius: 8px;
	color: var(--muted);
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease;
}

.nav-link:hover {
	color: var(--text);
	background: var(--raised);
	border-color: var(--border-strong);
}

main {
	padding: 12px 0 64px;
}

.eyebrow {
	margin: 0 0 8px;
	color: var(--brass);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

h1 {
	margin: 0 0 6px;
	font-size: clamp(1.8rem, 4vw, 2.4rem);
	line-height: 1.15;
	letter-spacing: -0.03em;
}

.updated {
	margin: 0 0 40px;
	color: var(--faint);
	font-size: 13px;
}

section {
	margin-bottom: 32px;
}

h2 {
	margin: 0 0 10px;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: -0.01em;
}

p,
ul {
	margin: 0 0 14px;
	color: var(--text-soft);
	font-size: 15px;
	line-height: 1.7;
}

ul {
	padding-left: 20px;
}

li {
	margin-bottom: 6px;
}

li strong {
	color: var(--text);
}

code {
	font-family: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 0.9em;
	background: var(--well);
	border: 1px solid var(--border);
	border-radius: 5px;
	padding: 1px 6px;
}

footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 28px 0 40px;
	color: var(--faint);
	font-size: 12.5px;
	text-align: center;
	border-top: 1px solid var(--border);
}

footer p {
	margin: 0;
}

footer a {
	color: var(--muted);
	text-decoration: underline;
	text-decoration-color: var(--border-strong);
	text-underline-offset: 3px;
}

footer a:hover {
	color: var(--text-soft);
}
