/* Landing — public marketing page.
   Lives over the shared `.auth-hero` container so we get the same
   max-width + side padding as /signin/, /signup/ etc. Every section here
   adds visual rhythm (subtle accent hairline) and contrast (alternating
   density) instead of stacking identical .card grids.
*/

body { padding-top: 0; }

/* Reset the shared auth-shell column gap; we want to control rhythm
   per-section ourselves. */
.auth-hero.landing-hero {
  gap: 0;
  border-right: none;
}

/* ── Hero ────────────────────────────────────────────────────────── */

.lp-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.lp-h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.5vw, 68px);
  letter-spacing: -0.025em;
  font-weight: 600;
  line-height: 1.02;
  max-width: 18ch;
  margin: 0;
}
.lp-h1 em { color: var(--accent-bright); font-style: italic; }
.lp-sub {
  max-width: 60ch;
  font-size: 17px;
  line-height: 1.5;
  margin-top: 18px;
  color: var(--text-soft);
}
.lp-ctarow { gap: 12px; margin-top: 18px; }
.lp-microtrust {
  font-size: 12px;
  margin-top: 12px;
  color: var(--text-muted);
}

/* Stats strip — three KPIs in a single inline band with vertical
   hairlines between them. Replaces the previous three identical
   .card blocks for a tighter look. Wraps to a stacked column on
   mobile. */
.lp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 40px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.lp-stat { padding: 0 22px; border-right: 1px solid var(--border); }
.lp-stat:last-child { border-right: 0; }
.lp-stat-n {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.lp-stat-l {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.5;
}
@media (max-width: 720px) {
  .lp-stats { grid-template-columns: 1fr; }
  .lp-stat {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
  }
  .lp-stat:last-child { border-bottom: 0; }
}

/* ── Section scaffolding ─────────────────────────────────────────── */

.lp-section { margin-top: 72px; }
.lp-section-h {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  font-weight: 600;
}
.lp-section-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 22px;
  max-width: 60ch;
  line-height: 1.55;
}

/* ── Before / After ──────────────────────────────────────────────── */
/* A single two-column block with a subtle column rule that visually
   says "this becomes that". On mobile they stack and the rule moves
   to a top border on the After card. */
.lp-ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.lp-ba-col { padding: 22px 24px; }
.lp-ba-col + .lp-ba-col {
  border-left: 1px solid var(--border);
  background: var(--accent-tint);
}
.lp-ba-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-muted);
}
.lp-ba-col + .lp-ba-col .lp-ba-tag { color: var(--accent-bright); }
.lp-ba-list { font-size: 14px; line-height: 2.0; }
.lp-ba-col:first-child .lp-ba-list { color: var(--text-muted); }
.lp-ba-col:first-child .lp-ba-list > div {
  text-decoration: line-through;
  text-decoration-color: var(--border-strong);
  text-decoration-thickness: 1px;
}
@media (max-width: 720px) {
  .lp-ba { grid-template-columns: 1fr; }
  .lp-ba-col + .lp-ba-col {
    border-left: 0;
    border-top: 1px solid var(--border-gold);
  }
}

/* ── How it works — ghosted numerals ─────────────────────────────── */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.lp-step {
  position: relative;
  padding: 28px 22px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elev);
  overflow: hidden;
}
.lp-step-n {
  position: absolute;
  top: -14px;
  right: -6px;
  font-family: var(--font-display);
  font-size: 88px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent);
  opacity: 0.10;
  user-select: none;
  pointer-events: none;
}
.lp-step-h {
  font-weight: 600;
  font-size: 16px;
  position: relative;
}
.lp-step-h::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent-bright);
  margin-bottom: 12px;
}
.lp-step-b {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 8px;
  color: var(--text-muted);
}
@media (max-width: 720px) {
  .lp-steps { grid-template-columns: 1fr; }
}

/* ── Built for — dense pill grid (not cards) ─────────────────────── */
.lp-builtfor {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.lp-pill {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elev);
}
.lp-pill b { display: block; font-size: 14px; margin-bottom: 4px; }
.lp-pill .dim { font-size: 12.5px; line-height: 1.5; }
@media (max-width: 720px) {
  .lp-builtfor { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .lp-builtfor { grid-template-columns: 1fr; }
}

/* ── Pricing — primary card highlighted, secondary recessed ─────── */
.lp-pricing {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 16px;
}
.lp-price {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elev);
  position: relative;
}
.lp-price.primary {
  border-color: var(--border-gold);
  background: linear-gradient(180deg, var(--accent-tint), var(--bg-elev) 65%);
}
.lp-price-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--text-muted);
}
.lp-price.primary .lp-price-tag { color: var(--accent-bright); }
.lp-price-n {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  margin-top: 10px;
  letter-spacing: -0.025em;
  line-height: 1;
}
.lp-price-n .unit {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--text-muted);
}
.lp-price-d {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 12px;
  color: var(--text-soft);
}
.lp-price-foot {
  font-size: 12px;
  margin-top: 14px;
  color: var(--text-muted);
}
@media (max-width: 720px) {
  .lp-pricing { grid-template-columns: 1fr; }
}

/* ── Closing CTA ─────────────────────────────────────────────────── */
.lp-cta-banner {
  margin-top: 72px;
  padding: 32px;
  background: var(--accent-tint);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: center;
}
.lp-cta-h {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  font-weight: 600;
}
.lp-cta-sub { font-size: 14px; margin: 0; color: var(--text-muted); }
.lp-cta-actions { gap: 12px; justify-content: flex-end; flex-wrap: wrap; }
@media (max-width: 720px) {
  .lp-cta-banner { grid-template-columns: 1fr; }
  .lp-cta-actions { justify-content: flex-start; }
}

/* ── Long-form SEO copy ─────────────────────────────────────────── */
.lp-more {
  margin-top: 64px;
  max-width: 78ch;
}
.lp-more summary {
  font-size: 14px;
  cursor: pointer;
  user-select: none;
  color: var(--text-muted);
}
.lp-more p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 14px 0 0;
}
.lp-more a { color: var(--accent-bright); }
