/* Cryptonreviews.com — editorial review theme.
   Goals: maximum readability, strong contrast, zero web-font cost,
   mobile-first, print-friendly, AI-scraper-friendly (real text, no
   JS-rendered content). Richer colour palette for personality. */

:root {
	--bg: #ffffff;
	--bg-alt: #f7f7f5;
	--bg-card: #ffffff;
	--ink: #0f1115;
	--ink-soft: #3a3f47;
	--ink-mute: #6b7280;
	--rule: #e5e7eb;

	/* Brand + accent palette */
	--brand: #ffcd00;
	--brand-2: #ffb800;
	--brand-ink: #1a1500;
	--accent: #0a66c2;
	--accent-2: #6e3bd1;
	--accent-3: #06b6d4;
	--accent-4: #ec4899;
	--accent-5: #10b981;
	--accent-6: #f97316;

	--good: #047857;
	--good-bg: #ecfdf5;
	--good-border: #a7f3d0;
	--bad: #b91c1c;
	--bad-bg: #fef2f2;
	--bad-border: #fecaca;
	--warn: #b45309;
	--warn-bg: #fffbeb;

	/* Hero / page background */
	--hero-bg:
		radial-gradient(1000px 500px at 85% -10%, rgba(255, 205, 0, 0.22), transparent 60%),
		radial-gradient(900px 500px at -10% -20%, rgba(110, 59, 209, 0.18), transparent 60%),
		radial-gradient(700px 400px at 50% -30%, rgba(6, 182, 212, 0.10), transparent 60%);

	--shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(15, 17, 21, 0.06);
	--shadow-lg: 0 10px 30px rgba(15, 17, 21, 0.10), 0 4px 8px rgba(15, 17, 21, 0.05);
	--radius: 12px;
	--radius-sm: 8px;
	--maxw: 880px;
	--maxw-wide: 1120px;
}

