.hero-section {
	position: relative;
	min-height: clamp(480px, 42vw, 640px);
	overflow: hidden;
	background-color: var(--solene-black);
	background-image: var(--hero-bg);
	background-size: 88% auto;
	background-position: right center;
	background-repeat: no-repeat;
}

.hero-section::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(18, 8, 0, 0.9) 0%, rgba(18, 8, 0, 0.66) 36%, rgba(18, 8, 0, 0.18) 62%, rgba(18, 8, 0, 0.24) 100%),
		linear-gradient(180deg, rgba(18, 8, 0, 0.1) 0%, rgba(18, 8, 0, 0.2) 62%, rgba(18, 8, 0, 0.5) 100%);
	pointer-events: none;
}

.hero-copy {
	position: absolute;
	z-index: 2;
	left: clamp(28px, 8vw, 190px);
	top: 47%;
	width: min(560px, calc(100% - 56px));
	min-height: 168px;
	transform: translateY(-50%);
	text-align: left;
	color: var(--solene-white);
}

.hero-title {
	margin: 0 0 14px;
	font-family: var(--font-bold);
	font-size: clamp(36px, 3vw, 64px);
	line-height: 1.08;
	font-weight: 900;
	text-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
}

.hero-description {
	margin: 0;
	max-width: 520px;
	min-height: 3.3em;
	font-size: clamp(16px, 1vw, 20px);
	font-weight: 700;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.92);
	text-shadow: 0 3px 14px rgba(0, 0, 0, 0.42);
}

.hero-cursor {
	display: inline-block;
	width: 0.08em;
	height: 0.86em;
	margin-inline-start: 0.1em;
	background: var(--solene-white);
	vertical-align: -0.08em;
	animation: solene-hero-cursor 0.9s steps(2, start) infinite;
}

@keyframes solene-hero-cursor {
	0%,
	44% {
		opacity: 1;
	}
	45%,
	100% {
		opacity: 0;
	}
}

body.solene-lang-ar .hero-copy {
	direction: rtl;
}

body.solene-lang-ar .hero-description {
	margin-right: auto;
	margin-left: 0;
}

@media (min-width: 768px) and (max-width: 1024px) {
	.hero-section {
		min-height: 500px;
		background-size: 106% auto;
		background-position: center center;
	}

	.hero-copy {
		left: clamp(28px, 6vw, 62px);
		top: 50%;
		width: min(510px, calc(100% - 70px));
	}

	.hero-title {
		font-size: clamp(34px, 4.6vw, 52px);
	}
}

@media (max-width: 767px) {
	.hero-section {
		min-height: 540px;
		background-image: var(--hero-bg-mobile);
		background-size: cover;
		background-position: center top;
	}

	.hero-section::after {
		background:
			linear-gradient(180deg, rgba(18, 8, 0, 0.08) 0%, rgba(18, 8, 0, 0.2) 36%, rgba(18, 8, 0, 0.82) 100%),
			linear-gradient(90deg, rgba(18, 8, 0, 0.36), rgba(18, 8, 0, 0.1) 52%, rgba(18, 8, 0, 0.5) 100%);
	}

	.hero-copy,
	body.solene-lang-ar .hero-copy {
		left: 50%;
		right: auto;
		top: 58%;
		bottom: auto;
		width: min(88vw, 410px);
		min-height: 172px;
		transform: translate(-50%, -50%);
		text-align: center;
	}

	.hero-title {
		font-size: clamp(30px, 9vw, 44px);
	}

	.hero-description {
		max-width: 100%;
		min-height: 4.1em;
		font-size: 16px;
	}
}
