/*─────────────────────────────────────────────────────────────────────────────
  SUBLIST LOBBY — Professional Landing Page (Redesigned)
─────────────────────────────────────────────────────────────────────────────*/

/* ═══════════ GLOBAL ═══════════ */
body.lobby-body {
  margin: 0; padding: 0;
  min-height: 100vh;
  background: var(--bg-app);
  font-family: 'Inter', var(--font-main);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ═══════════ NAVBAR ═══════════ */
.lobby-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 40px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
}
.lobby-nav.scrolled {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid rgba(15,23,42,0.06);
  box-shadow: 0 1px 3px rgba(15,23,42,0.04);
  height: 60px;
}
[data-theme="dark"] .lobby-nav.scrolled {
  background: rgba(9,13,22,0.82);
  border-bottom-color: rgba(255,255,255,0.06);
}

.lobby-nav-brand {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.lobby-nav-brand img { height: 32px; width: auto; }
.lobby-nav-brand-text {
  font-family: var(--font-heading); font-size: 22px; font-weight: 800;
  color: var(--text-primary); letter-spacing: -0.5px;
}
.lobby-nav-brand-text span { color: var(--primary); }

.lobby-nav-links {
  display: flex; align-items: center; gap: 4px;
}
.lobby-nav-divider {
  width: 1px; height: 20px; background: var(--border);
  margin: 0 8px;
}
.lobby-nav-link {
  padding: 8px 16px; border-radius: 10px;
  font-size: 13.5px; font-weight: 600;
  color: var(--text-muted); text-decoration: none;
  transition: all 0.2s; cursor: pointer;
  border: none; background: transparent; font-family: inherit;
}
.lobby-nav-link:hover { color: var(--text-primary); background: var(--bg-surface); }
.lobby-nav-link.login-link { font-weight: 700; color: var(--text-secondary); }

.lobby-theme-toggle {
  width: 36px; height: 36px; border-radius: 10px;
  border: 1px solid var(--border); background: transparent;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s; color: var(--text-muted);
}
.lobby-theme-toggle:hover { background: var(--bg-surface); color: var(--text-primary); }
.lobby-theme-toggle svg { width: 18px; height: 18px; stroke-width: 2; }
.theme-icon-sun { display: none; }
[data-theme="dark"] .theme-icon-sun { display: block; }
[data-theme="dark"] .theme-icon-moon { display: none; }

.lobby-nav-cta {
  padding: 9px 22px; border-radius: 10px;
  font-size: 13.5px; font-weight: 700;
  color: #fff; background: var(--primary);
  text-decoration: none; border: none; font-family: inherit;
  cursor: pointer; transition: all 0.25s;
  box-shadow: 0 2px 8px rgba(244,63,94,0.25);
  margin-left: 4px;
}
.lobby-nav-cta:hover {
  background: #E11D48; transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(244,63,94,0.35);
}

.lobby-mobile-toggle {
  display: none; width: 40px; height: 40px; border-radius: 10px;
  background: transparent; border: 1px solid var(--border);
  align-items: center; justify-content: center; cursor: pointer;
  color: var(--text-primary);
}
.lobby-mobile-toggle svg { width: 20px; height: 20px; stroke: currentColor; }

/* ═══════════ HERO ═══════════ */
.lobby-hero {
  position: relative; z-index: 10;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 40px 40px;
  text-align: center;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(15,23,42,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}
[data-theme="dark"] .hero-grid-bg {
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); pointer-events: none; z-index: 0;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  top: -10%; right: -5%;
  background: rgba(244,63,94,0.12);
  animation: orbFloat 20s ease-in-out infinite;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  top: 20%; left: -10%;
  background: rgba(99,102,241,0.10);
  animation: orbFloat 25s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 400px; height: 400px;
  bottom: 0; left: 40%;
  background: rgba(16,185,129,0.08);
  animation: orbFloat 22s ease-in-out infinite 3s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(20px, -30px); }
  66% { transform: translate(-15px, 20px); }
}

.lobby-hero-inner {
  max-width: 900px; width: 100%; position: relative; z-index: 1;
}

