.step1 {
	position: relative;
	overflow: hidden;
	background: #26364D;
	color: #ffffff;
	padding: clamp(72px, 8vw, 124px) 0 0;
}

.step1__inner {
	position: relative;
	width: min(100%, var(--width));
	margin: 0 auto;
	padding: 0 var(--frame-padding-inline);
	box-sizing: border-box;
	z-index: 1;
}

.step1__top {
	display: grid;
	grid-template-columns: minmax(320px, 0.92fr) minmax(420px, 1.08fr);
	gap: clamp(30px, 3vw, 52px);
	align-items: start;
	position: relative;
	padding-bottom: clamp(52px, 6vw, 84px);
}

.step1__top::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: calc(46% + 10px);
	width: 1px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.38) 14%, rgba(255, 255, 255, 0.18) 100%);
	opacity: 0.9;
}

.step1__column {
	position: relative;
	z-index: 1;
}

.step1__heading {
	display: grid;
	align-content: start;
}

.step1__column--left {
	padding-right: clamp(28px, 4vw, 70px);
	display: grid;
	align-content: start;
}

.step1__column--right {
	padding-left: clamp(28px, 4vw, 70px);
}

.step1__number {
	margin: 0 0 8px;
	font-family: var(--font-family-display);
	font-size: 32px;
	font-weight: 400;
	line-height: 1;
	color: rgba(255, 255, 255, 0.6);
}

.step1__title {
	margin: 0;
	max-width: 6.5ch;
	font-family: var(--font-family-display);
	font-size: clamp(40px, 4.3vw, 55px);
	font-weight: 400;
	line-height: 0.95;
	text-transform: uppercase;
	letter-spacing: -0.04em;
	color: #ffffff;
}

.step1__media-stack {
	position: relative;
	margin-top: clamp(32px, 4vw, 58px);
	width: clamp(300px, 42vw, 540px);
	max-width: 100%;
	aspect-ratio: 0.72;
	margin-left: auto;
	padding-bottom: 0;
}

.step1__media {
	position: relative;
	overflow: visible;
	border: 0;
	box-shadow: 0 18px 36px rgba(18, 30, 46, 0.18);
	background: transparent;
	backdrop-filter: none;
}

.step1__media::after {
	content: '';
	position: absolute;
	inset: calc(var(--hero-button-outer-border-offset) * -1);
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: calc(var(--media-corner-radius) + var(--hero-button-outer-border-offset));
	pointer-events: none;
	z-index: 1;
}

.step1__media--primary {
	position: absolute;
	top: 0;
	right: 0;
	width: 66.6667%;
	height: 66.6667%;
	z-index: 2;
}

.step1__media--secondary {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 66.6667%;
	height: 66.6667%;
	z-index: 1;
}

.step1__media-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--media-corner-radius);
}

.step1__intro {
	max-width: 720px;
	font-family: var(--font-family-body-accent);
	font-size: clamp(20px, 2vw, 25px);
	font-weight: 400;
	line-height: 1.32;
	color: rgba(255, 255, 255, 0.92);
}

.step1__intro p,
.step1__tile-description p {
	margin: 0;
}

.step1__tiles {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px 30px;
	margin-top: clamp(28px, 3.4vw, 48px);
}

.step1__tile {
	display: grid;
	gap: 14px;
	align-content: start;
	min-height: 100%;
}

.step1__tile-icon {
	width: 80px;
	height: 80px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 10px 22px rgba(11, 18, 28, 0.16);
}

.step1__tile-icon-image {
	max-width: 80px;
	max-height: 80px;
	width: auto;
	height: auto;
	display: block;
	object-fit: contain;
}

.step1__tile-title {
	margin: 0;
	font-family: var(--font-family-display);
	font-size: 23px;
	font-weight: 400;
	line-height: 1.04;
	color: #ffffff;
}

.step1__tile-description {
	font-family: var(--font-family-body-accent);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.38;
	color: rgba(255, 255, 255, 0.78);
}