@media (prefers-color-scheme: dark) {
	:root {
		--bg: #0b0d12;
		--bg-alt: #14171f;
		--bg-card: #161a23;
		--ink: #f3f4f6;
		--ink-soft: #d5d9e0;
		--ink-mute: #9aa1ad;
		--rule: #232734;
		--accent: #79b8ff;
		--accent-2: #b794f6;
		--accent-3: #67e8f9;
		--accent-4: #f9a8d4;
		--accent-5: #34d399;
		--accent-6: #fdba74;
		--good: #34d399;
		--good-bg: rgba(16, 185, 129, 0.10);
		--good-border: rgba(16, 185, 129, 0.35);
		--bad: #f87171;
		--bad-bg: rgba(248, 113, 113, 0.10);
		--bad-border: rgba(248, 113, 113, 0.35);
		--warn: #fbbf24;
		--warn-bg: rgba(251, 191, 36, 0.10);
		--hero-bg:
			radial-gradient(1100px 600px at 85% -15%, rgba(255, 205, 0, 0.16), transparent 60%),
			radial-gradient(900px 600px at -10% -20%, rgba(110, 59, 209, 0.22), transparent 60%),
			radial-gradient(700px 400px at 50% -30%, rgba(6, 182, 212, 0.14), transparent 60%);
		--shadow: 0 1px 2px rgba(0, 0, 0, 0.5), 0 12px 30px rgba(0, 0, 0, 0.5);
		--shadow-lg: 0 18px 50px rgba(0, 0, 0, 0.5), 0 4px 10px rgba(0, 0, 0, 0.4);
	}
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	background: var(--bg);
	background-image: var(--hero-bg);
	background-repeat: no-repeat;
	background-size: 100% 720px;
	color: var(--ink);
	font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto,
		"Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
a:hover { text-decoration-thickness: 2px; }

h1, h2, h3, h4 { color: var(--ink); line-height: 1.25; margin: 1.6em 0 0.5em; font-weight: 700; letter-spacing: -0.01em; }
h1 {
	font-size: clamp(30px, 4.4vw, 44px);
	margin-top: 0.4em;
	background: linear-gradient(135deg, var(--ink) 0%, var(--accent-2) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}
@media (prefers-color-scheme: dark) {
	h1 { background: linear-gradient(135deg, #ffffff 0%, #b794f6 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
}
h2 {
	font-size: clamp(22px, 2.6vw, 28px);
	padding-top: 1.4em;
	position: relative;
}
h2::before {
	content: "";
	position: absolute; left: 0; top: 0;
	width: 56px; height: 4px;
	background: linear-gradient(90deg, var(--brand), var(--accent-4));
	border-radius: 2px;
}
h3 { font-size: 20px; }
h4 { font-size: 17px; color: var(--ink-soft); }

p { margin: 0 0 1em; color: var(--ink-soft); }

ul, ol { padding-left: 1.4em; color: var(--ink-soft); }
li { margin: 0.25em 0; }

code, kbd, samp {
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 0.92em;
	background: var(--bg-alt);
	padding: 0.1em 0.4em;
	border-radius: 4px;
	color: var(--accent-2);
}

blockquote {
	margin: 1.2em 0;
	padding: 0.6em 1.1em;
	border-left: 3px solid var(--brand);
	background: var(--bg-alt);
	border-radius: var(--radius-sm);
	color: var(--ink-soft);
}

hr { border: 0; border-top: 1px solid var(--rule); margin: 2.4em 0; }

/* Skip link */
.skip { position: absolute; left: -9999px; top: -9999px; }
.skip:focus { left: 12px; top: 12px; background: var(--ink); color: var(--bg); padding: 8px 12px; border-radius: 6px; z-index: 100; }

/* Layout */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.wrap-wide { max-width: var(--maxw-wide); margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
	border-bottom: 1px solid var(--rule);
	background: rgba(255, 255, 255, 0.78);
	position: sticky; top: 0; z-index: 50;
	-webkit-backdrop-filter: saturate(180%) blur(14px);
	backdrop-filter: saturate(180%) blur(14px);
}
@media (prefers-color-scheme: dark) {
	.site-header { background: rgba(11, 13, 18, 0.78); }
}
.site-header .wrap-wide {
	display: flex; align-items: center; justify-content: space-between;
	padding-top: 14px; padding-bottom: 14px; gap: 16px;
}
.brand {
	display: inline-flex; align-items: center; gap: 10px;
	text-decoration: none; color: var(--ink); font-weight: 700; letter-spacing: -0.01em;
}
.brand-mark {
	display: inline-flex; width: 30px; height: 30px; border-radius: 8px;
	background: linear-gradient(135deg, var(--brand) 0%, var(--accent-6) 50%, var(--accent-4) 100%);
	color: var(--brand-ink); align-items: center; justify-content: center;
	font-weight: 800; font-size: 13px;
	box-shadow: 0 4px 14px rgba(255, 205, 0, 0.35), inset 0 -2px 0 rgba(0, 0, 0, 0.08);
}
.brand-name { font-size: 17px; }
.brand-name b { color: var(--ink); }
.brand-name span { color: var(--ink-mute); font-weight: 500; }

nav.primary { display: flex; flex-wrap: wrap; gap: 4px 8px; }
nav.primary a {
	color: var(--ink-soft); text-decoration: none; font-size: 15px; padding: 6px 10px;
	border-radius: 8px;
	transition: background 0.15s ease, color 0.15s ease;
}
nav.primary a:hover { background: var(--bg-alt); color: var(--ink); }
nav.primary a[aria-current="page"] {
	color: var(--brand-ink); font-weight: 600;
	background: linear-gradient(135deg, rgba(255, 205, 0, 0.95), rgba(255, 184, 0, 0.95));
	box-shadow: 0 2px 8px rgba(255, 205, 0, 0.35);
}
@media (prefers-color-scheme: dark) {
	nav.primary a[aria-current="page"] { color: var(--brand-ink); }
}

/* Breadcrumbs */
.crumbs { font-size: 14px; color: var(--ink-mute); padding: 18px 0 0; }
.crumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.crumbs li:not(:last-child)::after { content: "›"; margin-left: 6px; color: var(--ink-mute); }
.crumbs a { color: var(--ink-mute); text-decoration: none; }
.crumbs a:hover { color: var(--accent); text-decoration: underline; }

/* Hero / TLDR verdict */
.hero { padding: 24px 0 8px; }
.eyebrow {
	display: inline-block;
	background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
	color: var(--brand-ink);
	font-weight: 800; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
	padding: 5px 12px; border-radius: 999px;
	box-shadow: 0 2px 10px rgba(255, 205, 0, 0.35);
}
.byline {
	display: block;
	margin: 10px 0 0;
	font-size: 13px;
}
.byline a { color: var(--ink-soft); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
.byline a:hover { color: var(--accent-2); }
.lede { font-size: 19px; color: var(--ink-soft); }
.lede a { color: var(--accent-2); }

.verdict {
	margin: 22px 0 8px;
	background:
		linear-gradient(135deg, rgba(255, 205, 0, 0.08), rgba(110, 59, 209, 0.08) 50%, rgba(6, 182, 212, 0.08));
	border: 1px solid var(--rule);
	border-radius: var(--radius);
	padding: 22px 22px 18px;
	display: grid; grid-template-columns: 1fr; gap: 14px;
	box-shadow: var(--shadow);
	position: relative;
	overflow: hidden;
}
.verdict::before {
	content: "";
	position: absolute; left: 0; right: 0; top: 0; height: 4px;
	background: linear-gradient(90deg, var(--brand), var(--accent-6), var(--accent-4), var(--accent-2), var(--accent-3));
}
@media (min-width: 720px) {
	.verdict { grid-template-columns: 240px 1fr; align-items: center; }
}
.score {
	display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
}
.score .num {
	font-size: 52px; font-weight: 800; letter-spacing: -0.02em; line-height: 1;
	background: linear-gradient(135deg, var(--accent-2), var(--accent-4));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}
.score .num small { font-size: 18px; color: var(--ink-mute); font-weight: 600; -webkit-text-fill-color: var(--ink-mute); }
.stars { color: #f5b400; font-size: 19px; letter-spacing: 2px; text-shadow: 0 1px 0 rgba(0,0,0,0.05); }
.score .label { font-size: 12px; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.verdict .summary p { margin: 0 0 6px; color: var(--ink); }
.verdict .summary .meta { color: var(--ink-mute); font-size: 14px; }

/* Quick facts table */
.facts {
	margin: 8px 0 24px; border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden;
	box-shadow: var(--shadow);
	background: var(--bg-card);
}
.facts table { width: 100%; border-collapse: collapse; }
.facts th, .facts td { padding: 12px 16px; text-align: left; font-size: 15px; }
.facts tr + tr th, .facts tr + tr td { border-top: 1px solid var(--rule); }
.facts th {
	color: var(--ink-mute); font-weight: 600; width: 38%;
	background: linear-gradient(180deg, var(--bg-alt), rgba(247, 247, 245, 0.4));
}
.facts td { color: var(--ink); }

/* Pricing table */
.pricing {
	width: 100%; border-collapse: separate; border-spacing: 0; margin: 8px 0 24px; font-size: 15px;
	border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden;
	background: var(--bg-card);
	box-shadow: var(--shadow);
}
.pricing th, .pricing td { padding: 13px 16px; border-bottom: 1px solid var(--rule); text-align: left; }
.pricing tbody tr:last-child td { border-bottom: none; }
.pricing thead th {
	background: linear-gradient(180deg, var(--bg-alt), rgba(247, 247, 245, 0.4));
	font-weight: 600;
	color: var(--ink-soft);
	font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em;
}
.pricing tbody tr:hover { background: rgba(255, 205, 0, 0.04); }
.pricing td.price {
	font-weight: 700; white-space: nowrap;
	color: var(--accent-5);
}

/* Pros / cons */
.pc { display: grid; grid-template-columns: 1fr; gap: 16px; margin: 8px 0 24px; }
@media (min-width: 720px) { .pc { grid-template-columns: 1fr 1fr; } }
.pc .card {
	border-radius: var(--radius); padding: 22px 22px;
	border: 1px solid var(--rule); background: var(--bg-card);
	box-shadow: var(--shadow);
	position: relative; overflow: hidden;
}
.pc .card::before {
	content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
}
.pc .pros { background: linear-gradient(180deg, var(--good-bg), var(--bg-card) 70%); border-color: var(--good-border); }
.pc .pros::before { background: linear-gradient(180deg, var(--good), var(--accent-5)); }
.pc .cons { background: linear-gradient(180deg, var(--bad-bg), var(--bg-card) 70%); border-color: var(--bad-border); }
.pc .cons::before { background: linear-gradient(180deg, var(--bad), var(--accent-4)); }
.pc h3 { margin: 0 0 12px; font-size: 17px; display: flex; align-items: center; gap: 10px; }
.pc .pros h3 { color: var(--good); }
.pc .cons h3 { color: var(--bad); }
.pc .pros h3::before {
	content: "✓"; width: 26px; height: 26px; display: inline-flex; align-items: center; justify-content: center;
	background: var(--good); color: #fff; border-radius: 999px; font-size: 14px; font-weight: 900;
	box-shadow: 0 2px 8px rgba(4, 120, 87, 0.35);
}
.pc .cons h3::before {
	content: "−"; width: 26px; height: 26px; display: inline-flex; align-items: center; justify-content: center;
	background: var(--bad); color: #fff; border-radius: 999px; font-size: 16px; font-weight: 900; line-height: 0.5;
	box-shadow: 0 2px 8px rgba(185, 28, 28, 0.35);
}
.pc ul { margin: 0; padding-left: 1.2em; }
.pc li { color: var(--ink); }

/* Testimonials */
.reviews { display: grid; gap: 14px; margin: 12px 0 24px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .reviews { grid-template-columns: 1fr 1fr; } }
.review {
	border: 1px solid var(--rule); border-radius: var(--radius); padding: 18px 20px; background: var(--bg-card);
	position: relative; overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.review:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.review::before {
	content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
	background: linear-gradient(180deg, var(--brand), var(--accent-6));
}
.review .who { font-size: 14px; color: var(--ink-mute); margin-top: 10px; }
.review .stars { font-size: 15px; letter-spacing: 1px; }
.review blockquote { margin: 0; padding: 0; border: 0; background: transparent; }
.review blockquote p { color: var(--ink); margin: 0; font-size: 15.5px; }
.source-pill {
	display: inline-block; font-size: 12px; padding: 2px 10px; border-radius: 999px;
	background: linear-gradient(135deg, rgba(110, 59, 209, 0.12), rgba(6, 182, 212, 0.12));
	color: var(--accent-2); margin-left: 6px; vertical-align: middle; font-weight: 600;
	border: 1px solid rgba(110, 59, 209, 0.18);
}

/* CTA */
.cta {
	margin: 32px 0; padding: 28px 26px;
	border-radius: var(--radius);
	background:
		linear-gradient(135deg, rgba(255, 205, 0, 0.14), rgba(236, 72, 153, 0.10) 50%, rgba(110, 59, 209, 0.12));
	border: 1px solid var(--rule);
	display: grid; gap: 16px; grid-template-columns: 1fr; align-items: center;
	box-shadow: var(--shadow);
	position: relative; overflow: hidden;
}
.cta::before {
	content: ""; position: absolute; right: -80px; top: -80px;
	width: 200px; height: 200px; border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 205, 0, 0.35), transparent 70%);
	pointer-events: none;
}
@media (min-width: 720px) { .cta { grid-template-columns: 1fr auto; } }
.cta h3 { margin: 0 0 6px; font-size: 22px; }
.cta p { margin: 0; color: var(--ink-soft); }
.btn {
	display: inline-flex; align-items: center; justify-content: center;
	background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
	color: var(--brand-ink);
	padding: 14px 24px; border-radius: 999px; text-decoration: none; font-weight: 700;
	border: 0;
	box-shadow: 0 8px 24px rgba(255, 205, 0, 0.4), inset 0 -2px 0 rgba(0, 0, 0, 0.08);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
	white-space: nowrap;
}
.btn:hover {
	transform: translateY(-2px);
	text-decoration: none;
	box-shadow: 0 12px 30px rgba(255, 205, 0, 0.5), inset 0 -2px 0 rgba(0, 0, 0, 0.08);
}
.btn.ghost {
	background: var(--bg-card); color: var(--ink); border: 1.5px solid var(--rule);
	box-shadow: var(--shadow);
}
.btn.ghost:hover { border-color: var(--accent-2); color: var(--accent-2); }

/* FAQ */
.faq details {
	border: 1px solid var(--rule); border-radius: var(--radius);
	background: var(--bg-card); margin: 10px 0; padding: 0 18px;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.faq details + details { margin-top: 10px; }
.faq details[open] {
	border-color: rgba(255, 205, 0, 0.5);
	box-shadow: 0 4px 18px rgba(255, 205, 0, 0.10);
}
.faq summary {
	cursor: pointer; padding: 16px 0; font-weight: 600; color: var(--ink);
	list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.faq summary:hover { color: var(--accent-2); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
	content: "+"; color: var(--brand-ink); font-size: 18px; line-height: 1;
	width: 26px; height: 26px;
	background: linear-gradient(135deg, var(--brand), var(--brand-2));
	border-radius: 999px; display: inline-flex; align-items: center; justify-content: center;
	font-weight: 800;
	box-shadow: 0 2px 8px rgba(255, 205, 0, 0.35);
	transition: transform 0.2s ease;
	flex-shrink: 0;
}
.faq details[open] summary::after { content: "−"; transform: rotate(180deg); }
.faq details[open] { padding-bottom: 14px; }
.faq .answer { color: var(--ink-soft); }
.faq .answer p { color: var(--ink-soft); }

/* Product grid (home) */
.grid {
	display: grid; gap: 18px; grid-template-columns: 1fr; margin: 16px 0 28px;
}
@media (min-width: 640px) { .grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .grid { grid-template-columns: 1fr 1fr 1fr; } }

.product {
	display: flex; flex-direction: column; gap: 10px;
	border: 1px solid var(--rule); border-radius: var(--radius);
	padding: 20px 22px;
	background: var(--bg-card);
	text-decoration: none; color: var(--ink);
	box-shadow: var(--shadow);
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
	position: relative; overflow: hidden;
}
.product::before {
	content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
	background: var(--product-accent, linear-gradient(90deg, var(--brand), var(--accent-6)));
}
.product:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product:nth-child(1) { --product-accent: linear-gradient(90deg, #0a66c2, #06b6d4); }
.product:nth-child(2) { --product-accent: linear-gradient(90deg, #10b981, #06b6d4); }
.product:nth-child(3) { --product-accent: linear-gradient(90deg, #6e3bd1, #ec4899); }
.product:nth-child(4) { --product-accent: linear-gradient(90deg, #f97316, #ec4899); }
.product:nth-child(5) { --product-accent: linear-gradient(90deg, #ec4899, #6e3bd1); }
.product:nth-child(6) { --product-accent: linear-gradient(90deg, #ffcd00, #f97316); }
.product h3 { margin: 4px 0 0; font-size: 19px; }
.product .row { display: flex; align-items: center; gap: 6px; font-size: 14px; color: var(--ink-mute); flex-wrap: wrap; }
.product p { margin: 0; color: var(--ink-soft); font-size: 15px; }
.product .more {
	font-size: 14px; margin-top: auto; font-weight: 700;
	color: var(--accent-2);
}
.product:hover .more { color: var(--accent); }

.tag {
	display: inline-block; font-size: 11px; padding: 3px 9px; border-radius: 999px;
	background: var(--bg-alt); color: var(--ink-soft); font-weight: 600;
	letter-spacing: 0.02em;
}
.tag:nth-of-type(1) { background: linear-gradient(135deg, rgba(10, 102, 194, 0.10), rgba(6, 182, 212, 0.10)); color: var(--accent); border: 1px solid rgba(10, 102, 194, 0.20); }
.tag:nth-of-type(2) { background: linear-gradient(135deg, rgba(236, 72, 153, 0.10), rgba(110, 59, 209, 0.10)); color: var(--accent-4); border: 1px solid rgba(236, 72, 153, 0.20); }

/* Sibling nav */
.siblings { display: grid; gap: 12px; grid-template-columns: 1fr; margin: 28px 0; }
@media (min-width: 720px) { .siblings { grid-template-columns: 1fr 1fr; } }
.siblings a {
	display: block; padding: 16px 18px; border: 1px solid var(--rule); border-radius: var(--radius);
	text-decoration: none; color: var(--ink); background: var(--bg-card);
	box-shadow: var(--shadow);
	transition: transform 0.15s ease, border-color 0.15s ease;
	position: relative; overflow: hidden;
}
.siblings a::before {
	content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
	background: linear-gradient(180deg, var(--accent-2), var(--accent-4));
}
.siblings a small { color: var(--accent-2); display: block; font-size: 13px; font-weight: 600; letter-spacing: 0.02em; }
.siblings a strong { display: block; font-size: 16px; margin-top: 4px; }
.siblings a:hover { border-color: var(--accent-2); transform: translateY(-2px); }

/* Footer */
.site-footer {
	border-top: 1px solid var(--rule); margin-top: 56px; padding: 32px 0 44px;
	color: var(--ink-mute); font-size: 14px;
	background: linear-gradient(180deg, transparent, rgba(247, 247, 245, 0.5));
}
@media (prefers-color-scheme: dark) {
	.site-footer { background: linear-gradient(180deg, transparent, rgba(20, 23, 31, 0.5)); }
}
.site-footer .cols {
	display: grid; gap: 20px; grid-template-columns: 1fr;
}
@media (min-width: 720px) { .site-footer .cols { grid-template-columns: 2fr 1fr 1fr; } }
.site-footer a { color: var(--ink-soft); text-decoration: none; }
.site-footer a:hover { color: var(--accent-2); text-decoration: underline; }
.site-footer ul { list-style: none; padding: 0; margin: 8px 0 0; }
.site-footer li { margin: 5px 0; }
.site-footer strong { color: var(--ink); font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; }
.disclosure { margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--rule); font-size: 13px; color: var(--ink-mute); }

/* Utility */
.muted { color: var(--ink-mute); }
.small { font-size: 14px; }
.center { text-align: center; }
.spaced { margin-top: 1.4em; }

/* Print */
@media print {
	body { background: #fff !important; }
	.site-header, .cta, nav, .siblings, .site-footer .cols { display: none; }
	a { color: #000; text-decoration: underline; }
	body { color: #000; }
	h1 { -webkit-text-fill-color: #000; color: #000 !important; }
	.score .num { -webkit-text-fill-color: #000; color: #000 !important; }
	.verdict, .facts, .pricing, .pc .card, .review, .cta { box-shadow: none; }
}
