/* ================================================================
   Legacy Platform Hero — layout rebuilt from scratch
   Principle: both columns aligned to bottom via align-items:end +
   a single --lph-bottom padding. No translateY on layout elements.
   ================================================================ */

.legacy-platform-hero {
	position: relative;
	width: 100%;
	color: #eef4ff;
	background: #020617;
	overflow: hidden;
}

.legacy-platform-hero__bg,
.legacy-platform-hero__shade,
.legacy-platform-hero__glow {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.legacy-platform-hero__close {
	position: absolute;
	top: 14px;
	right: 14px;
	display: none;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(8, 16, 34, 0.40);
	color: rgba(236, 243, 255, 0.82);
	font-size: 28px;
	font-weight: 300;
	line-height: 1;
	cursor: pointer;
	z-index: 3;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.legacy-platform-hero__close:hover {
	color: #ffffff;
	background: rgba(8, 16, 34, 0.58);
}

.legacy-platform-hero__bg {
	background-image: url('/assets/hero/market-bg-mobile.png');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	transform: scale(1.01);
}

.legacy-platform-hero__shade {
	background:
		linear-gradient(90deg, rgba(3, 7, 19, 0.92) 0%, rgba(5, 10, 28, 0.78) 34%, rgba(8, 16, 44, 0.28) 68%, rgba(8, 16, 44, 0.06) 100%),
		linear-gradient(180deg, rgba(3, 7, 19, 0.10) 0%, rgba(3, 7, 19, 0.40) 100%);
}

.legacy-platform-hero__glow {
	background:
		radial-gradient(circle at 62% 64%, rgba(139, 157, 255, 0.32), transparent 30%),
		radial-gradient(circle at 34% 12%, rgba(116, 133, 255, 0.14), transparent 26%);
}

/* ── Mobile layout (single column) ── */

.legacy-platform-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 24px;
	padding: 26px 18px 18px;
}

.legacy-platform-hero__copy-stage,
.legacy-platform-hero__media-stage {
	min-width: 0;
}

.legacy-platform-hero__copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
	max-width: 580px;
}

.legacy-platform-hero[data-legacy-title-size="long"] .legacy-platform-hero__copy {
	gap: 12px;
}

.legacy-platform-hero[data-legacy-title-size="xlong"] .legacy-platform-hero__copy {
	gap: 10px;
}

.legacy-platform-hero__badge {
	display: inline-flex;
	align-items: center;
	padding: 8px 14px;
	border-radius: 999px;
	border: 1px solid rgba(199, 213, 255, 0.24);
	background: rgba(10, 18, 48, 0.46);
	color: rgba(236, 243, 255, 0.88);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: 0.01em;
}

.legacy-platform-hero__title {
	margin: 0;
	font-size: clamp(34px, 10.8vw, 54px);
	line-height: 1.02;
	letter-spacing: -0.04em;
	font-weight: 700;
	color: #f4f7ff;
	max-width: 10.5ch;
}

.legacy-platform-hero__title--long {
	font-size: clamp(30px, 8.8vw, 44px);
	line-height: 1.01;
	max-width: 12.4ch;
}

.legacy-platform-hero__title--xlong {
	font-size: clamp(24px, 7.1vw, 34px);
	line-height: 1.01;
	max-width: 15.2ch;
}

.legacy-platform-hero__subtitle {
	margin: 0;
	font-size: clamp(16px, 4.8vw, 21px);
	line-height: 1.36;
	color: rgba(227, 236, 255, 0.88);
	max-width: 30ch;
}

.legacy-platform-hero__meta {
	display: none;
	margin: 0;
	font-size: 13px;
	line-height: 1.42;
	color: rgba(203, 215, 245, 0.70);
	max-width: 38ch;
}

.legacy-platform-hero__footer {
	display: none;
}

.legacy-platform-hero__actions {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
	width: min(100%, 440px);
}

