.hero-standard-block {
	--hero-standard-min-height: min(72vh, 820px);
	--hero-standard-slant-size: 12.4px;
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 1px;
	min-height: var(--hero-standard-min-height);
	background: #ffffff;
	border-bottom: 1px solid #ffffff;
	font-family: "Charis SIL", serif;
	color: #fff;
	overflow-x: clip;
}

.hero-standard-block__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: calc(var(--header-height, 92px) + 48px) clamp(24px, 5vw, 72px) 24px var(--site-gutter, 24px);
	background: #ffffff;
	color: #20406d;
	clip-path: polygon(
		0 0,
		100% 0,
		100% calc(100% - var(--hero-standard-slant-size)),
		calc(100% - var(--hero-standard-slant-size)) 100%,
		0 100%
	);
}

.hero-standard-block__content--dark {
	background: #20406d;
	color: #ffffff;
}

.hero-standard-block__media {
	background-color: #1b1b1b;
	clip-path: polygon(
		0 0,
		100% 0,
		100% 100%,
		var(--hero-standard-slant-size) 100%,
		0 calc(100% - var(--hero-standard-slant-size))
	);
	overflow: hidden;
}

.hero-standard-block__media--content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: calc(var(--header-height, 92px) + 48px) clamp(24px, 5vw, 72px) 24px clamp(24px, 5vw, 72px);
	background: #f5f7fa;
	color: #20406d;
}

.hero-standard-block__media--visualizer {
	background: #f3f0eb;
}

.hero-standard-block__comparison {
	--hero-standard-split: 50%;
	position: relative;
	height: 100%;
	min-height: min(72vh, 820px);
	overflow: hidden;
	background: #d9d3cb;
	touch-action: none;
	user-select: none;
}

.hero-standard-block__comparison-image,
.hero-standard-block__comparison-overlay {
	position: absolute;
	inset: 0;
}

.hero-standard-block__comparison-image {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.hero-standard-block__comparison-overlay {
	overflow: hidden;
	clip-path: inset(0 calc(100% - var(--hero-standard-split)) 0 0);
}

.hero-standard-block__comparison-line,
.hero-standard-block__comparison-handle {
	position: absolute;
	top: 0;
	left: var(--hero-standard-split);
	transform: translateX(-50%);
	z-index: 3;
}

.hero-standard-block__comparison-line {
	bottom: 0;
	width: 2px;
	background: rgba(255, 255, 255, 0.85);
	box-shadow: 0 0 0 1px rgba(32, 64, 109, 0.1);
}

.hero-standard-block__comparison-handle {
	top: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 999px;
	background: #ffffff;
	box-shadow: 0 18px 40px rgba(32, 64, 109, 0.18);
}

.hero-standard-block__comparison-handle-grip {
	position: relative;
	width: 18px;
	height: 18px;
}

.hero-standard-block__comparison-handle-grip::before,
.hero-standard-block__comparison-handle-grip::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 7px;
	height: 7px;
	border-top: 2px solid #20406d;
	border-right: 2px solid #20406d;
	transform-origin: center;
}

.hero-standard-block__comparison-handle-grip::before {
	left: 0;
	transform: translateY(-50%) rotate(225deg);
}

.hero-standard-block__comparison-handle-grip::after {
	right: 0;
	transform: translateY(-50%) rotate(45deg);
}

