/* ══════════════════════════════════════════════════════════════
   IQViral — Landing Page 2: Creator Business Platform
   Modern Ultra-Dark Glassmorphic UI with Orange & Purple Accents
   ══════════════════════════════════════════════════════════════ */

:root {
  /* Brand Palettes - Light Modern Direction (75-80% Light, 15% Dark, 5-10% Orange) */
  --lp-bg-main: #FFFFFF;
  --lp-bg-subtle: #F8F9FA;
  --lp-bg-card: #FFFFFF;
  --lp-bg-card-hover: #FFFFFF;
  --lp-bg-dark: #FFFFFF;
  --lp-bg-dark-accent: #0B0C12;
  --lp-bg-dark-card: #14161F;
  --lp-surface-elevated: #FFFFFF;
  --lp-surface-secondary: #F8F9FA;
  
  /* Borders */
  --lp-border: #E5E7EB;
  --lp-border-card: #ECECEF;
  --lp-border-hover: rgba(249, 115, 22, 0.4);
  --lp-border-purple: rgba(139, 92, 246, 0.3);
  --lp-border-dark: rgba(255, 255, 255, 0.12);
  
  /* Typography Colors */
  --lp-text-primary: #0F1117;
  --lp-text-title: #0F1117;
  --lp-text-body: #4B5563;
  --lp-text-secondary: #4B5563;
  --lp-text-muted: #6B7280;
  --lp-text-light: #0F1117;
  --lp-text-on-dark: #FFFFFF;
  --lp-text-muted-on-dark: #D1D5DB;
  
  /* Accents */
  --lp-orange: #F97316;
  --lp-orange-hover: #EA580C;
  --lp-orange-light: rgba(249, 115, 22, 0.08);
  --lp-orange-border: rgba(249, 115, 22, 0.28);
  --lp-purple: #8B5CF6;
  --lp-purple-light: rgba(139, 92, 246, 0.08);
  --lp-pink: #EC4899;
  --lp-green: #10B981;
  --lp-blue: #3B82F6;

  /* Shadows */
  --lp-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --lp-shadow-card: 0 8px 30px rgba(0, 0, 0, 0.04);
  --lp-shadow-card-hover: 0 16px 36px -4px rgba(0, 0, 0, 0.08);
  --lp-shadow-btn: 0 8px 20px -4px rgba(249, 115, 22, 0.35);

  /* Layout & Curves */
  --lp-container-max: 1240px;
  --lp-radius-card: 18px;
  --lp-radius-btn: 12px;
  --lp-ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --lp-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body.lp2-body,
.landing-page-view.lp2-body,
#landing-page-view {
  background-color: #FFFFFF !important;
  color: #0F1117 !important;
  font-family: var(--lp-font);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
}

/* Container */
.lp2-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Ambient Background Glows - Ultra-subtle light tints */
.lp2-glow-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
}

.lp2-glow-orange {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.18) 0%, transparent 70%);
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}

.lp2-glow-purple {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
  top: 600px;
  right: -100px;
}

.lp2-glow-creator {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.10) 0%, transparent 70%);
  top: 1400px;
  left: -150px;
}

.lp2-glow-mentor {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
  top: 3200px;
  right: -150px;
}

/* ── Typography & Gradients ────────────────────────────────────────── */
.lp2-gradient-text {
  background: linear-gradient(135deg, #F97316 0%, #FB923C 50%, #FDBA74 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp2-gradient-purple {
  background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 50%, #EC4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp2-gradient-dual {
  background: linear-gradient(135deg, #F97316 0%, #8B5CF6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Navigation Header ─────────────────────────────────────────────── */
.lp2-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(9, 10, 15, 0.85);
  border-bottom: 1px solid var(--lp-border);
  transition: all 0.3s ease;
}

.lp2-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.lp2-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.lp2-logo-img {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  max-width: 44px;
  max-height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(249, 115, 22, 0.4));
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp2-logo:hover .lp2-logo-img {
  transform: scale(1.12) rotate(4deg);
}

.lp2-logo-text {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #FFFFFF;
}

.lp2-logo-accent {
  color: var(--lp-orange);
}

.lp2-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.lp2-nav-link {
  color: var(--lp-text-body);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lp2-nav-link:hover {
  color: #FFFFFF;
}

.lp2-nav-badge {
  background: rgba(249, 115, 22, 0.15);
  color: var(--lp-orange);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.lp2-nav-badge-purple {
  background: rgba(139, 92, 246, 0.15);
  color: var(--lp-purple);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.lp2-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp2-btn-login {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 9px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s;
}

.lp2-btn-login:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

.lp2-btn-register {
  background: linear-gradient(135deg, var(--lp-orange), #EA580C);
  color: #FFFFFF;
  border: none;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lp2-btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(249, 115, 22, 0.45);
}

/* ── Hero Section ─────────────────────────────────────────────────── */
.lp2-hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}

.lp2-hero-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}

.lp2-hero-content {
  text-align: left;
  position: relative;
  z-index: 2;
}

.lp2-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 115, 22, 0.1);
  color: var(--lp-orange);
  border: 1px solid rgba(249, 115, 22, 0.3);
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 22px;
  animation: lp2-pulse 3s infinite ease-in-out;
}

@keyframes lp2-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(249, 115, 22, 0); }
}

