.leonlab-cta-band {
	position: relative;
	border: 1px solid rgba(59, 130, 246, 0.25);
	border-radius: 16px;
	padding: 22px;
	overflow: hidden;
	background: var(--leonlab-cta-band-gradient, linear-gradient(135deg, rgba(59,130,246,0.12), rgba(168,85,247,0.10)));
}

.leonlab-cta-band--bg-solid {
	background: none;
}

.leonlab-cta-band__inner {
	position: relative;
	z-index: 2;
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 18px;
	align-items: center;
}

.leonlab-cta-band__content {
	min-width: 0;
}

.leonlab-cta-band__headline {
	margin: 0 0 8px;
	font-size: var(--leonlab-cta-band-headline-size, 28px);
	font-weight: 900;
	letter-spacing: -0.02em;
}

.leonlab-cta-band__text {
	margin: 0;
	font-size: var(--leonlab-cta-band-text-size, 15px);
	opacity: 0.88;
}

.leonlab-cta-band__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
}

.leonlab-cta-band--align-left .leonlab-cta-band__actions {
	justify-content: flex-start;
}

.leonlab-cta-band--align-center .leonlab-cta-band__actions {
	justify-content: center;
}

.leonlab-cta-band--align-right .leonlab-cta-band__actions {
	justify-content: flex-end;
}

.leonlab-cta-band__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 14px;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 800;
	border: 1px solid rgba(255,255,255,0.20);
	transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.leonlab-cta-band__btn:hover {
	transform: translateY(-1px);
}

.leonlab-cta-band__btn--primary {
	background: rgba(109, 40, 217, 0.95);
	color: #fff;
	border-color: rgba(109, 40, 217, 0.35);
}

.leonlab-cta-band__btn--primary:hover {
	background: rgba(91, 33, 182, 0.98);
}

.leonlab-cta-band__btn--secondary {
	background: rgba(255,255,255,0.12);
	color: inherit;
	border-color: rgba(255,255,255,0.22);
}

.leonlab-cta-band__btn--secondary:hover {
	background: rgba(255,255,255,0.16);
}

.leonlab-cta-band__glow {
	position: absolute;
	inset: -60px;
	z-index: 1;
	background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.35), transparent 55%),
		radial-gradient(circle at 80% 30%, rgba(99,102,241,0.20), transparent 55%),
		radial-gradient(circle at 30% 90%, rgba(168,85,247,0.20), transparent 60%);
	opacity: 0.55;
	pointer-events: none;
}

@media (max-width: 860px) {
	.leonlab-cta-band__inner {
		grid-template-columns: 1fr;
	}
	.leonlab-cta-band__actions {
		justify-content: flex-start;
	}
}
