/* ---------- Marketing landing page ---------- */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background: rgba(246, 244, 239, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.lp-nav .brand {
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.lp-nav-links { display: flex; align-items: center; gap: 24px; }
.lp-nav-links a.lp-link { color: var(--ink-soft); font-size: 14px; text-decoration: none; }
.lp-nav-links a.lp-link:hover { color: var(--ink); }

.lp-hero {
  padding: 88px 6vw 72px;
  text-align: center;
  background: linear-gradient(180deg, #f6f4ef 0%, #efece3 100%);
}
.lp-hero .lp-eyebrow {
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}
.lp-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  max-width: 780px;
  margin: 0 auto 18px;
  line-height: 1.15;
}
.lp-hero p {
  max-width: 560px;
  margin: 0 auto 32px;
  color: var(--ink-soft);
  font-size: 17px;
}
.lp-hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.lp-hero-actions .btn { width: auto; padding: 12px 26px; font-size: 15px; }

.lp-section { padding: 72px 6vw; }
.lp-section-head { text-align: center; max-width: 620px; margin: 0 auto 44px; }
.lp-section-head h2 { font-size: 30px; margin-bottom: 10px; }
.lp-section-head p { color: var(--ink-soft); font-size: 15.5px; }

.lp-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.lp-feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
}
.lp-feature-card .lp-feature-icon { font-size: 26px; margin-bottom: 12px; display: block; }
.lp-feature-card h3 { font-size: 16px; margin-bottom: 6px; }
.lp-feature-card p { color: var(--ink-soft); font-size: 13.5px; margin: 0; line-height: 1.55; }

.lp-pricing-bg { background: var(--surface-2); }

.lp-billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  font-size: 14px;
  color: var(--ink-soft);
}
.lp-billing-toggle button {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 3px;
  display: inline-flex;
  cursor: pointer;
}
.lp-billing-toggle button span {
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
}
.lp-billing-toggle button span.active { background: var(--accent); color: #fff; }

.lp-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: stretch;
}
.lp-plan-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.lp-plan-card.lp-plan-featured {
  border-color: var(--accent);
  box-shadow: 0 12px 32px -16px rgba(166, 117, 46, 0.4);
}
.lp-plan-card h3 { font-size: 18px; margin-bottom: 4px; }
.lp-plan-price { font-family: Georgia, serif; font-size: 32px; color: var(--ink); margin: 12px 0 2px; }
.lp-plan-price .lp-plan-period { font-size: 14px; font-weight: 400; color: var(--ink-soft); }
.lp-plan-save { display: inline-block; margin-bottom: 14px; }
.lp-plan-limits { list-style: none; padding: 0; margin: 16px 0 24px; font-size: 13.5px; color: var(--ink-soft); }
.lp-plan-limits li { padding: 5px 0; border-top: 1px solid var(--line); }
.lp-plan-limits li:first-child { border-top: none; }
.lp-plan-card .btn { margin-top: auto; width: 100%; }

.lp-cta {
  text-align: center;
  padding: 80px 6vw;
  background: linear-gradient(160deg, #1c2430 0%, #232d3c 55%, #1c2430 100%);
  color: #f1efe9;
}
.lp-cta h2 { color: #fff; font-size: 28px; margin-bottom: 12px; }
.lp-cta p { color: #b7bfcc; margin-bottom: 28px; }
.lp-cta .btn { width: auto; padding: 12px 30px; }

.lp-footer {
  padding: 28px 6vw;
  text-align: center;
  font-size: 13px;
  color: var(--ink-faint);
  border-top: 1px solid var(--line);
}

@media (max-width: 640px) {
  .lp-nav-links { gap: 12px; }
  .lp-nav-links a.lp-link { display: none; }
}