.lp2-hero-title {
  font-size: clamp(2.3rem, 4.4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: #FFFFFF;
  margin: 0 0 20px;
  text-align: left;
}

.lp2-hero-subtitle {
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: var(--lp-text-body);
  max-width: 680px;
  margin: 0 0 34px;
  line-height: 1.6;
  text-align: left;
}

.lp2-hero-ctas {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.lp2-hero-btn-creator {
  background: linear-gradient(135deg, var(--lp-orange), #EA580C);
  color: #FFFFFF;
  padding: 15px 32px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(249, 115, 22, 0.35);
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lp2-hero-btn-creator:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(249, 115, 22, 0.5);
}

.lp2-hero-btn-mentor {
  background: linear-gradient(135deg, #7C3AED, #6D28D9);
  color: #FFFFFF;
  padding: 15px 32px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.35);
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lp2-hero-btn-mentor:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(124, 58, 237, 0.5);
}

/* Lion Mascot Pointing */
.lp2-hero-lion-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.lp2-hero-lion-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.28) 0%, rgba(234, 88, 12, 0.1) 45%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

.lp2-hero-lion-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 380px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.6));
  animation: lp2-lion-float 4.5s ease-in-out infinite;
  transform-origin: bottom center;
}

@keyframes lp2-lion-float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(-1deg);
  }
}

@media (max-width: 960px) {
  .lp2-hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .lp2-hero-content {
    text-align: center;
  }
  .lp2-hero-title, .lp2-hero-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .lp2-hero-ctas {
    justify-content: center;
  }
  .lp2-hero-lion-img {
    max-width: 280px;
  }
}

/* ── Live Ticker Strip ─────────────────────────────────────────────── */
.lp2-stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--lp-border);
  backdrop-filter: blur(16px);
  border-radius: 18px;
  padding: 20px 32px;
  max-width: 920px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.lp2-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp2-stat-num {
  font-size: 1.7rem;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.lp2-stat-lbl {
  font-size: 0.78rem;
  color: var(--lp-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.lp2-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--lp-border);
}

/* ── Dual Gateway Section (Dos Caminos) ────────────────────────────── */
.lp2-section-dual {
  padding: 80px 0;
  position: relative;
}

.lp2-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}

.lp2-dual-card {
  position: relative;
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  border-radius: 24px;
  padding: 40px 36px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lp2-dual-card.creator:hover {
  border-color: var(--lp-border-hover);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(249, 115, 22, 0.15);
}

.lp2-dual-card.mentor:hover {
  border-color: var(--lp-border-purple);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(139, 92, 246, 0.18);
}

.lp2-dual-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.lp2-dual-card.creator .lp2-dual-icon {
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.25);
  color: var(--lp-orange);
}

.lp2-dual-card.mentor .lp2-dual-icon {
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.25);
  color: var(--lp-purple);
}

.lp2-dual-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.lp2-dual-card.creator .lp2-dual-tag {
  background: rgba(249, 115, 22, 0.15);
  color: var(--lp-orange);
}

.lp2-dual-card.mentor .lp2-dual-tag {
  background: rgba(139, 92, 246, 0.15);
  color: var(--lp-purple);
}

.lp2-dual-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.lp2-dual-desc {
  color: var(--lp-text-body);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.lp2-dual-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.lp2-dual-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--lp-text-light);
}

.lp2-dual-feature-item i {
  color: var(--lp-green);
  font-size: 0.85rem;
}

.lp2-dual-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  width: 100%;
}

