/* ───────────────────────────────────────────────────────────────────
   Selah launch landing — brand skin.
   Selah's own system (warm white, Lora + Inter, sage accent, gold for
   scripture) over the launch page structure. One near-black section
   (the companion) carries the dramatic beat. Scoped under .lp.
   Color/font tokens come from the app's globals.css.
   ─────────────────────────────────────────────────────────────────── */

.lp {
  --lp-bg: var(--color-warm-white, #fafaf7);
  --lp-ink: var(--color-near-black, #1c1917);
  --lp-mute: var(--color-ai-muted, #6b7280);
  --lp-sage: var(--color-sage, #6b8f71);
  --lp-sage-light: var(--color-sage-light, #e8f0e9);
  --lp-gold: var(--color-soft-gold, #f5e6c8);
  --lp-border: var(--color-border, #e5e5e0);
  --lp-border-light: var(--color-border-light, #f0efe8);
  --lp-grad-sage: linear-gradient(180deg, #6b8f71 0%, #5a7d60 100%);
  --lp-grad-sage-hover: linear-gradient(
    180deg,
    rgba(107, 143, 113, 0.9) 0%,
    rgba(90, 125, 96, 0.9) 100%
  );
  --lp-grad-gold: linear-gradient(180deg, #f5e6c8 0%, #e8d4ae 100%);

  /* the one dark section */
  --lp-dark: #1c1917;
  --lp-dark-text: #f3f1ec;
  --lp-dark-mute: #b3aca0;
  --lp-dark-line: rgba(243, 241, 236, 0.14);
  --lp-sage-on-dark: #97b89d;

  --serif: var(--font-serif, "Lora", Georgia, serif);
  --sans: var(--font-sans, "Inter", system-ui, sans-serif);
  --hebrew: var(--lp-hebrew, serif);

  background: var(--lp-bg);
  color: var(--lp-ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.lp *,
.lp *::before,
.lp *::after {
  box-sizing: border-box;
  margin: 0;
}

.lp ::selection {
  background: var(--lp-sage);
  color: #fff;
}

.lp :focus-visible {
  outline: 2px solid var(--lp-sage);
  outline-offset: 2px;
  border-radius: 2px;
}

.lp h1,
.lp h2,
.lp h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.lp a {
  color: inherit;
  text-decoration: none;
}

.lp img {
  max-width: 100%;
  display: block;
}

.lp-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
}

/* ── Buttons (brand: gradient on accent interactives) ──────────── */

.lp-btn {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 140ms ease, border-color 140ms ease,
    color 140ms ease;
  white-space: nowrap;
}

.lp-btn--primary {
  background: var(--lp-grad-sage);
  color: #fff;
}
.lp-btn--primary:hover {
  background: var(--lp-grad-sage-hover);
}

.lp-btn--secondary {
  background: transparent;
  border-color: var(--lp-border);
  color: var(--lp-ink);
}
.lp-btn--secondary:hover {
  border-color: rgba(107, 143, 113, 0.4);
  background: rgba(232, 240, 233, 0.3);
}

.lp-dark-section .lp-btn--secondary {
  border-color: rgba(243, 241, 236, 0.28);
  color: var(--lp-dark-text);
}
.lp-dark-section .lp-btn--secondary:hover {
  border-color: rgba(243, 241, 236, 0.6);
  background: transparent;
}

/* ── Nav (frosted public header — sanctioned) ──────────────────── */

.lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background-color 200ms ease, border-color 200ms ease,
    backdrop-filter 200ms ease;
  border-bottom: 1px solid transparent;
}
.lp-nav.is-scrolled {
  background: rgba(250, 250, 247, 0.9);
  border-bottom-color: var(--lp-border-light);
  backdrop-filter: blur(8px);
}

.lp-nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  height: 64px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.lp-wordmark {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--lp-ink);
  letter-spacing: -0.01em;
  margin-right: auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.lp-mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--lp-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lp-mark span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--lp-grad-sage);
}

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.875rem;
  color: var(--lp-mute);
}
.lp-nav-links a {
  transition: color 130ms ease;
}
.lp-nav-links a:hover {
  color: var(--lp-ink);
}

.lp-nav-cta {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  background: var(--lp-grad-sage);
  border: none;
  border-radius: 8px;
  padding: 9px 18px;
  cursor: pointer;
  transition: background-color 140ms ease;
}
.lp-nav-cta:hover {
  background: var(--lp-grad-sage-hover);
}

@media (max-width: 880px) {
  .lp-nav-links {
    display: none;
  }
}

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

.lp-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(120px, 16vh, 168px) 24px 32px;
  position: relative;
  overflow: hidden;
}

/* the one sanctioned soft radial sage gradient */
.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 60% 55% at 30% 40%,
      rgba(107, 143, 113, 0.06) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 45% at 72% 30%,
      rgba(107, 143, 113, 0.04) 0%,
      transparent 70%
    );
}

.lp-hero > * {
  position: relative;
}

/* a faint sage dot grid, densest behind the headline, fading at the edges */
.lp-hero-pattern {
  position: absolute;
  top: -12%;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(
    rgba(107, 143, 113, 0.22) 1.2px,
    transparent 1.6px
  );
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(
    ellipse 68% 58% at 50% 36%,
    #000 0%,
    transparent 72%
  );
  mask-image: radial-gradient(
    ellipse 68% 58% at 50% 36%,
    #000 0%,
    transparent 72%
  );
}

.lp-kicker {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lp-sage);
}

.lp-hero h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  line-height: 1.12;
  max-width: 17ch;
  margin: 22px auto 0;
  color: var(--lp-ink);
}

.lp-hero-sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--lp-mute);
  max-width: 36rem;
  margin: 22px auto 0;
}

