html.ml-active, html.ml-active body {
  margin: 0;
  padding: 0;
  background: #0f0a18;
  overflow-x: hidden;
}
.mobile-landing {
  display: none;
  min-height: 100vh;
  background: linear-gradient(165deg, #1a1025 0%, #0f0a18 50%, #1a0f2e 100%);
  color: white;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
}
.mobile-landing.active { display: flex; flex-direction: column; }

.ml-header {
  padding: 24px 24px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ml-logo { width: 36px; height: 36px; border-radius: 10px; }
.ml-brand { font-size: 22px; font-weight: 700; }

.ml-hero {
  padding: 40px 24px 0;
  text-align: center;
}
.ml-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: #c4b5fd;
  margin-bottom: 20px;
}
.ml-badge-dot {
  width: 6px; height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: ml-pulse 2s infinite;
}
@keyframes ml-pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

.ml-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 12px;
}
.ml-title em {
  font-style: normal;
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ml-subtitle {
  font-size: 15px;
  color: #a1a1aa;
  line-height: 1.5;
  margin: 0 auto 32px;
  max-width: 340px;
}

.ml-phones {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  margin-bottom: 32px;
  overflow: hidden;
}
.ml-phone {
  width: 105px;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(139, 92, 246, 0.3);
  flex-shrink: 0;
}
.ml-phone:nth-child(2) {
  width: 120px;
  margin-top: -8px;
}
.ml-phone:nth-child(3) {
  width: 105px;
  margin-top: 8px;
}

.ml-features {
  padding: 0 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ml-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px;
}
.ml-feature-icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.12);
  border-radius: 10px;
}
.ml-feature-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
.ml-feature-desc {
  font-size: 13px;
  color: #a1a1aa;
  line-height: 1.4;
}

.ml-coming {
  text-align: center;
  padding: 24px;
  margin: 0 24px 16px;
  background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(124,58,237,0.08));
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: 16px;
}
.ml-coming-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.ml-coming-desc {
  font-size: 13px;
  color: #c4b5fd;
  line-height: 1.4;
}
.ml-store-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}
.ml-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 10px 16px;
  color: white;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}
.ml-store-icon { font-size: 20px; }

.ml-desktop-link {
  text-align: center;
  padding: 20px 24px 40px;
}
.ml-desktop-link a {
  color: #a1a1aa;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ml-footer {
  text-align: center;
  padding: 0 24px 24px;
  font-size: 12px;
  color: #52525b;
}