/* App landing page - extends home.css
   Soft evolution of current system (Teachers/Inter, white/green, cream sparingly). */

body.page-landing {
  --landing-wash: color-mix(in srgb, var(--cream) 32%, var(--white));
  background: var(--white);
}

/* WP core adds 24px margin between site-blocks children - kill the seam under header. */
body.page-landing .wp-site-blocks > .landing-page,
body.page-landing .wp-site-blocks > main {
  margin-block-start: 0;
}

.landing-page {
  overflow-x: clip;
  margin: 0;
  padding: 0;
}

/* Kill WP block-flow gaps so colored sections meet (no white strip between). */
.landing-page.wp-block-group,
.landing-page .wp-block-post-content.is-layout-flow,
.landing-page .wp-block-post-content.is-layout-constrained {
  gap: 0;
}

.landing-page .wp-block-post-content > *,
.landing-page section {
  margin-block: 0;
}

.landing-page .stats-band .stats-grid {
  margin-bottom: 0;
}

.landing-page .stats-band + .landing-pricing {
  margin-top: 0;
}

.landing-page > .hero,
.landing-page .landing-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 2.75rem);
  background: var(--white);
}

/* Soft tonal wash: white at the top, easing into warm pink toward the bottom
   (blurred shape - no linear-gradient, per brand guidelines). Same as home. */
.landing-page .landing-hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 38% -12% -35% -12%;
  background: var(--landing-wash);
  border-radius: 50% 50% 0 0 / 65% 65% 0 0;
  filter: blur(70px);
  pointer-events: none;
}

.landing-page .hero-deco {
  position: absolute;
  top: -10%;
  right: -22%;
  width: min(80vw, 460px);
  max-width: none;
  height: auto;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
  display: block;
  margin: 0;
}

.landing-page .hero-deco img {
  width: 100%;
  height: auto;
  display: block;
}

.landing-page .hero-grid {
  position: relative;
  z-index: 1;
}

.landing-page .hero-content {
  position: relative;
  z-index: 2;
}

.landing-page .landing-hero h1 {
  font-weight: 700;
  line-height: 1.15;
  color: var(--green-darker);
}

.landing-page .landing-hero .eyebrow {
  letter-spacing: 0.06em;
}

.landing-page .hero-visual {
  position: relative;
  z-index: 2;
  align-self: center;
  box-shadow: none;
  background: transparent;
}

.landing-page .hero-visual--illustration {
  aspect-ratio: auto;
  overflow: visible;
  position: relative;
  width: 100%;
  max-width: 30rem;
  margin-inline: auto;
  box-shadow: none;
  background: transparent;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.landing-page .hero-visual--illustration img {
  position: static;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(24rem, 55vh);
  object-fit: contain;
  transform: none;
}

.landing-page .breadcrumb {
  margin-bottom: 0.75rem;
}

.landing-page .hero-cta-label {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
}

/* Trust bar reads as a continuation of the hero, not a separate banner */
.landing-page .trust-bar {
  position: relative;
  margin: 0;
  border-block: 0;
  background: var(--landing-wash);
  padding: 0 0 clamp(2.5rem, 6vw, 3.5rem);
}

.landing-page .trust-grid {
  padding-top: clamp(1.5rem, 4vw, 2.25rem);
  border-top: 1px solid color-mix(in srgb, var(--green) 18%, transparent);
}

.landing-page .trust-item strong {
  font-weight: 700;
}

/* --- Premium benefits: muted section with two white cards --- */
.landing-benefits {
  padding: clamp(3.5rem, 6vw, 5rem) 0;
  background: var(--green-muted);
}

.landing-benefits .section-header {
  margin-bottom: 2rem;
}

.landing-benefits-grid {
  display: grid;
  gap: 1.25rem;
  width: min(100%, 48rem);
  margin-inline: auto;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.landing-benefits-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2rem);
  min-width: 0;
}

.landing-benefits-panel h3 {
  margin: 0 0 1rem;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-darker);
}

.landing-benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.landing-benefits-list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.landing-benefits-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--green);
  font-weight: 400;
  color: transparent;
}

/* --- Stats: white section with soft cards --- */
.landing-page .stats-band {
  background: var(--white);
  color: var(--text);
  padding: clamp(3.5rem, 7vw, 5rem) 0;
}

.landing-page .stats-band .section-header h2,
.landing-page .stats-band .section-header h3 {
  color: var(--green-darker);
}

.landing-page .stats-band .section-header .lead {
  color: var(--text-muted);
}

.landing-page .stats-band .eyebrow--on-dark {
  color: var(--green);
}

.landing-page .stats-band .stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: none;
}

.landing-page .stats-band .stat-card strong {
  color: var(--green-dark);
}

.landing-page .stats-band .stat-card span {
  color: var(--text-muted);
  opacity: 1;
}

.landing-page .stats-band .btn-on-dark {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.landing-page .stats-band .btn-on-dark:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}

.landing-page .stats-band .stats-cta-note {
  color: var(--text-muted);
  opacity: 1;
}

/* --- Pricing: cream stays; soften featured shout --- */
.landing-pricing {
  padding: clamp(3.5rem, 6vw, 5rem) 0;
  background: var(--cream);
}

.landing-page .price-card {
  border-color: transparent;
  box-shadow: none;
}

.landing-page .price-card.featured {
  border-color: transparent;
  box-shadow: var(--shadow);
}

.landing-page .price-card .badge {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: var(--green-muted);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.landing-page .price-card li::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--green-light);
  top: 0.7em;
  color: transparent;
}

/* --- Steps: white band, airier muted numbers --- */
.landing-page section.steps,
.landing-page section:has(> .container > .steps-grid) {
  background: var(--white);
  padding: clamp(3.5rem, 6vw, 5rem) 0;
}

.landing-page .step-card {
  background: transparent;
  border: none;
  padding: 0.35rem 0.15rem;
}

.landing-page .step-num {
  background: var(--green-muted);
  color: var(--green-dark);
}

.landing-page .landing-steps-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.landing-faq {
  background: var(--white);
  padding-block: var(--section-pad, 4rem);
}

.landing-related {
  border-top: 0;
  background: var(--green-muted);
}

.landing-related-header .article-related-lead {
  max-width: 65ch;
}

.landing-related-grid {
  grid-template-columns: 1fr;
}

.landing-related-card {
  min-height: 100%;
}

.landing-page .cta-band {
  margin-top: 0;
}

@media (min-width: 768px) {
  .landing-benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    width: min(100%, 48rem);
    align-items: stretch;
  }

  .landing-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .landing-page .hero-deco {
    right: -18%;
    top: -5%;
  }
}

@media (min-width: 900px) {
  .landing-page .hero-grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 4rem;
  }
}

@media (max-width: 899px) {
  .landing-page .hero-deco {
    display: none;
  }
}