.lobby-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px 6px 8px; border-radius: 100px;
  background: var(--bg-card-solid); 
  border: 1px solid var(--border);
  color: var(--text-secondary); font-size: 12px; font-weight: 700;
  letter-spacing: 0.3px; margin-bottom: 32px;
  animation: fadeUp 0.6s cubic-bezier(.16,1,.3,1) both;
  box-shadow: 0 1px 3px rgba(15,23,42,0.04);
}
.lobby-badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
  50%     { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.lobby-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -2.5px; color: var(--text-primary);
  margin-bottom: 24px;
  animation: fadeUp 0.7s cubic-bezier(.16,1,.3,1) 0.08s both;
}
.hero-accent {
  background: linear-gradient(135deg, #F43F5E, #EC4899, #8B5CF6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lobby-hero-desc {
  font-size: 17px; color: var(--text-muted); font-weight: 500;
  line-height: 1.7; max-width: 540px; margin: 0 auto 36px;
  animation: fadeUp 0.7s cubic-bezier(.16,1,.3,1) 0.16s both;
}

.lobby-hero-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
  animation: fadeUp 0.7s cubic-bezier(.16,1,.3,1) 0.24s both;
}

.lobby-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 12px;
  font-family: inherit; font-size: 15px; font-weight: 700;
  color: #fff; text-decoration: none; border: none; cursor: pointer;
  background: var(--primary);
  box-shadow: 0 4px 16px rgba(244,63,94,0.3);
  transition: all 0.25s cubic-bezier(.4,0,.2,1);
  letter-spacing: -0.1px;
}
.lobby-btn-primary:hover {
  background: #E11D48;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244,63,94,0.35);
}
.lobby-btn-primary:active { transform: translateY(0); }
.lobby-btn-primary svg { width: 18px; height: 18px; }

.lobby-btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 12px;
  font-family: inherit; font-size: 15px; font-weight: 600;
  color: var(--text-secondary); background: var(--bg-card-solid);
  text-decoration: none; border: 1px solid var(--border);
  transition: all 0.2s; cursor: pointer;
}
.lobby-btn-secondary:hover {
  border-color: var(--text-light); color: var(--text-primary);
  transform: translateY(-1px);
}
.lobby-btn-secondary svg { width: 18px; height: 18px; opacity: 0.6; }

/* Social Proof */
.lobby-social-proof {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin-top: 40px;
  animation: fadeUp 0.7s cubic-bezier(.16,1,.3,1) 0.32s both;
}
.lobby-avatars { display: flex; }
.lobby-avatars span {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: #fff;
  border: 2px solid var(--bg-app); margin-left: -8px;
  transition: transform 0.2s;
}
.lobby-avatars span:first-child { margin-left: 0; }
.lobby-avatars span:hover { transform: translateY(-2px) scale(1.1); z-index: 1; }
.lobby-avatars .avatar-count {
  background: var(--bg-surface);
  color: var(--text-muted); font-size: 11px; font-weight: 700;
  border-color: var(--bg-app);
}
.lobby-social-text {
  font-size: 13px; color: var(--text-muted); font-weight: 500; line-height: 1.4; text-align: left;
}
.lobby-social-text strong { color: var(--text-primary); font-weight: 700; }
.lobby-stars {
  color: #F59E0B; font-size: 12px; margin-top: 2px;
  display: flex; align-items: center; gap: 4px;
}
.lobby-stars .star-score { color: var(--text-muted); font-weight: 600; font-size: 12px; }

