/**
 * Home — Features / solutions we provide
 */

/* Features â€” Solutions we provide (animated SVG arts) */
.l1-feat {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 0;
	border-radius: 22px;
	background: #fff;
	border: 1px solid var(--l1-line);
	box-shadow: var(--l1-shadow-sm);
	overflow: hidden;
	transition: transform 0.3s var(--l1-ease), box-shadow 0.3s var(--l1-ease), border-color 0.3s;
}
.l1-feat:hover {
	transform: translateY(-5px);
	border-color: rgba(15, 23, 42, 0.12);
	box-shadow: var(--l1-shadow);
}
.l1-feat-art {
	position: relative;
	height: 118px;
	min-height: 118px;
	/* background:
		radial-gradient(circle at 18% 28%, rgba(38, 63, 216, 0.1), transparent 48%),
		radial-gradient(circle at 88% 72%, rgba(121, 149, 255, 0.12), transparent 46%),
		linear-gradient(165deg, #f8f9ff 0%, #f0f4ff 100%); */
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.l1-feat-stage {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	padding: 0.5rem 0.75rem 0.35rem;
}
.l1-feat-stage svg {
	width: min(100%, 168px);
	height: auto;
	max-height: 100px;
	display: block;
	overflow: visible;
}
.l1-feat-body {
	padding: 1.05rem 1.2rem 1.25rem;
}
.l1-feat h3 {
	font-size: 1.02rem;
	font-weight: 700;
	margin: 0 0 0.4rem;
	letter-spacing: -0.02em;
	color: var(--l1-ink);
}
.l1-feat p {
	margin: 0;
	font-size: 0.86rem;
	line-height: 1.5;
	color: var(--l1-muted);
}
.l1-cases-cta {
	margin-top: 2rem;
}

/* Feature art motion */
.l1-feat-art .l1-fa-float {
	animation: l1FeatFloat 3.2s ease-in-out infinite;
	transform-origin: center;
}
.l1-feat-art .l1-fa-float-d {
	animation: l1FeatFloat 3.6s ease-in-out infinite 0.35s;
}
.l1-feat-art .l1-fa-pulse {
	animation: l1FeatPulse 2s ease-out infinite;
	transform-origin: center;
}
.l1-feat-art .l1-fa-bar {
	transform-box: fill-box;
	transform-origin: bottom;
	animation: l1FeatBar 1.6s ease-in-out infinite;
}
.l1-feat-art .l1-fa-bar:nth-child(2) { animation-delay: 0.12s; }
.l1-feat-art .l1-fa-bar:nth-child(3) { animation-delay: 0.24s; }
.l1-feat-art .l1-fa-bar:nth-child(4) { animation-delay: 0.36s; }
.l1-feat-art .l1-fa-bar:nth-child(5) { animation-delay: 0.48s; }
.l1-feat-art .l1-fa-eq {
	transform-box: fill-box;
	transform-origin: bottom;
	animation: l1FeatEq 0.9s ease-in-out infinite;
}
.l1-feat-art .l1-fa-eq:nth-child(2) { animation-delay: 0.1s; }
.l1-feat-art .l1-fa-eq:nth-child(3) { animation-delay: 0.2s; }
.l1-feat-art .l1-fa-eq:nth-child(4) { animation-delay: 0.3s; }
.l1-feat-art .l1-fa-eq:nth-child(5) { animation-delay: 0.15s; }
.l1-feat-art .l1-fa-ring {
	animation: l1FeatRing 2.2s ease-out infinite;
	transform-origin: center;
}
.l1-feat-art .l1-fa-dash {
	stroke-dasharray: 6 6;
	animation: l1FeatDash 1.4s linear infinite;
}
.l1-feat-art .l1-fa-blink {
	animation: l1FeatBlink 1.5s ease-in-out infinite;
}
@keyframes l1FeatFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-5px); }
}
@keyframes l1FeatPulse {
	0% { transform: scale(0.7); opacity: 0.55; }
	70% { transform: scale(1.35); opacity: 0; }
	100% { transform: scale(1.35); opacity: 0; }
}
@keyframes l1FeatBar {
	0%, 100% { transform: scaleY(0.45); }
	50% { transform: scaleY(1); }
}
@keyframes l1FeatEq {
	0%, 100% { transform: scaleY(0.35); }
	50% { transform: scaleY(1); }
}
@keyframes l1FeatRing {
	0% { transform: scale(0.6); opacity: 0.5; }
	100% { transform: scale(1.5); opacity: 0; }
}
@keyframes l1FeatDash {
	to { stroke-dashoffset: -24; }
}
@keyframes l1FeatBlink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.35; }
}
@media (prefers-reduced-motion: reduce) {
	.l1-feat-art .l1-fa-float,
	.l1-feat-art .l1-fa-float-d,
	.l1-feat-art .l1-fa-pulse,
	.l1-feat-art .l1-fa-bar,
	.l1-feat-art .l1-fa-eq,
	.l1-feat-art .l1-fa-ring,
	.l1-feat-art .l1-fa-dash,
	.l1-feat-art .l1-fa-blink { animation: none !important; }
}
