.hero-stellar {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.hero-stellar__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.hero-stellar__bg::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 90% 70% at 78% 45%, rgba(30, 92, 255, 0.16), transparent 58%),
		radial-gradient(ellipse 70% 55% at 18% 18%, rgba(30, 92, 255, 0.20), transparent 55%),
		radial-gradient(ellipse 100% 80% at 50% 110%, rgba(8, 22, 58, 0.45), transparent 62%),
		linear-gradient(155deg, #020408 0%, #050b18 38%, #071225 62%, #030610 100%);
}

.hero-stellar__bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(120, 170, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(120, 170, 255, 0.035) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: radial-gradient(ellipse 85% 75% at 50% 45%, #000 0%, transparent 82%);
}

.hero-stellar__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.5;
	animation: hero-stellar-drift 20s ease-in-out infinite;
}

.hero-stellar__orb--1 {
	width: 480px;
	height: 480px;
	background: #1a4fd4;
	top: -120px;
	left: -120px;
	opacity: 0.38;
}

.hero-stellar__orb--2 {
	width: 380px;
	height: 380px;
	background: #4a9eff;
	top: 35%;
	right: -80px;
	opacity: 0.28;
	animation-delay: -10s;
}

.hero-stellar__orb--3 {
	width: 520px;
	height: 520px;
	background: #061840;
	bottom: -220px;
	left: 50%;
	opacity: 0.55;
	animation-delay: -5s;
}

@keyframes hero-stellar-drift {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(50px, 30px) scale(1.1); }
}

.hero-stellar__particles {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0.55;
}

.hero-stellar__content {
	position: relative;
	z-index: 1;
}

.hero-stellar__badge {
	background-color: #000000;
	color: #ffffff;
	font-weight: 400;
}

.hero-stellar__visual {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-block: 0;
}

@media (min-width: 992px) {
	.hero-stellar__visual {
		justify-content: flex-end;
	}

	.hero-stellar__globe-wrap {
		margin-right: 2.5rem;
	}
}

.hero-stellar__globe-wrap {
	width: 100%;
	max-width: 300px;
	aspect-ratio: 1;
	margin-block: 0;
	line-height: 0;
	font-size: 0;
	touch-action: none;
	cursor: grab;
	user-select: none;
	-webkit-user-select: none;
}

.hero-stellar__globe-wrap--dragging {
	cursor: grabbing;
}

@media (max-width: 991.98px) {
	.hero-stellar__visual {
		width: 100%;
	}

	.hero-stellar__globe-wrap {
		max-width: min(280px, 78vw);
		width: 100%;
		margin-inline: auto;
		aspect-ratio: 1;
		height: auto;
	}
}

.hero-stellar__globe {
	display: block;
	width: 100%;
	height: 100%;
}