.lp2-dual-card.creator .lp2-dual-action-btn {
  background: rgba(249, 115, 22, 0.12);
  color: var(--lp-orange);
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.lp2-dual-card.creator .lp2-dual-action-btn:hover {
  background: var(--lp-orange);
  color: #FFFFFF;
}

.lp2-dual-card.mentor .lp2-dual-action-btn {
  background: rgba(139, 92, 246, 0.12);
  color: var(--lp-purple);
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.lp2-dual-card.mentor .lp2-dual-action-btn:hover {
  background: var(--lp-purple);
  color: #FFFFFF;
}

/* ── Section Titles ───────────────────────────────────────────────── */
.lp2-section-header {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 50px;
}

.lp2-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.lp2-badge-orange {
  background: rgba(249, 115, 22, 0.12);
  color: var(--lp-orange);
  border: 1px solid rgba(249, 115, 22, 0.25);
}

.lp2-badge-purple {
  background: rgba(139, 92, 246, 0.12);
  color: var(--lp-purple);
  border: 1px solid rgba(139, 92, 246, 0.25);
}

.lp2-section-title {
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.lp2-section-subtitle {
  font-size: 1.08rem;
  color: var(--lp-text-body);
  line-height: 1.6;
}

/* ── Modern Icon System & Badges ─────────────────────────────────── */
.lp2-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  font-size: 1.25rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  flex-shrink: 0;
}

.lp2-icon-box.sm {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  font-size: 1rem;
}

.lp2-icon-box.lg {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  font-size: 1.6rem;
}

.lp2-icon-box.orange {
  background: radial-gradient(circle at 30% 30%, rgba(249, 115, 22, 0.25) 0%, rgba(249, 115, 22, 0.08) 100%);
  border: 1px solid rgba(249, 115, 22, 0.35);
  color: #FB923C;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.15);
}

.lp2-icon-box.purple {
  background: radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.25) 0%, rgba(139, 92, 246, 0.08) 100%);
  border: 1px solid rgba(139, 92, 246, 0.35);
  color: #C084FC;
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.15);
}

.lp2-icon-box.emerald {
  background: radial-gradient(circle at 30% 30%, rgba(16, 185, 129, 0.25) 0%, rgba(16, 185, 129, 0.08) 100%);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #34D399;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.15);
}

.lp2-icon-box.amber {
  background: radial-gradient(circle at 30% 30%, rgba(245, 158, 11, 0.25) 0%, rgba(245, 158, 11, 0.08) 100%);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: #FBBF24;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.15);
}

.lp2-icon-box.cyan {
  background: radial-gradient(circle at 30% 30%, rgba(6, 182, 212, 0.25) 0%, rgba(6, 182, 212, 0.08) 100%);
  border: 1px solid rgba(6, 182, 212, 0.35);
  color: #22D3EE;
  box-shadow: 0 4px 14px rgba(6, 182, 212, 0.15);
}

.lp2-icon-box.pink {
  background: radial-gradient(circle at 30% 30%, rgba(236, 72, 153, 0.25) 0%, rgba(236, 72, 153, 0.08) 100%);
  border: 1px solid rgba(236, 72, 153, 0.35);
  color: #F472B6;
  box-shadow: 0 4px 14px rgba(236, 72, 153, 0.15);
}

.lp2-icon-box.gold {
  background: radial-gradient(circle at 30% 30%, rgba(234, 179, 8, 0.25) 0%, rgba(234, 179, 8, 0.08) 100%);
  border: 1px solid rgba(234, 179, 8, 0.35);
  color: #FACC15;
  box-shadow: 0 4px 14px rgba(234, 179, 8, 0.15);
}

.lp2-pipe-card:hover .lp2-icon-box,
.lp2-bento-card:hover .lp2-icon-box {
  transform: scale(1.08);
}

/* ── 5-Step Creator Journey Pipeline ──────────────────────────────── */
.lp2-pipeline-wrapper {
  background: var(--lp-surface-secondary);
  border: 1px solid var(--lp-border);
  border-radius: 28px;
  padding: 44px 36px;
  margin-bottom: 70px;
  position: relative;
}

.lp2-pipeline-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.lp2-pipe-card {
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  border-radius: 18px;
  padding: 24px 20px;
  position: relative;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.lp2-pipe-card:hover {
  border-color: rgba(249, 115, 22, 0.4);
  transform: translateY(-4px);
  background: rgba(26, 29, 43, 0.9);
}

.lp2-pipe-step-num {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--lp-orange);
  background: rgba(249, 115, 22, 0.12);
  padding: 3px 8px;
  border-radius: 6px;
  align-self: flex-start;
  margin-bottom: 14px;
}

.lp2-pipe-icon-wrapper {
  margin-bottom: 14px;
}

.lp2-pipe-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.lp2-pipe-desc {
  font-size: 0.85rem;
  color: var(--lp-text-body);
  line-height: 1.5;
  margin-top: auto;
}

/* ── Feature Blocks (Goal Oriented) ────────────────────────────────── */
.lp2-feature-block {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lp2-feature-block:last-child {
  border-bottom: none;
}

.lp2-feature-block.reversed {
  grid-template-columns: 1.15fr 1fr;
}

.lp2-feature-block.reversed .lp2-feat-text {
  order: 2;
}

.lp2-feature-block.reversed .lp2-feat-visual {
  order: 1;
}

.lp2-feat-text {
  display: flex;
  flex-direction: column;
}

.lp2-feat-goal-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(249, 115, 22, 0.12);
  color: var(--lp-orange);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 8px;
  align-self: flex-start;
  margin-bottom: 14px;
}

