#landing-screen {
  --lp-bg:       #ffffff;
  --lp-bg2:      #f4f8f5;
  --lp-text:     #1a1a1a;
  --lp-muted:    #6b7280;
  --lp-green:    #2d8a4e;
  --lp-green-dk: #1e6137;
  --lp-border:   #e5e7eb;
  --lp-surface:  #f9fafb;
  --lp-card:     #ffffff;

  background: var(--lp-bg);
  color: var(--lp-text);
  overflow-y: auto;
  min-height: 100vh;
}

/* NAV */
.lp-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 64px;
  border-bottom: 1px solid var(--lp-border);
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.lp-nav-brand {
  font-size: 20px;
  font-weight: 800;
  color: var(--lp-green);
  letter-spacing: -0.5px;
}

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

.lp-nav-links a {
  color: var(--lp-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s;
}

.lp-nav-links a:hover { color: var(--lp-text); }

/* Override btn colors for landing page light theme */
#landing-screen .btn-primary {
  background: var(--lp-green);
  border-color: var(--lp-green);
  color: #fff;
}
#landing-screen .btn-primary:hover { background: var(--lp-green-dk); border-color: var(--lp-green-dk); }
#landing-screen .btn-secondary { color: var(--lp-text); border-color: var(--lp-border); background: #fff; }
#landing-screen .btn-secondary:hover { border-color: var(--lp-green); color: var(--lp-green); background: #fff; }

/* HERO */
.lp-hero {
  text-align: center;
  padding: 80px 32px 80px;
  max-width: 860px;
  margin: 0 auto;
}

.lp-hero-badge {
  display: inline-block;
  background: rgba(45,138,78,0.1);
  border: 1px solid rgba(45,138,78,0.3);
  color: var(--lp-green);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.lp-hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: var(--lp-text);
}

.accent-text { color: var(--lp-green); }

.lp-hero-sub {
  font-size: 18px;
  color: var(--lp-muted);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.lp-hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.lp-hero-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--lp-muted);
}

/* SECTION LABEL */
.lp-section-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--lp-green);
  margin-bottom: 12px;
}

.lp-section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 48px;
  color: var(--lp-text);
}

/* FEATURES */
.lp-features {
  padding: 80px 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.lp-feature-card {
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.lp-feature-card:hover {
  border-color: var(--lp-green);
  box-shadow: 0 4px 16px rgba(45,138,78,0.12);
  transform: translateY(-2px);
}

.lp-feature-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.lp-feature-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--lp-text);
}

.lp-feature-card p {
  font-size: 13px;
  color: var(--lp-muted);
  line-height: 1.5;
}

/* STATS */
.lp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--lp-bg2);
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
  margin: 0;
}

.lp-stat {
  text-align: center;
  padding: 48px 24px;
  border-right: 1px solid var(--lp-border);
}

.lp-stat:last-child { border-right: none; }

.lp-stat-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--lp-green);
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.lp-stat-label {
  font-size: 13px;
  color: var(--lp-muted);
}

/* PRICING */
.lp-pricing {
  padding: 80px 64px;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--lp-bg2);
}

.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}

.lp-price-card {
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  padding: 28px 24px;
  position: relative;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.lp-price-card.featured {
  border-color: var(--lp-green);
  transform: scale(1.03);
  box-shadow: 0 4px 24px rgba(45,138,78,0.18);
}

.lp-featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lp-green);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.lp-tier {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--lp-muted);
  margin-bottom: 8px;
}

.lp-price {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: var(--lp-text);
}

.lp-price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--lp-muted);
}

.lp-price-features {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-price-features li {
  font-size: 13px;
  color: var(--lp-muted);
}

/* CTA SECTION */
.lp-cta-section {
  text-align: center;
  padding: 80px 32px;
  background: linear-gradient(135deg, rgba(45,138,78,0.08) 0%, rgba(30,97,55,0.06) 100%);
  border-top: 1px solid var(--lp-border);
}

.lp-cta-section h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  color: var(--lp-text);
}

.lp-cta-section p {
  font-size: 16px;
  color: var(--lp-muted);
}

/* FOOTER */
.lp-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 64px;
  border-top: 1px solid var(--lp-border);
  background: var(--lp-bg);
}

.lp-footer-brand {
  font-size: 16px;
  font-weight: 700;
  color: var(--lp-green);
}

.lp-footer-copy {
  font-size: 12px;
  color: var(--lp-muted);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .lp-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-stats { grid-template-columns: repeat(2, 1fr); }
  .lp-stat:nth-child(2) { border-right: none; }
  .lp-stat:nth-child(3) { border-top: 1px solid var(--lp-border); }
}

@media (max-width: 768px) {
  .lp-hero-title { font-size: 36px; }
  .lp-nav { padding: 16px 24px; }
  .lp-nav-links a { display: none; }
  .lp-features { padding: 60px 24px; }
  .lp-pricing { padding: 60px 24px; }
  .lp-pricing-grid { grid-template-columns: 1fr; }
  .lp-price-card.featured { transform: none; }
  .lp-stats { grid-template-columns: repeat(2, 1fr); }
  .lp-footer { flex-direction: column; gap: 8px; padding: 24px; }
}