/* ═══════════ HERO DASHBOARD PREVIEW ═══════════ */
.hero-preview {
  margin-top: 56px; position: relative;
  animation: fadeUp 0.8s cubic-bezier(.16,1,.3,1) 0.4s both;
}
.hero-preview-glow {
  position: absolute;
  inset: -40px; border-radius: 32px;
  background: linear-gradient(135deg, rgba(244,63,94,0.06), rgba(99,102,241,0.06));
  filter: blur(40px);
  z-index: 0;
}
.hero-preview-window {
  position: relative; z-index: 1;
  border-radius: 16px;
  background: var(--bg-card-solid);
  border: 1px solid var(--border);
  box-shadow:
    0 20px 60px rgba(15,23,42,0.08),
    0 1px 3px rgba(15,23,42,0.04);
  overflow: hidden;
}
[data-theme="dark"] .hero-preview-window {
  border-color: rgba(255,255,255,0.06);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 1px 3px rgba(0,0,0,0.2);
}
.preview-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}
.preview-dots {
  display: flex; gap: 6px;
}
.preview-dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.preview-dots span:nth-child(1) { background: #EF4444; }
.preview-dots span:nth-child(2) { background: #F59E0B; }
.preview-dots span:nth-child(3) { background: #22C55E; }
.preview-url {
  font-size: 12px; font-weight: 500; color: var(--text-light);
  background: var(--bg-card-solid); padding: 4px 14px; border-radius: 6px;
  border: 1px solid var(--border);
}
.preview-content {
  display: flex; min-height: 280px;
}
.preview-sidebar {
  width: 56px; flex-shrink: 0;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center;
  padding: 16px 0; gap: 8px;
}
.preview-sidebar-item {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light); transition: all 0.2s;
}
.preview-sidebar-item svg { width: 18px; height: 18px; }
.preview-sidebar-item.active {
  background: var(--primary-soft); color: var(--primary);
}
.preview-main {
  flex: 1; padding: 20px;
}
.preview-stat-row {
  display: flex; gap: 12px; margin-bottom: 16px;
}
.preview-stat {
  flex: 1; padding: 14px 16px; border-radius: 10px;
  background: var(--bg-surface); border: 1px solid var(--border);
}
.preview-stat-label {
  font-size: 10px; font-weight: 600; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px;
}
.preview-stat-value {
  font-family: var(--font-heading);
  font-size: 20px; font-weight: 800; color: var(--text-primary);
  letter-spacing: -0.5px;
}
.preview-stat-value.green { color: #22C55E; }
.preview-cards {
  display: flex; flex-direction: column; gap: 8px;
}
.preview-sub-card {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; border-radius: 10px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.preview-sub-card:hover { border-color: var(--text-light); }
.preview-sub-icon {
  width: 34px; height: 34px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.preview-sub-info { flex: 1; text-align: left; }
.preview-sub-name { font-size: 13px; font-weight: 700; color: var(--text-primary); }
.preview-sub-cat { font-size: 11px; color: var(--text-light); font-weight: 500; }
.preview-sub-price {
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 800; color: var(--primary);
}

/* ═══════════ LOGO STRIP ═══════════ */
.lobby-logos-section {
  position: relative; z-index: 10;
  padding: 32px 0 48px;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.lobby-logos-label {
  text-align: center; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--text-light); margin-bottom: 20px;
}
.lobby-logos-track {
  display: flex; gap: 40px; width: max-content;
  animation: marqueeScroll 45s linear infinite;
}
.lobby-logos-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--text-light);
  white-space: nowrap; transition: color 0.2s;
  cursor: default; user-select: none;
}
.logo-item:hover { color: var(--text-primary); }
.logo-item span { font-size: 20px; }

/* ═══════════ SECTION COMMON ═══════════ */
.lobby-section {
  position: relative; z-index: 10;
  padding: 100px 40px;
}
.lobby-section-alt {
  background: var(--bg-surface);
}
[data-theme="dark"] .lobby-section-alt {
  background: rgba(17,24,39,0.4);
}
.lobby-section-inner { max-width: 1120px; margin: 0 auto; }

.lobby-section-header {
  text-align: center; max-width: 580px; margin: 0 auto 60px;
}
.lobby-section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 8px;
  background: var(--primary-soft); color: var(--primary);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  margin-bottom: 16px;
}
.lobby-section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800; color: var(--text-primary);
  letter-spacing: -1px; line-height: 1.15; margin-bottom: 14px;
}
.lobby-section-header p {
  font-size: 15px; color: var(--text-muted);
  line-height: 1.65; font-weight: 500;
}

/* ═══════════ HOW IT WORKS ═══════════ */
.lobby-steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; position: relative;
}
.lobby-step-card {
  text-align: center; padding: 40px 28px 36px;
  border-radius: 16px;
  background: var(--bg-card-solid);
  border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  position: relative;
}
[data-theme="dark"] .lobby-step-card {
  background: rgba(17,24,39,0.6);
  border-color: rgba(255,255,255,0.06);
}
.lobby-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15,23,42,0.06);
  border-color: var(--primary);
}
.lobby-step-number {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.lobby-step-number svg { width: 24px; height: 24px; stroke-width: 2; }
.step-connector {
  display: none;
}
.lobby-step-card h3 {
  font-family: var(--font-heading); font-size: 17px;
  font-weight: 700; color: var(--text-primary); margin-bottom: 10px;
}
.lobby-step-card p {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.6; font-weight: 500;
}

/* ═══════════ FEATURES ═══════════ */
.lobby-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lobby-feature-card {
  padding: 28px 24px;
  border-radius: 16px;
  background: var(--bg-card-solid);
  border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  position: relative; overflow: hidden;
}
[data-theme="dark"] .lobby-feature-card {
  background: rgba(17,24,39,0.6);
  border-color: rgba(255,255,255,0.06);
}
.lobby-feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(244,63,94,0.2);
  box-shadow: 0 12px 32px rgba(15,23,42,0.06);
}
.lobby-feature-card.feature-large { grid-column: span 2; }

