/* Self-hosted fonts */
@font-face { font-family: 'Inter'; font-weight: 400; font-style: normal; font-display: block; src: url('../fonts/inter-400.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-weight: 500; font-style: normal; font-display: block; src: url('../fonts/inter-500.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-weight: 600; font-style: normal; font-display: block; src: url('../fonts/inter-600.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-weight: 700; font-style: normal; font-display: block; src: url('../fonts/inter-700.woff2') format('woff2'); }
@font-face { font-family: 'Source Serif 4'; font-weight: 400 700; font-style: normal; font-display: block; src: url('../fonts/sourceserif4-latin.woff2') format('woff2'); }
@font-face { font-family: 'Material Symbols Outlined'; font-style: normal; font-weight: 400; font-display: block; src: url('../fonts/material-symbols.woff2') format('woff2'); }
.material-symbols-outlined { font-family: 'Material Symbols Outlined'; font-weight: normal; font-style: normal; font-size: 24px; line-height: 1; letter-spacing: normal; text-transform: none; display: inline-block; white-space: nowrap; word-wrap: normal; direction: ltr; -webkit-font-smoothing: antialiased; }

:root {
	--bg:			#faf9f7;
	--bg-card:		#ffffff;
	--bg-warm:		#f5f0eb;
	--border:		#e0dbd4;
	--border-light:	#ece8e2;
	--rule:			#c9c2b8;
	--ink:			#1a1a1a;
	--ink-secondary:	#4a4a4a;
	--ink-muted:	#7a7a7a;
	--ink-light:	#a0a0a0;
	--accent:		#1a3a5c;
	--accent-light:	#2d5f8a;
	--red:			#b91c1c;
	--red-light:	#dc2626;
	--red-bg:		#fef2f2;
	--orange:		#92400e;
	--green:		#166534;
	--green-bg:		#f0fdf4;
	--blue-bg:		#eff6ff;
	--purple:		#5b21b6;
	--cyan:			#155e75;
	--gpc-on:		#1d4ed8;
	--gpc-off:		#9ca3af;
	--serif:		'Source Serif 4', Georgia, 'Times New Roman', serif;
	--sans:			'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	--radius:		4px;
}

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

body {
	font-family: var(--sans);
	background: var(--bg);
	color: var(--ink);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

/* ── Topbar ── */
.topbar {
	display: flex; justify-content: space-between; align-items: center;
	padding: 10px 32px;
	border-bottom: 1px solid var(--border);
	background: var(--bg-card);
	position: sticky; top: 0; z-index: 100;
}
.topbar-brand {
	font-family: var(--sans); font-size: 13px; font-weight: 600;
	color: var(--ink); text-decoration: none;
	letter-spacing: -0.2px;
}
.topbar-brand span { color: var(--accent); }
.topbar-links { display: flex; gap: 4px; }
.topbar-link {
	font-size: 11px; padding: 5px 12px; border-radius: var(--radius);
	text-decoration: none; font-weight: 500; transition: all 0.15s;
}
.topbar-link-ghost { color: var(--ink-muted); }
.topbar-link-ghost:hover { color: var(--ink); }
.topbar-link-primary {
	background: var(--accent); color: #fff;
}
.topbar-link-primary:hover { background: var(--accent-light); }

.container { max-width: 920px; margin: 0 auto; padding: 0 24px; }

/* ═══ HERO ═══ */
.hero {
	padding: 64px 24px 48px;
	border-bottom: 2px solid var(--ink);
	background: var(--bg-card);
}
.hero-inner { max-width: 920px; margin: 0 auto; }
.hero-kicker {
	font-family: var(--sans);
	font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
	text-transform: uppercase; color: var(--red);
	margin-bottom: 12px;
}
.hero h1 {
	font-family: var(--serif); font-size: clamp(30px, 5vw, 48px);
	font-weight: 700; line-height: 1.15; margin-bottom: 16px;
	color: var(--ink); letter-spacing: -0.5px;
}
.hero-sub {
	font-family: var(--serif);
	font-size: 18px; color: var(--ink-secondary);
	max-width: 600px; line-height: 1.6; margin-bottom: 32px;
}
.hero-byline {
	font-size: 12px; color: var(--ink-muted); line-height: 1.6;
	border-top: 1px solid var(--border);
	padding-top: 16px; max-width: 600px;
}
.hero-byline strong { color: var(--ink-secondary); font-weight: 600; }

/* ── Stat strip ── */
.stat-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	margin-bottom: 24px;
}
.stat-cell {
	padding: 20px 16px; text-align: center;
	border-right: 1px solid var(--border);
	background: var(--bg-card);
}
.stat-cell:last-child { border-right: none; }
.stat-number {
	font-family: var(--serif);
	font-size: 32px; font-weight: 700; line-height: 1;
}
.stat-number.red { color: var(--red); }
.stat-number.orange { color: var(--orange); }
.stat-label {
	font-size: 10px; color: var(--ink-muted); margin-top: 6px;
	line-height: 1.3; text-transform: uppercase; letter-spacing: 0.5px;
}

@media (max-width: 640px) {
	.stat-strip { grid-template-columns: repeat(2, 1fr); }
	.stat-cell:nth-child(2) { border-right: none; }
	.hero-intro { grid-template-columns: 1fr !important; }
	.two-col { grid-template-columns: 1fr !important; }
}

/* ═══ SECTIONS ═══ */
section { padding: 48px 0; border-bottom: 1px solid var(--border); }
section:last-child { border-bottom: none; }

.section-label {
	font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
	text-transform: uppercase; margin-bottom: 8px;
}
.section-label.red { color: var(--red); }
.section-label.amber { color: var(--orange); }
.section-label.blue { color: var(--accent); }

h2 {
	font-family: var(--serif); font-size: 28px; font-weight: 700;
	line-height: 1.2; margin-bottom: 8px; letter-spacing: -0.3px;
}

h3 {
	font-family: var(--serif); font-size: 20px; font-weight: 600;
	line-height: 1.25; margin-bottom: 6px; letter-spacing: -0.2px;
}

.section-intro {
	font-size: 14px; color: var(--ink-secondary); max-width: 600px;
	line-height: 1.7; margin-bottom: 20px;
}

/* ── Callout ── */
.callout {
	border-left: 3px solid;
	padding: 14px 18px;
	margin: 20px 0;
	font-size: 14px; line-height: 1.7;
	background: var(--bg-card);
}
.callout-red { border-color: var(--red); }
.callout-blue { border-color: var(--accent); }
.callout-label {
	font-size: 10px; text-transform: uppercase; letter-spacing: 1px;
	font-weight: 700; margin-bottom: 4px;
}
.callout-label.red { color: var(--red); }
.callout-label.blue { color: var(--accent); }

/* ── CTA ── */
.cta-row { display: grid; grid-template-columns: 1fr; gap: 16px; margin: 36px 0; }
.cta-panel {
	padding: 24px; border: 1px solid var(--border);
	border-radius: var(--radius); background: var(--bg-card);
	display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start;
}
.cta-panel .cta-icon {
	width: 56px; height: 56px; border-radius: 50%;
	background: var(--red-bg); border: 2px solid var(--red);
	display: flex; align-items: center; justify-content: center;
}
@media (max-width: 560px) {
	.cta-panel { grid-template-columns: 1fr; }
	.cta-panel .cta-icon { width: 48px; height: 48px; }
}
.cta-panel h3 { font-size: 16px; margin-bottom: 6px; }
.cta-panel p { font-size: 13px; color: var(--ink-secondary); line-height: 1.65; margin-bottom: 16px; }
.cta-btn {
	display: inline-block; padding: 8px 20px; border-radius: var(--radius);
	font-size: 12px; font-weight: 600; text-decoration: none; transition: all 0.15s;
	letter-spacing: 0.2px;
}
.cta-btn-dark { background: var(--accent); color: #fff; }
.cta-btn-dark:hover { background: var(--accent-light); }
.cta-btn-outline { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
.cta-btn-outline:hover { background: var(--blue-bg); }

/* ═══ DIAGRAM TOGGLE ═══ */
.diagram-toggle {
	display: inline-flex; align-items: center; gap: 8px;
	margin-bottom: 14px;
}
.dt-label {
	font-size: 11px; font-weight: 600; text-transform: uppercase;
	letter-spacing: 0.5px; transition: color 0.25s; cursor: default;
}
.dt-label.on { color: var(--gpc-on); }
.dt-label.off { color: var(--red); }
.dt-label.dim { color: var(--ink-light); }
.dt-switch {
	position: relative; width: 36px; height: 20px; cursor: pointer;
}
.dt-switch input { display: none; }
.dt-track {
	position: absolute; inset: 0; border-radius: 10px;
	background: var(--gpc-on); transition: background 0.3s;
}
.dt-switch input:checked ~ .dt-track { background: var(--red-light); }
.dt-thumb {
	position: absolute; top: 2px; left: 2px;
	width: 16px; height: 16px; border-radius: 50%;
	background: #fff; transition: transform 0.3s;
	box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.dt-switch input:checked ~ .dt-thumb { transform: translateX(16px); }

/* ═══ VENDOR SCORECARDS ═══ */
.vsc {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px;
	margin-bottom: 16px;
	display: grid;
	grid-template-columns: 160px 1fr;
	gap: 28px;
	align-items: start;
}
@media (max-width: 640px) {
	.vsc { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
	.vendor-metrics { grid-template-columns: 1fr 1fr !important; gap: 20px !important; }
}
.vsc-left { text-align: center; }
.vsc-name {
	font-family: var(--serif); font-size: 20px; font-weight: 700;
	margin-bottom: 4px;
}
.vsc-rank {
	font-size: 10px; color: var(--ink-light); text-transform: uppercase;
	letter-spacing: 0.5px; font-weight: 600; margin-bottom: 12px;
}
.vsc-pie-label {
	font-size: 10px; color: var(--ink-muted); margin-top: 6px;
	text-transform: uppercase; letter-spacing: 0.3px; font-weight: 600;
}
.vsc-right {}
.vsc-stats {
	display: grid; grid-template-columns: 1fr 1fr 1fr;
	gap: 12px; margin-bottom: 16px;
}
.vsc-stat {
	text-align: center; padding: 10px 6px;
	border: 1px solid var(--border-light); border-radius: var(--radius);
}
.vsc-stat-val {
	font-family: var(--serif); font-size: 20px; font-weight: 700;
}
.vsc-stat-label {
	font-size: 9px; color: var(--ink-muted); text-transform: uppercase;
	letter-spacing: 0.3px; margin-top: 2px; font-weight: 500;
}
.vsc-cookies-header {
	font-size: 10px; font-weight: 700; text-transform: uppercase;
	letter-spacing: 0.5px; color: var(--ink-secondary); margin-bottom: 6px;
	padding-bottom: 4px; border-bottom: 1px solid var(--border);
}
.vsc-cookie-row {
	display: grid; grid-template-columns: 1fr 70px 70px 50px;
	gap: 4px; font-size: 11px; padding: 4px 0;
	border-bottom: 1px solid var(--border-light);
	align-items: center;
}
.vsc-cookie-row:last-child { border-bottom: none; }
.vsc-cookie-name {
	font-family: monospace; font-size: 11px; color: var(--ink-secondary);
}
.vsc-cookie-val { text-align: right; font-variant-numeric: tabular-nums; }
.vsc-cookie-delta { text-align: right; font-weight: 600; font-variant-numeric: tabular-nums; }

/* ═══ PAIRED BARS ═══ */
.paired-bar-row {
	display: grid; grid-template-columns: 160px 1fr;
	gap: 12px; align-items: center;
	padding: 7px 0;
	border-bottom: 1px solid var(--border-light);
}
.paired-bar-row:last-child { border-bottom: none; }
.paired-bar-name {
	font-size: 12px; font-weight: 500; color: var(--ink-secondary);
	white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.paired-bar-group { display: flex; flex-direction: column; gap: 3px; }
.paired-bar-line { display: flex; align-items: center; gap: 6px; }
.paired-bar-track {
	flex: 1; height: 14px; background: var(--bg-warm);
	border-radius: 2px; overflow: hidden;
}
.paired-bar-fill {
	height: 100%; border-radius: 2px;
	transition: width 0.5s ease; min-width: 2px;
}
.paired-bar-fill-on { background: var(--gpc-on); }
.paired-bar-fill-off { background: var(--gpc-off); }
.paired-bar-val {
	font-size: 11px; font-weight: 600; min-width: 28px;
	font-variant-numeric: tabular-nums;
}
.paired-bar-match {
	font-size: 9px; font-weight: 700; padding: 1px 5px;
	border-radius: 2px; white-space: nowrap; letter-spacing: 0.3px;
}
.paired-bar-match-same {
	color: var(--red); background: var(--red-bg);
}
.paired-bar-match-diff {
	color: var(--ink-muted); background: var(--bg-warm);
}
.paired-bar-legend {
	display: flex; gap: 16px; margin-bottom: 10px; font-size: 11px; color: var(--ink-muted);
}
.paired-bar-legend-dot {
	display: inline-block; width: 10px; height: 10px;
	border-radius: 2px; vertical-align: middle; margin-right: 4px;
}

/* ═══ RING CHARTS ═══ */
.ring-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
	gap: 12px; margin: 16px 0;
}
.ring-card {
	background: var(--bg-card); border: 1px solid var(--border);
	border-radius: var(--radius); padding: 16px 10px; text-align: center;
}
.ring-svg { margin: 0 auto 4px; display: block; }
.ring-label {
	font-size: 10px; color: var(--ink-muted); margin-top: 2px;
	text-transform: uppercase; letter-spacing: 0.4px; font-weight: 600;
}

/* ═══ CMP CARDS ═══ */
.cmp-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
}
.cmp-card {
	background: var(--bg-card); border: 1px solid var(--border);
	border-radius: var(--radius); padding: 24px 28px;
}
.cmp-card-name {
	font-family: var(--serif); font-size: 18px; font-weight: 600;
	margin-bottom: 16px; color: var(--ink);
	padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.cmp-card-stat-row {
	display: flex; justify-content: space-between;
	font-size: 12px; padding: 6px 0;
	border-bottom: 1px solid var(--border-light);
}
.cmp-card-stat-row:last-child { border: none; }
.cmp-card-stat-label { color: var(--ink-muted); }
.cmp-card-stat-value { font-weight: 600; color: var(--ink-secondary); }
.cmp-card-bar {
	height: 4px; border-radius: 2px; background: var(--bg-warm);
	margin-top: 10px; overflow: hidden;
}
.cmp-card-bar-fill { height: 100%; border-radius: 2px; transition: width 0.6s; }

/* ═══ PARADOX ═══ */
.paradox-card {
	background: var(--bg-card); border: 1px solid var(--border);
	border-radius: var(--radius); padding: 18px; text-align: center;
}
.paradox-val {
	font-family: var(--serif); font-size: 28px; font-weight: 700;
}
.paradox-vs { font-size: 11px; color: var(--ink-muted); margin: 2px 0; }
.paradox-label {
	font-size: 10px; color: var(--ink-muted);
	text-transform: uppercase; letter-spacing: 0.4px; font-weight: 600;
}
.paradox-note { font-size: 10px; color: var(--ink-light); margin-top: 4px; }

.fail { color: var(--red); }

/* ═══ WAFFLE ═══ */
.waffle-controls { display: flex; gap: 4px; flex-wrap: wrap; }
.waffle-btn {
	padding: 4px 10px; font-size: 10px; border-radius: 3px;
	border: 1px solid var(--border); background: var(--bg-card);
	color: var(--ink-muted); cursor: pointer; font-weight: 500;
	transition: all 0.15s; font-family: var(--sans);
}
.waffle-btn.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.waffle-btn:hover:not(.active) { border-color: var(--rule); color: var(--ink-secondary); }

.waffle-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(12px, 1fr));
	gap: 2px;
}
.waffle-cell {
	aspect-ratio: 1; border-radius: 1px;
	transition: all 0.3s; cursor: default;
}
.waffle-cell:hover {
	outline: 2px solid var(--accent);
	z-index: 2; transform: scale(1.8);
}
.waffle-legend {
	display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap;
}
.waffle-legend-item {
	display: flex; align-items: center; gap: 4px;
	font-size: 10px; color: var(--ink-muted);
}
.waffle-legend-dot { width: 10px; height: 10px; border-radius: 2px; }

/* ── Tooltip ── */
.tooltip {
	position: fixed; z-index: 1000;
	background: var(--bg-card); border: 1px solid var(--border);
	border-radius: var(--radius); padding: 10px 12px;
	font-size: 11px; max-width: 240px;
	pointer-events: none; opacity: 0; transition: opacity 0.15s;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.tooltip.visible { opacity: 1; }
.tooltip-title { font-weight: 700; color: var(--accent); margin-bottom: 3px; }
.tooltip-row { display: flex; justify-content: space-between; gap: 10px; padding: 1px 0; }
.tooltip-row span:first-child { color: var(--ink-muted); }

/* ── Methodology ── */
.methodology {
	border-top: 1px solid var(--border);
	padding-top: 16px;
}
.methodology p, .methodology li {
	font-size: 13px; color: var(--ink-secondary); line-height: 1.7;
}
.methodology ul { padding-left: 18px; margin: 8px 0; }
.methodology li { margin-bottom: 4px; }
.methodology h4 {
	margin-top: 16px;
	font-size: 13px;
	font-weight: 700;
	color: var(--ink);
}
.methodology a {
	color: var(--accent);
}

hr.section-rule {
	border: none; border-top: 1px solid var(--border);
	margin: 32px 0;
}

footer {
	text-align: center; padding: 32px 24px;
	color: var(--ink-light); font-size: 11px;
	border-top: 1px solid var(--border);
	background: var(--bg-card);
}
footer a { color: var(--accent); text-decoration: none; }

@media (max-width: 768px) {
	.hero-numbers { grid-template-columns: repeat(2, 1fr) !important; }
	.hero-num { font-size: 28px !important; }
	.vsc-row { grid-template-columns: 1fr !important; }
	.waffle-grid { grid-template-columns: repeat(auto-fill, minmax(10px, 1fr)); }
	.ring-row { grid-template-columns: repeat(2, 1fr); }
	.paired-bar-row { grid-template-columns: 120px 1fr; }
}

/* ═══════════════════════════════════════════
   NEW CLASSES — Phase 2+
   ═══════════════════════════════════════════ */

/* ── Embargo Banner ── */
.embargo-banner {
	background: var(--red);
	color: #fff;
	text-align: center;
	padding: 10px 24px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.5px;
	position: sticky;
	top: 0;
	z-index: 200;
}

/* ── Hero Section ── */
.hero__subtitle {
	font-family: var(--serif);
	font-size: clamp(18px, 3vw, 24px);
	color: var(--ink-secondary);
	margin-bottom: 24px;
	letter-spacing: -0.3px;
}
.hero__lead {
	font-family: var(--serif);
	font-size: clamp(20px, 2.4vw, 26px);
	font-weight: 700;
	line-height: 1.4;
	color: var(--ink);
	letter-spacing: -0.2px;
	margin: 0 0 32px 0;
}
.hero-intro {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	margin-bottom: 32px;
}
.hero__body-text {
	font-family: var(--serif);
	font-size: 17px;
	color: var(--ink-secondary);
	line-height: 1.7;
	margin: 0;
}
.hero-numbers {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	margin-bottom: 24px;
	border: 1px solid var(--border);
}
.hero-numbers__cell {
	background: var(--bg-card);
	padding: 28px 16px;
	text-align: center;
	border-top: 3px solid var(--red);
}
.hero-numbers__icon {
	margin-bottom: 10px;
}
.hero-numbers__icon .material-symbols-outlined {
	font-size: 32px;
	color: var(--red);
}
.hero-numbers__value {
	font-family: var(--serif);
	font-size: clamp(28px, 5vw, 44px);
	font-weight: 700;
	color: var(--red);
	line-height: 1;
}
.hero-numbers__label {
	font-size: 10px;
	color: var(--ink-muted);
	margin-top: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 600;
}

/* ── About Panel ── */
.about-panel {
	margin-top: 32px;
	padding: 32px 36px;
	border: 1px solid var(--border);
	border-top: 4px solid var(--accent);
	border-radius: var(--radius);
	background: var(--bg-card);
	box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.about-panel__kicker {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: var(--accent);
	margin-bottom: 12px;
}
.about-panel__title {
	font-family: var(--serif);
	font-size: clamp(22px, 3.2vw, 30px);
	font-weight: 700;
	color: var(--ink);
	line-height: 1.25;
	margin: 0 0 14px;
}
.about-panel__body {
	font-family: var(--serif);
	font-size: 17px;
	color: var(--ink-secondary);
	line-height: 1.7;
	margin: 0 0 16px;
	max-width: 760px;
}
.about-panel__body a {
	color: var(--ink);
	text-decoration: none;
	border-bottom: 1px solid var(--accent);
}

/* ── Kicker Utilities ── */
.kicker {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.kicker--red {
	color: var(--red);
	margin-bottom: 8px;
}
.kicker--accent {
	color: var(--accent);
	margin-bottom: 12px;
}
.kicker--muted {
	color: var(--ink-muted);
}

/* ── Body Text Utilities ── */
.body-text {
	font-size: 14px;
	color: var(--ink-secondary);
	line-height: 1.8;
	margin: 0;
}
.body-text--serif {
	font-family: var(--serif);
}
.body-text--sm {
	font-size: 13px;
	line-height: 1.7;
}

/* ── Text Color Utilities ── */
.text-red {
	color: var(--red);
}

/* ── Two Column Grid (ghost class now defined) ── */
.two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: start;
}

/* ── Vertical Stack ── */
.vstack {
	margin-top: 24px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* ── Callout margin-0 ── */
.callout--flush {
	margin: 0;
}

/* ── Quote (callout) styles ── */
.quote-text {
	font-family: var(--serif);
	font-style: italic;
	font-size: 13px;
	line-height: 1.7;
}
.quote-source {
	font-size: 10px;
	color: var(--ink-muted);
	margin-top: 6px;
}
.quote-source a {
	color: var(--accent);
}

/* body-text with top margin for under headings */
.body-text--mt {
	margin: 8px 0 0;
}

/* ── Section-level two-col with specific margin ── */
.two-col--gap24 {
	gap: 24px;
}
.two-col--mt {
	margin: 12px 0 24px;
}
.two-col--mb {
	margin-bottom: 20px;
}
.two-col--mt16 {
	margin-top: 16px;
}

/* ── CMP disclaimer ── */
.cmp-disclaimer {
	font-size: 13px;
	color: var(--ink-muted);
	line-height: 1.7;
	margin: 0 0 24px;
	font-style: italic;
}

/* ── Dataset Summary ── */
.dataset-summary {
	margin-top: 32px;
	padding: 24px 28px;
	border: 1px solid var(--border);
	border-top: 3px solid var(--accent);
	border-radius: var(--radius);
	background: var(--bg-card);
}
.dataset-summary__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.dataset-summary__stat {
	text-align: center;
}
.dataset-summary__stat-icon {
	margin-bottom: 6px;
}
.dataset-summary__stat-icon .material-symbols-outlined {
	font-size: 28px;
	color: var(--accent);
}
.dataset-summary__stat-value {
	font-family: var(--serif);
	font-size: 28px;
	font-weight: 700;
	color: var(--accent);
}
.dataset-summary__stat-label {
	font-size: 10px;
	color: var(--ink-muted);
	margin-top: 4px;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}
.dataset-summary__footnote {
	font-size: 12px;
	color: var(--ink-muted);
	margin-top: 16px;
	font-style: italic;
}
.dataset-summary__footnote a {
	color: var(--accent);
}

/* ── Enforcement Table ── */
.enforcement-table__header {
	display: grid;
	grid-template-columns: 1fr 100px 80px;
	gap: 4px;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	color: var(--ink-muted);
	padding-bottom: 6px;
	border-bottom: 1px solid var(--border);
}
.enforcement-table__row {
	display: grid;
	grid-template-columns: 1fr 100px 80px;
	gap: 4px;
	font-size: 13px;
	padding: 8px 0;
	border-bottom: 1px solid var(--border-light);
}
.enforcement-table__row--total {
	display: grid;
	grid-template-columns: 1fr 100px 80px;
	gap: 4px;
	font-size: 13px;
	padding: 10px 0;
	font-weight: 700;
}
.enforcement-table__cell--right {
	text-align: right;
}
.enforcement-table__cell--fine {
	text-align: right;
	font-weight: 600;
}
.enforcement-table__cell--year {
	text-align: right;
	color: var(--ink-muted);
}
.enforcement-table__cell--total-fine {
	text-align: right;
	color: var(--red);
}
.enforcement-table__row:last-of-type {
	border-bottom: 1px solid var(--border);
}

/* ── Enforcement sources ── */
.enforcement-sources {
	font-size: 11px;
	color: var(--ink-muted);
	margin-top: 8px;
	line-height: 1.6;
}
.enforcement-sources a {
	color: var(--accent);
}

/* ── Liability Box ── */
.liability-section {
	margin-top: 32px;
}
.liability-box {
	background: var(--red-bg);
	border: 1px solid rgba(185,28,28,0.15);
	border-radius: var(--radius);
	padding: 24px;
	text-align: center;
}
.liability-box__formula {
	font-size: 13px;
	color: var(--ink-muted);
	margin-bottom: 8px;
}
.liability-box__formula-bold {
	font-weight: 600;
	color: var(--ink);
}
.liability-box__total {
	font-family: var(--serif);
	font-size: 48px;
	font-weight: 700;
	color: var(--red);
	line-height: 1;
}
.liability-box__caption {
	font-size: 11px;
	color: var(--ink-muted);
	margin-top: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* ── Liability text column ── */
.liability-text {
	font-size: 13px;
	color: var(--ink-secondary);
	line-height: 1.8;
}
.liability-text p {
	margin: 0 0 12px;
}
.liability-text p:last-child {
	margin: 0;
	font-size: 12px;
	color: var(--ink-muted);
	line-height: 1.7;
}
.liability-text a {
	color: var(--accent);
}

/* ── Forensic Evidence ── */
.forensic {
	border-top: 1px solid var(--border);
	margin-top: 20px;
	padding-top: 20px;
}
.forensic__title {
	font-family: var(--serif);
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 6px;
}
.forensic__flow {
	margin-bottom: 20px;
}
.forensic__step {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
}
.forensic__step-icon .material-symbols-outlined {
	font-size: 22px;
	color: var(--ink-muted);
}
.forensic__step-icon svg {
	width: 22px; height: 22px; fill: var(--ink-muted);
}
.forensic__step-kicker {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--ink-muted);
}
.forensic__step-text {
	font-size: 13px;
	color: var(--ink-secondary);
}
.forensic__step--tracked {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	background: var(--red-bg);
	border: 1px solid rgba(185,28,28,0.2);
	border-left: 3px solid var(--red);
	border-radius: 0 var(--radius) var(--radius) 0;
}
.forensic__step--tracked .forensic__step-icon .material-symbols-outlined {
	font-size: 22px;
	color: var(--red);
}
.forensic__step--tracked .forensic__step-icon svg {
	width: 22px; height: 22px; fill: var(--red);
}
.forensic__step--tracked .forensic__step-kicker {
	color: var(--red);
}
.forensic__arrow {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	padding: 6px 0;
	color: var(--ink-muted);
	font-size: 11px;
}
.forensic__arrow .material-symbols-outlined {
	font-size: 18px;
}
.forensic__arrow svg {
	width: 18px; height: 18px; fill: var(--ink-muted);
}
.forensic__arrow span:last-child {
	font-style: italic;
}
.forensic__arrow--alert {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	padding: 6px 0;
	color: var(--red);
	font-size: 11px;
}
.forensic__arrow--alert .material-symbols-outlined {
	font-size: 18px;
}
.forensic__arrow--alert svg {
	width: 18px; height: 18px; fill: var(--red);
}
.forensic__arrow--alert span:last-child {
	font-style: italic;
	font-weight: 600;
}
.forensic__code-block {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 14px 16px;
	font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', Menlo, Consolas, monospace;
	font-size: 12px;
	line-height: 1.7;
	overflow-x: auto;
}
.forensic__code-block--pre {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 16px 20px;
	margin-top: 12px;
	font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', Menlo, Consolas, monospace;
	font-size: 12px;
	line-height: 1.7;
	overflow-x: auto;
	white-space: pre;
	white-space: pre;
	color: var(--ink-secondary);
}
.forensic__code-block--cookie {
	padding: 12px 16px;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', Menlo, Consolas, monospace;
	font-size: 12px;
	line-height: 1.7;
}
.forensic__code-header {
	color: var(--ink-muted);
	margin-bottom: 6px;
	font-family: var(--sans);
	font-size: 9px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 6px;
}
.forensic__code-header .material-symbols-outlined {
	font-size: 14px;
}
.forensic__code-header svg {
	width: 14px; height: 14px; fill: currentColor;
}
.forensic__highlight {
	padding: 4px 8px;
	background: var(--red-bg);
	border: 1px solid rgba(185,28,28,0.15);
	border-radius: 3px;
}
.forensic__highlight--mt {
	margin-top: 6px;
	padding: 4px 8px;
	background: var(--red-bg);
	border: 1px solid rgba(185,28,28,0.15);
	border-radius: 3px;
}
.forensic__highlight-bold {
	color: var(--red);
	font-weight: 700;
}
.forensic__code-muted {
	color: var(--ink-muted);
}
.forensic__code-annotation {
	color: var(--ink-muted);
	font-family: var(--sans);
	font-size: 9px;
	margin-left: 6px;
}
.forensic__code-light {
	color: var(--ink-light);
	font-size: 10px;
}
.forensic__code-expires {
	color: var(--red);
}
.forensic__cookie-set-row {
	word-break: break-all;
	margin-top: 2px;
}
.forensic__footnote {
	font-size: 12px;
	color: var(--ink-secondary);
	line-height: 1.7;
	margin-top: 16px;
	max-width: 700px;
}
.forensic__footnote a {
	color: var(--accent);
}

/* ── Vendor Card (JS-generated) ── */
.vendor-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	margin-bottom: 24px;
	padding: 32px;
}
.vendor-card__header {
	display: flex;
	align-items: baseline;
	gap: 16px;
	margin-bottom: 24px;
	border-bottom: 1px solid var(--border);
	padding-bottom: 16px;
}
.vendor-card__name {
	font-family: var(--serif);
	font-size: 28px;
	font-weight: 700;
}
.vendor-card__meta {
	font-size: 12px;
	color: var(--ink-muted);
}
.vendor-card__badge {
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	padding: 3px 8px;
	border-radius: 3px;
	background: rgba(185,28,28,0.06);
	color: var(--red);
	border: 1px solid rgba(185,28,28,0.12);
}
.vendor-card__desc {
	font-size: 14px;
	color: var(--ink-secondary);
	line-height: 1.7;
	margin-bottom: 24px;
	max-width: 600px;
	font-style: italic;
}

/* ── Vendor Metrics (JS-generated) ── */
.vendor-metrics {
	display: grid;
	grid-template-columns: 160px repeat(3, 1fr);
	gap: 24px;
	align-items: center;
}
.vendor-metrics__stat {
	text-align: center;
}
.vendor-metrics__stat-icon {
	margin-bottom: 4px;
}
.vendor-metrics__stat-value {
	font-family: var(--serif);
	font-size: 32px;
	font-weight: 700;
	color: var(--ink-secondary);
}
.vendor-metrics__stat-value--red {
	font-family: var(--serif);
	font-size: 32px;
	font-weight: 700;
	color: var(--red);
}
.vendor-metrics__stat-value--orange {
	font-family: var(--serif);
	font-size: 32px;
	font-weight: 700;
	color: var(--orange);
}
.vendor-metrics__stat-label {
	font-size: 10px;
	color: var(--ink-muted);
	margin-top: 4px;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}
.vendor-metrics__pie-caption {
	font-size: 10px;
	font-weight: 600;
	color: var(--ink-muted);
	margin-top: 6px;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

/* ── Cookie Tags (JS-generated) ── */
.cookie-tag {
	display: inline-block;
	font-family: monospace;
	font-size: 10px;
	padding: 3px 8px;
	border-radius: 10px;
	background: var(--red-bg);
	color: var(--red);
	border: 1px solid rgba(185,28,28,0.12);
}
a.cookie-tag--link {
	text-decoration: none;
	cursor: pointer;
}
a.cookie-tag--link::after {
	content: '\2197';
	margin-left: 3px;
	font-family: sans-serif;
	font-size: 9px;
}
a.cookie-tag--link:hover {
	background: rgba(185,28,28,0.15);
	border-color: rgba(185,28,28,0.3);
}

/* ── Sub-group (JS-generated cookie groups) ── */
.sub-group__name {
	font-size: 12px;
	font-weight: 600;
	color: var(--ink-secondary);
	margin-bottom: 6px;
}
.sub-group__name--sm {
	font-size: 11px;
	font-weight: 600;
	color: var(--ink-secondary);
	margin-bottom: 5px;
}
.sub-group__cookies {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}

/* ── Section divider inside cards ── */
.card-section {
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid var(--border);
}
.card-section--mt20pt20 {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--border);
}

/* ── Quote Panel (JS-generated) ── */
.quote-panel {
	padding: 20px 24px;
	border: 1px solid var(--border);
	border-left: 3px solid var(--accent);
	border-radius: 0 var(--radius) var(--radius) 0;
	background: var(--bg-card);
}
.quote-panel__text {
	font-family: var(--serif);
	font-style: italic;
	font-size: 14px;
	line-height: 1.7;
	color: var(--ink-secondary);
	margin: 0;
}
.quote-panel__source {
	font-size: 11px;
	color: var(--ink-muted);
	margin-top: 8px;
}
.quote-panel__source a {
	color: var(--accent);
}

/* ── CTA Case Study ── */
.cta-case-study {
	padding: 16px 20px;
	border: 1px solid var(--border);
	border-left: 3px solid var(--accent);
	border-radius: 0 var(--radius) var(--radius) 0;
	background: var(--bg-card);
}
.cta-case-study__header {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
}
.cta-case-study__header .material-symbols-outlined {
	font-size: 18px;
	color: var(--accent);
}
.cta-case-study__header span:last-child {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--accent);
}
.cta-case-study__body {
	font-size: 13px;
	color: var(--ink-secondary);
	line-height: 1.7;
	margin: 0;
}
.cta-case-study__body a {
	color: var(--accent);
	font-weight: 600;
}

/* ── CTA H2 ── */
.cta-heading {
	font-size: clamp(24px, 4vw, 36px);
	max-width: 600px;
}

/* ── CTA body text variants ── */
.cta-body-serif {
	font-family: var(--serif);
	font-size: 16px;
	color: var(--ink-secondary);
	line-height: 1.8;
	margin: 0 0 16px;
}
.cta-body {
	font-size: 14px;
	color: var(--ink-secondary);
	line-height: 1.8;
	margin: 0 0 16px;
}

/* ── Newsletter Form ── */
.newsletter-form {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.newsletter-form__input {
	flex: 1;
	padding: 10px 14px;
	font-size: 13px;
	font-family: var(--sans);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--bg-card);
	color: var(--ink);
}
.newsletter-form__checkbox {
	display: flex;
	align-items: center;
	gap: 6px;
	width: 100%;
	font-size: 13px;
	color: var(--ink-secondary);
	cursor: pointer;
}
.newsletter-form__btn {
	padding: 10px 20px;
	font-size: 13px;
	font-weight: 600;
	font-family: var(--sans);
	background: var(--accent);
	color: #fff;
	border: none;
	border-radius: var(--radius);
	cursor: pointer;
	white-space: nowrap;
}

/* ── Methodology section border override ── */
.section--methodology {
	border-top: 3px solid var(--ink);
	padding-top: 48px;
}

/* ── Fine history paragraphs ── */
.fine-history-heading {
	margin-top: 12px;
	font-weight: 600;
}

/* ── SVG icon base + sizes ── */
.icon {
	display: inline-block;
	vertical-align: middle;
	line-height: 0;
}
.icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}
.icon--hero { width: 32px; height: 32px; color: var(--red); }
.icon--stat { width: 28px; height: 28px; color: var(--accent); }
.icon--cta { width: 30px; height: 30px; color: var(--red); }

/* ── Fine history tables ── */
.forensic__diff-add {
	display: block;
	color: #1a7f37;
	font-weight: 700;
	background: #dafbe1;
	margin: 0 -20px;
	padding: 0 20px;
}

.fine-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
	margin-bottom: 24px;
}
.fine-table th, .fine-table td {
	padding: 6px 10px;
	text-align: left;
	border-bottom: 1px solid var(--border);
}
.fine-table thead th {
	font-weight: 700;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--ink-muted);
}
.fine-table__amount {
	text-align: right !important;
}
.fine-table tfoot td {
	border-top: 2px solid var(--ink);
	border-bottom: none;
}
.fine-table a {
	color: var(--accent);
}
.icon--inline { width: 18px; height: 18px; }
.mi {
	vertical-align: middle;
}

/* ── Cookie group grid ── */
.cookie-group-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 16px;
}
.cookie-group-grid--sm {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 12px;
}

/* ── CTA row flush ── */
.cta-row--flush {
	margin: 0;
}

/* ── Two-col margin variant ── */
.two-col--mt20-mb28 {
	margin: 20px 0 28px;
}
.two-col--mt12 {
	margin: 12px 0 0;
}

/* ── Extra utility classes ── */
.body-text--mb16 {
	margin-bottom: 16px;
}
.body-text--mb20 {
	margin: 0 0 20px;
}
.kicker--red-mb12 {
	color: var(--red);
	margin-bottom: 12px;
}
.cta-icon .material-symbols-outlined {
	font-size: 30px;
	color: var(--red);
}
.code-inline {
	font-size: 11px;
}
.link-accent {
	color: var(--accent);
}
