.home-hero {
	position: relative;
	min-height: 92vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--color-bg);
	color: var(--color-surface);
}

.home-hero__canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.home-hero__container {
	position: relative;
	z-index: 1;
	padding-top: 150px;
	padding-bottom: 96px;
}

.home-hero__content {
	display: grid;
	gap: 28px;
	max-width: 1060px;
}

.home-hero__niches {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.home-hero__niches li {
	padding: 9px 13px;
	border: 1px solid color-mix(in srgb, var(--color-green) 34%, transparent);
	border-radius: 999px;
	background: color-mix(in srgb, var(--color-surface) 8%, transparent);
	color: color-mix(in srgb, var(--color-green) 78%, var(--color-surface) 22%);
	font-size: 12px;
	font-weight: 850;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0;
	backdrop-filter: blur(12px);
}

.home-hero__title {
	max-width: 980px;
	margin: 0;
	color: var(--color-surface);
	font-size: 76px;
	font-weight: 860;
	line-height: 1.02;
	letter-spacing: 0;
}

.home-hero__subtitle {
	max-width: 720px;
	margin: 0;
	color: color-mix(in srgb, var(--color-surface) 76%, transparent);
	font-size: 24px;
	font-weight: 560;
	line-height: 1.5;
}

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

.home-hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	padding: 16px 24px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 16px;
	font-weight: 850;
	line-height: 1;
	transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.home-hero__button:hover,
.home-hero__button:focus-visible {
	transform: translateY(-1px);
}

.home-hero__button--primary {
	background: var(--color-blue);
	color: var(--color-surface);
	box-shadow: 0 18px 42px color-mix(in srgb, var(--color-blue) 36%, transparent);
}

.home-hero__button--primary:hover,
.home-hero__button--primary:focus-visible {
	background: color-mix(in srgb, var(--color-blue) 86%, var(--color-surface) 14%);
}

.home-hero__button--ghost {
	border-color: color-mix(in srgb, var(--color-surface) 22%, transparent);
	background: color-mix(in srgb, var(--color-surface) 7%, transparent);
	color: var(--color-surface);
	backdrop-filter: blur(14px);
}

.home-hero__button--ghost:hover,
.home-hero__button--ghost:focus-visible {
	border-color: color-mix(in srgb, var(--color-surface) 52%, transparent);
	background: color-mix(in srgb, var(--color-surface) 12%, transparent);
}

@media (max-width: 1180px) {
	.home-hero__title {
		font-size: 58px;
	}

	.home-hero__subtitle {
		font-size: 21px;
	}
}

@media (max-width: 760px) {
	.home-hero {
		min-height: 84vh;
	}

	.home-hero__container {
		padding-top: 126px;
		padding-bottom: 64px;
	}

	.home-hero__content {
		gap: 22px;
	}

	.home-hero__title {
		font-size: 40px;
		line-height: 1.08;
	}

	.home-hero__subtitle {
		font-size: 18px;
	}

	.home-hero__button {
		width: 100%;
		min-height: 54px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-hero__button {
		transition: none;
	}
}
