/*--------------------------------------------------------------
# Hero 1 (Figma)
--------------------------------------------------------------*/

.hero {
	position: relative;
	display: flex;
	flex: none;
	align-self: stretch;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	width: 100%;
	min-height: 536px;
	background-color: #fff;
	background-image: var(--hero-bg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 48px;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 120px 64px;
}

.hero__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	max-width: 960px;
	text-align: center;
}

.hero__eyebrow {
	margin: 0;
	color: rgba(0, 0, 0, 0.55);
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: -0.12px;
}

.hero__title {
	display: flex;
	flex-direction: column;
	margin: 0;
	color: #000;
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 64px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -1.28px;
}

.hero__title span {
	display: block;
}

.hero__buttons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 16px;
}

.hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 16px;
	border: 0;
	border-radius: 12px;
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.45;
	letter-spacing: -0.09px;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: opacity 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.hero__button--primary {
	background: #000;
	color: #fff;
}

.hero__button--primary:hover,
.hero__button--primary:focus {
	opacity: 0.85;
	color: #fff;
}

.hero__button--secondary {
	background: transparent;
	color: #000;
	box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.15);
}

.hero__button--secondary:hover,
.hero__button--secondary:focus {
	box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.3);
	color: #000;
}

.site-main--front .front-page-content {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 64px 64px;
}

@media (max-width: 1279px) {
	.hero {
		min-height: 439px;
	}

	.hero__inner {
		gap: 32px;
		padding: 80px 24px;
	}

	.hero__content {
		gap: 16px;
		width: 100%;
	}

	.hero__eyebrow {
		font-size: 18px;
		letter-spacing: -0.09px;
	}

	.hero__title {
		font-size: 44px;
		letter-spacing: -0.88px;
	}

	.hero__buttons {
		flex-direction: column;
		width: 100%;
	}

	.hero__button {
		width: 100%;
		font-size: 16px;
		letter-spacing: -0.08px;
	}

	.site-main--front .front-page-content {
		padding: 0 24px 48px;
	}
}
