:root {
	--bg: #1b1f22;
	--panel: #23282c;
	--text: rgba(255, 255, 255, 0.85);
	--muted: rgba(255, 255, 255, 0.5);
	--accent: #1cb495;
	--accent-soft: rgba(28, 180, 149, 0.15);
	--rule: rgba(255, 255, 255, 0.1);
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 300;
	line-height: 1.7;
	letter-spacing: 0.01em;
	-webkit-font-smoothing: antialiased;
}
.wrap {
	max-width: 760px;
	margin: 0 auto;
	padding: 4rem 1.5rem 6rem;
}
header.brand {
	text-align: center;
	margin-bottom: 3rem;
}
header.brand img {
	width: 84px;
	height: auto;
}
h1 {
	font-size: 1.9rem;
	font-weight: 300;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	text-align: center;
	margin: 1.25rem 0 0.4rem;
	color: #fff;
}
.updated {
	text-align: center;
	color: var(--muted);
	font-size: 0.8rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin-bottom: 0;
}
.intro {
	border-top: 1px solid var(--rule);
	border-bottom: 1px solid var(--rule);
	padding: 1.75rem 0;
	margin: 2.5rem 0 0.5rem;
	color: var(--muted);
}
.intro p:last-child { margin-bottom: 0; }
h2 {
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--accent);
	margin: 3rem 0 1rem;
}
p { margin: 0 0 1.1rem; }
ul {
	margin: 0 0 1.1rem;
	padding-left: 1.2rem;
}
li { margin-bottom: 0.5rem; }
a {
	color: var(--accent);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color 0.15s ease;
	word-break: break-word;
}
a:hover { border-bottom-color: var(--accent); }
strong { font-weight: 500; color: #fff; }
.opt-out {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}
.opt-out a {
	display: block;
	background: var(--panel);
	border: 1px solid var(--rule);
	border-radius: 6px;
	padding: 0.85rem 1rem;
	color: var(--text);
}
.opt-out a:hover {
	border-color: var(--accent);
	color: #fff;
}
.opt-out span {
	display: block;
	font-size: 0.75rem;
	color: var(--muted);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 0.15rem;
}
.contact-card {
	background: var(--accent-soft);
	border: 1px solid rgba(28, 180, 149, 0.35);
	border-radius: 8px;
	padding: 1.5rem 1.75rem;
	margin-top: 1rem;
}
.contact-card p:last-child { margin-bottom: 0; }
address {
	font-style: normal;
	color: var(--muted);
}
footer.site {
	text-align: center;
	border-top: 1px solid var(--rule);
	margin-top: 4rem;
	padding-top: 2rem;
	color: var(--muted);
	font-size: 0.8rem;
}
footer.site ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
footer.site li {
	display: inline-block;
	margin: 0 0.6rem;
}
.framework {
	margin-bottom: 0.85rem;
	padding-left: 1rem;
	border-left: 2px solid var(--rule);
	color: var(--muted);
}
.framework strong { color: var(--text); }
.summary {
	background: var(--accent-soft);
	border: 1px solid rgba(28, 180, 149, 0.35);
	border-radius: 8px;
	padding: 1.5rem 1.75rem;
	margin-top: 3rem;
}
.summary strong { color: #fff; }
