/* =========================================================================
   12 · IMPACT STATS BAND — oversized numerals on dark teal
   Reference: V4-BUILD-SPEC §4 #8 + NGO-DESIGN-RESEARCH "Impact stats"
   ========================================================================= */

.jj-stats {
	background: var(--jj-primary);
	color: #fff;
	padding-block: var(--section-y);
	position: relative;
	overflow: hidden;
}
.jj-stats::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 20% 80%, rgba(232, 163, 23, 0.15), transparent 50%);
	pointer-events: none;
}

.jj-stats__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: var(--sp-8);
	grid-template-columns: 1fr;
	position: relative;
	text-align: center;
}
@media (min-width: 36em) {
	.jj-stats__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: var(--sp-6);
	}
}
@media (min-width: 64em) {
	.jj-stats__grid { gap: var(--sp-12); }
}

.jj-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--sp-2);
}

.jj-stat__number {
	display: block;
	font-family: var(--jj-font-serif);
	font-size: var(--fs-stat);
	font-weight: 700;
	color: var(--jj-accent-gold);
	letter-spacing: -0.02em;
	line-height: 1;
}

.jj-stat__label {
	display: block;
	font-size: var(--fs-sm);
	color: rgba(255, 255, 255, 0.85);
	max-width: 28ch;
	line-height: 1.4;
}
