.home .site-content {
	padding-top: 0;

}

.home-page {
	width: 100%;
}

.home-hero {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	min-height: 100vh;
	width: 100%;
	padding: 32px 24px 52px;
	overflow: hidden;
	background: black;

}

.home-hero__content {
	position: relative;
	z-index: 2;
	display: grid;
	flex: 1;
	align-content: center;
	gap: 14px;
	width: min(100%, 980px);
	max-width: 980px;
	text-align: center;
}

.home-hero__eyebrow {
	margin: 0;
	opacity: 0.7;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--text);
	font-family: "Inter", sans-serif;
}

.home-hero__title {
	margin: 0;
	font-family: "Montserrat Alternates", sans-serif;
	font-size: clamp(2.35rem, 6vw, 4.8rem);
	line-height: 0.95;
	letter-spacing: 0.04em;
	color: var(--text);
	white-space: nowrap;
}

.home-hero__actions {
	display: flex;
	justify-content: center;
	position: relative;
	z-index: 2;
	width: 100%;
	padding-bottom: 34px;
}

.home-hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 220px;
	min-height: 64px;
	padding: 10px 28px;
	border: 1px solid var(--text);
	border-radius: 0;
	background: transparent;
	color: var(--text);
	font-weight: 500;
	letter-spacing: 0.04em;
	font-family: "Inter", sans-serif;
	text-decoration: underline;
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.home-hero__button:hover,
.home-hero__button:focus-visible {
	background: var(--text);
	color: #0e0e0e;
	transform: translateY(-2px);
}

.home-hero__marquee {
	position: absolute;
	inset: 0;
	overflow: hidden;
	z-index: 1;
}

.home-hero__layer {
	position: absolute;
	left: 0;
	white-space: nowrap;
	font-family: "Inter", sans-serif;
	font-size: clamp(1.8rem, 4vw, 3rem);
	font-weight: 400;
	letter-spacing: 0.08em;
	color: color-mix(in srgb, var(--text) 10%, transparent);
	transform: translateY(-50%);
	user-select: none;
}

.home-hero__layer.l1 { top: 20%; animation: homeHeroMoveLeft 12s linear infinite -2s; }
.home-hero__layer.l2 { top: 35%; animation: homeHeroMoveLeft 18s linear infinite -6s; }
.home-hero__layer.l3 { top: 50%; animation: homeHeroMoveLeft 22s linear infinite -10s; }
.home-hero__layer.l4 { top: 65%; animation: homeHeroMoveLeft 16s linear infinite -4s; }
.home-hero__layer.l5 { top: 80%; animation: homeHeroMoveLeft 26s linear infinite -8s; }
.home-hero__layer.l6 { top: 10%; animation: homeHeroMoveRight 12s linear infinite -2s; }
.home-hero__layer.l7 { top: 25%; animation: homeHeroMoveRight 18s linear infinite -6s; }
.home-hero__layer.l8 { top: 40%; animation: homeHeroMoveRight 22s linear infinite -10s; }
.home-hero__layer.l9 { top: 60%; animation: homeHeroMoveRight 16s linear infinite -4s; }
.home-hero__layer.l10 { top: 85%; animation: homeHeroMoveRight 26s linear infinite -8s; }

@keyframes homeHeroMoveLeft {
	from {
		transform: translateX(-100vw) translateY(-50%);
	}

	to {
		transform: translateX(100vw) translateY(-50%);
	}
}

@keyframes homeHeroMoveRight {
	from {
		transform: translateX(100vw) translateY(-50%);
	}

	to {
		transform: translateX(-100vw) translateY(-50%);
	}
}

@media (min-width: 768px) and (max-width: 1199px) {
	.home-hero {
		padding: 28px 32px 46px;
	}

	.home-hero__content {
		width: min(100%, 860px);
	}

	.home-hero__title {
		font-size: clamp(2.8rem, 5.6vw, 4.2rem);
	}

	.home-hero__eyebrow {
		font-size: 0.82rem;
	}

	.home-hero__button {
		min-width: 208px;
		min-height: 60px;
		padding: 10px 24px;
	}

	.home-hero__actions {
		padding-bottom: 28px;
	}

	.home-hero__layer {
		font-size: clamp(1.45rem, 3vw, 2.2rem);
	}
}

@media (max-width: 767px) {
	.home-hero {
		padding: 20px 18px 24px;
		min-height: 100svh;
	}

	.home-hero__content {
		width: 100%;
		gap: 12px;
	}

	.home-hero__eyebrow {
		font-size: 0.72rem;
		letter-spacing: 0.12em;
	}

	.home-hero__title {
		font-size: clamp(2rem, 11vw, 3rem);
		line-height: 1;
		white-space: normal;
	}

	.home-hero__actions {
		padding-bottom: 15%;
	}

	.home-hero__button {
		width: 100%;
		min-width: 0;
		min-height: 56px;
		padding: 14px 20px;
		font-size: 0.9rem;
	}

	.home-hero__layer {
		font-size: 1.15rem;
		letter-spacing: 0.05em;
	}
}

@media (max-width: 479px) {
	.home-hero {
		padding-left: 14px;
		padding-right: 14px;
		padding-bottom: 18px;
	}

	.home-hero__title {
		font-size: clamp(1.8rem, 10vw, 2.45rem);
	}

	.home-hero__button {
		min-height: 52px;
		font-size: 0.84rem;
	}

	.home-hero__actions {
		padding-bottom: 20%;
	}

	.home-hero__layer {
		font-size: 1rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-hero__layer {
		animation: none !important;
	}
}