.lp-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.lp-hero-note {
  font-size: 0.8125rem;
  color: var(--lp-mute);
  opacity: 0.75;
  margin-top: 16px;
}

/* ── Product preview ───────────────────────────────────────────── */

.lp-preview-wrap {
  width: 100%;
  max-width: 1024px;
  margin: clamp(40px, 6vh, 64px) auto 0;
  padding: 0 clamp(16px, 3vw, 32px) 72px;
  text-align: left;
}

.lp-preview {
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 15px -3px rgba(28, 25, 23, 0.1),
    0 4px 6px -4px rgba(28, 25, 23, 0.1);
  overflow: hidden;
}

.lp-preview-bar {
  border-bottom: 1px solid var(--lp-border);
  background: var(--lp-bg);
  padding: 10px 16px;
  display: flex;
  align-items: center;
}
.lp-preview-domain {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 0.6875rem;
  color: var(--lp-mute);
  opacity: 0.7;
}
.lp-preview-hint {
  margin-left: auto;
  font-size: 0.625rem;
  color: var(--lp-mute);
  opacity: 0.55;
}

.lp-preview-body {
  display: flex;
  min-height: 240px;
  aspect-ratio: 3 / 2;
}
@media (min-width: 768px) {
  .lp-preview-body {
    aspect-ratio: auto;
    min-height: 520px;
  }
}

.lp-preview-side {
  display: none;
}
@media (min-width: 768px) {
  .lp-preview-side {
    display: flex;
    flex-direction: column;
    width: 208px;
    flex-shrink: 0;
    border-right: 1px solid var(--lp-border);
    background: var(--lp-bg);
  }
}

.lp-preview-logo {
  padding: 12px 16px;
  border-bottom: 1px solid var(--lp-border-light);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lp-ink);
}
.lp-preview-mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--lp-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lp-preview-mark span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--lp-grad-sage);
}

.lp-preview-nav {
  flex: 1;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lp-preview-nav button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 0.75rem;
  color: var(--lp-mute);
  cursor: pointer;
  text-align: left;
  transition: background-color 130ms ease, color 130ms ease;
}
.lp-preview-nav button:hover {
  background: var(--lp-border-light);
  color: var(--lp-ink);
}
.lp-preview-nav button.is-active {
  background: var(--lp-sage-light);
  color: var(--lp-sage);
  font-weight: 500;
}

.lp-preview-dots {
  padding: 12px 16px;
  border-top: 1px solid var(--lp-border-light);
  display: flex;
  gap: 6px;
  align-items: center;
}
.lp-preview-dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--lp-border);
  transition: width 300ms ease, background-color 300ms ease;
}
.lp-preview-dots span.is-active {
  width: 16px;
  background: var(--lp-sage);
}

.lp-preview-screen {
  flex: 1;
  min-width: 0;
  position: relative;
  background: var(--lp-bg);
  overflow: hidden;
}
.lp-preview-screen img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left top;
}

.lp-preview-cap {
  border-top: 1px solid var(--lp-border-light);
  background: #fff;
  padding: 14px 24px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.lp-preview-num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--lp-sage-light);
  color: var(--lp-sage);
  font-size: 0.6875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.lp-preview-cap-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--lp-ink);
}
.lp-preview-cap-text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--lp-mute);
  margin-top: 2px;
}

@media (prefers-reduced-motion: no-preference) {
  .lp-preview-screen,
  .lp-preview-cap {
    animation: lp-fade 320ms ease-out;
  }
}
@keyframes lp-fade {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lp-preview-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}
@media (min-width: 768px) {
  .lp-preview-pills {
    display: none;
  }
}
.lp-preview-pills button {
  font-family: var(--sans);
  font-size: 0.6875rem;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--lp-border);
  background: transparent;
  color: var(--lp-mute);
  cursor: pointer;
}
.lp-preview-pills button.is-active {
  background: var(--lp-sage-light);
  border-color: rgba(107, 143, 113, 0.3);
  color: var(--lp-sage);
  font-weight: 500;
}

/* ── Scatter scene ─────────────────────────────────────────────── */

.lp-scatter {
  padding: clamp(72px, 10vh, 120px) 0 clamp(170px, 24vh, 280px);
  overflow: hidden;
  border-top: 1px solid var(--lp-border-light);
  border-bottom: 1px solid var(--lp-border);
  position: relative;
}

/* forest light (CC0, Wikimedia Commons) — faded to warm white at the
   top so the copy stays readable, strongest at the hard bottom edge */
.lp-scatter-bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60%;
  pointer-events: none;
  background-image: url("/landing/forest-light.jpg");
  background-size: cover;
  background-position: center 65%;
  opacity: 0.26;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 55%,
    rgba(0, 0, 0, 0.85) 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 55%,
    rgba(0, 0, 0, 0.85) 100%
  );
}

.lp-scatter-stage {
  text-align: center;
  position: relative;
}

.lp-scatter-h {
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  color: var(--lp-ink);
  line-height: 1.15;
}

.lp-scatter-p {
  max-width: 36rem;
  margin: 20px auto 0;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--lp-mute);
}

