:root {
	/* Typography */
	--font-heading: 'Poppins', sans-serif;
	--font-body: 'Mulish', sans-serif;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4 {
	font-family: var(--font-heading);
	font-weight: 600;
	line-height: 1.15;
	margin: 0;
	color: var(--dark-grey);
}

.topper {
	font-family: var(--font-heading);
	font-size: var(--step--1);
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--dark-green);
	margin-bottom: 0.75rem;
}
.topper--light {
	color: var(--light-green);
}

.section > .container > h2 {
	font-size: var(--step-4);
	max-width: 40ch;
}

.section__sub {
	font-size: var(--step-1);
	color: var(--light-grey);
	max-width: 55ch;
	margin-top: 0.9rem;
}

.hero {
	background: #faf9f5;
	padding: clamp(3rem, 2.5rem + 2.5vw, 5.5rem) 1.25rem clamp(3.5rem, 3rem + 3vw, 6rem);
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: start;
}

.eyebrow {
	font-family: var(--font-heading);
	font-size: var(--step--1);
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--light-green);
	margin-bottom: 1rem;
}

.hero h1 {
	font-size: var(--step-6);
	color: var(--dark-grey);
	max-width: 15ch;
}

.hero__sub {
	font-size: var(--step-1);
	color: var(--light-grey);
	margin-top: 1.25rem;
	max-width: 48ch;
}

.hero__proof-list {
	margin-top: 1.75rem;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.hero__proof-list li {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-family: var(--font-heading);
	font-weight: 500;
	font-size: 0.95rem;
	color: var(--dark-grey);
}

.hero__proof-list .check {
	flex-shrink: 0;
	color: var(--light-green);
}

.audit-card {
	position: relative;
	background: white;
	border-radius: var(--radius-lg);
	box-shadow: var(--card-shadow);
	padding: var(--space-m-l);
	overflow: hidden;
	max-width: 480px;
	margin-inline: auto;
}

.audit-card-accent {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: linear-gradient(90deg, var(--dark-green), var(--light-green));
}

.audit-card h2 {
	font-size: clamp(1.35rem, 1.2rem + 0.6vw, 1.6rem);
}

.included {
	background: white;
}

.how {
	background: #faf9f5;
	text-align: center;
}

.how .container > h2 {
	max-width: none;
	margin-inline: auto;
}

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

.how__cta {
	margin-top: clamp(2rem, 1.6rem + 1.6vw, 2.75rem);
}

.results {
	background: var(--dark-grey);
	color: white;
}

.results__inner {
	text-align: center;
}

.results h2 {
	color: white;
	font-size: var(--step-4);
	max-width: 32ch;
	margin-inline: auto;
}

.results__sub {
	color: #c7cccb;
	font-size: var(--step-1);
	max-width: 52ch;
	margin: 1rem auto 0;
}

.results__grid {
	margin-top: clamp(2rem, 1.6rem + 1.6vw, 3rem);
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	max-width: 720px;
	margin-inline: auto;
}

.results__stat {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius);
	padding: 1.75rem 1rem;
}

.results__number {
	display: block;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: clamp(1.75rem, 1.5rem + 1vw, 2.5rem);
	color: var(--light-green);
}

.results__label {
	display: block;
	font-size: 0.85rem;
	color: #c7cccb;
	margin-top: 0.4rem;
}

.results__footnote {
	margin-top: 1.75rem;
	font-size: 0.8rem;
	color: #8b9493;
}

@media (min-width: 640px) {
	.field-row {
		grid-template-columns: 1fr 1fr;
	}

	.included__grid {
		grid-template-columns: 1fr 1fr;
	}

	.how__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 960px) {
	.hero-grid {
		grid-template-columns: 1.05fr 0.95fr;
		gap: 3.5rem;
	}

	.results__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* RESULTS SECTION */

.stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-m-l);
	text-align: center;
}

.stat .num {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: var(--step-5);
	line-height: 1;
	color: var(--light-green);
	letter-spacing: -0.02em;
}

.stat .label {
	margin-top: var(--space-2xs);
	font-size: var(--step--1);
	color: color-mix(in srgb, white 80%, var(--secondary));
}

@media (min-width: 640px) {
	.stats {
		grid-template-columns: repeat(4, 1fr);
	}
}