.lp2-feat-title {
  font-size: clamp(1.8rem, 2.8vw, 2.3rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 16px;
}

.lp2-feat-desc {
  font-size: 1.02rem;
  color: var(--lp-text-body);
  line-height: 1.65;
  margin-bottom: 24px;
}

.lp2-feat-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.lp2-feat-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.lp2-feat-bullet-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(249, 115, 22, 0.12);
  color: #C2410C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.lp2-feat-bullet-title {
  font-size: 1.08rem;
  font-weight: 800;
  color: #0F1117;
  margin-bottom: 4px;
}

.lp2-feat-bullet-desc {
  font-size: 0.95rem;
  color: #4B5563;
  line-height: 1.5;
}

/* ── Interactive Visual Mockups ────────────────────────────────────── */
.lp2-mockup-frame {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.lp2-mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ECECEF;
  padding-bottom: 14px;
  margin-bottom: 18px;
}

.lp2-mockup-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lp2-mockup-dot {
  width: 11px;
  height: 11px;
  min-width: 11px;
  min-height: 11px;
  max-width: 11px;
  max-height: 11px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  flex-shrink: 0;
}

.lp2-dot-red { background: #EF4444; }
.lp2-dot-yellow { background: #F59E0B; }
.lp2-dot-green { background: #10B981; }

.lp2-mockup-title {
  font-size: 0.85rem;
  color: #4B5563;
  font-weight: 700;
}

/* Mockup Outlier Video Card */
.lp2-outlier-card-sample {
  background: #FAFAFC;
  border: 1.5px solid rgba(249, 115, 22, 0.25);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: all 0.2s;
}

.lp2-outlier-card-sample:hover {
  border-color: #F97316;
  background: #FFFDFB;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.08);
}

.lp2-sample-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lp2-sample-badge-outlier {
  background: linear-gradient(135deg, #F97316, #EA580C);
  color: white;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 6px;
}

.lp2-sample-velocity {
  color: #C2410C;
  font-size: 0.82rem;
  font-weight: 800;
}

.lp2-sample-video-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0F1117;
  line-height: 1.4;
}

.lp2-sample-metrics {
  display: flex;
  gap: 18px;
  font-size: 0.88rem;
  color: #4B5563;
}

.lp2-sample-metrics span strong {
  color: #0F1117;
  font-weight: 800;
}

/* Mockup Hook / Titles */
.lp2-hook-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp2-hook-text {
  font-size: 0.88rem;
  color: #FFFFFF;
  font-weight: 600;
}

.lp2-hook-ctr-score {
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
}

/* Mockup Legends Avatars */
.lp2-legends-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.lp2-legend-card {
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp2-legend-avatar {
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  max-width: 46px;
  max-height: 46px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--lp-purple);
}

.lp2-legend-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
}

.lp2-legend-role {
  font-size: 0.74rem;
  color: var(--lp-text-muted);
}

/* ── Mentor Transformation System ─────────────────────────────────── */
.lp2-mentor-flow-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--lp-surface-secondary);
  border: 1px solid var(--lp-border-purple);
  border-radius: 20px;
  padding: 24px 32px;
  margin: 36px 0 60px;
  flex-wrap: wrap;
  gap: 16px;
}