.lp-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 14px;
  max-width: 38rem;
  margin: 40px auto;
  padding: 0;
  list-style: none;
}

.lp-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--lp-mute);
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 999px;
  padding: 9px 18px;
  white-space: nowrap;
  will-change: transform, opacity;
}
.lp-chip-logo {
  width: 15px;
  height: 15px;
  object-fit: contain;
  opacity: 0.85;
}

.lp-scatter-b {
  margin-top: clamp(48px, 9vh, 88px);
}

.lp-scatter-b .lp-scatter-h {
  font-size: clamp(2.125rem, 5vw, 3.25rem);
}
.lp-scatter-b .lp-scatter-h em {
  font-style: normal;
  color: var(--lp-sage);
}

/* ── Follow one thought (the journey) ──────────────────────────── */

.lp-journey {
  padding: clamp(120px, 16vh, 190px) 0 clamp(56px, 8vh, 96px);
  overflow: hidden;
}

.lp-journey-head {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto;
}
.lp-journey-head h2 {
  font-size: clamp(1.875rem, 4.5vw, 2.625rem);
  line-height: 1.15;
  color: var(--lp-ink);
}
.lp-journey-head p {
  margin-top: 14px;
  font-size: 1.0625rem;
  color: var(--lp-mute);
}

.lp-journey-flow {
  position: relative;
  margin-top: clamp(48px, 7vh, 80px);
}

/* the thread the thought travels along */
.lp-journey-line {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 50%;
  width: 1px;
  margin-left: -0.5px;
  background: var(--lp-border);
}
.lp-journey-line-fill {
  position: absolute;
  inset: 0;
  background: var(--lp-sage);
  transform-origin: top center;
}

.lp-journey-dot {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 14px;
  height: 14px;
  margin-left: -7px;
  border-radius: 50%;
  background: var(--lp-grad-gold);
  border: 2px solid var(--lp-sage);
  z-index: 2;
}

.lp-jstep {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(48px, 7vw, 96px) minmax(0, 1fr);
  align-items: center;
}
.lp-jstep + .lp-jstep {
  margin-top: clamp(56px, 9vh, 96px);
}

.lp-jstep-copy {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
  justify-self: end;
  max-width: 26rem;
}
.lp-jstep-vis {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
  width: 100%;
  max-width: 25rem;
}
.lp-jstep--flip .lp-jstep-copy {
  grid-column: 3;
  text-align: left;
  justify-self: start;
}
.lp-jstep--flip .lp-jstep-vis {
  grid-column: 1;
  justify-self: end;
}

.lp-jstep-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lp-sage);
}
.lp-jstep-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--lp-grad-sage);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0;
}
.lp-jstep-copy h3 {
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  line-height: 1.25;
  margin-top: 10px;
  color: var(--lp-ink);
}
.lp-jstep-copy p:not(.lp-jstep-label) {
  margin-top: 12px;
  font-size: 0.9688rem;
  line-height: 1.7;
  color: var(--lp-mute);
}

/* the mini-cards */
.lp-jcard {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  padding: 20px 22px;
}

.lp-jcard-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lp-mute);
}

/* step 1 — Telegram chat card */
.lp-jchat {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-jtg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--lp-grad-sage);
  color: #fff;
}
.lp-jbubble {
  max-width: 86%;
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 14px;
}
.lp-jbubble--you {
  align-self: flex-end;
  background: var(--lp-sage-light);
  color: var(--lp-ink);
  border-bottom-right-radius: 4px;
}
.lp-jbubble--bot {
  align-self: flex-start;
  background: var(--lp-bg);
  border: 1px solid var(--lp-border-light);
  color: var(--lp-mute);
  border-bottom-left-radius: 4px;
}

.lp-jverse {
  font-family: var(--serif);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--lp-ink);
  margin-top: 10px;
}
.lp-j-hl {
  color: inherit;
  background-color: transparent;
  background-image: linear-gradient(var(--lp-gold), var(--lp-gold));
  background-repeat: no-repeat;
  background-size: 100% 82%;
  background-position: 0 60%;
  padding: 0 2px;
  border-radius: 3px;
}

.lp-jmargin {
  margin-top: 14px;
  border: 1px solid var(--lp-border-light);
  border-radius: 8px;
  background: var(--lp-bg);
  padding: 10px 14px;
  font-family: var(--serif);
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--lp-ink);
}
.lp-jmargin span {
  display: block;
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lp-mute);
  margin-bottom: 4px;
}

.lp-jnote-title {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--lp-ink);
}
.lp-jnote-line {
  font-family: var(--serif);
  font-size: 0.9688rem;
  line-height: 1.65;
  color: var(--lp-ink);
  margin-top: 12px;
}
.lp-jnote-src {
  font-size: 0.75rem;
  color: var(--lp-mute);
  margin-top: 12px;
}

.lp-jcard--graph {
  padding: 12px;
}
.lp-jgraph {
  display: block;
  width: 100%;
  height: auto;
}
.lp-jedge {
  stroke: rgba(107, 143, 113, 0.45);
  stroke-width: 1.5;
}
.lp-jnode circle {
  fill: var(--lp-sage);
}
.lp-jnode text {
  font-family: var(--sans);
  font-size: 12px;
  fill: var(--lp-mute);
  text-anchor: middle;
}
.lp-jnode--new circle {
  fill: #e8d4ae;
  stroke: var(--lp-sage);
  stroke-width: 1.5;
}
.lp-jnode--new text {
  fill: var(--lp-ink);
  font-weight: 600;
}

