.elementor-158 .elementor-element.elementor-element-f0d5791{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-5d94edf *//* =========================
   GLOBAL HERO STYLES
========================= */

.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	padding: 100px 20px;
	background: #070A12;
	color: white;
}

/* GRID BACKGROUND */
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
	background-size: 60px 60px;
	opacity: 0.4;
	z-index: 0;
}

/* TOP GLOW */
.hero::after {
	content: "";
	position: absolute;
	width: 800px;
	height: 800px;
	background: radial-gradient(circle, rgba(79,70,229,0.25), transparent 60%);
	top: -20%;
	left: 50%;
	transform: translateX(-50%);
	filter: blur(90px);
	z-index: 0;
	animation: float 10s ease-in-out infinite;
}

/* =========================
   CONTAINER
========================= */

.hero-container {
	max-width: 900px;
	text-align: center;
	position: relative;
	z-index: 2;
}

/* =========================
   BADGE
========================= */

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 999px;
	font-size: 11px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: rgba(255,255,255,0.6);
	margin-bottom: 25px;
	animation: fadeUp 0.8s ease forwards;
}

.hero-badge .dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #22c55e;
	animation: pulse 1.5s infinite;
}

/* =========================
   TITLE
========================= */

.hero-title {
	font-family: 'Sora', sans-serif;
	font-size: 64px;
	line-height: 1.05;
	letter-spacing: -1px;
	font-weight: 600;
	margin-bottom: 20px;
	animation: fadeUp 1s ease forwards;
}

/* =========================
   SUBTEXT
========================= */

.hero-subtext {
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	line-height: 1.6;
	color: rgba(255,255,255,0.65);
	max-width: 650px;
	margin: 0 auto 30px;
	animation: fadeUp 1s ease 0.2s forwards;
	opacity: 0;
}

/* =========================
   BUTTONS
========================= */

.hero-buttons {
	display: flex;
	justify-content: center;
	gap: 15px;
	animation: fadeUp 1s ease 0.3s forwards;
	opacity: 0;
}

.btn {
	padding: 14px 26px;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	display: inline-block;
}

.btn.primary {
	background: linear-gradient(135deg, #4f46e5, #3b82f6);
	color: white;
	box-shadow: 0 10px 30px rgba(79,70,229,0.25);
}

.btn.secondary {
	border: 1px solid rgba(255,255,255,0.2);
	color: white;
}

.btn:hover {
	transform: translateY(-4px) scale(1.03);
}

/* =========================
   ANIMATIONS
========================= */

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes float {
	0% { transform: translate(-50%, 0); }
	50% { transform: translate(-50%, 30px); }
	100% { transform: translate(-50%, 0); }
}

@keyframes pulse {
	0% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.3); opacity: 0.6; }
	100% { transform: scale(1); opacity: 1; }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-f0d5791 *//* =========================
   HERO CONTAINER (PREMIUM LAYOUT)
========================= */

.hero-container {
	max-width: 980px;
	margin: 0 auto;
	padding: 0 24px;
	text-align: center;

	/* spacing refinement */
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	gap: 18px;
	position: relative;
	z-index: 2;
}

/* optional: improves readability on large screens */
@media (min-width: 1200px) {
	.hero-container {
		max-width: 1100px;
	}
}

/* mobile spacing control */
@media (max-width: 768px) {
	.hero-container {
		padding: 0 16px;
		gap: 14px;
	}
}/* End custom CSS */