.lp2-mflow-step {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp2-mflow-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(139, 92, 246, 0.15);
  color: var(--lp-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.lp2-mflow-text {
  display: flex;
  flex-direction: column;
}

.lp2-mflow-label {
  font-size: 0.92rem;
  font-weight: 800;
  color: #FFFFFF;
}

.lp2-mflow-sub {
  font-size: 0.75rem;
  color: var(--lp-text-muted);
}

.lp2-mflow-arrow {
  color: var(--lp-text-muted);
  font-size: 1.1rem;
}

/* Mentor Dashboard Mockup */
.lp2-mentor-mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.lp2-student-row {
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lp2-student-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.lp2-student-avatar {
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  max-width: 42px;
  max-height: 42px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366F1, #8B5CF6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #FFFFFF;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.lp2-student-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lp2-student-channel {
  font-size: 0.76rem;
  color: var(--lp-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lp2-student-status {
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 0.74rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  white-space: nowrap;
}

.lp2-status-ontrack {
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
}

.lp2-status-alert {
  background: rgba(245, 158, 11, 0.15);
  color: #F59E0B;
}

/* ── Bento Grid: El Sistema Operativo Completo ─────────────────────── */
.lp2-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.lp2-bento-card {
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  border-radius: 20px;
  padding: 28px 24px;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.lp2-bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(26, 29, 43, 0.9);
}

.lp2-bento-card.span-2 {
  grid-column: span 2;
}

.lp2-bento-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.lp2-bicon-orange {
  background: rgba(249, 115, 22, 0.12);
  color: var(--lp-orange);
}

.lp2-bicon-purple {
  background: rgba(139, 92, 246, 0.12);
  color: var(--lp-purple);
}

.lp2-bicon-green {
  background: rgba(16, 185, 129, 0.12);
  color: var(--lp-green);
}

.lp2-bicon-pink {
  background: rgba(236, 72, 153, 0.12);
  color: var(--lp-pink);
}

.lp2-bento-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.lp2-bento-desc {
  font-size: 0.88rem;
  color: var(--lp-text-body);
  line-height: 1.55;
}

/* ── Testimonials (2-Row Infinite Marquee - Marz Style) ────────────── */
.lp2-section-testimonials {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.lp2-testi-marquee-wrapper {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 48px;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 1) 8%, rgba(0, 0, 0, 1) 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 1) 8%, rgba(0, 0, 0, 1) 92%, transparent 100%);
  padding: 10px 0;
}

.lp2-testi-row {
  display: flex;
  width: 100%;
  overflow: hidden;
  user-select: none;
}

.lp2-testi-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

/* Fila 1: Derecha a Izquierda (Move Left) */
.lp2-testi-row-left .lp2-testi-track {
  animation: lp2MarqueeLeft 44s linear infinite;
}

/* Fila 2: Izquierda a Derecha (Move Right) */
.lp2-testi-row-right .lp2-testi-track {
  animation: lp2MarqueeRight 44s linear infinite;
}

/* Pause marquee on hover so users can comfortably read */
.lp2-testi-row:hover .lp2-testi-track {
  animation-play-state: paused;
}

@keyframes lp2MarqueeLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes lp2MarqueeRight {
  0% {
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

/* Card Styling inspired by Marz */
.lp2-testi-card {
  width: 370px;
  min-width: 370px;
  max-width: 370px;
  flex-shrink: 0;
  background: #111215;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  box-sizing: border-box;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.lp2-testi-card:hover {
  transform: translateY(-4px);
  background: #16171b;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.lp2-testi-quote-icon {
  color: #FFFFFF;
  opacity: 0.85;
  display: flex;
  align-items: center;
  height: 18px;
}

.lp2-testi-quote {
  font-size: 0.94rem;
  color: #E2E8F0;
  line-height: 1.55;
  font-style: normal;
  font-weight: 450;
  margin: 0;
  flex-grow: 1;
  letter-spacing: -0.01em;
}

.lp2-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lp2-testi-avatar-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  background: #1c1d22;
}

.lp2-testi-author-info {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.lp2-testi-handle {
  font-size: 0.92rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.lp2-testi-badge-verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #38BDF8;
}

.lp2-testi-tag {
  font-size: 0.72rem;
  color: var(--lp-text-muted);
  font-weight: 500;
  margin-left: 2px;
}

/* ── Pricing Section ──────────────────────────────────────────────── */
.lp2-pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px;
  border-radius: 14px;
  max-width: 380px;
  margin: 0 auto 40px;
  border: 1px solid var(--lp-border);
}

.lp2-ptab-btn {
  flex: 1;
  padding: 10px 18px;
  border: none;
  background: transparent;
  color: var(--lp-text-body);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.lp2-ptab-btn.active {
  background: var(--lp-orange);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
}

.lp2-ptab-btn.active-mentor {
  background: var(--lp-purple);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.3);
}

.lp2-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.lp2-pricing-grid.coach-3cols {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1140px;
}

.lp2-price-card {
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  border-radius: 24px;
  padding: 36px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.lp2-price-card.featured {
  border-color: var(--lp-orange);
  background: rgba(26, 29, 43, 0.95);
  box-shadow: 0 16px 40px rgba(249, 115, 22, 0.15);
  transform: scale(1.02);
}

.lp2-price-card.featured-purple {
  border-color: var(--lp-purple);
  background: rgba(26, 29, 43, 0.95);
  box-shadow: 0 16px 40px rgba(139, 92, 246, 0.18);
  transform: scale(1.02);
}

.lp2-price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--lp-orange), #EA580C);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lp2-price-badge-purple {
  background: linear-gradient(135deg, #8B5CF6, #6D28D9);
}

.lp2-price-header {
  margin-bottom: 24px;
}

.lp2-price-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.lp2-price-target {
  font-size: 0.84rem;
  color: var(--lp-text-body);
}

.lp2-price-val-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 18px 0;
}

.lp2-price-val {
  font-size: 2.6rem;
  font-weight: 900;
  color: #FFFFFF;
}

.lp2-price-period {
  font-size: 0.88rem;
  color: var(--lp-text-muted);
}

.lp2-price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.lp2-price-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--lp-text-light);
}

.lp2-price-feat-item i {
  color: var(--lp-green);
  font-size: 0.82rem;
}

.lp2-price-btn {
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  text-align: center;
  border: none;
  transition: all 0.2s;
}

.lp2-pbtn-primary {
  background: linear-gradient(135deg, var(--lp-orange), #EA580C);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
}

.lp2-pbtn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(249, 115, 22, 0.45);
}

.lp2-pbtn-purple {
  background: linear-gradient(135deg, #8B5CF6, #6D28D9);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
}

.lp2-pbtn-purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(139, 92, 246, 0.45);
}

.lp2-pbtn-outline {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lp2-pbtn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ── FAQ Accordion ─────────────────────────────────────────────────── */
.lp2-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp2-faq-item {
  background: var(--lp-bg-card);
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.lp2-faq-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.lp2-faq-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  cursor: pointer;
  user-select: none;
}

.lp2-faq-icon {
  font-size: 0.9rem;
  color: var(--lp-text-muted);
  transition: transform 0.25s ease;
}

.lp2-faq-item.open .lp2-faq-icon {
  transform: rotate(180deg);
  color: var(--lp-orange);
}

.lp2-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
  color: var(--lp-text-body);
  font-size: 0.92rem;
  line-height: 1.6;
}

.lp2-faq-item.open .lp2-faq-answer {
  padding-bottom: 20px;
}

/* ── Final CTA Banner ──────────────────────────────────────────────── */
.lp2-final-cta {
  padding: 90px 0;
  text-align: center;
  position: relative;
}

.lp2-final-cta-card {
  background: radial-gradient(circle at center, rgba(249, 115, 22, 0.15) 0%, rgba(18, 20, 29, 0.9) 70%);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 32px;
  padding: 60px 36px;
  max-width: 960px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.lp2-final-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 18px;
}

.lp2-final-sub {
  font-size: 1.1rem;
  color: var(--lp-text-body);
  max-width: 640px;
  margin: 0 auto 36px;
}

.lp2-final-btn {
  background: linear-gradient(135deg, var(--lp-orange), #EA580C);
  color: #FFFFFF;
  padding: 18px 44px;
  border-radius: 14px;
  font-size: 1.1rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.lp2-final-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(249, 115, 22, 0.55);
}

/* ── Footer ────────────────────────────────────────────────────────── */
.lp2-footer {
  border-top: 1px solid var(--lp-border);
  padding: 50px 0 30px;
  background: #06070A;
}

.lp2-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.lp2-footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.lp2-footer-links a {
  color: var(--lp-text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.lp2-footer-links a:hover {
  color: #FFFFFF;
}

.lp2-footer-copy {
  text-align: center;
  font-size: 0.8rem;
  color: var(--lp-text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}

/* ── Auth Modal Popup ──────────────────────────────────────────────── */
.lp2-auth-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lp2-auth-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.lp2-auth-card {
  background: #11131C;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  width: 100%;
  max-width: 440px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.25s ease;
}

.lp2-auth-modal.open .lp2-auth-card {
  transform: translateY(0);
}

.lp2-auth-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  border: none;
  color: var(--lp-text-muted);
  font-size: 1.3rem;
  cursor: pointer;
}

.lp2-auth-close:hover {
  color: #FFFFFF;
}

.lp2-auth-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.06);
  padding: 4px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.lp2-auth-tab {
  flex: 1;
  padding: 8px;
  background: transparent;
  border: none;
  color: var(--lp-text-body);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.lp2-auth-tab.active {
  background: var(--lp-orange);
  color: #FFFFFF;
}

.lp2-role-selector {
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 4px;
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lp2-role-btn {
  flex: 1;
  padding: 8px 10px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--lp-text-muted, #94A3B8);
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.lp2-role-btn:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.05);
}

.lp2-role-btn.active {
  background: rgba(245, 158, 11, 0.18);
  border-color: rgba(245, 158, 11, 0.5);
  color: #F59E0B;
}

.lp2-role-btn.coach.active {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.5);
  color: #C4B5FD;
}

.lp2-form-group {
  margin-bottom: 14px;
}

.lp2-form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--lp-text-light);
  margin-bottom: 6px;
}

.lp2-form-input {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  color: #FFFFFF;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.lp2-form-input:focus {
  border-color: var(--lp-orange);
}

.lp2-form-submit {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, var(--lp-orange), #EA580C);
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
}

.lp2-google-btn {
  width: 100%;
  padding: 12px;
  background: #FFFFFF;
  color: #111827;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.lp2-auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 16px 0;
  color: var(--lp-text-muted);
  font-size: 0.78rem;
}

.lp2-auth-divider::before,
.lp2-auth-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--lp-border);
}

