/* =========================
   LANDING PAGE — /welcome/
   Conversion-focused. No nav.
   ========================= */

/* Tighter header — logo only */
.landing-header .header-inner {
  justify-content: flex-start;
}

/* Hero */
.landing-hero {
  padding: clamp(48px, 6vw, 96px) 0;
}

.landing-hero-inner {
  max-width: 680px;
}

.landing-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--sand-subtle);
  border: 1px solid var(--sand-border);
  font-weight: 700;
  font-size: .9rem;
  color: var(--text);
  margin-bottom: 20px;
}

.landing-hero-inner h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 14px;
}

.landing-scarcity {
  margin: 18px 0 24px;
  padding: 16px 18px;
  border-radius: 12px;
  background: var(--sand-subtle);
  border: 1px solid var(--sand-border);
  font-weight: 600;
  line-height: 1.55;
}

/* Trust pills */
.landing-trust {
  margin-top: 22px;
}

/* Recommendations */
.landing-recos-band {
  padding: clamp(44px, 5vw, 72px) 0;
}

.landing-recos-heading {
  margin: 0 0 24px;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}

/* Meet Jeff */
.landing-jeff-band {
  padding: clamp(40px, 5vw, 64px) 0;
  border-bottom: 1px solid var(--border);
}

.landing-jeff-inner {
  display: flex;
  gap: 36px;
  align-items: center;
}

.landing-jeff-photo {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  box-shadow: var(--shadow-sm);
  border: 3px solid var(--sand-border);
}

.landing-jeff-copy {
  flex: 1;
}

.landing-jeff-intro {
  font-weight: 600;
  font-size: 1.05rem;
  margin: 0 0 8px;
  line-height: 1.55;
}

@media (max-width: 540px) {
  .landing-jeff-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

/* Recommendations use the shared .reco-grid from components.css */

/* Final CTA */
.landing-cta-band {
  padding: clamp(48px, 6vw, 80px) 0;
}

.landing-cta-inner {
  max-width: 560px;
}

.landing-cta-inner h2 {
  margin-bottom: 10px;
}

.landing-cta-inner .cta {
  margin-top: 20px;
}

/* Minimal footer */
.landing-footer .footer-bottom {
  font-size: .9rem;
}

.landing-footer-contact a {
  color: var(--muted);
  font-weight: 600;
}

.landing-footer-contact a:hover {
  color: var(--text);
}

/* Mobile: centre hero content */
@media (max-width: 640px) {
  .landing-hero-inner {
    text-align: center;
  }

  .landing-hero-inner .cta {
    justify-content: center;
  }

  .landing-hero-inner .trust {
    justify-content: center;
  }

  .landing-cta-inner {
    text-align: center;
  }

  .landing-cta-inner .cta {
    justify-content: center;
  }
}
