:root {
	--bg: #f3f0e8;
	--paper: #fffdf7;
	--ink: #1d1f21;
	--muted: #5d6670;
	--accent: #0f5f94;
	--accent-strong: #0b466e;
	--line: #d9d0bf;
	--panel: #ece4d3;
	--warm: #8f5a1f;
}

* {
	box-sizing: border-box;
}

html, body {
	margin: 0;
	padding: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: Georgia, "Times New Roman", serif;
}

a {
	color: var(--accent);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.page {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 1.25rem 3rem;
}

.site-header {
	padding: 1.2rem 0 0.8rem;
	border-bottom: 1px solid var(--line);
}

.brand-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 1rem;
}

.brand {
	font-size: clamp(2rem, 5vw, 3.4rem);
	letter-spacing: 0.06em;
	margin: 0;
}

.since {
	color: var(--muted);
	font-size: 0.95rem;
}

.nav {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-top: 0.75rem;
}

.hero {
	display: grid;
	grid-template-columns: 1.3fr 0.9fr;
	gap: 1.5rem;
	padding: 2rem 0 1.5rem;
	align-items: start;
}

.hero-copy h2 {
	font-size: clamp(2rem, 5vw, 4rem);
	line-height: 0.95;
	margin: 0 0 0.8rem;
}

.hero-copy p {
	font-size: 1.1rem;
	line-height: 1.55;
	max-width: 44rem;
}

.hero-panel, .panel {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 1rem 1.1rem;
	box-shadow: 0 8px 24px rgba(31, 33, 35, 0.06);
}

.status-list, .simple-list {
	margin: 0.7rem 0 0;
	padding-left: 1.1rem;
	line-height: 1.6;
}

.button-row {
	display: flex;
	gap: 0.8rem;
	flex-wrap: wrap;
	margin-top: 1.2rem;
}

.button {
	display: inline-block;
	padding: 0.78rem 1rem;
	border-radius: 999px;
	font-weight: 700;
	background: var(--accent);
	color: white;
}

.button:hover {
	background: var(--accent-strong);
	text-decoration: none;
}

.button.secondary {
	background: transparent;
	color: var(--accent);
	border: 1px solid var(--accent);
}

.grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1rem;
}

.card h3, .panel h3 {
	margin-top: 0;
}

.kicker {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.82rem;
	color: var(--warm);
	font-weight: 700;
}

.section {
	padding-top: 1rem;
}

.section h2 {
	font-size: 1.8rem;
	margin-bottom: 0.5rem;
}

.footer {
	margin-top: 2.5rem;
	padding-top: 1rem;
	border-top: 1px solid var(--line);
	color: var(--muted);
	font-size: 0.95rem;
}

.beta-frame-note {
	font-size: 0.98rem;
	color: var(--muted);
	margin-top: 0.4rem;
}

.stack {
	display: grid;
	gap: 1rem;
}

@media (max-width: 900px) {
	.hero,
	.grid {
		grid-template-columns: 1fr;
	}
}
