/* ======================================================
   LaunchMind — Landing Page Styles (landing.css)
   ====================================================== */

/* ── Body scroll toggle ── */
body.lm-cinematic {
  overflow: hidden !important;
  height: 100vh !important;
}

/* Scene layer sits at z-index 10/20 (from scan.css).
   Landing sits in normal flow below all scenes. */

/* ── Landing wrapper (scrollable, below hero section) ── */
.lm-landing-wrap {
  position: relative;
  z-index: 1;
}

/* Hide landing when cinematic flow is active */
body.lm-cinematic .lm-landing-wrap {
  display: none;
}

/* ── Scroll reveal animations ── */
.lp-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.lp-reveal.lp-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Layout ── */
.lp-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.lp-section {
  padding: 80px 0;
  position: relative;
}
.lp-section-head {
  text-align: center;
  margin-bottom: 56px;
}

/* ── Typography ── */
.lp-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-top: 16px;
}
.lp-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #00FF87;
  background: rgba(0, 255, 135, 0.1);
  border: 1px solid rgba(0, 255, 135, 0.25);
  border-radius: 100px;
  padding: 4px 14px;
}

/* ── SECTION 1: Social Proof ── */
.lp-proof-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #A0A0B8;
}
.lp-avatars {
  display: flex;
  gap: -8px;
}
.lp-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #0A0A0F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  margin-left: -8px;
  flex-shrink: 0;
}
.lp-avatars .lp-avatar:first-child { margin-left: 0; }

/* ── SECTION 2: How It Works ── */
.lp-steps {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.lp-step {
  flex: 1;
  min-width: 220px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s;
}
.lp-step:hover {
  border-color: rgba(0, 255, 135, 0.3);
}
.lp-step-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  color: #00FF87;
  letter-spacing: 0.1em;
}
.lp-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0,255,135,0.08);
  border: 1px solid rgba(0,255,135,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00FF87;
}
.lp-step-icon svg {
  width: 22px;
  height: 22px;
}
.lp-step-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
}
.lp-step-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #A0A0B8;
  line-height: 1.6;
}
.lp-step-arrow {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.2);
  align-self: center;
  flex-shrink: 0;
}

/* ── SECTION 3: Compare ── */
.lp-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 640px) {
  .lp-compare { grid-template-columns: 1fr; }
  .lp-steps { flex-direction: column; }
  .lp-step-arrow { display: none; }
  .lp-feature { flex-direction: column !important; }
  .lp-feature-reverse { flex-direction: column !important; }
}
.lp-compare-col {
  border-radius: 20px;
  padding: 32px;
}
.lp-compare-bad {
  background: rgba(239,68,68,0.05);
  border: 1px solid rgba(239,68,68,0.15);
}
.lp-compare-good {
  background: rgba(0,255,135,0.04);
  border: 1px solid rgba(0,255,135,0.2);
}
.lp-compare-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}
.lp-compare-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
}
.lp-icon-bad { background: rgba(239,68,68,0.15); color: #ef4444; }
.lp-icon-good { background: rgba(0,255,135,0.12); color: #00FF87; }
.lp-compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-compare-list li {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #A0A0B8;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.lp-x { color: #ef4444; font-weight: 800; flex-shrink: 0; }
.lp-check { color: #00FF87; font-weight: 800; flex-shrink: 0; }

/* ── SECTION 4: Testimonials ── */
.lp-testimonials-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: none;
}
.lp-testimonials-scroll::-webkit-scrollbar { display: none; }
.lp-testimonial {
  flex-shrink: 0;
  width: 320px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s, transform 0.3s;
}
.lp-testimonial:hover {
  border-color: rgba(0,255,135,0.2);
  transform: translateY(-4px);
}
.lp-testi-stars { font-size: 0.95rem; }
.lp-testi-quote {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #d0d0e0;
  line-height: 1.65;
  flex: 1;
}
.lp-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lp-testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.lp-testi-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}
.lp-testi-role {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: #A0A0B8;
}

/* ── SECTION 5: Feature Highlights ── */
.lp-feature {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}
.lp-feature:last-child { margin-bottom: 0; }
.lp-feature-reverse { flex-direction: row-reverse; }
.lp-feature-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lp-feature-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.lp-feature-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #A0A0B8;
  line-height: 1.7;
  max-width: 460px;
}
.lp-feature-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}
.lp-mock-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-mock-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 100px;
}
.lp-mock-reddit {
  background: rgba(255,69,0,0.12);
  color: #ff6b2b;
  border: 1px solid rgba(255,69,0,0.2);
}
.lp-mock-ups {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: #00FF87;
}
.lp-mock-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.83rem;
  color: #A0A0B8;
  line-height: 1.5;
  font-style: italic;
}
.lp-roadmap-item {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #A0A0B8;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
}
.lp-roadmap-done {
  color: #00FF87;
  background: rgba(0,255,135,0.04);
  border-color: rgba(0,255,135,0.15);
  text-decoration: line-through;
  text-decoration-color: rgba(0,255,135,0.4);
}
.lp-roadmap-future { color: rgba(160,160,184,0.4); }

