/* Home section 02 — Hero (Figma node 1:1217) */

.hero,
body .hero {
	background: var(--color-bg-light);
	padding: 80px 20px;
	display: flex;
	justify-content: center;
}

.hero__blob {
	position: absolute;
	top: -140px;
	left: -282px;
	width: 816px;
	height: 816px;
	pointer-events: none;
	z-index: 0;
}

.hero__blob img {
	width: 100%;
	height: 100%;
}

.hero__inner,
body .hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	text-align: center;
}

.hero__eyebrow p {
	font-weight: 700;
	font-size: 16px;
	text-transform: uppercase;
	color: var(--color-blue);
}

.hero__title {
	max-width: 1062px;
	font-weight: 700;
	font-size: 48px;
	line-height: normal;
	color: var(--color-navy);
}

.hero__title-highlight {
	background: linear-gradient(180deg, var(--color-blue) 0%, var(--color-navy) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero__actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
}

@media (max-width: 640px) {
	.hero__title {
		font-size: 32px;
	}

	.hero__blob {
		width: 500px;
		height: 500px;
	}
}
