.dp-hero {
	position: relative;
	min-height: 930px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: #0d160f;
	color: var(--dp-white);
}

.dp-hero-background {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.dp-hero-background img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.dp-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(7,14,9,.75) 0%, rgba(7,14,9,.2) 54%, rgba(7,14,9,.06) 100%);
}

.dp-hero-inner {
	position: relative;
	z-index: 1;
	margin-top: 80px;
	padding-top: 100px;
	padding-bottom: 120px;
}

.dp-hero-content {
	max-width: 560px;
}

.dp-hero-kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 22px;
	color: var(--dp-lime);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .18em;
	line-height: 1.4;
	text-transform: uppercase;
}

.dp-hero-kicker::before {
	content: "";
	width: 34px;
	height: 1px;
	background: var(--dp-lime);
}

.dp-hero h1 {
	max-width: 560px;
	margin: 0;
	color: var(--dp-orange);
	font-family: var(--dp-font-display);
	font-size: clamp(3.6rem, 7vw, 6.35rem);
	font-weight: 600;
	line-height: .98;
	letter-spacing: -.065em;
}

.dp-hero-description {
	max-width: 470px;
	margin: 30px 0 34px;
	color: rgba(255,255,255,.78);
	font-size: 18px;
	line-height: 1.6;
}

.dp-store-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.dp-store-badge {
	display: block;
	width: 154px;
	transition: transform .25s ease, filter .25s ease;
}

.dp-store-badge img {
	width: 100%;
	height: auto;
}

.dp-store-badge:hover,
.dp-store-badge:focus-visible {
	transform: translateY(-4px);
	filter: brightness(1.12);
}

.dp-hero-note {
	margin: 70px 0 0;
	color: rgba(255,255,255,.47);
	font-size: 11px;
	letter-spacing: .14em;
	line-height: 1.4;
	text-transform: uppercase;
}

@media (max-width: 900px) {
	.dp-hero {
		min-height: 790px;
		background-position: 61% center;
	}

	.dp-hero-inner {
		padding-top: 95px;
		padding-bottom: 70px;
	}

	.dp-hero-content {
		max-width: 440px;
	}
}

@media (max-width: 620px) {
	.dp-hero {
		min-height: 730px;
	}

	.dp-hero-inner {
		margin-top: 68px;
		padding-top: 75px;
		padding-bottom: 60px;
	}

	.dp-hero h1 {
		font-size: clamp(3rem, 14vw, 4.6rem);
	}

	.dp-hero-description {
		font-size: 16px;
	}
}