.legacy-platform-hero__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: min(100%, 440px);
	min-height: 60px;
	padding: 0 22px;
	border-radius: 18px;
	border: 1px solid rgba(217, 227, 244, 0.96);
	background: linear-gradient(180deg, #ffffff 0%, #edf3ff 100%);
	color: #171c28;
	text-decoration: none;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 1),
		inset 0 -1px 0 rgba(214, 223, 241, 0.96),
		0 16px 34px rgba(2, 6, 18, 0.42);
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
	-webkit-appearance: none;
	appearance: none;
}

.legacy-platform-hero__cta.is-fallback {
	gap: 0;
}

.legacy-platform-hero__cta:hover {
	transform: translateY(-1px);
	filter: brightness(1.01);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 1),
		inset 0 -1px 0 rgba(214, 223, 241, 0.96),
		0 18px 38px rgba(2, 6, 18, 0.48);
}

.legacy-platform-hero__cta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 23px;
	height: 23px;
}

.legacy-platform-hero__cta-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

.legacy-platform-hero__cta.is-fallback .legacy-platform-hero__cta-icon {
	display: none;
}

.legacy-platform-hero__cta-text {
	display: inline-block;
	font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: clamp(18px, 5.1vw, 24px);
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -0.02em;
	text-align: center;
}

.legacy-platform-hero__media {
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-width: 0;
}

.legacy-platform-hero__media-stage {
	position: relative;
	padding: 0;
	border-radius: 0;
	border: 0;
	background: transparent;
	backdrop-filter: none;
	box-shadow: none;
}

.legacy-platform-hero__media-stage::before {
	display: none;
}

.legacy-platform-hero__media-stage > * {
	position: relative;
	z-index: 1;
}

.legacy-platform-hero__tabs {
	display: flex;
	gap: 8px;
	flex-wrap: nowrap;
	overflow-x: auto;
	overflow-y: visible;
	padding-top: 4px;
	padding-bottom: 4px;
	margin-top: -4px;
	position: relative;
	z-index: 2;
	scrollbar-width: none;
}

.legacy-platform-hero__tabs::-webkit-scrollbar {
	display: none;
}