.feature-icon-wrap {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--icon-bg);
  color: var(--icon-color);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature-icon-wrap svg { width: 22px; height: 22px; }

.lobby-feature-card h3 {
  font-family: var(--font-heading); font-size: 16px;
  font-weight: 700; color: var(--text-primary);
  margin-bottom: 8px;
}
.lobby-feature-card p {
  font-size: 13.5px; color: var(--text-muted);
  line-height: 1.6; font-weight: 500;
}

/* Feature decorative chart */
.feature-visual-chart {
  display: flex; align-items: flex-end; gap: 5px;
  margin-top: 20px; height: 52px;
}
.f-bar {
  flex: 1; border-radius: 4px 4px 0 0;
  height: var(--h);
  background: var(--primary); opacity: 0.12;
  transition: all 0.3s ease;
}
.lobby-feature-card:hover .f-bar { opacity: 0.2; }
.f-bar.accent { opacity: 0.6; background: var(--primary); }

/* ═══════════ STATS ═══════════ */
.lobby-stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.lobby-stat-block {
  text-align: center; padding: 32px 16px;
  border-radius: 16px;
  background: var(--bg-card-solid);
  border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
[data-theme="dark"] .lobby-stat-block {
  background: rgba(17,24,39,0.6);
  border-color: rgba(255,255,255,0.06);
}
.lobby-stat-block:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 12px 32px rgba(15,23,42,0.06);
}
.lobby-stat-number {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 800; color: var(--primary);
  letter-spacing: -1px; line-height: 1; margin-bottom: 6px;
}
.lobby-stat-desc {
  font-size: 13px; color: var(--text-muted); font-weight: 600;
}

/* ═══════════ TESTIMONIALS ═══════════ */
.lobby-testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lobby-testimonial {
  padding: 28px 24px;
  border-radius: 16px;
  background: var(--bg-card-solid);
  border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  position: relative;
  display: flex; flex-direction: column;
}
[data-theme="dark"] .lobby-testimonial {
  background: rgba(17,24,39,0.6);
  border-color: rgba(255,255,255,0.06);
}
.lobby-testimonial:hover {
  transform: translateY(-3px);
  border-color: rgba(244,63,94,0.15);
  box-shadow: 0 12px 32px rgba(15,23,42,0.06);
}
.testimonial-quote {
  font-family: Georgia, serif;
  font-size: 48px; line-height: 1; color: var(--primary);
  opacity: 0.2; margin-bottom: -8px;
}
.testimonial-text {
  font-size: 14px; color: var(--text-secondary);
  line-height: 1.65; font-weight: 500; margin-bottom: 20px;
  flex: 1;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.testimonial-avatar {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 14px; font-weight: 700; color: var(--text-primary);
}
.testimonial-role {
  font-size: 12px; color: var(--text-light); margin-top: 1px; font-weight: 500;
}
.testimonial-stars {
  margin-left: auto; color: #F59E0B; font-size: 12px; letter-spacing: 1px;
}

/* ═══════════ FAQ ═══════════ */
.lobby-faq-list {
  max-width: 680px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 8px;
}
.lobby-faq-item {
  border-radius: 12px;
  background: var(--bg-card-solid);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.25s ease;
}
[data-theme="dark"] .lobby-faq-item {
  background: rgba(17,24,39,0.6);
  border-color: rgba(255,255,255,0.06);
}
.lobby-faq-item:hover { border-color: var(--text-light); }
.lobby-faq-item.open { border-color: var(--primary); }
.lobby-faq-question {
  width: 100%; padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between;
  background: transparent; border: none; cursor: pointer;
  font-family: inherit; font-size: 14.5px;
  font-weight: 600; color: var(--text-primary);
  text-align: left; gap: 12px;
}
.faq-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px; background: var(--bg-surface);
  transition: all 0.3s ease;
}
.faq-icon svg {
  width: 14px; height: 14px;
  stroke: var(--text-light); stroke-width: 2.5;
  transition: transform 0.3s ease;
}
.lobby-faq-item.open .faq-icon {
  background: var(--primary-soft);
}
.lobby-faq-item.open .faq-icon svg {
  transform: rotate(180deg);
  stroke: var(--primary);
}
.lobby-faq-item.open .lobby-faq-question { color: var(--primary); }
.lobby-faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s cubic-bezier(.4,0,.2,1);
}
.lobby-faq-item.open .lobby-faq-answer {
  max-height: 200px;
}
.lobby-faq-answer p {
  padding: 0 20px 18px;
  font-size: 14px; color: var(--text-muted);
  line-height: 1.65; font-weight: 500;
}

