/* Aurora Hero Widget — style.css v1.1.0 */

.aurora-hero-153e9a28 {
	--ah-color-1: #8a2be2;
	--ah-color-2: #4169e1;
	--ah-color-3: #00c896;
	--ah-color-4: #e040fb;
	--ah-bg-base: #060612;
	--ah-speed: 3s;

	position: relative;
	width: 100%;
	min-height: 100vh;
	overflow: hidden;
	background-color: var(--ah-bg-base);
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
}

/* ── Mesh background layer ── */
.ah-bg-mesh {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 0;
	pointer-events: none;
	display: flex;
	justify-content: center;
	align-items: center;
}

.ah-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	opacity: 0.75;
	will-change: transform;
	transform: translate3d(0, 0, 0);
}

/* Blob 1 — top-left, color-1 */
.ah-blob-1 {
	background: var(--ah-color-1);
	width: 55vw;
	height: 55vw;
	top: -15%;
	left: -10%;
	animation: ahBlob1 var(--ah-speed) ease-in-out infinite alternate;
}

/* Blob 2 — bottom-right, color-2 */
.ah-blob-2 {
	background: var(--ah-color-2);
	width: 50vw;
	height: 50vw;
	bottom: -15%;
	right: -10%;
	animation: ahBlob2 var(--ah-speed) ease-in-out infinite alternate;
	animation-delay: calc(var(--ah-speed) * -0.4);
}

/* Blob 3 — center, color-3 */
.ah-blob-3 {
	background: var(--ah-color-3);
	width: 38vw;
	height: 38vw;
	top: 25%;
	left: 35%;
	animation: ahBlob3 var(--ah-speed) ease-in-out infinite alternate;
	animation-delay: calc(var(--ah-speed) * -0.7);
}

/* Blob 4 — top-right accent, color-4 */
.ah-blob-4 {
	background: var(--ah-color-4);
	width: 32vw;
	height: 32vw;
	top: -5%;
	right: 5%;
	animation: ahBlob4 var(--ah-speed) ease-in-out infinite alternate;
	animation-delay: calc(var(--ah-speed) * -0.2);
}

/* Distinct keyframes per blob for organic movement */
@keyframes ahBlob1 {
	0%   { transform: translate3d(0, 0, 0) scale(1); }
	33%  { transform: translate3d(8%, 12%, 0) scale(1.15); }
	66%  { transform: translate3d(-5%, 20%, 0) scale(0.95); }
	100% { transform: translate3d(12%, -8%, 0) scale(1.1); }
}

@keyframes ahBlob2 {
	0%   { transform: translate3d(0, 0, 0) scale(1); }
	33%  { transform: translate3d(-10%, -8%, 0) scale(1.2); }
	66%  { transform: translate3d(6%, -15%, 0) scale(0.9); }
	100% { transform: translate3d(-8%, 10%, 0) scale(1.05); }
}

@keyframes ahBlob3 {
	0%   { transform: translate3d(0, 0, 0) scale(1); }
	33%  { transform: translate3d(-12%, 8%, 0) scale(1.25); }
	66%  { transform: translate3d(10%, -10%, 0) scale(0.85); }
	100% { transform: translate3d(-6%, 14%, 0) scale(1.15); }
}

@keyframes ahBlob4 {
	0%   { transform: translate3d(0, 0, 0) scale(1); }
	33%  { transform: translate3d(-8%, 15%, 0) scale(1.1); }
	66%  { transform: translate3d(12%, 5%, 0) scale(0.92); }
	100% { transform: translate3d(5%, -12%, 0) scale(1.18); }
}

/* Reduced-motion: static gradient fallback */
@media (prefers-reduced-motion: reduce) {
	.ah-blob {
		animation: none !important;
		transition: none !important;
	}
}

/* ── Foreground content ── */
.ah-content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 820px;
	width: 100%;
	gap: 24px;
	box-sizing: border-box;
}

/* ── Badge ── */
.ah-badge {
	display: inline-flex;
	align-items: center;
	padding: 6px 18px;
	border-radius: 50px;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border: 1px solid rgba(255, 255, 255, 0.25);
	background-color: rgba(255, 255, 255, 0.1);
	color: #ffffff;
	text-decoration: none;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

/* ── Headline ── */
.ah-headline {
	margin: 0;
	font-size: clamp(2.4rem, 5.5vw, 4.8rem);
	line-height: 1.08;
	font-weight: 800;
	letter-spacing: -0.025em;
	color: #ffffff;
}

/* ── Sub-headline ── */
.ah-subheadline {
	margin: 0;
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	line-height: 1.65;
	color: #9090aa;
	max-width: 600px;
}

/* ── CTA row ── */
.ah-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	justify-content: center;
}

.ah-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 30px;
	border-radius: 10px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
	white-space: nowrap;
}

.ah-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.ah-btn-primary {
	background-color: #ffffff;
	color: #060612;
}

.ah-btn-primary:hover {
	background-color: #d8d8f0;
}

.ah-btn-secondary {
	background-color: rgba(255, 255, 255, 0.06);
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.3);
}

.ah-btn-secondary:hover {
	background-color: rgba(255, 255, 255, 0.14);
}

/* ── Responsive ── */
@media (max-width: 767px) {
	.ah-actions {
		width: 100%;
		flex-direction: column;
	}
	.ah-btn {
		width: 100%;
		justify-content: center;
	}
	.ah-blob {
		filter: blur(60px);
	}
	.ah-blob-1, .ah-blob-2 {
		width: 90vw;
		height: 90vw;
	}
	.ah-blob-3, .ah-blob-4 {
		width: 70vw;
		height: 70vw;
	}
}