/* Mission Broadcast — landing page (missionbroadcast.com homepage).
 *
 * This stylesheet ONLY styles the `.lp-page` div in index.html.
 * The missionary-mode (`#mode-missionary`) and other pages continue to
 * use `main.css` unchanged.
 *
 * Design system: warm off-white background, settled-blue accent, Georgia
 * serif for headlines, system-ui sans for body and CTAs. No web fonts —
 * we want fast loads + perfect a11y for older readers on slow networks.
 */

.lp-page {
  --lp-bg:           #fafaf7;
  --lp-surface:      #ffffff;
  --lp-surface-warm: #f4efe7;
  --lp-text:         #1a1a1a;
  --lp-text-soft:    #545454;
  --lp-text-muted:   #888888;
  --lp-border:       #e6e2d8;
  --lp-accent:       #1e3a5f;
  --lp-accent-deep:  #14283f;
  --lp-accent-soft:  #e8eef5;
  --lp-accent-2:     #7a9b76;
  --lp-accent-2-deep:#5d7d59;
  --lp-accent-2-soft:#e3eadc;
  --lp-accent-3:     #e5625e;
  --lp-accent-3-deep:#b94843;
  --lp-accent-3-soft:#f7d6d3;
  --lp-stone:        #b1a89f;
  --lp-taupe:        #8a7e72;
  --lp-sage-pale:    #a6bda4;
  --lp-section-sage: #eef3ea;
  --lp-section-coral:#fdebe8;
  --lp-radius:       12px;
  --lp-radius-lg:    24px;
  --lp-shadow-sm:    0 1px 3px rgba(20,40,63,0.06);
  --lp-shadow-md:    0 6px 24px rgba(20,40,63,0.08);
  --lp-max:          1100px;
  --lp-gutter:       clamp(20px, 4vw, 40px);

  background: var(--lp-bg);
  color: var(--lp-text);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

/* All inline `style="display:none"` on the wrapper from index.html still
   wins on initial paint — main.js flips it to block when the landing
   mode is active. Once visible, this rule takes over. */
.lp-page > * { box-sizing: border-box; }

.lp-page h1,
.lp-page h2,
.lp-page h3,
.lp-page h4 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  color: var(--lp-text);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0;
}

.lp-page a { color: var(--lp-accent); text-decoration: none; }
.lp-page a:hover { text-decoration: underline; }

.lp-page code {
  background: var(--lp-surface-warm);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.92em;
}

/* ─────────────────────────────────────────────────────────────────────
   Top nav
───────────────────────────────────────────────────────────────────── */

.lp-page .lp-nav {
  background: var(--lp-bg);
  border-bottom: 1px solid var(--lp-border);
  position: sticky;
  top: 0;
  z-index: 10;
}
.lp-page .lp-nav-inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 18px var(--lp-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.lp-page .lp-logo {
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--lp-text);
  letter-spacing: -0.01em;
}
.lp-page .lp-logo:hover { text-decoration: none; }
.lp-page .lp-nav nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
}
.lp-page .lp-nav nav a { color: var(--lp-text-soft); }
.lp-page .lp-nav nav a:hover { color: var(--lp-text); text-decoration: none; }
.lp-page .lp-nav-cta {
  background: var(--lp-accent);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 8px;
  font-weight: 600;
}
.lp-page .lp-nav-cta:hover {
  background: var(--lp-accent-deep);
  text-decoration: none !important;
}
@media (max-width: 600px) {
  .lp-page .lp-nav nav { gap: 14px; font-size: 14px; }
}

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

