.hero {
	position: relative;
	overflow: hidden;
	background: #26364D;
	min-height: var(--hero-min-height);
	padding: 0;
	width: 100%;
}

.hero__scene {
	position: relative;
	min-height: var(--hero-min-height);
	width: 100%;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(38, 54, 77, 0) 0%, rgba(38, 54, 77, 0.08) 23%, rgba(38, 54, 77, 0.32) 39%, rgba(38, 54, 77, 0.72) 59%, #26364D 100%);
	z-index: 4;
	pointer-events: none;
}

.hero__layer {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	line-height: 0;
	will-change: transform;
}

.hero__layer--building {
	z-index: 2;
	animation: none;
}

.hero__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero__layer--building .hero__image {
	object-position: center bottom;
}

.hero__content {
	position: absolute;
	inset: 0;
	z-index: 5;
	width: min(100%, var(--width));
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.95fr);
	align-items: end;
	gap: var(--hero-content-gap);
	padding: var(--hero-content-padding);
	padding-left: var(--frame-padding-inline);
	padding-right: var(--frame-padding-inline);
	padding-bottom: var(--hero-content-padding-bottom);
	color: #fff;
	font-family: var(--font-family-display);
}

.hero__content-main {
	max-width: 820px;
	align-self: end;
}

.hero__eyebrow {
	margin: 0 0 14px;
	font-size: var(--hero-font-size-eyebrow);
	font-weight: 300;
	letter-spacing: 0.01em;
	line-height: 1.25;
	color: rgba(255, 255, 255, 0.9);
}

.hero__title {
	margin: 0;
	font-size: var(--hero-font-size-title);
	line-height: 0.94;
	font-weight: 400;
	letter-spacing: -0.04em;
	text-transform: uppercase;
	white-space: nowrap;
}

.hero__description {
	max-width: 900px;
	margin-top: var(--hero-description-margin-top);
	font-family: var(--font-family-body-accent);
	font-size: var(--hero-font-size-description);
	font-weight: 400;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.8);
}

.hero__description p,
.hero__highlight-description p {
	margin: 0;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--hero-actions-gap);
	margin-top: var(--hero-actions-margin-top);
}

.hero__button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 256px;
	min-height: 60px;
	padding: var(--hero-button-padding);
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.92);
	text-decoration: none;
	font-size: var(--hero-button-font-size);
	font-family: var(--font-family-body-accent);
	font-weight: 500;
	letter-spacing: -0.01em;
	line-height: 1;
	box-sizing: border-box;
	color: inherit;
	transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.hero__button::after {
	content: '';
	position: absolute;
	inset: calc(var(--hero-button-outer-border-offset) * -1);
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 999px;
	pointer-events: none;
	transition: inset 0.25s ease, border-color 0.25s ease;
}

.hero__button span {
	position: relative;
	z-index: 1;
}

.hero__button:hover::after,
.hero__button:focus-visible::after {
	inset: 0;
}

.hero__button--primary:hover,
.hero__button--primary:focus-visible,
.hero__button--primary:active,
.hero__button--primary:visited {
	color: #26364D;
}

.hero__button--primary {
	background: #fff;
	color: #26364D;
	border-color: rgba(255, 255, 255, 0.98);
	box-shadow: 0 2px 0 rgba(255, 255, 255, 0.28) inset;
}

.hero__button--secondary {
	background: rgba(38, 54, 77, 0.14);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.72);
	backdrop-filter: blur(6px);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset;
}

.hero__button--primary::after {
	border-color: rgba(255, 255, 255, 0.78);
}

.hero__button--secondary::after {
	border-color: rgba(255, 255, 255, 0.6);
}

.hero__highlights {
	padding: var(--hero-highlights-padding);
	padding-right: var(--hero-highlights-line-offset);
	border-right: 1px solid rgba(255, 255, 255, 0.78);
	border-bottom: 1px solid rgba(255, 255, 255, 0.78);
	align-self: end;
	justify-self: end;
	width: var(--hero-highlights-width);
	display: grid;
	gap: var(--hero-highlights-gap);
}

.hero__highlight {
	text-align: right;
}

.hero__highlight-title {
	margin: 0 0 8px;
	font-size: var(--hero-highlight-title-size);
	font-weight: 400;
	line-height: 0.94;
	text-transform: uppercase;
}

.hero__highlight-description {
	font-family: var(--font-family-body-accent);
	font-size: var(--hero-highlight-description-size);
	font-weight: 400;
	line-height: 1.4;
	color: rgba(255, 255, 255, var(--hero-highlight-description-opacity));
}

.hero__placeholder {
	display: grid;
	place-items: center;
	min-height: var(--hero-min-height, 620px);
	padding: var(--spacing-lg);
	text-align: center;
	color: #4c6072;
	font-size: var(--font-size-normal);
	border: 1px dashed rgba(76, 96, 114, 0.35);
	border-radius: 24px;
	margin: var(--spacing-md);
	background: rgba(255, 255, 255, 0.72);
	backdrop-filter: blur(12px);
}


@media (max-width: 1219px) {
	.hero__content {
		grid-template-columns: minmax(0, 1fr);
		align-items: end;
		padding-top: 120px;
	}

	.hero__eyebrow {
		font-size: 22px;
	}

	.hero__title {
		font-size: 72px;
	}

	.hero__description {
		font-size: 19px;
	}

	.hero__button {
		font-size: 17px;
	}

	.hero__highlights {
		justify-self: end;
		align-self: end;
		text-align: right;
		padding: 20px 0 0 32px;
		padding-left: var(--hero-highlights-line-offset);
		border-left: 1px solid rgba(255, 255, 255, 0.55);
		border-right: 0;
		border-bottom: 0;
		border-top: 0;
		width: min(100%, 620px);
	}

	.hero__highlight {
		text-align: right;
	}

	.hero__highlight-title {
		font-size: 30px;
	}

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


@media (max-width: 1099px) {
	.hero__scene {
		min-height: var(--hero-min-height);
	}
}

@media (max-width: 767px) {
	.hero {
		min-height: 100svh;
	}

	.hero__scene {
		min-height: 100svh;
	}

	.hero__content {
		grid-template-columns: minmax(0, 1fr);
		padding-top: 136px;
	}

	.hero__description {
		max-width: 100%;
	}

	.hero__actions {
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
	}

	.hero__button {
		width: 100%;
		min-width: 0;
		min-height: 52px;
	}

	.hero__highlights {
		justify-self: start;
		text-align: left;
		padding: 20px 0 0;
		padding-left: 0;
		padding-right: var(--hero-highlights-line-offset);
		border-left: 0;
		border-right: 1px solid rgba(255, 255, 255, 0.55);
		width: 100%;
	}

	.hero__highlight {
		text-align: left;
	}
}