/* Integrono landing - metrics / proof / typography refresh (2026-07-26) */
:root {
	--ir-font-display: 'Outfit', 'Figtree', system-ui, sans-serif;
	--ir-font-body: 'Figtree', system-ui, sans-serif;
	--ir-font-mono: 'IBM Plex Mono', ui-monospace, monospace;
	--ir-night: #0b1220;
	--ir-azure: #1a7fbe;
	--ir-orange: #f97316;
}

body,
.header,
.banner,
.about,
.team,
.contact,
.process-section,
.ai-outcomes-section {
	font-family: var(--ir-font-body) !important;
}

h1, h2, h3, h4, h5,
.hero-founder-name,
.upwork-band-title,
.banner h1,
.team-head h3,
.process-head h3,
.conversion-card h2 {
	font-family: var(--ir-font-display) !important;
	letter-spacing: -0.03em;
}

.hero-founder-metrics--quad {
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.hero-founder-metrics--quad strong {
	font-family: var(--ir-font-mono);
	font-size: 1.12rem !important;
}

.ir-proof-band {
	position: relative;
	overflow: hidden;
}

.ir-proof-band::before {
	content: '';
	position: absolute;
	inset: auto auto -20% -10%;
	width: 420px;
	height: 420px;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(26, 127, 190, 0.14), transparent 68%);
	pointer-events: none;
}

.ir-proof-panel {
	backdrop-filter: blur(6px);
}

.ir-proof-panel .upwork-stat-value {
	font-family: var(--ir-font-mono);
}

.ir-proof-panel .upwork-badge {
	letter-spacing: 0.04em;
	font-size: 0.82rem;
	gap: 0.45rem;
}

.ir-results-kpis {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.85rem;
	margin: 0 auto 1.35rem;
	max-width: 980px;
}

.ir-results-kpi {
	padding: 1rem 1.05rem;
	border-radius: 1rem;
	border: 1px solid rgba(15, 23, 42, 0.08);
	background:
		linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
	text-align: left;
	animation: ir-kpi-rise 0.45s ease both;
}

.ir-results-kpi:nth-child(2) { animation-delay: 0.05s; }
.ir-results-kpi:nth-child(3) { animation-delay: 0.1s; }
.ir-results-kpi:nth-child(4) { animation-delay: 0.15s; }

.ir-results-kpi strong {
	display: block;
	font-family: var(--ir-font-mono);
	font-size: clamp(1.2rem, 2.4vw, 1.55rem);
	font-weight: 700;
	color: var(--ir-night);
	letter-spacing: -0.02em;
	line-height: 1.1;
}

.ir-results-kpi span {
	display: block;
	margin-top: 0.35rem;
	font-size: 0.78rem;
	font-weight: 600;
	line-height: 1.35;
	color: #64748b;
}

.ir-results-badges {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.55rem;
	margin: 0 auto 1.75rem;
	padding: 0;
	max-width: 920px;
	list-style: none;
}

.ir-results-badges li {
	padding: 0.42rem 0.8rem;
	border-radius: 999px;
	border: 1px solid rgba(249, 115, 22, 0.22);
	background: rgba(249, 115, 22, 0.08);
	color: #9a3412;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.01em;
}

@keyframes ir-kpi-rise {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.ir-results-kpi {
		animation: none;
	}
}

@media screen and (max-width: 900px) {
	.ir-results-kpis {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media screen and (max-width: 520px) {
	.ir-results-kpis {
		grid-template-columns: 1fr;
	}
}