.lp-page .lp-hero {
  padding: clamp(48px, 9vw, 96px) var(--lp-gutter) clamp(64px, 10vw, 112px);
  background: var(--lp-bg);
}
.lp-page .lp-hero-inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
@media (max-width: 880px) {
  .lp-page .lp-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .lp-page .lp-hero-map { order: -1; }
}
.lp-page .lp-eyebrow {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-accent);
  margin-bottom: 18px;
}
.lp-page .lp-hero h1 {
  font-size: clamp(38px, 6vw, 60px);
  font-weight: 700;
  margin-bottom: 20px;
}
.lp-page .lp-subhead {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--lp-text-soft);
  max-width: 32em;
  margin: 0 0 32px;
  line-height: 1.55;
}
.lp-page .lp-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.lp-page .lp-btn-primary,
.lp-page .lp-btn-secondary {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  transition: transform 120ms ease, background 120ms ease;
}
.lp-page .lp-btn-primary {
  background: var(--lp-accent);
  color: #fff !important;
}
.lp-page .lp-btn-primary:hover {
  background: var(--lp-accent-deep);
  text-decoration: none !important;
  transform: translateY(-1px);
}
.lp-page .lp-btn-secondary {
  background: transparent;
  color: var(--lp-accent) !important;
  border: 1.5px solid var(--lp-accent);
}
.lp-page .lp-btn-secondary:hover {
  background: var(--lp-accent-soft);
  text-decoration: none !important;
}

/* SVG map hero — single-color stylized, with numbered pins
   and a dotted route connecting them. Lives inside an aspect-locked
   surface so it doesn't squash on small screens. */
.lp-page .lp-hero-map {
  background: var(--lp-surface-warm);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  padding: clamp(18px, 3vw, 32px);
  position: relative;
  box-shadow: var(--lp-shadow-md);
}
.lp-page .lp-hero-map svg {
  display: block;
  width: 100%;
  height: auto;
}
.lp-page .lp-hero-map-caption {
  font-size: 13px;
  color: var(--lp-text-muted);
  text-align: center;
  margin: 12px 0 0;
  font-style: italic;
}

/* ─────────────────────────────────────────────────────────────────────
   Section primitives
───────────────────────────────────────────────────────────────────── */

.lp-page .lp-section {
  padding: clamp(64px, 10vw, 112px) var(--lp-gutter);
}
.lp-page .lp-section-warm  { background: var(--lp-surface-warm); }
.lp-page .lp-section-sage  { background: var(--lp-section-sage); }
.lp-page .lp-section-coral { background: var(--lp-section-coral); }
.lp-page .lp-section-inner { max-width: var(--lp-max); margin: 0 auto; }
.lp-page .lp-section-eyebrow {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-accent);
  margin: 0 0 12px;
  text-align: center;
}
.lp-page .lp-section-eyebrow-warm {
  color: var(--lp-accent-2);
}
.lp-page .lp-section-eyebrow-coral {
  color: var(--lp-accent-3);
}
.lp-page .lp-section h2 {
  font-size: clamp(30px, 4.5vw, 44px);
  text-align: center;
  max-width: 18em;
  margin: 0 auto 18px;
}
.lp-page .lp-section-lede {
  font-size: 18px;
  color: var(--lp-text-soft);
  max-width: 36em;
  margin: 0 auto 56px;
  text-align: center;
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────────────
   How it works (3-step)
───────────────────────────────────────────────────────────────────── */

.lp-page .lp-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 36px);
}
@media (max-width: 800px) {
  .lp-page .lp-steps { grid-template-columns: 1fr; }
}
.lp-page .lp-step {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-top: 5px solid var(--lp-accent);
  border-radius: var(--lp-radius-lg);
  padding: 32px 28px;
  box-shadow: var(--lp-shadow-sm);
}
.lp-page .lp-step:nth-child(2) { border-top-color: var(--lp-accent-2); }
.lp-page .lp-step:nth-child(3) { border-top-color: var(--lp-accent-3); }
.lp-page .lp-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--lp-accent-soft);
  color: var(--lp-accent);
  border-radius: 50%;
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  border: 1.5px solid transparent;
}
.lp-page .lp-step:nth-child(2) .lp-step-num {
  background: var(--lp-accent-2-soft);
  color: var(--lp-accent-2);
}
.lp-page .lp-step:nth-child(3) .lp-step-num {
  background: var(--lp-accent-3-soft);
  color: var(--lp-accent-3);
}
.lp-page .lp-feature:nth-child(2) .lp-icon { color: var(--lp-accent-2); }
.lp-page .lp-feature:nth-child(3) .lp-icon { color: var(--lp-accent-3); }
.lp-page .lp-feature:nth-child(5) .lp-icon { color: var(--lp-accent-2); }
.lp-page .lp-feature:nth-child(6) .lp-icon { color: var(--lp-accent-3); }
.lp-page .lp-step h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.lp-page .lp-step p {
  color: var(--lp-text-soft);
  margin: 0;
}