.legacy-platform-hero__tab {
	flex: 0 0 auto;
	position: relative;
	padding: 10px 14px;
	border: 1px solid rgba(192, 206, 241, 0.18);
	border-radius: 999px;
	background: rgba(8, 14, 36, 0.32);
	color: rgba(224, 232, 248, 0.76);
	font-size: 13px;
	font-weight: 500;
	line-height: 1;
	transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.legacy-platform-hero__tab:hover,
.legacy-platform-hero__tab:focus-visible {
	color: #ffffff;
	border-color: rgba(208, 221, 255, 0.34);
	background: rgba(20, 30, 70, 0.42);
	transform: translateY(-1px);
	outline: none;
}

.legacy-platform-hero__tab.is-active {
	color: #ffffff;
	background: rgba(121, 137, 255, 0.22);
	border-color: rgba(204, 216, 255, 0.42);
	box-shadow: 0 10px 26px rgba(41, 58, 132, 0.22);
}

.legacy-platform-hero__cards {
	display: none;
}

.legacy-platform-hero__rail {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	padding: 0 0 6px;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.legacy-platform-hero__rail::-webkit-scrollbar {
	display: none;
}

.legacy-platform-hero__card {
	position: relative;
	flex: 0 0 min(100%, 380px);
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 10px;
	border-radius: 22px;
	border: 1px solid rgba(201, 214, 245, 0.10);
	background: linear-gradient(180deg, rgba(10, 15, 34, 0.34) 0%, rgba(7, 11, 25, 0.26) 100%);
	backdrop-filter: blur(16px);
	box-shadow: 0 16px 34px rgba(2, 8, 24, 0.22);
	text-decoration: none;
	color: inherit;
	scroll-snap-align: start;
	transform: translateY(0);
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.legacy-platform-hero__card:hover,
.legacy-platform-hero__card:focus-visible {
	transform: translateY(-3px);
	border-color: rgba(214, 226, 255, 0.20);
	box-shadow: 0 18px 38px rgba(3, 10, 28, 0.28);
	outline: none;
}

.legacy-platform-hero__card.is-active {
	border-color: rgba(220, 231, 255, 0.18);
	background: linear-gradient(180deg, rgba(20, 28, 64, 0.36) 0%, rgba(10, 16, 36, 0.24) 100%);
	box-shadow: 0 18px 40px rgba(12, 20, 58, 0.24);
}

.legacy-platform-hero__card-frame {
	display: block;
	width: 100%;
	aspect-ratio: 1.5 / 1;
	border-radius: 16px;
	overflow: hidden;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.05),
		0 10px 24px rgba(1, 6, 20, 0.18);
}

.legacy-platform-hero__card-frame picture {
	display: block;
	width: 100%;
	height: 100%;
}

.legacy-platform-hero__card-frame img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center center;
	transform: scale(1.06);
	transform-origin: center center;
}

.legacy-platform-hero__rail .legacy-platform-hero__card-frame img,
.legacy-platform-hero--popup .legacy-platform-hero__card-frame img {
	transform: scale(1.08);
	transform-origin: center center;
}

.legacy-platform-hero__card-arrow {
	display: none;
}

/* ── Static banner modifier ── */

.legacy-platform-hero--static {
	margin-top: 28px;
	border-radius: 0;
}

.legacy-platform-hero--static .legacy-platform-hero__inner {
	padding-bottom: 22px;
}

/* ── Popup modifier (mobile) ── */

@media (max-width: 991.98px) {
	#modal-start .legacy-platform-hero--popup {
		min-height: min(74vh, 820px);
		max-height: min(74vh, 820px);
		border-radius: 0;
	}

	#modal-start .legacy-platform-hero--popup[data-legacy-title-size="long"] {
		min-height: min(80vh, 840px);
		max-height: min(80vh, 840px);
	}

	#modal-start .legacy-platform-hero--popup[data-legacy-title-size="xlong"] {
		min-height: min(86vh, 880px);
		max-height: min(86vh, 880px);
	}

	#modal-start .legacy-platform-hero--popup .legacy-platform-hero__inner {
		height: 100%;
		min-height: 0;
		align-content: center;
		padding: 32px 18px 18px;
	}

	#modal-start .legacy-platform-hero--popup .legacy-platform-hero__media {
		min-height: 0;
	}

	#modal-start .legacy-platform-hero--popup .legacy-platform-hero__rail {
		padding-bottom: 2px;
	}

	#modal-start .legacy-platform-hero--popup .close__modal__start {
		position: absolute;
		top: calc(12px + env(safe-area-inset-top, 0px));
		right: max(14px, env(safe-area-inset-right, 0px));
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 38px;
		height: 38px;
		padding: 0;
		line-height: 1;
		font-size: 36px;
		font-weight: 300;
		color: rgba(236, 243, 255, 0.86);
		background: rgba(8, 16, 34, 0.38);
		border-radius: 999px;
		z-index: 4;
	}

	#modal-start .legacy-platform-hero--popup .close__modal__start:hover {
		color: #ffffff;
		background: rgba(8, 16, 34, 0.58);
	}
}

.legacy-platform-hero--popup .legacy-platform-hero__inner {
	align-content: start;
	gap: 16px;
	padding: 20px 16px 12px;
}

.legacy-platform-hero--popup .legacy-platform-hero__media-stage {
	padding: 0;
	border-radius: 0;
}

.legacy-platform-hero--popup .legacy-platform-hero__copy {
	gap: 10px;
}

.legacy-platform-hero--popup .legacy-platform-hero__badge {
	padding: 6px 12px;
	font-size: 11px;
}

.legacy-platform-hero--popup .legacy-platform-hero__title {
	font-size: clamp(26px, 8.8vw, 38px);
	line-height: 0.98;
	max-width: 10.8ch;
}

.legacy-platform-hero--popup .legacy-platform-hero__title--long {
	font-size: clamp(23px, 6.6vw, 31px);
	line-height: 1;
	max-width: 13.5ch;
}

.legacy-platform-hero--popup .legacy-platform-hero__title--xlong {
	font-size: clamp(19px, 5.7vw, 26px);
	line-height: 1.01;
	max-width: 15.8ch;
}

.legacy-platform-hero--popup .legacy-platform-hero__subtitle {
	font-size: 14px;
	line-height: 1.28;
	max-width: 29ch;
}

