/* ── Landing page styles ─────────────────────────────────────────────── */

.landing-body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
}

.lp-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Landing-scoped button overrides ─────────────────────────────────── */
.landing-body .btn {
  font-size: 14px;
  padding: 10px 20px;
}
.landing-body .btn-primary {
  background: var(--accent);
  color: #03302b;           /* dark ink on teal, better contrast */
  width: auto;
  margin: 0;
  font-weight: 700;
  box-shadow: 0 6px 22px -8px rgba(45, 212, 191, .6);
}
.landing-body .btn-primary:hover { filter: brightness(1.05); box-shadow: 0 10px 28px -10px rgba(45, 212, 191, .75); }
.landing-body .btn-outline {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--text2);
}
.landing-body .btn-outline:hover { background: var(--surface2); border-color: var(--accent); color: var(--text2); }
.landing-body .btn-sm  { padding: 7px 14px; font-size: 12px; }
.landing-body .btn-lg  { padding: 13px 26px; font-size: 15px; border-radius: 9px; }
.landing-body .btn-ghost {
  background: transparent;
  border: none;
  color: var(--text);
}
.landing-body .btn-ghost:hover { color: var(--accent); }

/* ── Header ──────────────────────────────────────────────────────────── */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(6, 12, 20, .72);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
  display: flex; align-items: center; gap: 20px;
}
.lp-logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--text2);
  font-weight: 800;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: -.3px;
}
.lp-nav {
  flex: 1;
  display: flex; gap: 22px;
  margin-left: 16px;
}
.lp-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .15s;
}
.lp-nav a:hover { color: var(--text2); }
.lp-header-cta { display: flex; gap: 8px; }

/* ── Hero ────────────────────────────────────────────────────────────── */
.lp-hero {
  position: relative;
  padding: 110px 0 90px;
  text-align: center;
  overflow: hidden;
}
.lp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(45, 212, 191, .14), transparent 55%),
    radial-gradient(ellipse at 20% 60%, rgba(45, 212, 191, .06), transparent 45%);
  pointer-events: none;
}
.lp-hero-inner { position: relative; z-index: 1; }

.lp-hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 20px;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 24px;
}
.lp-pill-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--green);
  animation: pill-pulse 2.4s ease-in-out infinite;
}
@keyframes pill-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 4px var(--green); }
  50%       { opacity: .6; box-shadow: 0 0 10px var(--green); }
}

.lp-h1 {
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--text2);
  margin-bottom: 22px;
}
.lp-accent { color: var(--accent); }
.lp-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--text);
  max-width: 660px;
  margin: 0 auto 34px;
}

.lp-hero-cta {
  display: flex; gap: 14px; justify-content: center;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.lp-hero-micro {
  font-size: 12px;
  color: var(--muted);
}

/* ── Stats ───────────────────────────────────────────────────────────── */
.lp-stats {
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.lp-stat {
  text-align: center;
}
.lp-stat-val {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
  font-variant-numeric: tabular-nums;
}
.lp-stat-lbl {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-top: 2px;
}

/* ── Section title ───────────────────────────────────────────────────── */
.lp-section-title {
  text-align: center;
  margin-bottom: 54px;
}
.lp-section-title h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  color: var(--text2);
  letter-spacing: -.6px;
  margin-bottom: 12px;
}
.lp-section-title p {
  color: var(--muted);
  font-size: 15px;
  max-width: 580px;
  margin: 0 auto;
}

/* ── Features ────────────────────────────────────────────────────────── */
.lp-features { padding: 90px 0; }
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lp-feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 22px;
  transition: border-color .2s, transform .2s;
}
.lp-feature:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.lp-feature-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--accent-dim);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}
.lp-feature-icon svg { width: 22px; height: 22px; }
.lp-feature h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text2);
  margin-bottom: 8px;
}
.lp-feature p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

/* ── Screeners list ──────────────────────────────────────────────────── */
.lp-screeners { padding: 40px 0 100px; }
.lp-screeners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}
.lp-screener {
  padding: 14px 16px 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
}
.lp-screener-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text2);
  margin-bottom: 4px;
  line-height: 1.3;
}
.lp-screener-desc {
  font-size: 12.5px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.5;
}

/* ── How it works ────────────────────────────────────────────────────── */
.lp-how {
  padding: 90px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.lp-step {
  text-align: center;
  padding: 0 12px;
}
.lp-step-num {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 22px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.lp-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text2);
  margin-bottom: 8px;
}
.lp-step p {
  font-size: 14px;
  color: var(--text);
}

/* ── Pricing ─────────────────────────────────────────────────────────── */
.lp-pricing { padding: 100px 0; }
.lp-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.lp-plan {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 26px;
  display: flex; flex-direction: column;
  transition: border-color .2s, transform .2s;
}
.lp-plan:hover { border-color: var(--border2); }
.lp-plan-featured {
  border: 1px solid var(--accent);
  transform: scale(1.02);
  box-shadow: 0 20px 40px -20px rgba(45, 212, 191, .35);
}
.lp-plan-featured:hover { border-color: var(--accent); transform: scale(1.03); }
.lp-plan-badge {
  position: absolute;
  top: -11px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #03302b;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: .4px;
  text-transform: uppercase;
}
.lp-plan-head { margin-bottom: 14px; }
.lp-plan-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.lp-plan-price {
  font-size: 52px;
  font-weight: 800;
  color: var(--text2);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 4px;
}
.lp-plan-cur { font-size: 28px; font-weight: 700; vertical-align: top; margin-right: 2px; color: var(--muted); }
.lp-plan-per { font-size: 14px; font-weight: 500; color: var(--muted); margin-left: 4px; }
.lp-plan-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.lp-plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  flex: 1;
}
.lp-plan-list li {
  font-size: 14px;
  color: var(--text);
  padding: 7px 0 7px 22px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.lp-plan-list li:last-child { border-bottom: none; }
.lp-plan-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 12px; height: 6px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.lp-plan-cta { width: 100%; margin-top: auto; }

.lp-pricing-note {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: 28px;
}

/* ── FAQ ─────────────────────────────────────────────────────────────── */
.lp-faq {
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.lp-faq .lp-container { max-width: 760px; }
.lp-q {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 20px;
  margin-bottom: 10px;
  cursor: pointer;
}
.lp-q summary {
  font-size: 15px;
  font-weight: 600;
  color: var(--text2);
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.lp-q summary::-webkit-details-marker { display: none; }
.lp-q summary::after {
  content: '+';
  color: var(--accent);
  font-size: 22px;
  font-weight: 300;
  transition: transform .2s;
}
.lp-q[open] summary::after { transform: rotate(45deg); }
.lp-q p {
  color: var(--text);
  font-size: 14px;
  padding-top: 12px;
  line-height: 1.65;
}

/* ── Final CTA ───────────────────────────────────────────────────────── */
.lp-cta {
  padding: 110px 0;
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(45, 212, 191, .1), transparent 60%),
    var(--bg);
}
.lp-cta h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: var(--text2);
  letter-spacing: -.6px;
  max-width: 720px;
  margin: 0 auto 14px;
}
.lp-cta p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 28px;
}

/* ── Footer ──────────────────────────────────────────────────────────── */
.lp-footer {
  padding: 26px 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.lp-footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.lp-footer-meta { color: var(--muted); font-size: 12px; }

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 880px) {
  .lp-nav { display: none; }
  .lp-features-grid,
  .lp-steps,
  .lp-plans {
    grid-template-columns: 1fr;
  }
  .lp-plan-featured { transform: none; }
  .lp-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .lp-hero { padding: 80px 0 60px; }
}
