/* Results and social proof — testimonial plus metric tiles */
.proof {
	background: var(--grey-light);
}
.proof-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 40px;
	margin-top: 52px;
	align-items: stretch;
}
.testi {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 18px;
	padding: 38px;
	display: flex;
	flex-direction: column;
	box-shadow:
		0 2px 4px rgba(20, 40, 30, 0.04),
		0 22px 50px -30px rgba(20, 50, 35, 0.22);
}
.testi .quote {
	font-size: 22px;
	line-height: 1.5;
	font-weight: 600;
	letter-spacing: -0.01em;
	color: var(--grey-70);
	text-wrap: pretty;
}
.testi .quote::before {
	content: "“";
	color: var(--green-30);
	font-size: 40px;
	line-height: 0;
	vertical-align: -8px;
	margin-right: 4px;
}
.testi .who {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: auto;
	padding-top: 30px;
}
.testi .head {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	flex: 0 0 auto;
	overflow: hidden;
	border: 1px solid var(--border);
	background: repeating-linear-gradient(135deg, var(--green-10) 0 8px, var(--green-surface) 8px 16px);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--green-40);
	font-family: "IBM Plex Mono", monospace;
	font-size: 9px;
	text-align: center;
	line-height: 1.1;
}
.testi .who .nm {
	font-size: 15px;
	font-weight: 700;
	color: var(--grey-70);
}
.testi .who .rl {
	font-size: 13px;
	color: var(--grey-50);
	margin-top: 2px;
}
.testi .clogo {
	margin-left: auto;
	font-family: "IBM Plex Mono", monospace;
	font-weight: 600;
	font-size: 13px;
	color: var(--green);
	border: 1px solid var(--green-20);
	background: var(--green-10);
	border-radius: 8px;
	padding: 6px 11px;
	letter-spacing: 0.02em;
}
.metrics {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.metric {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 28px 26px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.metric .mv {
	font-size: clamp(38px, 4vw, 52px);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--green);
	line-height: 1;
}
.metric .mk {
	font-size: 14px;
	font-weight: 500;
	color: var(--grey-60);
	margin-top: 12px;
	line-height: 1.4;
}
.metric.wide {
	grid-column: 1/-1;
}
.metric.wide .mv {
	font-size: clamp(26px, 2.6vw, 32px);
}

/* Scroll reveal — metrics fade up as the section enters (see js/reveal.js). */
.metric {
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 0.5s ease,
		transform 0.5s ease;
}
.metric.in-view {
	opacity: 1;
	transform: translateY(0);
}