.legacy-platform-hero--popup .legacy-platform-hero__meta {
	font-size: 12px;
}

.legacy-platform-hero--popup .legacy-platform-hero__actions {
	gap: 0;
	width: 100%;
}

.legacy-platform-hero--popup .legacy-platform-hero__cta {
	min-height: 54px;
	border-radius: 16px;
	padding-inline: 18px;
}

.legacy-platform-hero--popup .legacy-platform-hero__cta-text {
	font-size: 16px;
}

.legacy-platform-hero--popup .legacy-platform-hero__tabs {
	gap: 6px;
}

.legacy-platform-hero--popup .legacy-platform-hero__tab {
	padding: 9px 12px;
	font-size: 12px;
}

.legacy-platform-hero--popup .legacy-platform-hero__card {
	flex-basis: min(100%, 360px);
	padding: 10px;
}

.legacy-platform-hero--popup .legacy-platform-hero__card-frame {
	aspect-ratio: 1.54 / 1;
}

.legacy-platform-hero--popup[data-legacy-title-size="long"] .legacy-platform-hero__inner {
	gap: 12px;
	padding: 28px 18px 14px;
}

.legacy-platform-hero--popup[data-legacy-title-size="long"] .legacy-platform-hero__media {
	gap: 10px;
}

.legacy-platform-hero--popup[data-legacy-title-size="long"] .legacy-platform-hero__card {
	padding: 9px;
}

.legacy-platform-hero--popup[data-legacy-title-size="long"] .legacy-platform-hero__card-frame {
	aspect-ratio: 1.78 / 1;
}

.legacy-platform-hero--popup[data-legacy-title-size="xlong"] .legacy-platform-hero__inner {
	gap: 10px;
	padding: 24px 16px 10px;
}

.legacy-platform-hero--popup[data-legacy-title-size="xlong"] .legacy-platform-hero__subtitle {
	font-size: 13px;
	max-width: 31ch;
}

.legacy-platform-hero--popup[data-legacy-title-size="xlong"] .legacy-platform-hero__cta {
	min-height: 50px;
}

.legacy-platform-hero--popup[data-legacy-title-size="xlong"] .legacy-platform-hero__cta-text {
	font-size: 15px;
}

.legacy-platform-hero--popup[data-legacy-title-size="xlong"] .legacy-platform-hero__media {
	gap: 8px;
}

.legacy-platform-hero--popup[data-legacy-title-size="xlong"] .legacy-platform-hero__tab {
	padding: 8px 10px;
	font-size: 11px;
}

.legacy-platform-hero--popup[data-legacy-title-size="xlong"] .legacy-platform-hero__card {
	padding: 8px;
}

.legacy-platform-hero--popup[data-legacy-title-size="xlong"] .legacy-platform-hero__card-frame {
	aspect-ratio: 1.92 / 1;
}

/* ================================================================
   Desktop layout (≥ 992px)

   Core principle:
   - 2-column grid, align-items: end — both columns share a common
     bottom baseline.
   - --lph-bottom padding on __inner sets the single "horizon offset":
     how far above the banner's bottom edge the content sits.
   - No translateY on layout containers.
   - No compensatory padding-bottom on __media.
   ================================================================ */