@media (max-width: 880px) {
  .lp-journey-line,
  .lp-journey-dot {
    display: none;
  }
  .lp-jstep,
  .lp-jstep--flip {
    grid-template-columns: 1fr;
  }
  .lp-jstep-copy,
  .lp-jstep--flip .lp-jstep-copy {
    grid-column: 1;
    text-align: left;
    justify-self: start;
  }
  .lp-jstep-vis,
  .lp-jstep--flip .lp-jstep-vis {
    grid-column: 1;
    justify-self: start;
    margin-top: 18px;
  }
}

/* ── Plates (the tour) ─────────────────────────────────────────── */

.lp-plates {
  padding: clamp(80px, 11vh, 130px) 0 clamp(64px, 9vh, 110px);
  border-top: 1px solid var(--lp-border-light);
}

.lp-plates-head {
  max-width: 44rem;
}

.lp-plates-head h2 {
  font-size: clamp(1.875rem, 4.5vw, 2.625rem);
  line-height: 1.15;
  color: var(--lp-ink);
}

.lp-plates-honest {
  margin-top: 14px;
  font-size: 1rem;
  color: var(--lp-mute);
}

.lp-plate {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  margin-top: clamp(64px, 9vh, 110px);
}
.lp-plate--flip {
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
}
.lp-plate--flip .lp-plate-copy {
  order: 2;
}

.lp-plate-copy h3 {
  font-size: clamp(1.375rem, 2.8vw, 1.75rem);
  line-height: 1.22;
  color: var(--lp-ink);
}

.lp-plate-copy p {
  margin-top: 14px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--lp-mute);
  max-width: 32rem;
}
.lp-plate-copy p em {
  font-family: var(--serif);
  color: var(--lp-ink);
}

.lp-plate-img {
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.lp-plate-img img {
  width: 100%;
  height: auto;
  /* reserve the box before the lazy screenshot arrives — late growth
     under Lenis left a stale scroll limit and an unreachable footer */
  aspect-ratio: 2000 / 1330;
  object-fit: cover;
}

@media (max-width: 880px) {
  .lp-plate,
  .lp-plate--flip {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .lp-plate--flip .lp-plate-copy {
    order: 0;
  }
}

/* ── Companion (the one dark section) ──────────────────────────── */

.lp-companion {
  position: relative;
  background: var(--lp-dark);
  color: var(--lp-dark-text);
  padding: clamp(88px, 13vh, 150px) 0;
  overflow: hidden;
}

/* a slow sage glow that drifts with scroll behind the conversation */
.lp-companion-glow {
  position: absolute;
  top: 30%;
  right: 8%;
  width: min(46vw, 560px);
  height: min(46vw, 560px);
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(107, 143, 113, 0.22) 0%,
    transparent 65%
  );
  filter: blur(20px);
  z-index: 0;
}
/* the whole companion section is centered on the page */
.lp-companion .lp-wrap {
  position: relative;
  z-index: 1;
  text-align: center;
}

.lp-companion-h {
  font-size: clamp(2.125rem, 6vw, 3.75rem);
  line-height: 1.08;
  color: var(--lp-dark-text);
  max-width: 16ch;
  margin: 0 auto;
}

.lp-companion-p {
  margin: 24px auto 0;
  max-width: 37rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--lp-dark-mute);
}

.lp-companion-stage {
  margin-top: clamp(40px, 6vh, 60px);
}

.lp-transcript {
  max-width: 36rem;
  margin: 0 auto;
  border: 1px solid var(--lp-dark-line);
  border-radius: 12px;
  background: rgba(243, 241, 236, 0.04);
  padding: clamp(22px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 26px;
  text-align: left;
}

.lp-msg-who {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-dark-mute);
}
.lp-msg--ai .lp-msg-who {
  color: var(--lp-sage-on-dark);
}

.lp-msg-text {
  font-family: var(--serif);
  font-size: 1.0938rem;
  line-height: 1.65;
  color: var(--lp-dark-text);
  margin-top: 7px;
}
.lp-msg--ai .lp-msg-text {
  font-style: italic;
  color: var(--lp-sage-on-dark);
}

.lp-msg-ref {
  font-family: var(--serif);
  font-weight: 500;
  background: var(--lp-grad-gold);
  color: var(--lp-ink);
  border-radius: 999px;
  padding: 1px 10px;
  font-size: 0.9375rem;
  white-space: nowrap;
}

.lp-msg-source {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--lp-gold);
  border: 1px solid rgba(245, 230, 200, 0.35);
  border-radius: 999px;
  padding: 4px 12px;
}

.lp-creed {
  margin-top: clamp(56px, 8vh, 88px);
  text-align: center;
}
.lp-creed p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3.4vw, 2.125rem);
  line-height: 1.4;
  max-width: 24ch;
  margin: 0 auto;
  color: var(--lp-dark-text);
}
.lp-creed p strong {
  font-weight: 500;
  color: var(--lp-gold);
}

/* ── Founder ───────────────────────────────────────────────────── */

.lp-founder {
  padding: clamp(64px, 8vh, 100px) 0;
  border-bottom: 1px solid var(--lp-border-light);
}

.lp-founder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
  max-width: 40rem;
  margin: 0 auto;
}

.lp-founder-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--lp-border);
}

.lp-founder-q {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.6vw, 1.5rem);
  line-height: 1.5;
  color: var(--lp-ink);
  text-wrap: balance;
}

