.hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	width: min(calc(100% - (var(--spacing-lg) * 2)), var(--container-wide));
	height: 582px;
	min-height: 582px;
	margin: 0 auto var(--spacing-lg);
	background: var(--background-hero-base);
}

.hero__inner {
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	max-width: none;
	height: 582px;
	min-height: 582px;
	margin: 0;
}

.ds-hero-motion {
	position: absolute;
	z-index: 1;
	inset: 0;
	overflow: hidden;
	opacity: .4;
	pointer-events: none;
}

.ds-hero-motion__item {
	position: absolute;
	width: 52%;
	aspect-ratio: 16 / 9;
	opacity: 0;
	transition: opacity .2s ease;
}

.ds-hero-motion__item.is-ready {
	opacity: 1;
}

.ds-hero-motion__item--1 {
	top: -11%;
	left: -8%;
	transform: scale(2);
	transform-origin: top left;
}

.ds-hero-motion__item--2 {
	right: -8%;
	bottom: -11%;
	transform: scale(2);
	transform-origin: bottom right;
}

.ds-hero-motion video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	mix-blend-mode: screen;
}

@media (max-width: 1100px) {
	.ds-hero-motion { opacity: .28; }
}

@media (max-width: 760px) {
	.ds-hero-motion { display: none; }
}

.hero__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	padding: 106px 0 50px;
}

.hero__intro {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
	width: 100%;
}

.hero__audience {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 206px;
	height: 39px;
	margin: 0;
	border-radius: 9999px;
	background: #fff;
	color: #000;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1.4;
}

.hero__audience::after {
	position: absolute;
	top: 100%;
	left: 50%;
	width: 0;
	height: 0;
	border-top: 10px solid #fff;
	border-right: 9px solid transparent;
	border-left: 9px solid transparent;
	content: "";
	transform: translateX(-50%);
}

.hero__title {
	max-width: none;
	margin: 27px 0 18px;
	font-size: 40px;
	line-height: 1.4;
	letter-spacing: 2px;
}

.hero__title-surface {
	display: inline-flex;
	align-items: baseline;
	gap: 0;
	justify-content: center;
	width: 1018px;
	min-height: 73px;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	padding: 7px 18px 10px;
	background: var(--color-bg-white);
	border-radius: 5px;
	white-space: nowrap;
}

.hero__title-accent {
	background: var(--gradient-hero-title);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
}

.hero__description {
	width: auto;
	max-width: 100%;
	margin: 0;
	color: #000;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.8;
	text-align: center;
}

.hero__features {
	display: grid;
	grid-template-columns: 337px 287px 313px;
	gap: 10px;
	padding: 0;
	margin: 0 0 25px;
	list-style: none;
}

.hero__features li {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	border: 3px solid #fff;
	border-radius: 20px;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1.8;
	text-shadow: 0 0 25px rgb(0 0 0 / 41%);
}

.hero__description > span {
	display: block;
	white-space: nowrap;
}

.hero__achievements {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 0;
	margin: 0 0 54px;
	list-style: none;
}

.hero__achievement {
	display: flex;
	align-items: center;
	gap: 6px;
	min-height: 52px;
	padding: 0;
	color: var(--color-text-primary);
}

.hero__achievement--numeric {
	min-width: 266px;
}

.hero__achievement--wordmark {
	justify-content: space-between;
	min-width: 244px;
}

.hero__achievement-content {
	display: flex;
	align-items: center;
	gap: 8px;
}

.hero__achievement-value {
	font-family: var(--font-family-en);
	font-weight: 700;
	letter-spacing: -0.045em;
	line-height: 1;
}

.hero__achievement--numeric .hero__achievement-value {
	font-size: 56px;
}

.hero__achievement-wordmark {
	width: 108px;
	height: 37px;
}

.hero__achievement-meta {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
}

.hero__achievement-eyebrow {
	min-width: 102px;
	min-height: 27px;
	padding: 3px 8px;
	border-radius: var(--radius-full);
	background: var(--color-text-primary);
	color: var(--color-text-inverse);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 2;
	white-space: nowrap;
}

.hero__achievement-label {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: -0.9px;
	line-height: 2;
	white-space: nowrap;
}

.hero__achievement-label strong {
	font-family: var(--font-family-en);
	font-size: 15px;
	letter-spacing: -0.04em;
}

.hero__laurel {
	flex: 0 0 21.34px;
	width: 21.34px;
	height: 59.19px;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

.hero__actions .ds-button {
	justify-content: space-between;
	width: 202px;
	min-height: 64px;
	padding-inline: 21px;
	border-radius: 10px;
	font-size: 14px;
	line-height: 2;
}

.hero__actions .ds-button--dark .ds-button__arrow,
.hero__actions .ds-button--light .ds-button__arrow {
	width: 24px;
	height: 24px;
}

.hero__actions .ds-css-arrow {
	--ds-css-arrow-line: 2px;

	flex-basis: 22px;
	width: 22px;
	height: 15px;
}

.hero__media {
	display: none;
	grid-template-columns: minmax(0, 44%) minmax(0, 56%);
	grid-template-rows: 20fr 15fr 29fr 20fr 16fr;
	gap: 6px;
	min-height: 640px;
}

.hero__media--empty {
	opacity: 0.7;
}

.hero__image {
	min-width: 0;
	min-height: 0;
	margin: 0;
	overflow: hidden;
}

.hero__image--left-top { grid-column: 1; grid-row: 1 / 3; }
.hero__image--left-bottom { grid-column: 1; grid-row: 3 / 6; }
.hero__image--right-top { grid-column: 2; grid-row: 1; }
.hero__image--right-middle { grid-column: 2; grid-row: 2 / 5; }
.hero__image--right-bottom { grid-column: 2; grid-row: 5; }

.hero__image--empty {
	border: 1px solid rgb(255 255 255 / 20%);
	background: rgb(255 255 255 / 5%);
}

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