/* ============ ad-lander chrome (templates/go/base.html) ============
   Landers load p2.css + hiw.css but NOT webflow.css (no webflow nav, no
   jQuery), so this file carries a minimal reset plus the slim sticky
   header, footer, and lander-only components. All classes are lp-*. */

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img, video {
  max-width: 100%;
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--p2-green);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============ slim sticky header ============ */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--p2-line);
}

.lp-header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lp-logo {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  line-height: 0;
}

.lp-logo img {
  height: 34px;
  width: auto;
  display: block;
}

.lp-header-ctas {
  display: flex;
  align-items: center;
  gap: 22px;
}

.lp-header-demo {
  font-size: 15px;
  font-weight: 600;
  color: var(--p2-green);
  text-decoration: none;
}

.lp-header-demo:hover {
  color: var(--p2-green-dark);
  text-decoration: underline;
}

.lp-header .p2-btn {
  padding: 11px 24px;
  font-size: 14.5px;
}

/* ============ hero ============ */
.lp-hero.p2-hero {
  padding-top: 48px;
}

.lp-price {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--p2-forest);
  margin: 4px 0 22px;
  line-height: 1.5;
}

.lp-price .lp-price-sep {
  color: var(--p2-green);
  font-weight: 400;
  margin: 0 6px;
}

.lp-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.lp-trust {
  font-size: 14px;
  color: #6b7265;
  margin-top: 16px;
}

/* ============ proof band (stats + quotes) ============ */
.lp-proof {
  background: linear-gradient(135deg, #35604f 0%, var(--p2-forest) 70%);
  border-radius: 24px;
  padding: 48px 44px;
}

.lp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 38px;
}

.lp-stat {
  text-align: center;
}

.lp-stat-num {
  font-family: 'PT Serif', Georgia, serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--p2-lime);
  line-height: 1;
  margin-bottom: 10px;
}

.lp-stat-label {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
  max-width: 220px;
  margin: 0 auto;
}

.lp-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.lp-quote {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  padding: 20px 22px;
  margin: 0;
}

.lp-quote p {
  font-family: 'PT Serif', Georgia, serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.55;
  color: #f3efe7;
  margin: 0 0 12px;
}

.lp-quote footer {
  font-size: 12.5px;
  color: #9db4a9;
}

.lp-proof-cta {
  text-align: center;
  margin-top: 36px;
}

/* ============ demo video player (click to play, no autoplay) ============ */
.lp-video {
  max-width: 880px;
  margin: 40px auto 0;
}

.lp-player {
  position: relative;
  line-height: 0;
}

.lp-player video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 34px rgba(15, 38, 30, 0.16);
}

.lp-play {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  /* Corner placement: the poster frame has centered headline text, and the
     native controls bar owns the bottom edge (same reasoning as
     .hiw-lhero-media .hiw-play-wrap on /how-anna-works). */
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 20px 56px 0;
}

/* Children are click-through so the button is always the click target -
   hiw-lightbox.js binds to every .hiw-shot img and must never see the
   play icon (same trick as .hiw-demo-play on /ats). */
.lp-play span,
.lp-play img {
  pointer-events: none;
}

.lp-play span {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(34, 60, 49, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lp-play:hover span {
  background: var(--p2-green);
  transform: scale(1.06);
}

.lp-play img {
  width: 30px;
  height: 30px;
  margin-left: 4px;
}

.lp-player.is-playing .lp-play {
  display: none;
}

/* ============ tour highlight cards ============ */
.lp-tour {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 44px;
}

.lp-tour-card {
  background: #fff;
  border: 1px solid var(--p2-line);
  border-radius: var(--p2-radius);
  box-shadow: var(--p2-shadow);
  padding: 24px;
}

.lp-tour-card .hiw-shot {
  padding: 16px;
  margin-bottom: 18px;
}

.lp-tour-card .hiw-step-num {
  margin-bottom: 8px;
}

.lp-tour-card h3 {
  font-family: 'PT Serif', Georgia, serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--p2-olive);
  margin: 0 0 8px;
}

.lp-tour-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--p2-ink);
  margin: 0;
}

/* CTA block after a section */
.lp-cta-block {
  text-align: center;
  margin-top: 44px;
}

.lp-cta-block .lp-cta-note {
  font-size: 14px;
  color: #6b7265;
  margin-top: 14px;
}

.lp-cta-note a {
  color: var(--p2-green);
  font-weight: 600;
  text-decoration: none;
}

.lp-cta-note a:hover {
  text-decoration: underline;
}

/* ============ pricing card ============ */
.lp-plan {
  max-width: 520px;
  margin: 36px auto 0;
  background: #fff;
  border: 1px solid var(--p2-line);
  border-top: 4px solid var(--p2-lime);
  border-radius: var(--p2-radius);
  box-shadow: 0 18px 48px rgba(15, 38, 30, 0.14);
  padding: 36px 36px 32px;
  text-align: center;
}

.lp-plan-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--p2-green);
  margin-bottom: 14px;
}

.lp-plan-price {
  font-family: 'PT Serif', Georgia, serif;
  font-size: 54px;
  font-weight: 700;
  color: var(--p2-forest);
  line-height: 1;
}

.lp-plan-price span {
  font-family: 'Albert Sans', Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--p2-olive);
}

.lp-plan ul {
  list-style: none;
  margin: 24px 0 26px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.lp-plan li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--p2-ink);
}

.lp-plan .p2-tick {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(61, 130, 112, 0.14);
  color: var(--p2-green);
  font-size: 10.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-plan .p2-btn {
  width: 100%;
  text-align: center;
}

.lp-plan-fineprint {
  font-size: 12.5px;
  line-height: 1.5;
  color: #6b7265;
  margin-top: 14px;
}

/* WCAG AA contrast override for the shared checklist headings
   (p2.css uses --p2-green, which is 4.16:1 on the mist background). */
.p2-include-col h3 {
  color: var(--p2-green-dark);
}

/* ============ footer ============ */
.lp-footer {
  border-top: 1px solid var(--p2-line);
  margin-top: 24px;
  padding: 26px 24px 34px;
  text-align: center;
  font-size: 13px;
  color: #6b7265;
}

.lp-footer a {
  color: #6b7265;
  text-decoration: underline;
}

/* ============ responsive ============ */
@media (max-width: 991px) {
  .lp-tour {
    grid-template-columns: 1fr;
  }

  .lp-quotes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .lp-header-inner {
    padding: 10px 16px;
  }

  .lp-logo img {
    height: 24px;
  }

  .lp-header-ctas {
    gap: 12px;
  }

  .lp-header-demo {
    font-size: 13.5px;
  }

  .lp-header .p2-btn {
    padding: 10px 16px;
    font-size: 13.5px;
    white-space: nowrap;
  }

  .lp-hero.p2-hero {
    padding-top: 28px;
  }

  .lp-proof {
    padding: 36px 22px;
    border-radius: 18px;
  }

  .lp-stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .lp-stat-num {
    font-size: 38px;
  }

  .lp-plan {
    padding: 28px 20px 24px;
  }

  .lp-play span {
    width: 64px;
    height: 64px;
  }

  .lp-play img {
    width: 22px;
    height: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-header {
    backdrop-filter: none;
  }

  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