.lp-founder-sig {
  font-size: 0.875rem;
  color: var(--lp-mute);
}
.lp-founder-sig strong {
  color: var(--lp-ink);
  font-weight: 600;
}

/* ── Pricing (ledger) ──────────────────────────────────────────── */

.lp-pricing {
  padding: clamp(80px, 10vh, 130px) 0;
}

.lp-pricing-head {
  max-width: 44rem;
}
.lp-pricing-head h2 {
  font-size: clamp(1.875rem, 4.5vw, 2.625rem);
  line-height: 1.15;
  color: var(--lp-ink);
}
.lp-pricing-head p {
  margin-top: 14px;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--lp-mute);
  max-width: 38rem;
}

.lp-ledger {
  margin-top: clamp(44px, 6vh, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--lp-ink);
}

.lp-plan {
  padding: 36px clamp(24px, 4vw, 48px) 40px 0;
}
.lp-plan + .lp-plan {
  border-left: 1px solid var(--lp-border);
  padding-left: clamp(24px, 4vw, 48px);
  padding-right: 0;
}

.lp-plan-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--lp-ink);
}
.lp-plan-name .lp-plan-tag {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lp-sage);
  margin-left: 12px;
}

.lp-plan-price {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 500;
  margin-top: 18px;
  color: var(--lp-ink);
  letter-spacing: -0.01em;
}
.lp-plan-price span {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--lp-mute);
  margin-left: 8px;
  letter-spacing: 0;
}

.lp-plan-desc {
  margin-top: 14px;
  font-size: 0.9688rem;
  line-height: 1.6;
  color: var(--lp-mute);
  max-width: 26rem;
}

.lp-plan-list {
  list-style: none;
  margin-top: 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.lp-plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: var(--lp-ink);
}
.lp-check {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--lp-sage);
}

.lp-plan-fine {
  margin-top: 18px;
  font-size: 0.8125rem;
  line-height: 1.6;
  font-weight: 500;
  color: var(--lp-ink);
}

.lp-plan .lp-btn {
  margin-top: 24px;
}

@media (max-width: 760px) {
  .lp-ledger {
    grid-template-columns: 1fr;
  }
  .lp-plan {
    padding-right: 0;
  }
  .lp-plan + .lp-plan {
    border-left: none;
    border-top: 1px solid var(--lp-border);
    padding-left: 0;
  }
}

/* ── FAQ ───────────────────────────────────────────────────────── */

.lp-faq {
  padding: clamp(80px, 10vh, 130px) 0;
}

.lp-faq h2 {
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  color: var(--lp-ink);
}

.lp-faq-list {
  margin-top: 32px;
  max-width: 46rem;
  border-top: 1px solid var(--lp-border);
}

.lp-faq-item {
  border-bottom: 1px solid var(--lp-border);
}

.lp-faq-item summary {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--lp-ink);
  padding: 20px 36px 20px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.lp-faq-item summary::-webkit-details-marker {
  display: none;
}
.lp-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 1.25rem;
  color: var(--lp-sage);
}
.lp-faq-item[open] summary::after {
  content: "−";
}

.lp-faq-item .lp-faq-a {
  padding: 0 0 22px;
  font-size: 0.9688rem;
  line-height: 1.75;
  color: var(--lp-mute);
  max-width: 42rem;
}
.lp-faq-a a {
  color: var(--lp-sage);
  text-decoration: underline;
  text-decoration-color: rgba(107, 143, 113, 0.3);
  text-underline-offset: 3px;
}
.lp-faq-a a:hover {
  text-decoration-color: var(--lp-sage);
}

/* ── Final CTA + footer ────────────────────────────────────────── */

.lp-final {
  padding: clamp(96px, 14vh, 170px) 0 0;
  text-align: center;
  background: var(--lp-bg);
  border-top: 1px solid var(--lp-border-light);
}

.lp-final-hebrew {
  font-family: var(--hebrew);
  font-size: 1.5rem;
  line-height: 1.4;
  direction: rtl;
  display: inline-block;
  background: var(--lp-grad-gold);
  color: var(--lp-ink);
  border-radius: 999px;
  padding: 4px 22px;
}

.lp-final h2 {
  font-size: clamp(2.25rem, 5.5vw, 3.25rem);
  color: var(--lp-ink);
  margin-top: 22px;
  line-height: 1.1;
}

.lp-final-p {
  max-width: 33rem;
  margin: 20px auto 0;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--lp-mute);
}

.lp-final-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.lp-footer {
  margin-top: clamp(80px, 11vh, 130px);
  border-top: 1px solid var(--lp-border-light);
  padding: 36px 0 44px;
}

.lp-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 18px 36px;
  font-size: 0.875rem;
  color: var(--lp-mute);
}

.lp-footer .lp-wordmark {
  font-size: 1.0625rem;
  margin-right: 0;
}

.lp-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-right: auto;
}
.lp-footer-links a:hover {
  color: var(--lp-ink);
}

.lp-footer-psalm {
  font-family: var(--serif);
  font-style: italic;
  color: var(--lp-mute);
}

/* ── Reduced motion ────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  .lp *,
  .lp *::before,
  .lp *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ════ Restored sections: tones, plan, week, voices, compare, trust ═══ */

/* ── Background tone rotation ──────────────────────────────────── */
.lp-tone-parchment {
  background: #f6f2e9;
}
.lp-tone-cream {
  background: #f7f1e3;
}