.step1__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: clamp(28px, 3vw, 40px);
}

.step1__button {
	min-width: 250px;
	min-height: 58px;
}

.step1__map-wrap {
	--step1-map-bottom-fade-height: clamp(72px, 9vw, 124px);
	--step1-map-bottom-fade-offset: clamp(10px, 1.6vw, 20px);
	position: relative;
	margin-top: clamp(-32px, -3vw, -14px);
	isolation: isolate;
}

.step1__map-backdrop,
.step1__map-side-fade,
.step1__map-top-fade,
.step1__map-bottom-fade {
	position: absolute;
	left: 50%;
	width: 100vw;
	transform: translateX(-50%);
	pointer-events: none;
}

.step1__map-backdrop {
	inset: 0 auto 0 50%;
	background: #EBEFF3;
	z-index: 0;
}

.step1__map-side-fade {
	display: none;
}

.step1__map-top-fade {
	top: 0;
	height: clamp(140px, 20vw, 260px);
	background: linear-gradient(180deg, #26364D 0%, rgba(38, 54, 77, 0) 100%);
	z-index: 4;
}

.step1__map-surface {
	position: relative;
	container-type: inline-size;
	--step1-map-point-size: clamp(44px, 8cqw, 80px);
	--step1-map-badge-size: clamp(24px, 4cqw, 40px);
	--step1-map-badge-font-size: clamp(14px, 2.2cqw, 22px);
	--step1-map-investment-width: clamp(108px, 18cqw, 180px);
	--step1-map-investment-height: clamp(138px, 23cqw, 230px);
	aspect-ratio: 768 / 518;
	min-height: 0;
	overflow: hidden;
	background: #EBEFF3;
	z-index: 1;
}

.step1__map-surface::before {
	content: none;
}

.step1__map-image,
.step1__map-image-element {
	width: 100%;
	height: 100%;
}

.step1__map-image {
	position: absolute;
	inset: 0;
	z-index: 1;
	opacity: 0.96;
	filter: saturate(0.86) contrast(0.98);
}

.step1__map-point,
.step1__map-investment {
	position: absolute;
	left: var(--point-x);
	top: var(--point-y);
	z-index: 4;
}

.step1__map-point {
	transform: translate(-50%, -50%);
}

.step1__map-investment {
	transform: translate(-50%, -100%);
}

.step1__map-point-core,
.step1__map-investment-core {
	position: relative;
	width: var(--step1-map-point-size);
	height: var(--step1-map-point-size);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.98);
	border: 2px solid rgba(93, 110, 136, 0.22);
	box-shadow: 0 14px 24px rgba(39, 58, 86, 0.16);
	box-sizing: border-box;
}

.step1__map-investment-core {
	width: var(--step1-map-investment-width);
	height: var(--step1-map-investment-height);
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	overflow: visible;
}

.step1__map-point-icon,
.step1__map-investment-icon {
	width: 100%;
	height: 100%;
	max-width: none;
	max-height: none;
	display: block;
	object-fit: contain;
}

.step1__map-investment-icon {
	width: var(--step1-map-investment-width);
	height: var(--step1-map-investment-height);
}

.step1__map-point-badge {
	position: absolute;
	right: -4px;
	bottom: -4px;
	width: var(--step1-map-badge-size);
	height: var(--step1-map-badge-size);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: #2D3D53;
	color: #ffffff;
	font-family: var(--font-family-body-accent);
	font-size: var(--step1-map-badge-font-size);
	font-weight: 400;
	line-height: 1;
	text-align: center;
	box-shadow: 0 8px 16px rgba(37, 53, 76, 0.22);
	-webkit-text-fill-color: #ffffff;
	z-index: 1;
}

.step1__map-point-badge::before {
	content: attr(data-empty);
	display: none;
}

.step1__map-investment-core::after {
	content: none;
}

.step1__map-image-element {
	display: block;
	object-fit: cover;
	object-position: center;
}

