/* EL Monitor LABS - Landing Community Manager */

.emcm-landing {
	--emcm-bg: #070b14;
	--emcm-card: #0c1222;
	--emcm-text: #f8fafc;
	--emcm-muted: rgba(248, 250, 252, 0.72);
	--emcm-accent: #00d4ff;
	--emcm-accent-2: #a855f7;
	--emcm-accent-3: #ec4899;
	--emcm-border: rgba(0, 212, 255, 0.45);
	--emcm-radius: 16px;
	color: var(--emcm-text);
	background:
		radial-gradient(circle at 10% 0%, rgba(0, 212, 255, 0.08), transparent 35%),
		radial-gradient(circle at 90% 100%, rgba(168, 85, 247, 0.08), transparent 35%),
		var(--emcm-bg);
	padding: 48px 0 72px;
	font-family: inherit;
}

.emcm-container {
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
}

.emcm-glow-card {
	position: relative;
	border-radius: var(--emcm-radius);
	padding: 2px;
	background: linear-gradient(135deg, var(--emcm-accent), var(--emcm-accent-2), var(--emcm-accent-3));
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.emcm-glow-card::before {
	content: "";
	position: absolute;
	inset: 2px;
	border-radius: calc(var(--emcm-radius) - 2px);
	background:
		radial-gradient(circle at 20% 0%, rgba(0, 212, 255, 0.1), transparent 50%),
		linear-gradient(165deg, #0c1222 0%, #0a0e1a 100%);
	z-index: 0;
}

.emcm-glow-card > * {
	position: relative;
	z-index: 1;
}

.emcm-eyebrow {
	margin: 0 0 12px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--emcm-accent);
}

.emcm-section-head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 36px;
}

.emcm-section-head h2 {
	margin: 0 0 12px;
	font-size: clamp(28px, 4vw, 40px);
	line-height: 1.1;
}

.emcm-section-head p {
	margin: 0;
	color: var(--emcm-muted);
	line-height: 1.6;
}

/* Hero */
.emcm-hero {
	margin-bottom: 56px;
}

.emcm-hero__inner {
	padding: 40px;
	text-align: center;
}

.emcm-hero__title {
	margin: 0 0 12px;
	font-size: clamp(34px, 5vw, 56px);
	line-height: 1.05;
}

.emcm-hero__subtitle {
	margin: 0 0 16px;
	font-size: clamp(18px, 2.5vw, 24px);
	color: var(--emcm-muted);
}

.emcm-hero__description {
	max-width: 680px;
	margin: 0 auto 28px;
	color: var(--emcm-muted);
	line-height: 1.65;
}

.emcm-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

/* Buttons */
.emcm-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 22px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.emcm-btn--primary {
	color: #fff;
	background: rgba(0, 0, 0, 0.35);
	border: 1px solid var(--emcm-border);
	box-shadow: 0 0 16px rgba(0, 212, 255, 0.25);
}

.emcm-btn--primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 0 22px rgba(0, 212, 255, 0.45);
	color: #fff;
}

.emcm-btn--ghost {
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: transparent;
}

.emcm-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
}

.emcm-btn--plan {
	width: 100%;
	margin-top: auto;
}

/* Plans grid */
.emcm-plans {
	margin-bottom: 56px;
}

.emcm-plans__grid {
	display: grid;
	gap: 24px;
}

.emcm-plans__grid--1 { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
.emcm-plans__grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.emcm-plans__grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.emcm-plans__grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.emcm-plan {
	display: flex;
}

.emcm-plan__inner {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 24px;
}

.emcm-plan--featured .emcm-plan__inner {
	transform: scale(1.02);
}

.emcm-plan__head {
	margin-bottom: 20px;
}

.emcm-plan__badge {
	display: inline-block;
	margin-bottom: 10px;
	padding: 4px 10px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--emcm-accent-2), var(--emcm-accent-3));
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.emcm-plan__name {
	margin: 0 0 10px;
	font-size: 24px;
}

.emcm-plan__price {
	display: flex;
	align-items: baseline;
	gap: 6px;
	margin-bottom: 12px;
}

.emcm-plan__amount {
	font-size: 34px;
	font-weight: 800;
	line-height: 1;
}

.emcm-plan__period {
	color: var(--emcm-muted);
	font-size: 14px;
}

.emcm-plan__description {
	margin: 0;
	color: var(--emcm-muted);
	line-height: 1.55;
	font-size: 14px;
}

.emcm-plan__sections {
	display: grid;
	gap: 18px;
	margin-bottom: 24px;
}

.emcm-plan__section h4 {
	margin: 0 0 8px;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--emcm-accent);
}

.emcm-plan__section ul {
	margin: 0;
	padding-left: 18px;
	color: var(--emcm-muted);
}

.emcm-plan__section li + li {
	margin-top: 6px;
}

/* Comparison table */
.emcm-comparison {
	margin-bottom: 56px;
}

.emcm-comparison__wrap {
	padding: 18px;
	overflow-x: auto;
}

.emcm-comparison__table {
	width: 100%;
	border-collapse: collapse;
	min-width: 640px;
}

.emcm-comparison__table th,
.emcm-comparison__table td {
	padding: 14px 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	text-align: center;
}

.emcm-comparison__table thead th {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--emcm-accent);
}

.emcm-comparison__table tbody th {
	text-align: left;
	color: var(--emcm-text);
	font-weight: 600;
}

.emcm-comparison__table tbody td {
	color: var(--emcm-muted);
}

/* Final CTA */
.emcm-cta__inner {
	padding: 40px;
	text-align: center;
}

.emcm-cta__inner h2 {
	margin: 0 0 12px;
	font-size: clamp(26px, 3.5vw, 36px);
}

.emcm-cta__inner p {
	max-width: 620px;
	margin: 0 auto 24px;
	color: var(--emcm-muted);
	line-height: 1.6;
}

@media (max-width: 992px) {
	.emcm-plans__grid--3,
	.emcm-plans__grid--4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.emcm-landing {
		padding-top: 24px;
	}

	.emcm-hero__inner,
	.emcm-cta__inner {
		padding: 28px 20px;
	}

	.emcm-plans__grid--2,
	.emcm-plans__grid--3,
	.emcm-plans__grid--4 {
		grid-template-columns: 1fr;
	}

	.emcm-plan--featured .emcm-plan__inner {
		transform: none;
	}
}
