/**
 * Home — Platform growth section
 */

/* Platform media â€” animated visual */
.l1-platform-visual {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.l1-platform-art {
	margin: 0;
	width: 100%;
	max-width: 560px;
	min-height: 340px;
	padding: 1.35rem 1.15rem 1.25rem;
	border-radius: 28px;
	background:
		radial-gradient(circle at 18% 22%, rgba(38, 63, 216, 0.14), transparent 46%),
		radial-gradient(circle at 88% 78%, rgba(121, 149, 255, 0.18), transparent 44%),
		linear-gradient(165deg, #f3f5ff 0%, #eef3ff 100%);
	border: 1px solid var(--l1-line);
	box-shadow: var(--l1-shadow);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}
.l1-platform-stage {
	width: 100%;
	min-height: 220px;
	display: grid;
	place-items: center;
}
.l1-platform-stage svg {
	width: min(94%, 380px);
	height: auto;
	max-height: 260px;
	display: block;
	overflow: visible;
}
.l1-platform-chips {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.45rem;
}
.l1-platform-chips li {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.4rem 0.75rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(38, 63, 216, 0.1);
	font-size: 0.74rem;
	font-weight: 650;
	color: var(--l1-ink);
	box-shadow: var(--l1-shadow-sm);
}
.l1-platform-chips .bi {
	background: var(--gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-size: 0.9rem;
}
#l1-platform .l1-section-sub {
	margin: 0 0 1.35rem;
	max-width: 42ch;
}
@media (max-width: 991.98px) {
	.l1-platform-art {
		max-width: 420px;
		margin-inline: auto;
		min-height: 300px;
	}
	.l1-platform-stage { min-height: 180px; }
	.l1-platform-stage svg { max-height: 200px; }
}
