/* Higher z-index than the next section (atlas-intro): a later sibling paints
   on top by default and its flat edge would cover this section's rounded
   bottom corner, so we force this section above it instead. */
.progression {
	position: relative;
	z-index: 2;
	background-color: #FFFFFF;
	border-radius: 40px;
	margin-top: -40px;
	padding: 140px 0 100px;
	overflow: hidden;
}

.progression__head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	max-width: 797px;
	margin: 0 auto 64px auto;
	text-align: center;
}

.progression__eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
}

.progression__eyebrow-icon-img {
	display: block;
	width: 32px;
	height: 32px;
}

.progression__eyebrow-text {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.3;
	color: #031527;
	opacity: 0.9;
}

.progression__heading {
	margin: 0;
	font-size: 48px;
	font-weight: 700;
	line-height: 1.1;
	color: #031527;
}

.progression__body {
	display: flex;
	flex-direction: column;
	gap: 32px;
	width: 100%;
}

/* Track: one full-width line + a dot marker above each card. Per the source
   SVG, each dot sits 32px from the column's left edge (matching card
   padding), not centered. */
.progression__track {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	align-items: center;
	gap: 32px;
	height: 20px;
}

.progression__track-line {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	height: 1px;
	background-color: #B8B8B8;
	transform: translateY(-50%);
}

.progression__track-dot {
	position: relative;
	justify-self: start;
	margin-left: 32px;
	display: flex;
	width: 20px;
	height: 20px;
}

.progression__track-dot svg {
	display: block;
	width: 100%;
	height: 100%;
}

.progression__row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	width: 100%;
}

.progression__card {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 32px;
	border-radius: 24px;
	background-color: #F7F7F6;
}

.progression__row .progression__card:nth-child(3) {
	background-color: #E4EBF5;
}

.progression__card-label {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
	color: #0072FF;
}

.progression__card-line {
	display: block;
	width: 100%;
	height: 1px;
	background-color: #B8B8B8;
	opacity: 0.4;
}

.progression__card-text {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.progression__card-title {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	color: #031527;
}

.progression__card-title sup {
	font-size: 0.65em;
}

.progression__card-desc {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	color: rgba(3, 21, 39, 0.75);
}

@media (max-width: 1024px) {
	.progression {
		padding: 92px 0 64px;
	}

	.progression__heading {
		font-size: 42px;
	}

	.progression__track {
		display: none;
	}

	.progression__row {
		position: relative;
		grid-template-columns: 1fr;
		padding-left: 32px;
	}

	.progression__row::before {
		content: "";
		position: absolute;
		top: 6px;
		bottom: 6px;
		left: 9px;
		width: 1px;
		background-color: #B8B8B8;
	}

	.progression__card {
		position: relative;
	}

	.progression__card::before {
		content: "";
		position: absolute;
		top: 32px;
		left: -32px;
		width: 20px;
		height: 20px;
		border-radius: 50%;
		background-color: #FFFFFF;
		border: 5px solid #0072FF;
		box-sizing: border-box;
	}
}

@media (max-width: 767px) {
	.progression {
		margin-top: -24px;
		padding: 64px 0 40px;
		border-radius: 24px;
	}

	.progression__head {
		margin-bottom: 40px;
	}

	.progression__heading {
		font-size: 32px;
	}

	.progression__card {
		padding: 24px;
	}
}