.lp-eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lp-sage);
}

/* ── Shared two-column feature layout ──────────────────────────── */
.lp-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 80px);
}
.lp-feature-copy h2 {
  font-size: clamp(1.625rem, 3.4vw, 2.25rem);
  line-height: 1.18;
  margin-top: 14px;
  color: var(--lp-ink);
}
.lp-feature-copy h2 em {
  color: var(--lp-sage);
}
.lp-feature-p {
  margin-top: 16px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--lp-mute);
}
.lp-feature-list {
  list-style: none;
  margin-top: 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--lp-mute);
}
.lp-feature-list b {
  color: var(--lp-ink);
  font-weight: 600;
}

@media (max-width: 880px) {
  .lp-feature {
    grid-template-columns: 1fr;
  }
}

/* ── Reading plan ──────────────────────────────────────────────── */
.lp-plansec {
  padding: clamp(80px, 10vh, 130px) 0;
  border-top: 1px solid rgba(28, 25, 23, 0.05);
  border-bottom: 1px solid rgba(28, 25, 23, 0.05);
}

.lp-plan-card {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  padding: clamp(20px, 3vw, 28px);
  box-shadow: 0 14px 40px -18px rgba(28, 25, 23, 0.18);
}

.lp-plan-card-title {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--lp-ink);
}
.lp-plan-card-title small {
  display: block;
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lp-mute);
  margin-bottom: 6px;
}

.lp-plan-bar {
  display: flex;
  gap: 3px;
  margin-top: 18px;
}
.lp-plan-seg {
  flex: 1;
  height: 5px;
  border-radius: 3px;
  background: var(--lp-border-light);
  transform-origin: left center;
}
.lp-plan-seg.is-done {
  background: var(--lp-sage);
}

.lp-plan-days {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
}
.lp-plan-day {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 2px;
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--lp-mute);
}
.lp-plan-day + .lp-plan-day {
  border-top: 1px solid var(--lp-border-light);
}
.lp-plan-check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--lp-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  color: #fff;
}
.lp-plan-day.is-done .lp-plan-check {
  background: var(--lp-sage);
  border-color: var(--lp-sage);
}
.lp-plan-day.is-now .lp-plan-check {
  border-color: var(--lp-sage);
  box-shadow: 0 0 0 3px var(--lp-sage-light);
}
.lp-plan-dow {
  width: 44px;
  font-weight: 600;
  color: var(--lp-ink);
}
.lp-plan-day.is-now .lp-plan-dow {
  color: var(--lp-sage);
}
.lp-plan-ref {
  flex: 1;
  font-family: var(--serif);
  color: var(--lp-ink);
}
.lp-plan-min {
  font-size: 0.75rem;
}

/* ── A week with Selah ─────────────────────────────────────────── */
.lp-week {
  padding: clamp(80px, 10vh, 130px) 0;
}

.lp-week-head {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto clamp(44px, 6vh, 64px);
}
.lp-week-head h2 {
  font-size: clamp(1.75rem, 3.8vw, 2.5rem);
  line-height: 1.16;
  margin-top: 14px;
  color: var(--lp-ink);
}
.lp-week-head h2 em {
  color: var(--lp-sage);
}
.lp-week-head p {
  margin-top: 14px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--lp-mute);
}

.lp-week-rail {
  position: relative;
  max-width: 46rem;
  margin: 0 auto;
}
.lp-week-line {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 116px;
  width: 2px;
  background: var(--lp-border-light);
  border-radius: 1px;
}
.lp-week-line-fill {
  position: absolute;
  inset: 0;
  background: var(--lp-sage);
  border-radius: 1px;
  transform-origin: top center;
}