.step1__map-bottom-fade {
	left: 50%;
	bottom: calc(var(--step1-map-bottom-fade-offset) * -1);
	height: calc(var(--step1-map-bottom-fade-height) + var(--step1-map-bottom-fade-offset));
	background: linear-gradient(to top, #EBEFF3 0%, #EBEFF3 24%, #EBEFF3CC 52%, #EBEFF300 100%);
	z-index: 3;
}

@media (max-width: 1219px) {
	.step1__top {
		grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
		grid-template-areas:
			'heading media'
			'intro media'
			'tiles tiles'
			'actions actions';
		column-gap: clamp(28px, 4vw, 48px);
		row-gap: clamp(20px, 3vw, 34px);
		padding-bottom: 56px;
	}

	.step1__top::after {
		content: none;
	}

	.step1__column--left,
	.step1__column--right {
		display: contents;
		padding-left: 0;
		padding-right: 0;
	}

	.step1__heading {
		grid-area: heading;
		margin-bottom: 0;
	}

	.step1__title {
		max-width: 100%;
	}

	.step1__intro {
		grid-area: intro;
		max-width: 100%;
	}

	.step1__media-stack {
		grid-area: media;
		width: min(100%, 480px);
		margin: 0 0 0 auto;
		align-self: start;
	}

	.step1__tiles {
		grid-area: tiles;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-top: 0;
	}

	.step1__actions {
		grid-area: actions;
		margin-top: 0;
	}

	.step1__map-wrap {
		margin-top: 0;
	}
}

@media (max-width: 900px) {
	.step1__media-stack {
		width: min(100%, 480px);
		margin-left: auto;
	}

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

	.step1__map-surface {
		--step1-map-point-size: clamp(40px, 7.2cqw, 64px);
		--step1-map-badge-size: clamp(22px, 3.8cqw, 34px);
		--step1-map-badge-font-size: clamp(12px, 2cqw, 18px);
		--step1-map-investment-width: clamp(92px, 15cqw, 148px);
		--step1-map-investment-height: clamp(118px, 19cqw, 190px);
	}
}

@media (max-width: 767px) {
	.step1__top {
		display: block;
	}

	.step1__column--left {
		display: block;
	}

	.step1__column--right {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 32px;
	}

	.step1__heading,
	.step1__intro,
	.step1__media-stack,
	.step1__tiles,
	.step1__actions {
		grid-area: auto;
	}

	.step1__column--left > * + * {
		margin-top: 24px;
	}

	.step1 {
		padding-top: 72px;
	}

	.step1__number {
		font-size: 24px;
	}

	.step1__title {
		font-size: clamp(34px, 11vw, 46px);
	}

	.step1__media-stack {
		width: min(100%, 330px);
		margin-top: 24px;
		margin-bottom: 28px;
		margin-left: 0;
	}

	.step1__intro {
		font-size: 18px;
		margin: 0;
	}

	.step1__tile-icon {
		width: 68px;
		height: 68px;
	}

	.step1__tile-title {
		font-size: 20px;
	}

	.step1__tile-description {
		font-size: 16px;
	}

	.step1__tiles {
		margin-top: 0;
		gap: 32px;
	}

	.step1__actions {
		margin-top: 0;
		flex-direction: column;
		align-items: stretch;
	}

	.step1__button {
		min-width: 0;
		width: 100%;
	}

	.step1__map-surface {
		--step1-map-point-size: clamp(34px, 9cqw, 52px);
		--step1-map-badge-size: clamp(18px, 4.8cqw, 28px);
		--step1-map-badge-font-size: clamp(11px, 2.8cqw, 16px);
		--step1-map-investment-width: clamp(74px, 18cqw, 112px);
		--step1-map-investment-height: clamp(96px, 23cqw, 144px);
	}

	.step1__map-bottom-fade {
		height: calc(64px + 10px);
	}

	.step1__map-wrap {
		--step1-map-bottom-fade-height: 64px;
		--step1-map-bottom-fade-offset: 10px;
	}
}