/* ═══════════ MOBILE APP SECTION ═══════════ */
.lobby-app-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}

/* Phone Mockup */
.lobby-phone-wrap {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.lobby-phone-glow {
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,63,94,0.15), transparent 70%);
  filter: blur(50px);
  z-index: 0;
}
.lobby-phone-frame {
  position: relative; z-index: 1;
  width: 250px; height: 500px;
  border-radius: 36px;
  background: linear-gradient(160deg, #1A1A2E 0%, #16213E 50%, #0F3460 100%);
  border: 2px solid rgba(255,255,255,0.08);
  box-shadow:
    0 32px 64px rgba(0,0,0,0.25),
    0 0 0 1px rgba(255,255,255,0.04);
  display: flex; flex-direction: column;
  align-items: center; padding: 16px 16px;
  overflow: hidden;
}
.phone-notch {
  width: 72px; height: 22px;
  border-radius: 12px;
  background: #0D0D1A;
  border: 1px solid rgba(255,255,255,0.04);
  margin-bottom: 8px;
  flex-shrink: 0;
}

.phone-screen {
  width: 100%; flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
}
.phone-screen-logo {
  width: 48px; height: 48px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}
.phone-screen-logo img { width: 100%; height: 100%; object-fit: cover; }
.phone-screen-title {
  font-family: var(--font-heading);
  font-size: 18px; font-weight: 800;
  color: #FFFFFF; letter-spacing: -0.3px;
}
.phone-screen-title span { color: #F43F5E; }
.phone-screen-subtitle {
  font-size: 10px; color: rgba(255,255,255,0.4);
  font-weight: 600; letter-spacing: 1.2px;
  text-transform: uppercase;
}
.phone-screen-cards {
  width: 100%; display: flex; flex-direction: column; gap: 6px;
  margin-top: 6px;
}
.phone-mini-card {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
}
.phone-mini-icon {
  width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
}
.phone-mini-name {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.85);
}
.phone-mini-price {
  font-size: 11px; font-weight: 800; color: #F43F5E;
  margin-left: auto;
}
.phone-screen-bar {
  width: 100%; height: 32px;
  border-radius: 8px; margin-top: 4px;
  background: linear-gradient(135deg, rgba(244,63,94,0.12), rgba(99,102,241,0.12));
  display: flex; align-items: center; justify-content: center;
  gap: 5px; font-size: 10px; color: rgba(255,255,255,0.45); font-weight: 700;
}
.phone-screen-bar span { font-size: 12px; }

/* App content */
.lobby-app-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px 5px 8px;
  border-radius: 8px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.15);
  color: #22C55E;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 20px;
}
.lobby-app-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22C55E;
  animation: pulseDot 2s ease-in-out infinite;
}