.lp-wstep {
  position: relative;
  display: grid;
  grid-template-columns: 92px 50px minmax(0, 1fr);
  align-items: start;
}
.lp-wstep + .lp-wstep {
  margin-top: 26px;
}
.lp-wday {
  text-align: right;
  font-family: var(--sans);
  font-size: 0.75rem;
  color: var(--lp-mute);
  padding-top: 14px;
}
.lp-wday b {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--lp-ink);
}
.lp-wdot {
  justify-self: center;
  width: 11px;
  height: 11px;
  margin-top: 18px;
  border-radius: 50%;
  background: var(--lp-bg);
  border: 2.5px solid var(--lp-sage);
  position: relative;
  z-index: 1;
}
.lp-wcard {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  padding: 16px 20px;
}
.lp-wcard h4 {
  font-family: var(--serif);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--lp-ink);
}
.lp-wcard p {
  margin-top: 6px;
  font-size: 0.9063rem;
  line-height: 1.65;
  color: var(--lp-mute);
}
.lp-wmicro {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  font-family: var(--sans);
  font-size: 0.75rem;
  color: var(--lp-mute);
}
.lp-pip {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.lp-pip--gold {
  background: #d9b96a;
}
.lp-pip--sage {
  background: var(--lp-sage);
}

@media (max-width: 640px) {
  .lp-week-line {
    left: 5px;
  }
  .lp-wstep {
    grid-template-columns: 28px minmax(0, 1fr);
  }
  .lp-wday {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    padding-top: 0;
    padding-bottom: 6px;
  }
  .lp-wday b {
    display: inline;
    margin-right: 6px;
  }
  .lp-wdot {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    margin-top: 2px;
  }
  .lp-wcard {
    grid-column: 2;
    grid-row: 2;
  }
}

/* ── Comparison table ──────────────────────────────────────────── */
.lp-compare {
  padding: clamp(80px, 10vh, 130px) 0;
  border-top: 1px solid rgba(28, 25, 23, 0.05);
}
.lp-compare-head {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto clamp(40px, 5vh, 56px);
}
.lp-compare-head h2 {
  font-size: clamp(1.75rem, 3.8vw, 2.5rem);
  line-height: 1.16;
  margin-top: 14px;
  color: var(--lp-ink);
}
.lp-compare-head p {
  margin-top: 14px;
  font-size: 0.9688rem;
  line-height: 1.7;
  color: var(--lp-mute);
}

.lp-compare-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  background: #fff;
}
.lp-compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 0.875rem;
}
.lp-compare-table th {
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lp-mute);
  padding: 16px 18px;
  border-bottom: 1px solid var(--lp-border);
  white-space: nowrap;
}
.lp-compare-table th.lp-col-selah {
  color: var(--lp-sage);
}
.lp-compare-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--lp-border-light);
  vertical-align: top;
}
.lp-compare-table tr:last-child td {
  border-bottom: none;
}
.lp-compare-table td.lp-col-selah {
  background: rgba(107, 143, 113, 0.07);
}
.lp-compare-feat {
  font-weight: 600;
  color: var(--lp-ink);
  min-width: 230px;
}
.lp-compare-feat small {
  display: block;
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--lp-mute);
  margin-top: 3px;
}
.lp-cmark {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  font-size: 0.8125rem;
}
.lp-cmark-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.lp-cmark--yes {
  color: #45624c;
  font-weight: 600;
}
.lp-cmark--yes .lp-cmark-dot {
  background: var(--lp-sage);
}
.lp-cmark--partial {
  color: #8a6a1a;
}
.lp-cmark--partial .lp-cmark-dot {
  background: #d9b96a;
}
.lp-cmark--no {
  color: var(--lp-mute);
  opacity: 0.75;
}
.lp-cmark--no .lp-cmark-dot {
  background: var(--lp-border);
}
.lp-compare-foot {
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 0.75rem;
  color: var(--lp-mute);
  opacity: 0.8;
  text-align: center;
}

/* ── Trust strip ───────────────────────────────────────────────── */
.lp-trust {
  background: var(--lp-sage-light);
  border-top: 1px solid rgba(107, 143, 113, 0.18);
  border-bottom: 1px solid rgba(107, 143, 113, 0.18);
  padding: clamp(36px, 5vh, 52px) 0;
}
.lp-trust-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 48px);
}
.lp-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.lp-trust-icon {
  flex-shrink: 0;
  color: var(--lp-sage);
  margin-top: 2px;
}
.lp-trust-item h4 {
  font-family: var(--sans);
  font-size: 0.9063rem;
  font-weight: 600;
  color: var(--lp-ink);
}
.lp-trust-item p {
  margin-top: 4px;
  font-family: var(--sans);
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--lp-mute);
}

@media (max-width: 760px) {
  .lp-trust-inner {
    grid-template-columns: 1fr;
  }
}

/* ════ Scroll-built feature scenes: reader, prayer, plan morph ═══════ */

/* ── Reader scene ──────────────────────────────────────────────── */
.lp-reader {
  padding: clamp(80px, 10vh, 130px) 0;
  border-top: 1px solid var(--lp-border-light);
}
.lp-reader-head {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto clamp(44px, 6vh, 64px);
}
.lp-reader-head h2 {
  font-size: clamp(1.75rem, 3.8vw, 2.5rem);
  line-height: 1.16;
  margin-top: 14px;
  color: var(--lp-ink);
}
.lp-reader-head p {
  margin-top: 14px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--lp-mute);
}

.lp-reader-scene {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  max-width: 62rem;
  margin: 0 auto;
}

.lp-rsteps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.lp-rstep {
  font-size: 0.9063rem;
  line-height: 1.6;
  color: var(--lp-mute);
  padding-left: 16px;
  border-left: 2px solid var(--lp-border-light);
}
.lp-rstep b {
  display: block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--lp-sage);
  margin-bottom: 3px;
}

.lp-rcard {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  padding: clamp(22px, 3vw, 30px);
  box-shadow: 0 14px 40px -18px rgba(28, 25, 23, 0.18);
}
.lp-rcard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lp-mute);
}
.lp-rcard-pill {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: var(--lp-sage);
  background: var(--lp-sage-light);
  border-radius: 999px;
  padding: 3px 10px;
}
.lp-rverse {
  font-family: var(--serif);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--lp-ink);
  margin-top: 14px;
}
.lp-r-hl {
  position: relative;
  background: linear-gradient(180deg, transparent 55%, var(--lp-gold) 55%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0 2px;
}
.lp-r-hltag {
  position: absolute;
  top: -14px;
  right: -8px;
  font-family: var(--sans);
  font-size: 0.5625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8a6a1a;
  background: var(--lp-gold);
  border-radius: 999px;
  padding: 2px 8px;
}
.lp-rws {
  margin-top: 16px;
  border: 1px solid var(--lp-border-light);
  border-left: 3px solid var(--lp-sage);
  border-radius: 8px;
  padding: 12px 16px;
  background: var(--lp-bg);
}
.lp-rws-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.lp-rws-greek {
  font-family: var(--serif);
  font-size: 1.0625rem;
  color: var(--lp-ink);
}
.lp-rws-translit {
  font-style: italic;
  font-size: 0.8125rem;
  color: var(--lp-mute);
}
.lp-rws-strong {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--lp-sage);
}
.lp-rws-gloss {
  margin-top: 6px;
  font-size: 0.8438rem;
  line-height: 1.55;
  color: var(--lp-mute);
}
.lp-rnote {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: 0.9375rem;
  color: var(--lp-ink);
  background: var(--lp-bg);
  border: 1px solid var(--lp-border-light);
  border-radius: 8px;
  padding: 12px 16px;
}
.lp-rnote-meta {
  display: block;
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lp-mute);
  margin-bottom: 5px;
}
.lp-ranchor {
  margin-top: 16px;
  display: inline-block;
  font-family: var(--serif);
  font-size: 0.8125rem;
  font-weight: 500;
  background: var(--lp-grad-gold);
  color: var(--lp-ink);
  border-radius: 999px;
  padding: 4px 14px;
}

