/* Landing page styles */

.landing-body {
  background: #0a0c10;
}

/* Nav */
.landing-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10, 12, 16, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #1c2028;
  padding: 0 20px;
}

.nav-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 56px;
}

.nav-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f0f3f6;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  color: #8b949e;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s;
}

.nav-links a:hover { color: #f0f3f6; }

.nav-cta {
  background: #238636 !important;
  color: #fff !important;
  padding: 6px 16px;
  border-radius: 6px;
}

.nav-cta:hover { background: #2ea043 !important; }

/* Hero */
.hero {
  padding: 80px 20px 60px;
  text-align: center;
}

.hero-inner {
  max-width: 640px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: #1a2d1a;
  color: #3fb950;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #f0f3f6;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.1rem;
  color: #8b949e;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-form {
  display: flex;
  gap: 8px;
  max-width: 420px;
  margin: 0 auto 12px;
}

.hero-form input {
  flex: 1;
  background: #161920;
  border: 1px solid #2d333b;
  color: #e1e4e8;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
}

.hero-form input:focus { border-color: #388bfd; }
.hero-form input::placeholder { color: #6e7681; }

.btn-primary {
  background: #238636;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary:hover { background: #2ea043; }
.btn-primary:disabled { background: #2d333b; cursor: wait; }

.btn-secondary {
  background: transparent;
  color: #e1e4e8;
  border: 1px solid #2d333b;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-secondary:hover { border-color: #8b949e; color: #f0f3f6; }

.btn-lg { padding: 14px 32px; font-size: 1rem; }

.hero-status {
  font-size: 0.85rem;
  min-height: 20px;
  margin-bottom: 8px;
}

.hero-status.success { color: #3fb950; }
.hero-status.error { color: #f85149; }

.hero-proof {
  font-size: 0.8rem;
  color: #6e7681;
}

/* How It Works */
.how-it-works {
  padding: 60px 20px;
  max-width: 960px;
  margin: 0 auto;
}

.how-it-works h2, .preview-section h2, .pricing-section h2, .faq-section h2 {
  text-align: center;
  font-size: 1.8rem;
  color: #f0f3f6;
  margin-bottom: 8px;
}

.section-sub {
  text-align: center;
  color: #8b949e;
  font-size: 0.95rem;
  margin-bottom: 40px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.step {
  background: #161920;
  border: 1px solid #2d333b;
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1f2a3d;
  color: #58a6ff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step h3 {
  color: #f0f3f6;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.step p {
  color: #8b949e;
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Live Preview */
.preview-section {
  padding: 60px 20px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.preview-leads {
  margin: 0 auto 32px;
  text-align: left;
  background: #161920;
  border: 1px solid #2d333b;
  border-radius: 12px;
  overflow: hidden;
}

.preview-card {
  display: block;
  padding: 16px 20px;
  border-bottom: 1px solid #21262d;
  text-decoration: none;
  color: inherit;
  transition: background 0.12s;
}

.preview-card:last-child { border-bottom: none; }
.preview-card:hover { background: #1c2028; }

.preview-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.75rem;
  color: #8b949e;
  margin-bottom: 4px;
}

.preview-title {
  font-size: 0.9rem;
  color: #f0f3f6;
  font-weight: 500;
  line-height: 1.4;
}

.preview-empty {
  padding: 40px 20px;
  text-align: center;
  color: #6e7681;
}

.preview-empty a { color: #58a6ff; }

.loading-state {
  padding: 40px 20px;
  text-align: center;
  color: #8b949e;
  font-size: 0.9rem;
}

/* Pricing */
.pricing-section {
  padding: 60px 20px;
  max-width: 760px;
  margin: 0 auto;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.pricing-card {
  background: #161920;
  border: 1px solid #2d333b;
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card.pro {
  border-color: #238636;
  background: #141a22;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #238636;
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-header {
  margin-bottom: 24px;
}

.pricing-header h3 {
  color: #f0f3f6;
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.pricing-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: #f0f3f6;
}

.pricing-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: #8b949e;
}

.pricing-features {
  list-style: none;
  flex: 1;
  margin-bottom: 24px;
}

.pricing-features li {
  padding: 6px 0;
  font-size: 0.85rem;
  color: #8b949e;
}

.pricing-features li.highlight {
  color: #3fb950;
  font-weight: 500;
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
  width: 100%;
}

/* FAQ */
.faq-section {
  padding: 60px 20px;
  max-width: 700px;
  margin: 0 auto;
}

.faq-list {
  margin-top: 32px;
}

.faq-item {
  background: #161920;
  border: 1px solid #2d333b;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 12px;
}

.faq-item h3 {
  color: #f0f3f6;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.faq-item p {
  color: #8b949e;
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Footer */
.landing-footer {
  border-top: 1px solid #1c2028;
  padding: 24px 20px;
  margin-top: 40px;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  color: #6e7681;
  font-size: 0.85rem;
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #6e7681;
  text-decoration: none;
  font-size: 0.8rem;
}

.footer-links a:hover { color: #8b949e; }

/* Responsive */
@media (max-width: 640px) {
  .hero h1 { font-size: 2rem; }
  .hero-form { flex-direction: column; }
  .steps { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
}

/* Auth/modal styles are in style.css (shared across pages) */