.lobby-app-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800; color: var(--text-primary);
  letter-spacing: -0.8px; line-height: 1.15;
  margin-bottom: 14px;
}
.hero-accent-green {
  background: linear-gradient(135deg, #22C55E, #10B981, #059669);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lobby-app-desc {
  font-size: 15px; color: var(--text-muted);
  line-height: 1.65; font-weight: 500;
  margin-bottom: 28px; max-width: 440px;
}

.lobby-app-features {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 28px;
}
.app-feature-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 8px;
  background: var(--bg-card-solid);
  border: 1px solid var(--border);
  font-size: 12.5px; font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.app-feature-pill:hover {
  border-color: var(--primary); color: var(--primary);
}
.app-feature-pill svg { width: 14px; height: 14px; stroke-width: 2.5; }

/* Google Play Button */
.lobby-app-buttons {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.google-play-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 24px 12px 18px;
  border-radius: 12px;
  background: #000000;
  color: #FFFFFF;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.google-play-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  border-color: rgba(255,255,255,0.2);
}
.gp-icon {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.gp-icon svg { width: 24px; height: 24px; }
.gp-text-wrap { display: flex; flex-direction: column; }
.gp-text-small {
  font-size: 9px; font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px; text-transform: uppercase; line-height: 1;
}
.gp-text-big {
  font-family: var(--font-heading);
  font-size: 16px; font-weight: 700;
  letter-spacing: -0.2px; line-height: 1.2;
}

.app-coming-note {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--text-light);
  font-weight: 500; font-style: italic;
}
.app-coming-note svg {
  width: 14px; height: 14px; stroke: var(--text-light); stroke-width: 2;
}

/* ═══════════ CTA ═══════════ */
.lobby-cta-section {
  position: relative; z-index: 10;
  padding: 40px 40px 100px;
}
.lobby-cta-card {
  max-width: 900px; margin: 0 auto;
  padding: 64px 48px; border-radius: 24px;
  background: var(--navy-card-bg);
  position: relative; overflow: hidden;
  text-align: center;
  box-shadow: 0 32px 64px rgba(11,19,43,0.3);
}
.cta-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
}
.lobby-cta-card::before {
  content: ''; position: absolute;
  top: -50%; right: -20%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,63,94,0.15), transparent 70%);
  filter: blur(60px);
}
.lobby-cta-card h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800; color: #FFFFFF;
  letter-spacing: -0.8px; line-height: 1.15;
  margin-bottom: 14px; position: relative; z-index: 1;
}
.lobby-cta-card p {
  font-size: 15px; color: rgba(255,255,255,0.5);
  line-height: 1.6; max-width: 480px;
  margin: 0 auto 32px; position: relative; z-index: 1;
  font-weight: 500;
}
.lobby-cta-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap; position: relative; z-index: 1;
}
.lobby-cta-btn-white {
  padding: 14px 32px; border-radius: 12px;
  font-family: inherit; font-size: 15px; font-weight: 700;
  color: #0B132B; background: #FFFFFF;
  text-decoration: none; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: all 0.25s;
}
.lobby-cta-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.lobby-cta-btn-white svg { width: 18px; height: 18px; }

.lobby-cta-btn-outline {
  padding: 14px 28px; border-radius: 12px;
  font-family: inherit; font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  text-decoration: none; cursor: pointer;
  transition: all 0.2s;
}
.lobby-cta-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  color: #fff; border-color: rgba(255,255,255,0.2);
}