/* ── SECTION 6: Big Quote ── */
.lp-bigquote { padding-top: 96px; padding-bottom: 96px; }
.lp-quote-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  max-width: 820px;
  margin: 0 auto 20px;
  line-height: 1.3;
}
.lp-quote-text em { color: #00FF87; font-style: normal; }
.lp-quote-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #A0A0B8;
  margin-bottom: 40px;
}

/* ── CTA Button (shared) ── */
.lp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #00FF87;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 0 0 0 rgba(0,255,135,0.4);
}
.lp-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,255,135,0.35);
  background: #00ffaa;
}

/* ── SECTION 7: FAQ ── */
.lp-faq-wrap { max-width: 760px; }
.lp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.lp-faq-item[open] {
  border-color: rgba(0,255,135,0.2);
}
.lp-faq-q {
  list-style: none;
  padding: 20px 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.lp-faq-q::after {
  content: '+';
  font-size: 1.2rem;
  color: #00FF87;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.lp-faq-item[open] .lp-faq-q::after { transform: rotate(45deg); }
.lp-faq-q::-webkit-details-marker { display: none; }
.lp-faq-a {
  padding: 0 24px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #A0A0B8;
  line-height: 1.7;
}

/* ── SECTION 8: Final CTA ── */
.lp-final-cta { padding-top: 100px; padding-bottom: 100px; }
.lp-final-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
}
.lp-final-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #A0A0B8;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* ── Footer ── */
.lp-footer {
  background: #06060a;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 24px 20px;
  text-align: center;
}
.lp-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}
.lp-footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}
.lp-footer-brand span { font-size: 0.65rem; vertical-align: top; color: #555; }
.lp-footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: #555;
}
.lp-footer-links a { color: #A0A0B8; text-decoration: none; transition: color 0.2s; }
.lp-footer-links a:hover { color: #00FF87; }
.lp-footer-right {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: #555;
}
.lp-footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: #333;
}

/* ── MCQ Scenes ── */
.mcq-scene {
  position: absolute;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #050508;
  gap: 0;
}
.mcq-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 640px;
  width: 100%;
  padding: 0 24px;
}
.mcq-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #00FF87;
  margin-bottom: -16px;
}
.mcq-question {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  text-align: center;
  line-height: 1.2;
}
.mcq-options {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.mcq-pill {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.15);
  color: #e0e0ee;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s, box-shadow 0.25s;
  user-select: none;
  white-space: nowrap;
}
.mcq-pill:hover {
  background: rgba(0,255,135,0.08);
  border-color: rgba(0,255,135,0.4);
  color: #fff;
  transform: translateY(-2px);
}
.mcq-pill.mcq-selected {
  background: rgba(0,255,135,0.14);
  border-color: #00FF87;
  color: #00FF87;
  box-shadow: 0 0 20px rgba(0,255,135,0.2);
  transform: scale(1.05);
}
.mcq-progress {
  position: absolute;
  bottom: 40px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.mcq-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transition: background 0.3s, transform 0.3s;
}
.mcq-dot-active {
  background: #00FF87;
  transform: scale(1.3);
}
.mcq-dot-done {
  background: rgba(0,255,135,0.45);
}