.lp2-auth-divider span {
  padding: 0 10px;
}

.lp2-auth-status {
  margin-top: 12px;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.82rem;
  display: none;
}

.lp2-auth-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.lp2-auth-status.success {
  display: block;
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.lp2-auth-status.info {
  display: block;
  background: rgba(59, 130, 246, 0.15);
  color: #60A5FA;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

/* ── Responsive Queries ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .lp2-pipeline-flow {
    grid-template-columns: repeat(3, 1fr);
  }
  .lp2-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp2-bento-card.span-2 {
    grid-column: span 1;
  }
  .lp2-pricing-grid.coach-3cols {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  /* Navigation */
  .lp2-nav-links {
    display: none;
  }

  .lp2-header-inner {
    padding: 0 16px;
  }

  .lp2-btn-login {
    padding: 8px 14px;
    font-size: 0.84rem;
  }

  .lp2-btn-register {
    padding: 8px 16px;
    font-size: 0.84rem;
  }

  /* Hero */
  .lp2-hero {
    padding: 50px 0 35px;
  }

  .lp2-hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
    margin-bottom: 36px;
  }

  .lp2-hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .lp2-hero-title,
  .lp2-hero-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .lp2-hero-title {
    font-size: clamp(1.9rem, 6vw, 2.6rem);
    line-height: 1.2;
  }

  .lp2-hero-subtitle {
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 26px;
  }

  .lp2-hero-ctas {
    justify-content: center;
    width: 100%;
  }

  .lp2-hero-lion-img {
    max-width: 260px;
    margin: 0 auto;
  }

  /* Dual Gateway */
  .lp2-section-dual {
    padding: 60px 0;
  }

  .lp2-dual-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Feature Blocks */
  .lp2-feature-block,
  .lp2-feature-block.reversed {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 45px 0;
  }

  .lp2-feature-block.reversed .lp2-feat-text {
    order: 1;
  }

  .lp2-feature-block.reversed .lp2-feat-visual {
    order: 2;
  }

  .lp2-pipeline-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .lp2-pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Remove outer double containers in mobile */
  .lp2-pipeline-wrapper {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    margin-bottom: 36px !important;
    box-shadow: none !important;
  }

  .lp2-mockup-frame {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
  }

  .lp2-mockup-header {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    padding: 10px 14px;
    margin-bottom: 12px;
  }

  .lp2-mentor-flow-strip {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    gap: 10px;
    margin: 24px 0 40px;
  }

  .lp2-mflow-step {
    background: var(--lp-surface-secondary);
    border: 1px solid var(--lp-border-purple);
    border-radius: 14px;
    padding: 14px 16px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
  }

  .lp2-mflow-arrow {
    display: none;
  }

  .lp2-mentor-mockup-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  /* Maximize horizontal screen real estate on mobile */
  .lp2-container {
    padding: 0 10px !important;
  }

  /* Hero CTAs stacked full width */
  .lp2-hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }

  .lp2-hero-btn-creator,
  .lp2-hero-btn-mentor {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.95rem;
    box-sizing: border-box;
    text-align: center;
  }

  /* Stats Strip: 2x2 Grid */
  .lp2-stats-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 10px;
    padding: 18px 12px;
    border-radius: 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .lp2-stat-divider {
    display: none;
  }

  .lp2-stat-num {
    font-size: 1.45rem;
  }

  .lp2-stat-lbl {
    font-size: 0.72rem;
    text-align: center;
  }

  /* Pipeline single column on mobile */
  .lp2-pipeline-wrapper {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    margin-bottom: 30px !important;
  }

  .lp2-pipeline-flow {
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  .lp2-pipe-card {
    padding: 18px 16px;
    border-radius: 16px;
    width: 100%;
    box-sizing: border-box;
  }

  /* Bento Grid */
  .lp2-bento-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .lp2-bento-card {
    padding: 20px 16px;
    border-radius: 16px;
    box-sizing: border-box;
  }

  /* Legends Grid in Mockup */
  .lp2-legends-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .lp2-legend-card {
    padding: 12px 14px;
    border-radius: 14px;
    box-sizing: border-box;
  }

  /* Outlier Mockup Card */
  .lp2-outlier-card-sample {
    padding: 16px 14px;
    border-radius: 14px;
    margin-bottom: 10px;
    box-sizing: border-box;
    width: 100%;
  }

  .lp2-sample-metrics {
    flex-wrap: wrap;
    gap: 6px 14px;
    font-size: 0.78rem;
  }

  .lp2-sample-top {
    flex-wrap: wrap;
    gap: 8px;
  }

  .lp2-sample-video-title {
    font-size: 0.9rem;
    line-height: 1.35;
  }

  /* Hooks Mockup Card */
  .lp2-hook-item {
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 10px;
    box-sizing: border-box;
    width: 100%;
  }

  .lp2-hook-text {
    font-size: 0.85rem;
    word-break: break-word;
  }

  /* Section Spacings & Typography */
  .lp2-section-dual,
  .lp2-section-system,
  .lp2-section-mentor,
  .lp2-section-pricing,
  .lp2-section-testi,
  .lp2-section-faq {
    padding: 40px 0;
  }

  .lp2-section-title {
    font-size: clamp(1.5rem, 5.2vw, 2rem);
    line-height: 1.25;
  }

  .lp2-section-subtitle {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .lp2-gateway-card {
    padding: 22px 16px;
    border-radius: 18px;
    box-sizing: border-box;
  }

  .lp2-gateway-title {
    font-size: 1.35rem;
  }

  .lp2-gateway-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
    box-sizing: border-box;
  }

  .lp2-feat-title {
    font-size: clamp(1.4rem, 4.8vw, 1.75rem);
    line-height: 1.25;
  }

  .lp2-feat-desc {
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 18px;
  }

  /* Pricing */
  .lp2-pricing-card {
    padding: 26px 16px;
    border-radius: 18px;
    box-sizing: border-box;
  }

  .lp2-pricing-card.featured {
    transform: none;
  }

  .lp2-price-val {
    font-size: 2.2rem;
  }

  .lp2-billing-switcher {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 26px;
  }

  .lp2-pricing-btn {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  /* Testimonials */
  .lp2-testi-marquee-wrapper {
    gap: 14px;
    margin-top: 36px;
  }

  .lp2-testi-card {
    width: 290px;
    min-width: 290px;
    max-width: 290px;
    padding: 20px 18px;
    border-radius: 16px;
    gap: 12px;
    box-sizing: border-box;
  }

  .lp2-testi-quote {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  /* Final CTA */
  .lp2-final-cta {
    padding: 40px 0;
  }

  .lp2-final-cta-card {
    padding: 28px 16px;
    border-radius: 20px;
    text-align: center;
    box-sizing: border-box;
  }

  .lp2-final-cta-title {
    font-size: clamp(1.45rem, 5.2vw, 1.9rem);
    line-height: 1.25;
  }

  .lp2-final-cta-desc {
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 22px;
  }

  .lp2-final-cta-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    align-items: stretch;
  }

  .lp2-final-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.92rem;
    box-sizing: border-box;
    text-align: center;
  }

  /* Footer */
  .lp2-footer {
    padding: 36px 0 24px;
  }

  .lp2-footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
  }

  .lp2-footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
  }

  .lp2-footer-copy {
    font-size: 0.76rem;
  }

  /* Auth Modal */
  .lp2-auth-modal {
    padding: 12px;
  }

  .lp2-auth-card {
    padding: 24px 16px;
    border-radius: 18px;
    max-height: calc(100vh - 24px);
    overflow-y: auto;
    box-sizing: border-box;
  }

  .lp2-auth-close {
    top: 14px;
    right: 14px;
  }
}