/* ─────────────────────────────────────────────────────────────────────
   Features grid
───────────────────────────────────────────────────────────────────── */

.lp-page .lp-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 32px);
}
.lp-page .lp-feature {
  padding: 28px 24px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-top: 4px solid var(--lp-accent);
  border-radius: var(--lp-radius);
}
.lp-page .lp-feature:nth-child(2),
.lp-page .lp-feature:nth-child(5) { border-top-color: var(--lp-accent-2); }
.lp-page .lp-feature:nth-child(3),
.lp-page .lp-feature:nth-child(6) { border-top-color: var(--lp-accent-3); }
.lp-page .lp-feature h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.lp-page .lp-feature p {
  color: var(--lp-text-soft);
  margin: 0;
  font-size: 16px;
}
.lp-page .lp-feature-icon {
  display: inline-block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  color: var(--lp-accent);
  margin-bottom: 10px;
}

/* ─────────────────────────────────────────────────────────────────────
   Pricing teaser
───────────────────────────────────────────────────────────────────── */

.lp-page .lp-pricing-teaser {
  text-align: center;
}
.lp-page .lp-pricing-teaser .lp-section-lede {
  margin-bottom: 32px;
}
.lp-page .lp-pricing-teaser .lp-btn-primary {
  font-size: 17px;
  padding: 16px 32px;
}
.lp-page .lp-guarantee {
  font-size: 14px;
  color: var(--lp-text-muted);
  margin: 18px 0 0;
}

/* ─────────────────────────────────────────────────────────────────────
   Already-following section (supporter wayfinding)
───────────────────────────────────────────────────────────────────── */

.lp-page .lp-already-following {
  text-align: center;
}
.lp-page .lp-already-following p {
  font-size: 17px;
  color: var(--lp-text-soft);
  max-width: 36em;
  margin: 0 auto;
}

/* ─────────────────────────────────────────────────────────────────────
   Footer
───────────────────────────────────────────────────────────────────── */