@media (min-width: 992px) {
		.legacy-platform-hero {
			--lph-side:   clamp(36px, 4vw, 54px);
			--lph-top:    clamp(34px, 3.6vw, 46px);
			--lph-bottom: clamp(18px, 2.2vh, 28px);
			--lph-stage-top: clamp(14px, 1.8vw, 20px);
			--lph-stage-side: clamp(14px, 1.8vw, 20px);
			--lph-stage-bottom: clamp(16px, 2vw, 24px);
		}

	.legacy-platform-hero__bg {
		background-image: url('/assets/hero/market-bg-desktop.png');
		background-position: center center;
	}

	/* ── Inner grid ──
	 * align-content: end   → row sits at the bottom of the hero area
	 * align-items: end     → both columns bottom-aligned to each other
	 * --lph-bottom         → single value controlling "height above horizon"
	 * No transform.
	 */
		.legacy-platform-hero__inner {
			position: relative;
			min-height: 100%;
			grid-template-columns: minmax(320px, 0.84fr) minmax(640px, 1.24fr);
			align-items: center;
			align-content: center;
			gap: clamp(34px, 4vw, 54px);
			padding:
				var(--lph-top)
				var(--lph-side)
				var(--lph-bottom);
		}

		.legacy-platform-hero--static {
			display: grid;
			grid-template-rows: minmax(0, 1fr) auto;
			min-height: clamp(560px, 62vh, 740px);
		}

		.legacy-platform-hero--static .legacy-platform-hero__inner {
			min-height: 0;
			grid-template-areas: "copy media";
			padding-bottom: clamp(18px, 2.2vh, 28px);
		}

		.legacy-platform-hero__copy-stage {
			display: flex;
			align-items: center;
			min-height: 0;
			grid-area: copy;
		}

		.legacy-platform-hero__media-stage {
			align-self: center;
			grid-area: media;
			justify-self: end;
			max-width: min(100%, 840px);
		padding: 0;
		border-radius: 0;
		border: 0;
		background: transparent;
		backdrop-filter: none;
		box-shadow: none;
	}

	.legacy-platform-hero__media-stage::before {
		display: none;
	}

		.legacy-platform-hero__copy {
			gap: 14px;
			align-self: center;
			padding-bottom: 0;
			max-width: min(31vw, 460px);
		}

	.legacy-platform-hero__badge {
		padding: 10px 16px;
		font-size: 13px;
	}

		.legacy-platform-hero__title {
			font-size: clamp(36px, 3.9vw, 60px);
			line-height: 1;
			max-width: 9.4ch;
		}

		.legacy-platform-hero__title--long {
			font-size: clamp(32px, 3.35vw, 52px);
			max-width: 10.6ch;
		}

		.legacy-platform-hero__title--xlong {
			font-size: clamp(28px, 2.85vw, 44px);
			max-width: 11.8ch;
		}

	.legacy-platform-hero__subtitle {
		font-size: clamp(17px, 1.45vw, 22px);
		max-width: 31ch;
	}

	.legacy-platform-hero__meta {
		display: block;
		font-size: clamp(16px, 1.15vw, 18px);
		line-height: 1.34;
		max-width: min(60vw, 980px);
		text-align: left;
		pointer-events: none;
		color: rgba(214, 224, 247, 0.72);
	}

	.legacy-platform-hero__inner .legacy-platform-hero__meta {
		display: none;
	}

	.legacy-platform-hero__footer .legacy-platform-hero__meta {
		display: block;
	}

	.legacy-platform-hero__actions {
		gap: 12px;
	}

	.legacy-platform-hero__cta {
		min-height: 64px;
		border-radius: 20px;
		padding-inline: 24px;
	}

	.legacy-platform-hero__cta-text {
		font-size: clamp(19px, 1.8vw, 28px);
	}

	.legacy-platform-hero__tabs {
		justify-content: flex-end;
		gap: 12px;
		padding-top: 6px;
		padding-bottom: 12px;
		margin-top: -6px;
	}

	/* Right column — tabs + card grid.
	 * No padding-bottom: the parent --lph-bottom handles horizon offset.
	 */
	.legacy-platform-hero__media {
		display: grid;
		grid-template-rows: auto auto;
		align-self: end;
		align-content: end;
		gap: 24px;
	}

	.legacy-platform-hero__tab {
		padding: 12px 17px;
		font-size: 14px;
	}

	.legacy-platform-hero__cards {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 22px;
	}

	.legacy-platform-hero__rail {
		display: none;
	}

	.legacy-platform-hero__card {
		flex: none;
		padding: 16px;
		min-height: 0;
		border-radius: 26px;
		transform-origin: center center;
	}

	.legacy-platform-hero__cards .legacy-platform-hero__card:hover,
	.legacy-platform-hero__cards .legacy-platform-hero__card:focus-visible,
	.legacy-platform-hero__cards .legacy-platform-hero__card.is-active {
		transform: translateY(-4px) scale(1.045);
		z-index: 2;
	}

	.legacy-platform-hero__card-frame {
		aspect-ratio: 1.68 / 1;
		border-radius: 20px;
	}

	.legacy-platform-hero__cards .legacy-platform-hero__card-frame img {
		transform: scale(1.15);
	}

	.legacy-platform-hero__card-copy {
		display: none;
	}

	/* ── Static banner ── */

	.legacy-platform-hero--static {
		min-height: clamp(560px, 62vh, 740px);
	}

		.legacy-platform-hero--static .legacy-platform-hero__footer {
			position: relative;
			z-index: 1;
			display: block;
		padding:
			0
			var(--lph-side)
			clamp(22px, 2.6vh, 30px);
	}

	/* ── Popup banner ──
	 * Same clean structure. No translateY.
	 */

		.legacy-platform-hero--popup {
			display: grid;
			grid-template-rows: minmax(0, 1fr) auto;
			min-height: min(80vh, 860px);
			max-height: min(80vh, 860px);
	}

		#modal-start .legacy-platform-hero--popup .legacy-platform-hero__inner {
			padding:
				var(--lph-top)
				var(--lph-side)
				clamp(34px, 3.8vh, 46px);
		}

		.legacy-platform-hero--popup .legacy-platform-hero__inner {
			position: relative;
			min-height: 0;
			grid-template-areas: "copy media";
			gap: 30px;
			align-content: center;
		}

	.legacy-platform-hero--popup .legacy-platform-hero__footer {
		position: relative;
		z-index: 1;
		display: block;
		padding:
			0
			var(--lph-side)
			clamp(26px, 3vh, 34px);
	}

	.legacy-platform-hero--popup .legacy-platform-hero__media-stage {
		max-width: min(100%, 816px);
	}

		.legacy-platform-hero--popup .legacy-platform-hero__copy {
			gap: 14px;
			align-self: center;
			padding-bottom: 0;
		}

	.legacy-platform-hero--popup .legacy-platform-hero__badge {
		padding: 10px 16px;
		font-size: 13px;
	}

		.legacy-platform-hero--popup .legacy-platform-hero__title {
			font-size: clamp(36px, 3.9vw, 60px);
			line-height: 1;
			max-width: 9.4ch;
		}

		.legacy-platform-hero--popup .legacy-platform-hero__title--long {
			font-size: clamp(32px, 3.35vw, 52px);
			max-width: 10.6ch;
		}

		.legacy-platform-hero--popup .legacy-platform-hero__title--xlong {
			font-size: clamp(28px, 2.85vw, 44px);
			max-width: 11.8ch;
		}

	.legacy-platform-hero--popup .legacy-platform-hero__subtitle {
		font-size: clamp(17px, 1.45vw, 22px);
		line-height: 1.36;
		max-width: 31ch;
	}

	.legacy-platform-hero--popup .legacy-platform-hero__inner .legacy-platform-hero__meta {
		display: none;
	}

	.legacy-platform-hero--popup .legacy-platform-hero__footer .legacy-platform-hero__meta {
		display: block;
		font-size: clamp(16px, 1.15vw, 18px);
		line-height: 1.34;
		max-width: min(60vw, 980px);
		color: rgba(214, 224, 247, 0.72);
	}

	.legacy-platform-hero--popup .legacy-platform-hero__cta {
		min-height: 64px;
		border-radius: 20px;
		padding-inline: 24px;
	}

	.legacy-platform-hero--popup .legacy-platform-hero__cta-text {
		font-size: clamp(19px, 1.8vw, 28px);
	}

	.legacy-platform-hero--popup .legacy-platform-hero__tab {
		padding: 11px 15px;
		font-size: 14px;
	}

		.legacy-platform-hero--popup .legacy-platform-hero__media {
			display: grid;
			grid-template-rows: auto auto;
			align-self: center;
			align-content: center;
			gap: 18px;
		}

	.legacy-platform-hero--popup .legacy-platform-hero__card {
		flex-basis: auto;
		padding: 14px;
	}

	.legacy-platform-hero--popup .legacy-platform-hero__card-frame {
		aspect-ratio: 1.54 / 1;
	}
}
