/* ============================================================
   LM Technologies Section — Styles
   ============================================================ */

/* ============================================================
   LM Technologies Section — Motion & Atmosphere Layer
   ============================================================ */

.lm-tech-wrapper {
	background-color: #0d0d0d;
	padding: 100px 40px;
	position: relative;
	overflow: hidden;
	font-family: 'DM Sans', sans-serif;
}

/* Background Mesh */
.lm-tech-bg-mesh {
	position: absolute;
	inset: 0;
	background: 
		radial-gradient(circle at 20% 30%, rgba(108, 99, 255, 0.05) 0%, transparent 40%),
		radial-gradient(circle at 80% 70%, rgba(0, 212, 170, 0.05) 0%, transparent 40%);
	pointer-events: none;
	z-index: 1;
}

.lm-tech-header {
	max-width: 800px;
	margin: 0 auto 64px;
	text-align: center;
	position: relative;
	z-index: 10;
}
.lm-tech-heading {
	font-family: 'Space Grotesk', sans-serif;
	font-size: clamp(2.4rem, 5vw, 4rem);
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 16px;
	letter-spacing: -0.02em;
}
.lm-tech-desc {
	font-size: 18px;
	color: #9ca3af;
	line-height: 1.6;
}

/* Filters */
.lm-tech-filters {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-bottom: 64px;
	flex-wrap: wrap;
	position: relative;
	z-index: 10;
}
.lm-tech-filter-btn {
	padding: 12px 28px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 100px;
	color: #9ca3af;
	font-family: 'Space Grotesk', sans-serif;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.4s var(--lm-ease-spring);
}
.lm-tech-filter-btn:hover {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.2);
}
.lm-tech-filter-btn.active {
	background: #6c63ff;
	border-color: #6c63ff;
	color: #ffffff;
	box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
}

/* Grid */
.lm-tech-grid {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
	position: relative;
	z-index: 10;
}

.lm-tech-card {
	flex: 0 0 160px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 24px;
	padding: 32px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.lm-tech-card:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: #6c63ff;
	transform: translateY(-10px) scale(1.05);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.lm-tech-icon {
	width: 54px;
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 34px;
	color: #6c63ff;
	transition: transform 0.4s ease;
}
.lm-tech-card:hover .lm-tech-icon {
	transform: scale(1.2) rotate(10deg);
}
.lm-tech-name {
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 700;
	font-size: 15px;
	color: #ffffff;
}

.lm-tech-card--hidden {
	display: none;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
	.lm-tech-wrapper { padding: 60px 20px; }
	.lm-tech-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
}
