*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--bg:      #0f0f0f;
	--card:    #161616;
	--border:  #252525;
	--text:    #ddd;
	--muted:   #666;
	--dim:     #444;
	--accent:  #e05555;
	--sans:    'Inter', system-ui, -apple-system, sans-serif;
}

::selection {
	background: #333;
	color: #fff;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--bg);
	color: var(--text);
	font-family: var(--sans);
	font-size: 15px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

/* ── layout ── */

main {
	max-width: 680px;
	margin: 0 auto;
	padding: 4rem 1.5rem 5rem;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

/* ── hero ── */

.hero {
	margin-bottom: 1rem;
}

.hero-eyebrow {
	font-size: 0.8rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 0.6rem;
	font-weight: 500;
}

.hero h1 {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.2;
	color: #eee;
	letter-spacing: -0.02em;
	margin-bottom: 0.5rem;
}

.hero-sub {
	font-size: 1rem;
	color: var(--muted);
	margin-bottom: 1rem;
}

.hero-meta {
	font-size: 0.82rem;
	color: var(--dim);
	line-height: 1.6;
	border-left: 2px solid var(--border);
	padding-left: 0.85rem;
}

/* ── sections ── */

section {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 1.75rem 1.75rem;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

section h2 {
	font-size: 0.68rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--dim);
	margin-bottom: 0.25rem;
}

section p {
	font-size: 0.95rem;
	color: var(--text);
}

section strong {
	color: #eee;
	font-weight: 500;
}

section em {
	color: var(--muted);
	font-style: italic;
}

/* ── video link ── */

.video-link {
	font-size: 0.85rem;
	color: var(--muted);
	margin-top: 0.25rem;
}

.video-link a {
	color: var(--accent);
	text-decoration: none;
}

.video-link a:hover {
	text-decoration: underline;
}

/* ── stat list ── */

.stat-list {
	list-style: none;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
	margin-bottom: 0.25rem;
}

.stat-list li {
	background: #1a1a1a;
	border: 1px solid var(--border);
	border-radius: 6px;
	padding: 0.75rem 1rem;
	font-size: 0.85rem;
	color: var(--muted);
	line-height: 1.4;
}

.stat {
	display: block;
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--accent);
	letter-spacing: -0.02em;
	margin-bottom: 0.15rem;
}


/* ── claim list ── */

.claim-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
	margin-top: 0.25rem;
}

.claim-list li {
	border-left: 2px solid var(--accent);
	padding-left: 0.85rem;
	font-size: 0.95rem;
}

.claim-list li strong {
	display: block;
	color: #ccc;
	font-weight: 500;
	margin-bottom: 0.2rem;
}

/* ── link list ── */

.link-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
	margin-top: 0.1rem;
}

.link-list li {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
}

.link-list li a {
	color: var(--accent);
	font-size: 0.95rem;
	text-decoration: none;
	font-weight: 500;
}

.link-list li a:hover {
	text-decoration: underline;
}

.link-list li span {
	font-size: 0.85rem;
	color: var(--muted);
}

/* ── action list ── */

.action-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	margin-top: 0.1rem;
}

.action-list li {
	font-size: 0.95rem;
	padding-left: 1.1rem;
	position: relative;
}

.action-list li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: var(--accent);
	font-size: 0.85rem;
	top: 0.05em;
}

.action-list li strong {
	display: inline;
}

/* ── links (general) ── */

a {
	color: var(--accent);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

/* ── footer ── */

footer {
	font-size: 0.8rem;
	color: var(--muted);
	text-align: center;
	padding-top: 1rem;
	border-top: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

footer strong {
	color: #aaa;
	font-weight: 500;
}

footer em {
	font-style: italic;
}

footer a {
	color: var(--muted);
}

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

/* ── blockquote ── */

blockquote {
	border-left: 3px solid var(--accent);
	padding: 0.75rem 1rem;
	margin: 0.25rem 0;
	background: #1a1a1a;
	border-radius: 0 6px 6px 0;
	font-size: 0.97rem;
	color: #ccc;
	font-style: italic;
	line-height: 1.65;
}

/* ── teaser cards ── */

.teaser-grid {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	margin-top: 0.25rem;
}

.teaser-card {
	display: flex;
	align-items: baseline;
	gap: 0.75rem;
	background: #1a1a1a;
	border: 1px solid var(--border);
	border-radius: 6px;
	padding: 0.85rem 1rem;
	text-decoration: none;
	transition: border-color 0.15s;
}

.teaser-card:hover {
	border-color: #444;
	text-decoration: none;
}

.teaser-card .teaser-label {
	font-size: 0.92rem;
	font-weight: 500;
	color: var(--accent);
	white-space: nowrap;
}

.teaser-card .teaser-desc {
	font-size: 0.85rem;
	color: var(--muted);
	line-height: 1.4;
}

.teaser-card .teaser-arrow {
	margin-left: auto;
	font-size: 0.85rem;
	color: var(--dim);
	flex-shrink: 0;
}

/* ── subpage back nav ── */

.back-nav {
	font-size: 0.82rem;
	margin-bottom: 0.5rem;
}

.back-nav a {
	color: var(--muted);
}

.back-nav a:hover {
	color: var(--text);
}

/* ── responsive ── */

@media (max-width: 480px) {
	main {
		padding: 2.5rem 1.1rem 3rem;
	}

	.hero h1 {
		font-size: 1.6rem;
	}

	.stat-list {
		grid-template-columns: 1fr;
	}
}
