	.fw-800 {
		font-weight: 800;
	}

	.fw-700 {
		font-weight: 700;
	}

	.rounded-xl {
		border-radius: 1rem;
	}

	.text-center {
		text-align: center;
	}

	/* ---------- Hero (light split) ---------- */
	.hero-split {
		/* The layout body is a fixed-height flex column; flex-shrink:0 keeps
		   the hero from being squeezed to zero height. */
		flex-shrink: 0;
		border-radius: 1rem;
		padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3.5rem);
		background: radial-gradient(900px 400px at 90% -10%, rgba(245,183,0,0.18), transparent 60%), linear-gradient(180deg, #fffdf6, #fff6df);
		border: 1px solid rgba(0,0,0,0.06);
	}

	.hero-split-grid {
		display: grid;
		grid-template-columns: minmax(220px, 0.85fr) 1.15fr;
		gap: clamp(1.5rem, 4vw, 3.5rem);
		align-items: center;
	}

	.hero-logo-col {
		text-align: center;
	}

	.hero-logo {
		width: 100%;
		max-width: 340px;
		height: auto;
		filter: drop-shadow(0 18px 35px rgba(0,0,0,0.14));
	}

	.hero-eyebrow {
		display: inline-flex;
		align-items: center;
		gap: 0.4rem;
		padding: 0.3rem 0.85rem;
		border: 1px solid rgba(201,148,0,0.5);
		border-radius: 999px;
		background: rgba(245,183,0,0.12);
		color: #8a6500;
		font-size: 0.78rem;
		font-weight: 700;
		letter-spacing: 1px;
		text-transform: uppercase;
	}

	.hero-headline {
		margin: 1rem 0 0;
		font-size: clamp(2.3rem, 5vw, 3.8rem);
		font-weight: 800;
		line-height: 1.08;
		letter-spacing: -0.5px;
		color: #1a1c22;
	}

	.hero-accent {
		color: #d29a00;
	}

	.hero-sub {
		margin-top: 1.1rem;
		max-width: 56ch;
		font-size: 1.1rem;
		line-height: 1.6;
		color: #4a4d57;
	}

	.hero-cta {
		display: flex;
		flex-wrap: wrap;
		gap: 0.8rem;
		margin-top: 1.8rem;
	}

	.hero-stats {
		display: flex;
		flex-wrap: wrap;
		gap: 1rem;
		margin-top: 2.5rem;
	}

	.hero-stat {
		flex: 1;
		min-width: 180px;
		background: #fff;
		border: 1px solid rgba(0,0,0,0.06);
		border-radius: 0.9rem;
		padding: 1.1rem 1.3rem;
		box-shadow: 0 6px 18px rgba(0,0,0,0.05);
	}

	.hero-stat-v {
		font-size: 1.8rem;
		font-weight: 800;
		color: #c99400;
		font-variant-numeric: tabular-nums;
	}

	.hero-stat-l {
		margin-top: 0.2rem;
		font-size: 0.82rem;
		color: #6a6d77;
	}

	/* Screenshot + floating badges (Platform section) */
	.hero-shot-wrap {
		position: relative;
		margin: 1.4rem 0.4rem;
	}

	.hero-shot {
		border-radius: 1rem;
		overflow: hidden;
		box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.08);
		transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
	}

		.hero-shot img {
			display: block;
			width: 100%;
			height: auto;
		}

	.float-badge {
		position: absolute;
		display: flex;
		align-items: center;
		gap: 0.6rem;
		padding: 0.55rem 0.9rem;
		border-radius: 0.8rem;
		background: #ffffff;
		color: #1a1a1a;
		box-shadow: 0 10px 30px rgba(0,0,0,0.35);
		animation: floaty 4.5s ease-in-out infinite;
	}

	.badge-catch {
		top: -16px;
		right: -6px;
	}

	.badge-credit {
		bottom: -16px;
		left: -6px;
		animation-delay: 2.2s;
	}

	.badge-label {
		font-size: 0.7rem;
		text-transform: uppercase;
		letter-spacing: 0.6px;
		opacity: 0.65;
	}

	.badge-value {
		font-size: 1.05rem;
		font-weight: 800;
		line-height: 1.1;
	}

	/* ---------- CTA buttons ---------- */
	.cta-main {
		color: #1a1a1a !important;
		font-weight: 700;
		box-shadow: 0 6px 24px rgba(245,183,0,0.45);
	}

	.cta-ghost {
		color: #ffffff !important;
		border-color: rgba(255,255,255,0.45) !important;
		font-weight: 600;
	}

	/* ---------- Proof band ---------- */
	.proof-band {
		border-radius: 1rem;
		background: linear-gradient(120deg, #f5b700, #ffce2e);
		color: #17181d;
	}

	.proof-flex {
		display: flex;
		align-items: center;
		gap: 2rem;
	}

	.proof-number {
		font-size: clamp(3rem, 6vw, 4.5rem);
		font-weight: 900;
		line-height: 1;
	}

	.proof-text {
		flex: 1;
	}

	.proof-btn {
		background: #17181d !important;
		color: #f5b700 !important;
		font-weight: 700;
		white-space: nowrap;
	}

	/* ---------- Shared cards / sections ---------- */
	.lift-card {
		transition: transform 0.25s ease, box-shadow 0.25s ease;
	}

		.lift-card:hover {
			transform: translateY(-6px);
			box-shadow: 0 14px 30px rgba(0,0,0,0.14);
		}

	.icon-chip {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 56px;
		height: 56px;
		margin: 0 auto;
		border-radius: 50%;
		background: rgba(245,183,0,0.16);
		color: var(--mud-palette-primary);
	}

	.icon-chip-left {
		margin: 0;
	}

	.step-num {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 46px;
		height: 46px;
		margin: 0 auto;
		border-radius: 50%;
		background: #f5b700;
		color: #17181d;
		font-size: 1.25rem;
		font-weight: 800;
		box-shadow: 0 6px 16px rgba(245,183,0,0.4);
	}

	/* ---------- Proven results band ---------- */
	.results-band {
		flex-shrink: 0;
		border-radius: 1rem;
		color: #fff;
		text-align: center;
		background: radial-gradient(900px 420px at 15% -20%, rgba(245,183,0,0.20), transparent 60%), radial-gradient(700px 360px at 90% 120%, rgba(46,125,50,0.18), transparent 60%), linear-gradient(165deg, #15161b, #20222c);
	}

	.results-eyebrow {
		font-size: 0.78rem;
		font-weight: 700;
		letter-spacing: 1.6px;
		text-transform: uppercase;
		color: #ffd84d;
	}

	.results-headline {
		margin: 0.6rem 0 0;
		font-size: clamp(2rem, 4.5vw, 3.2rem);
		font-weight: 800;
		line-height: 1.1;
	}

	.results-gold {
		color: #f5b700;
	}

	.results-sub {
		max-width: 62ch;
		margin: 1rem auto 0;
		font-size: 1.05rem;
		line-height: 1.6;
		color: rgba(255,255,255,0.75);
	}

	.results-grid {
		display: flex;
		flex-wrap: wrap;
		gap: 1.2rem;
		justify-content: center;
		margin-top: 2.5rem;
	}

	.result-card {
		flex: 1;
		min-width: 260px;
		max-width: 400px;
		background: rgba(255,255,255,0.04);
		border: 1px solid rgba(255,255,255,0.10);
		border-radius: 1rem;
		padding: 1.5rem;
	}

	.result-label {
		font-size: 0.8rem;
		text-transform: uppercase;
		letter-spacing: 1px;
		color: rgba(255,255,255,0.6);
	}

	.result-beforeafter {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0.8rem;
		margin-top: 0.6rem;
	}

	.result-before {
		font-size: 1.8rem;
		font-weight: 800;
		color: rgba(255,255,255,0.45);
		text-decoration: line-through;
		text-decoration-color: rgba(229,115,115,0.8);
		font-variant-numeric: tabular-nums;
	}

	.result-after {
		font-size: 2.4rem;
		font-weight: 900;
		color: #f5b700;
		font-variant-numeric: tabular-nums;
	}

	.result-note {
		margin-top: 0.5rem;
		font-size: 0.8rem;
		color: rgba(255,255,255,0.55);
	}

	/* ---------- Final CTA band ---------- */
	.cta-band {
		border-radius: 1rem;
		background: radial-gradient(900px 400px at 50% -20%, rgba(245,183,0,0.25), transparent 60%), linear-gradient(165deg, #15161b, #23252e);
	}

	/* ---------- Animations ---------- */
	.fade-up {
		opacity: 0;
		animation: fadeUp 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
	}

	.delay-1 {
		animation-delay: 0.12s;
	}

	.delay-2 {
		animation-delay: 0.26s;
	}

	.delay-3 {
		animation-delay: 0.42s;
	}

	@keyframes fadeUp {
		from {
			opacity: 0;
			transform: translateY(22px);
		}

		to {
			opacity: 1;
			transform: none;
		}
	}

	@keyframes floaty {
		0%, 100% {
			transform: translateY(0);
		}

		50% {
			transform: translateY(-9px);
		}
	}

	/* ---------- Mobile ---------- */
	@media (max-width: 859px) {
		.hero-split-grid {
			grid-template-columns: 1fr;
			text-align: center;
		}

		.hero-logo {
			max-width: 240px;
		}

		.hero-eyebrow, .hero-cta {
			justify-content: center;
		}

		.hero-sub {
			margin-left: auto;
			margin-right: auto;
		}

		.hero-shot {
			transform: none;
		}

		.float-badge {
			padding: 0.45rem 0.7rem;
		}

		.badge-value {
			font-size: 0.95rem;
		}

		.proof-flex {
			flex-direction: column;
			text-align: center;
			gap: 1rem;
		}
	}

	@media (prefers-reduced-motion: reduce) {
		.fade-up, .float-badge {
			animation: none !important;
			opacity: 1 !important;
		}
	}

/* ============================================================= */
/*   Home page — split hero, verified map, and supporting bits    */
/* ============================================================= */

/* Two-service split hero */
.svc-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid rgba(0,0,0,0.09);
}
.svc-chip {
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 0.35rem 0.7rem;
	border-radius: 999px;
}
.svc-chip.audit { background: #fff3cf; color: #8a6500; }
.svc-chip.map   { background: #e5f3e8; color: #1f6b34; }
.svc-mini {
	margin-top: auto;
	padding-top: 0.9rem;
	border-top: 1px dashed rgba(0,0,0,0.12);
	font-size: 0.8rem;
	font-weight: 700;
	color: #6a6d77;
}
.svc-mini .v { color: #d29a00; font-weight: 800; }
.svc-mini.map .v { color: #2e7d32; }
.svc-rail {
	text-align: center;
	font-size: 0.82rem;
	font-weight: 700;
	color: #6a6d77;
	margin-top: 1.1rem;
}
.svc-rail b { color: #1a1c22; }

/* Verified Project Map section */
.vpm-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #1f6b34;
	margin-bottom: 0.5rem;
}
.vpm-frame {
	border-radius: 1rem;
	overflow: hidden;
	border: 1px solid rgba(0,0,0,0.12);
	box-shadow: 0 20px 45px -25px rgba(0,0,0,0.4);
	background: #fff;
}
.vpm-frame img { display: block; width: 100%; height: auto; }
.vpm-badge {
	position: absolute;
	top: -14px;
	right: -10px;
	width: 74px;
	height: auto;
	filter: drop-shadow(0 8px 18px rgba(0,0,0,0.25));
}
.vpm-benefit .icon-chip {
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.7rem;
	background: #e5f3e8;
	color: #1f6b34;
}
.vpm-pricing {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
	margin-top: 1.6rem;
	background: linear-gradient(120deg, #17181d, #2a2c36);
	color: #fff;
	border-radius: 1rem;
	padding: 1.1rem 1.4rem;
}
.vpm-pricing .tier { font-size: 0.95rem; font-weight: 700; }
.vpm-pricing .tier b { color: #f5b700; }
.vpm-pricing .tier small { display:block; color: rgba(255,255,255,0.6); font-weight: 500; font-size: 0.8rem; margin-top: 2px; }
.vpm-pricing .sp { flex: 1 1 auto; }

/* generic alternating feature visual frame (concept B splits) */
.feat-shot {
	border-radius: 1rem;
	overflow: hidden;
	border: 1px solid rgba(0,0,0,0.12);
	box-shadow: 0 20px 45px -25px rgba(0,0,0,0.4);
}
.feat-shot img { display: block; width: 100%; height: auto; }
