/**
 * Home hero — mesh gradient, script gradient headline, stats bar.
 */

@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&family=Inter:wght@400;500;600;700;800;900&display=swap");

.slider_section.warp-hero {
	position: relative;
	overflow: hidden;
	min-height: clamp(560px, 82vh, 900px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(5rem, 11vw, 7rem) 1.35rem clamp(3rem, 8vw, 5rem);
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	background: #ffffff;
}

/* Soft mesh background */
.warp-hero__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}

.warp-hero__mesh {
	position: absolute;
	border-radius: 50%;
	filter: blur(72px);
	opacity: 0.75;
}

.warp-hero__mesh--mint {
	width: min(90vw, 720px);
	height: min(70vw, 560px);
	background: radial-gradient(
		ellipse at 40% 50%,
		rgba(167, 243, 208, 0.95) 0%,
		rgba(209, 250, 229, 0.5) 45%,
		transparent 70%
	);
	bottom: -15%;
	left: -25%;
}

.warp-hero__mesh--lavender {
	width: min(85vw, 680px);
	height: min(65vw, 520px);
	background: radial-gradient(
		ellipse at 50% 40%,
		rgba(221, 214, 254, 0.95) 0%,
		rgba(237, 233, 254, 0.55) 50%,
		transparent 72%
	);
	top: -18%;
	right: -22%;
}

.warp-hero__mesh--center {
	width: min(100vw, 900px);
	height: min(80vw, 600px);
	background: radial-gradient(
		ellipse at 50% 50%,
		rgba(255, 255, 255, 0.95) 0%,
		rgba(246, 247, 249, 0.3) 55%,
		transparent 68%
	);
	top: 20%;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0.9;
	filter: blur(48px);
}

.warp-hero__noise {
	position: absolute;
	inset: 0;
	opacity: 0.035;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	pointer-events: none;
}

/* Content */
.warp-hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 920px;
	margin: 0 auto;
	text-align: center;
}

.warp-hero__headline {
	margin: 0 0 1.35rem;
	line-height: 1.08;
	letter-spacing: -0.03em;
}

.warp-hero__headline-sans {
	display: block;
	font-size: clamp(2.15rem, 5.5vw, 4.5rem);
	font-weight: 900;
	color: var(--warp-title, #0a0a0a);
}

.warp-hero__headline-script {
	display: block;
	margin-top: 0.12em;
	font-family: "Great Vibes", cursive;
	font-size: clamp(2.75rem, 7.5vw, 4.5rem);
	font-weight: 400;
	line-height: 1.15;
	background: linear-gradient(
		100deg,
		var(--warp-script-1, #f97316) 0%,
		var(--warp-script-2, #a855f7) 55%,
		var(--warp-script-2, #c084fc) 100%
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	padding-bottom: 0.08em;
}

.warp-hero__sub {
	margin: 0 auto 2rem;
	max-width: 36rem;
	font-size: clamp(1rem, 2vw, 1.125rem);
	line-height: 1.65;
	font-weight: 500;
	color: var(--warp-sub, #4b5563);
}

.warp-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.75rem 1rem;
	margin-bottom: 2.75rem;
}

.warp-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.88rem 1.75rem;
	font-size: 0.9375rem;
	font-weight: 600;
	text-decoration: none !important;
	border-radius: 9999px;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.warp-hero__btn--primary {
	color: #fff !important;
	background: var(--warp-accent, #2563eb);
	box-shadow: 0 10px 32px rgba(109, 40, 217, 0.32);
	border: none;
}

.warp-hero__btn--primary:hover {
	filter: brightness(1.07);
	transform: translateY(-2px);
	box-shadow: 0 14px 36px rgba(109, 40, 217, 0.38);
	color: #fff !important;
}

.warp-hero__btn--secondary {
	color: var(--warp-title, #0a0a0a) !important;
	background: #f3f4f6;
	border: 1px solid rgba(15, 23, 42, 0.1);
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.warp-hero__btn--secondary:hover {
	background: #e5e7eb;
	border-color: rgba(15, 23, 42, 0.14);
	color: var(--warp-title, #0a0a0a) !important;
	transform: translateY(-2px);
}

/* Stats */
.warp-hero__stats {
	width: 100%;
	max-width: 880px;
	margin: 0 auto;
	padding-top: 0.25rem;
}

.warp-hero__stats-divider {
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(15, 23, 42, 0.1) 15%,
		rgba(15, 23, 42, 0.1) 85%,
		transparent 100%
	);
	margin: 0 auto 1.75rem;
	max-width: 100%;
}

.warp-hero__stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem 1rem;
	align-items: start;
}

.warp-hero__stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.35rem;
}

.warp-hero__stat-value {
	font-size: clamp(1.35rem, 2.8vw, 1.85rem);
	font-weight: 800;
	line-height: 1.2;
	color: var(--warp-accent, #2563eb);
	letter-spacing: -0.02em;
}

.warp-hero__stat-label {
	font-size: 0.7rem;
	font-weight: 600;
	line-height: 1.35;
	color: var(--warp-stat-label, #9ca3af);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	max-width: 11em;
}

@media (max-width: 768px) {
	.warp-hero__stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem 1rem;
	}

	.warp-hero__stat-label {
		font-size: 0.65rem;
	}
}

@media (max-width: 600px) {
	.warp-hero__actions {
		flex-direction: column;
		width: 100%;
	}

	.warp-hero__btn {
		width: 100%;
		max-width: 300px;
	}
}

@media (max-width: 400px) {
	.warp-hero__stats-grid {
		grid-template-columns: 1fr;
	}
}