/* ═══════════ FOOTER ═══════════ */
.lobby-footer {
  position: relative; z-index: 10;
  border-top: 1px solid var(--border);
}
.lobby-footer-inner {
  max-width: 1120px; margin: 0 auto;
  padding: 48px 40px 32px;
}
.lobby-footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 36px;
}
.lobby-footer-brand {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.lobby-footer-brand img { height: 26px; width: auto; }
.lobby-footer-brand span {
  font-family: var(--font-heading); font-size: 18px;
  font-weight: 800; color: var(--text-primary);
}
.lobby-footer-brand span em {
  color: var(--primary); font-style: normal;
}
.lobby-footer-desc {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.6; max-width: 260px; font-weight: 500;
}
.lobby-footer-col h4 {
  font-family: var(--font-heading); font-size: 12px;
  font-weight: 700; color: var(--text-primary);
  text-transform: uppercase; letter-spacing: 0.8px;
  margin-bottom: 14px;
}
.lobby-footer-col a {
  display: block; font-size: 13px; color: var(--text-muted);
  text-decoration: none; font-weight: 500;
  padding: 3px 0; transition: color 0.2s;
}
.lobby-footer-col a:hover { color: var(--primary); }

.lobby-footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 20px; border-top: 1px solid var(--border);
  font-size: 12px; color: var(--text-light); font-weight: 500;
}
.lobby-footer-bottom-links {
  display: flex; gap: 20px;
}
.lobby-footer-bottom-links a {
  color: var(--text-light); text-decoration: none; font-weight: 500;
  transition: color 0.2s;
}
.lobby-footer-bottom-links a:hover { color: var(--primary); }

/* ═══════════ ANIMATIONS ═══════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lobby-reveal {
  opacity: 0; transform: translateY(24px);
  transition: all 0.6s cubic-bezier(.16,1,.3,1);
}
.lobby-reveal.visible {
  opacity: 1; transform: translateY(0);
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
  .lobby-nav { padding: 0 24px; }
  .lobby-hero { padding: 110px 24px 40px; }
  .lobby-section { padding: 80px 24px; }
  .lobby-steps-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .lobby-features-grid { grid-template-columns: repeat(2, 1fr); }
  .lobby-feature-card.feature-large { grid-column: span 1; }
  .lobby-stats-row { grid-template-columns: repeat(2, 1fr); }
  .lobby-testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .lobby-footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .lobby-app-inner { gap: 40px; }
  .preview-stat-row { flex-wrap: wrap; }
}

@media (max-width: 768px) {
  .lobby-nav-links {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg-card-solid);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 8px; z-index: 200;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
  }
  .lobby-nav-links.mobile-open {
    opacity: 1; pointer-events: all;
  }
  .lobby-nav-links .lobby-nav-link { font-size: 16px; padding: 12px 20px; display: block; }
  .lobby-nav-links .login-link { display: block; }
  .lobby-nav-divider { display: none; }
  .lobby-mobile-toggle { display: flex; }
  .lobby-nav-cta { font-size: 15px; }

  .lobby-hero { min-height: auto; padding: 110px 20px 40px; }
  .lobby-hero h1 { font-size: 34px; letter-spacing: -1px; }
  .lobby-hero-desc { font-size: 15px; }
  .lobby-steps-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .lobby-features-grid { grid-template-columns: 1fr; }
  .lobby-stats-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .lobby-cta-section { padding: 40px 20px 60px; }
  .lobby-cta-card { padding: 40px 24px; border-radius: 20px; }
  .lobby-footer-inner { padding: 32px 20px 24px; }
  .lobby-footer-top { grid-template-columns: 1fr; gap: 20px; }
  .lobby-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .lobby-section { padding: 60px 20px; }
  .lobby-app-inner { grid-template-columns: 1fr; text-align: center; }
  .lobby-phone-wrap { order: -1; }
  .lobby-app-desc { margin: 0 auto 28px; }
  .lobby-app-features { justify-content: center; }
  .lobby-app-buttons { justify-content: center; }
  .preview-sidebar { display: none; }
  .preview-stat-row { gap: 8px; }
  .preview-stat { padding: 10px 12px; }
  .preview-stat-value { font-size: 16px; }
}

@media (max-width: 480px) {
  .lobby-hero-actions { flex-direction: column; width: 100%; }
  .lobby-btn-primary, .lobby-btn-secondary { width: 100%; justify-content: center; }
  .lobby-cta-actions { flex-direction: column; }
  .lobby-cta-btn-white, .lobby-cta-btn-outline { width: 100%; justify-content: center; }
  .lobby-stats-row { grid-template-columns: 1fr; }
  .lobby-social-proof { flex-direction: column; gap: 10px; }
  .lobby-social-text { text-align: center; }
  .lobby-app-buttons { flex-direction: column; width: 100%; }
  .google-play-btn { width: 100%; justify-content: center; }
  .app-coming-note { justify-content: center; }
  .preview-stat-row { flex-direction: column; }
}