.hero-standard-block__comparison-label {
	position: absolute;
	top: 18px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 12px;
	background: rgba(32, 64, 109, 0.82);
	color: #ffffff;
	font-family: "IBM Plex Mono", monospace;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hero-standard-block__comparison-label--before {
	left: 18px;
}

.hero-standard-block__comparison-label--after {
	right: 18px;
}

.hero-standard-block__comparison-range {
	position: absolute;
	inset: 0;
	z-index: 4;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: ew-resize;
	-webkit-appearance: none;
	appearance: none;
}

.hero-standard-block__media--stacked {
	display: grid;
	grid-template-rows: 1fr 1fr;
}

.hero-standard-block__media-image {
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.hero-standard-block__heading {
	margin: 0 0 24px;
	font-size: clamp(2.05275rem, 4.78975vw, 4.2765625rem);
	font-weight: 700;
	line-height: 0.95;
	letter-spacing: -0.04em;
	max-width: 95%;
	color: #20406d;
}

.hero-standard-block__eyebrow {
	margin: 0 0 16px;
	font-family: "IBM Plex Mono", monospace;
	font-size: 0.9rem;
	font-weight: 400;
	letter-spacing: 0.035em;
	text-transform: uppercase;
	color: #ff0000;
}

.hero-standard-block__subtext,
.hero-standard-block__subtext p {
	margin: 0;
}

.hero-standard-block__subtext {
	font-family: "Manrope", sans-serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.56;
	color: #42576e;
}

.hero-standard-block__subtext p + p {
	margin-top: 1em;
}

.hero-standard-block__content--dark .hero-standard-block__heading {
	color: #ffffff;
}

.hero-standard-block__content--dark .hero-standard-block__subtext {
	color: rgba(255, 255, 255, 0.82);
}

.hero-standard-block__mobile-cta-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 20px;
}

.hero-standard-block__icon-items {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
}

.hero-standard-block__icon-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.hero-standard-block__icon-item-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.hero-standard-block__icon-item-icon img {
	display: block;
	width: auto;
	max-width: 20px;
	max-height: 20px;
}

.hero-standard-block__icon-item-text {
	font-family: "Manrope", sans-serif;
	font-size: 0.98rem;
	font-weight: 500;
	line-height: 1.45;
	color: #42576e;
}

.hero-standard-block__mobile-cta,
.hero-standard-block__mobile-cta:hover,
.hero-standard-block__mobile-cta:focus {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 46px;
	padding: 0 18px;
	text-decoration: none;
	font-family: "IBM Plex Mono", monospace;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	white-space: nowrap;
}

.hero-standard-block__mobile-cta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.hero-standard-block__mobile-cta-icon img {
	display: block;
	width: 14px;
	height: 14px;
}

.hero-standard-block__mobile-cta--primary .hero-standard-block__mobile-cta-icon img {
	filter: brightness(0) invert(1);
}

.hero-standard-block__mobile-cta--primary {
	border: 1px solid #ff0000;
	background: #ff0000;
	color: #ffffff;
}

.hero-standard-block__mobile-cta--primary:hover,
.hero-standard-block__mobile-cta--primary:focus,
.hero-standard-block__mobile-cta--primary:active {
	background: #ff0000;
	color: #ffffff;
}

.hero-standard-block__mobile-cta--secondary {
	border: 1px solid rgba(32, 64, 109, 0.24);
	background: transparent;
	color: #20406d;
}

.hero-standard-block__content--dark .hero-standard-block__mobile-cta--secondary {
	border-color: rgba(255, 255, 255, 0.28);
	color: #ffffff;
}

.hero-standard-block__content--dark .hero-standard-block__icon-item-text {
	color: rgba(255, 255, 255, 0.84);
}

@media (max-width: 1024px) and (min-width: 901px) {
	.hero-standard-block {
		min-height: min(62vh, 700px);
	}

	.hero-standard-block__content {
		padding: calc(var(--header-height, 92px) + 30px) clamp(20px, 2.6vw, 30px) 20px var(--site-gutter, 24px);
	}

	.hero-standard-block__heading {
		font-size: clamp(3.105rem, 5.535vw, 4.6575rem);
		max-width: 92%;
	}

	.hero-standard-block__subtext {
	}

	.hero-standard-block__comparison {
		min-height: min(62vh, 700px);
	}

	.hero-standard-block__media--content {
		padding: calc(var(--header-height, 92px) + 30px) clamp(20px, 2.6vw, 30px) 20px clamp(20px, 2.6vw, 30px);
	}
}

@media (max-width: 900px) {
	.hero-standard-block {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.hero-standard-block__content {
		position: relative;
		z-index: 2;
		justify-content: flex-end;
		padding: calc(var(--header-height, 92px) + 28px) clamp(24px, 6vw, 56px) 32px var(--site-gutter, 24px);
		clip-path: polygon(
			0 0,
			100% 0,
			100% calc(100% - var(--hero-standard-slant-size)),
			calc(100% - var(--hero-standard-slant-size)) 100%,
			var(--hero-standard-slant-size) 100%,
			0 calc(100% - var(--hero-standard-slant-size))
		);
		margin-bottom: -20px;
	}

	.hero-standard-block__media {
		min-height: clamp(300px, 42vh, 520px);
		clip-path: none;
	}

	.hero-standard-block__media--content {
		min-height: 0;
		padding: 40px clamp(24px, 6vw, 56px) 32px var(--site-gutter, 24px);
	}

	.hero-standard-block__comparison {
		min-height: clamp(300px, 42vh, 520px);
	}
}

@media (max-width: 768px) {
	.hero-standard-block__content {
		padding: calc(var(--header-height, 92px) + 24px) 24px 28px;
	}

	.hero-standard-block__heading {
		max-width: 100%;
		font-size: clamp(2.668575rem, 6.226675vw, 5.55953125rem);
	}

	.hero-standard-block__subtext {
		max-width: 100%;
		font-size: 1.1rem;
	}

	.hero-standard-block__media {
		min-height: 280px;
	}

	.hero-standard-block__media--content {
		padding: 36px 24px 28px;
	}

	.hero-standard-block__comparison {
		min-height: 280px;
	}

	.hero-standard-block__mobile-cta-row {
		flex-wrap: wrap;
	}
}