@media (max-width: 880px) {
  .lp-reader-scene {
    grid-template-columns: 1fr;
  }
  .lp-rsteps {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
  }
  .lp-rstep {
    flex: 1 1 40%;
    font-size: 0.8125rem;
  }
}

/* ── Prayer board scene ────────────────────────────────────────── */
.lp-prayersec {
  padding: clamp(80px, 10vh, 130px) 0;
  border-top: 1px solid rgba(28, 25, 23, 0.05);
  border-bottom: 1px solid rgba(28, 25, 23, 0.05);
  overflow: hidden;
}
.lp-prayer-head {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto clamp(40px, 5vh, 56px);
}
.lp-prayer-head h2 {
  font-size: clamp(1.75rem, 3.8vw, 2.5rem);
  line-height: 1.16;
  margin-top: 14px;
  color: var(--lp-ink);
}
.lp-prayer-head p {
  margin-top: 14px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--lp-mute);
}

.lp-pboard {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 56rem;
  margin: 0 auto;
}
.lp-pcol {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-pcol--answered {
  background: rgba(232, 240, 233, 0.55);
  border-color: rgba(107, 143, 113, 0.3);
}
.lp-pcol-head {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--lp-mute);
  display: flex;
  justify-content: space-between;
}
.lp-pcol--answered .lp-pcol-head {
  color: var(--lp-sage);
}
.lp-pcard {
  background: #fff;
  border: 1px solid var(--lp-border-light);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--serif);
  font-size: 0.9375rem;
  color: var(--lp-ink);
  box-shadow: 0 2px 8px -4px rgba(28, 25, 23, 0.08);
}
.lp-pcard span {
  display: block;
  font-family: var(--sans);
  font-size: 0.6875rem;
  color: var(--lp-mute);
  margin-top: 4px;
}
.lp-pcard--mover {
  position: relative;
  border-color: rgba(107, 143, 113, 0.45);
  will-change: transform;
}
.lp-pbadge {
  display: inline-block;
  font-style: normal;
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--lp-grad-sage);
  border-radius: 999px;
  padding: 3px 9px;
  margin-top: 8px;
}
.lp-pslot {
  border: 1.5px dashed var(--lp-border);
  border-radius: 8px;
  min-height: 58px;
}
.lp-pboard-foot {
  text-align: center;
  margin-top: 24px;
  font-size: 0.875rem;
  color: var(--lp-mute);
}

@media (max-width: 760px) {
  .lp-pboard {
    grid-template-columns: 1fr;
  }
  .lp-pslot {
    display: none;
  }
}

/* ── Plan morph faces ──────────────────────────────────────────── */
.lp-plan-card {
  position: relative;
  overflow: hidden;
}
.lp-plan-alt {
  position: absolute;
  inset: 0;
  padding: clamp(20px, 3vw, 28px);
  background: #fff;
  border-radius: 14px;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}
.lp-plan-alt-rows {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
}
.lp-plan-alt-rows span {
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--lp-mute);
  padding: 10px 2px;
}
.lp-plan-alt-rows span + span {
  border-top: 1px solid var(--lp-border-light);
}
.lp-plan-prompt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif);
  font-size: 0.9375rem;
  color: var(--lp-ink);
  background: #fff;
  border: 1px solid rgba(107, 143, 113, 0.45);
  border-radius: 999px;
  padding: 9px 18px;
  box-shadow: 0 10px 30px -10px rgba(28, 25, 23, 0.25);
  opacity: 0;
  pointer-events: none;
  z-index: 3;
  white-space: nowrap;
}
.lp-plan-prompt svg {
  color: var(--lp-sage);
  flex-shrink: 0;
}

/* ── Companion thinking chip ───────────────────────────────────── */
.lp-msg-thinking {
  align-self: flex-start;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: var(--lp-sage-on-dark);
  border: 1px solid var(--lp-dark-line);
  border-radius: 999px;
  padding: 6px 14px;
  opacity: 0;
  margin: -8px 0;
}

/* ── Founder body ──────────────────────────────────────────────── */
.lp-founder-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 36rem;
}
.lp-founder-body p {
  font-size: 0.9688rem;
  line-height: 1.75;
  color: var(--lp-mute);
}

/* ── Solo knowledge plate ──────────────────────────────────────── */
.lp-plate--solo {
  display: block;
  max-width: 56rem;
  margin: 0 auto;
}
.lp-plate--solo .lp-plate-img {
  width: 100%;
}