@media (max-width: 480px) {
  .lp2-container {
    padding: 0 8px !important;
  }

  .lp2-header-actions {
    gap: 6px;
  }

  .lp2-btn-login {
    padding: 6px 10px;
    font-size: 0.78rem;
    border-radius: 8px;
  }

  .lp2-btn-register {
    padding: 6px 11px;
    font-size: 0.78rem;
    border-radius: 8px;
  }

  .lp2-logo-img {
    width: 28px;
    height: 28px;
  }

  .lp2-logo-text {
    font-size: 1.15rem;
  }

  .lp2-hero-badge {
    font-size: 0.72rem;
    padding: 5px 10px;
    letter-spacing: normal;
  }

  .lp2-hero-title {
    font-size: 1.72rem;
    line-height: 1.22;
  }

  .lp2-hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .lp2-hero-lion-img {
    max-width: 200px;
  }

  .lp2-stat-num {
    font-size: 1.3rem;
  }

  .lp2-stat-lbl {
    font-size: 0.68rem;
  }

  .lp2-feat-goal-chip {
    font-size: 0.72rem;
    padding: 4px 10px;
  }

  .lp2-feat-title {
    font-size: 1.35rem;
  }

  .lp2-feat-bullet-item {
    gap: 8px;
  }

  .lp2-feat-bullet-icon {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
  }

  .lp2-feat-bullet-title {
    font-size: 0.86rem;
  }

  .lp2-feat-bullet-desc {
    font-size: 0.78rem;
  }

  .lp2-faq-question {
    padding: 14px 16px;
    font-size: 0.88rem;
  }

  .lp2-faq-answer {
    padding: 0 16px 14px;
    font-size: 0.82rem;
  }
}