.lp-page .lp-footer {
  background: var(--lp-accent-deep);
  color: #d8dde3;
  padding: 64px var(--lp-gutter) 32px;
}
.lp-page .lp-footer a { color: #c5cdd6; }
.lp-page .lp-footer a:hover { color: #fff; }
.lp-page .lp-footer-inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 40px;
}
@media (max-width: 800px) {
  .lp-page .lp-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .lp-page .lp-footer-inner { grid-template-columns: 1fr; }
}
.lp-page .lp-footer-brand p {
  font-size: 14px;
  color: #98a1ac;
  margin: 10px 0 0;
  max-width: 24em;
  line-height: 1.5;
}
.lp-page .lp-footer-logo {
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.lp-page .lp-footer h4 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #98a1ac;
  margin: 0 0 14px;
}
.lp-page .lp-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lp-page .lp-footer ul li {
  margin: 0 0 10px;
  font-size: 15px;
}
.lp-page .lp-footer-bottom {
  max-width: var(--lp-max);
  margin: 48px auto 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: #7a838f;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}
.lp-page .lp-footer-legal-note {
  font-size: 12px;
  color: #6f7884;
  margin: 6px 0 0;
}

/* ─────────────────────────────────────────────────────────────────────
   Reduced-motion + a11y
───────────────────────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  .lp-page .lp-btn-primary,
  .lp-page .lp-btn-secondary,
  .lp-page .ext-link { transition: none; }
}

.lp-page :focus-visible {
  outline: 2px solid var(--lp-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─────────────────────────────────────────────────────────────────────
   Legal pages (Terms / Privacy / California Privacy)
───────────────────────────────────────────────────────────────────── */

.lp-page.lp-legal { background: var(--lp-bg); }

.lp-page .lp-legal-hero {
  padding: clamp(48px, 8vw, 80px) var(--lp-gutter) clamp(24px, 4vw, 40px);
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.lp-page .lp-legal-hero h1 {
  font-size: clamp(36px, 5vw, 52px);
  margin-bottom: 12px;
}
.lp-page .lp-legal-hero .lp-legal-meta {
  font-size: 14px;
  color: var(--lp-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 6px 0 0;
}

.lp-page .lp-draft-banner {
  max-width: 820px;
  margin: 0 auto 48px;
  padding: 18px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--lp-accent-3-soft);
  border: 1.5px solid var(--lp-accent-3);
  border-radius: var(--lp-radius);
}
.lp-page .lp-draft-banner .lp-icon {
  color: var(--lp-accent-3);
  font-size: 28px;
  vertical-align: 0;
  margin: 0;
  display: block;
}
.lp-page .lp-draft-banner h3,
.lp-page .lp-draft-banner .lp-draft-banner-title {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--lp-accent-3-deep);
  margin: 0 0 4px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.lp-page .lp-draft-banner p {
  margin: 0;
  font-size: 14px;
  color: var(--lp-text-soft);
  line-height: 1.55;
}

.lp-page .lp-legal-toc {
  max-width: 820px;
  margin: 0 auto 56px;
  padding: 24px 28px;
  background: var(--lp-section-sage);
  border-left: 4px solid var(--lp-accent-2);
  border-radius: var(--lp-radius);
}
.lp-page .lp-legal-toc h2 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-accent-2-deep);
  margin: 0 0 12px;
  text-align: left;
  max-width: none;
}
.lp-page .lp-legal-toc ol {
  margin: 0;
  padding-left: 22px;
  columns: 2;
  column-gap: 32px;
}
.lp-page .lp-legal-toc li {
  margin: 4px 0;
  break-inside: avoid;
  font-size: 15px;
}
@media (max-width: 600px) {
  .lp-page .lp-legal-toc ol { columns: 1; }
}

.lp-page .lp-legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--lp-gutter) clamp(64px, 8vw, 96px);
  font-size: 17px;
  line-height: 1.7;
  color: var(--lp-text);
}
.lp-page .lp-legal-content section { scroll-margin-top: 80px; }
.lp-page .lp-legal-content h2 {
  font-size: clamp(24px, 3vw, 30px);
  margin: 52px 0 14px;
  text-align: left;
  max-width: none;
}
.lp-page .lp-legal-content h2:first-child { margin-top: 0; }
.lp-page .lp-legal-content h3 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--lp-text);
  margin: 28px 0 8px;
}
.lp-page .lp-legal-content p { margin: 0 0 16px; }
.lp-page .lp-legal-content ul,
.lp-page .lp-legal-content ol { margin: 0 0 16px; padding-left: 24px; }
.lp-page .lp-legal-content li { margin: 0 0 8px; }
.lp-page .lp-legal-content strong { color: var(--lp-text); }
.lp-page .lp-legal-content .lp-defterm {
  font-weight: 600;
  color: var(--lp-accent);
}
.lp-page .lp-legal-content code {
  background: var(--lp-section-sage);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.92em;
}

/* Material Symbols Rounded (300 weight, 24px) — used inline as
   .lp-icon next to feature headings and steps. */
.lp-page .lp-icon {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 28px;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  color: var(--lp-accent);
  vertical-align: -6px;
  margin-right: 4px;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}
.lp-page .lp-feature .lp-icon {
  display: block;
  font-size: 36px;
  margin: 0 0 14px;
  vertical-align: baseline;
}
