:root {
  --lp-night: #0e1c2f;
  --lp-night-2: #132742;
  --lp-beige: #dccfb8;
  --lp-green: #88b8a2;
  --lp-green-deep: #5f8e7b;
  --lp-offwhite: #f3f0e8;
  --lp-paper: #fbf8f2;
  --lp-ink: #142132;
  --lp-muted: #647182;
  --lp-border: rgba(20, 33, 50, 0.12);
  --lp-shadow: 0 18px 50px rgba(10, 22, 36, 0.16);
  --lp-radius: 20px;
  --lp-max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--lp-ink);
  background: radial-gradient(1200px 700px at 10% -20%, #23395d, transparent 65%),
              linear-gradient(180deg, #f6f2e9 0%, #f8f5ef 60%, #ffffff 100%);
  font-family: "Avenir Next", "Satoshi", "IBM Plex Sans", "Nunito Sans", sans-serif;
  line-height: 1.5;
}

h1, h2, h3 {
  margin: 0;
  font-family: "Canela", "Noe Display", "Avenir Next", serif;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

p {
  margin: 0;
}

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

.container {
  width: min(var(--lp-max), 100% - 2rem);
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--lp-green-deep);
  margin-bottom: 0.9rem;
}

.section h2 {
  font-size: clamp(1.9rem, 6vw, 3rem);
  max-width: 16ch;
  margin-bottom: 1rem;
  color: #0d1f33;
}

.section-lead {
  max-width: 62ch;
  color: var(--lp-muted);
  font-size: 1.02rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.72rem 1.15rem;
  transition: transform 160ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(120deg, var(--lp-green) 0%, #9ed0b8 100%);
  color: #0c2132;
  box-shadow: 0 10px 20px rgba(95, 142, 123, 0.32);
}

.btn--primary:hover {
  box-shadow: 0 16px 24px rgba(95, 142, 123, 0.38);
}

.btn--outline {
  border-color: rgba(243, 240, 232, 0.45);
  color: var(--lp-offwhite);
  background: rgba(255, 255, 255, 0.06);
}

.btn--ghost {
  border-color: var(--lp-border);
  color: #173149;
  background: rgba(255, 255, 255, 0.76);
}

.btn--xl {
  width: 100%;
  min-height: 3.2rem;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
}

.landing {
  overflow: clip;
}

.landing-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
  background: rgba(248, 244, 236, 0.82);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(20, 33, 50, 0.1);
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.landing-brand img {
  width: 1.7rem;
  height: 1.7rem;
}

.landing-nav__actions {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
}

.landing-lang {
  display: inline-flex;
  border: 1px solid var(--lp-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  padding: 0.16rem;
}

.landing-lang__btn {
  min-width: 2.1rem;
  height: 1.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  font-weight: 800;
  color: #1a324a;
}

.landing-lang__btn.is-active {
  background: #143454;
  color: #f3f0e8;
}

.hero {
  position: relative;
  isolation: isolate;
  padding: 2rem 0 3.6rem;
  background: linear-gradient(160deg, var(--lp-night) 0%, var(--lp-night-2) 55%, #163251 100%);
  color: var(--lp-offwhite);
}

.hero__bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.6;
  pointer-events: none;
}

.hero__bg-orb--one {
  width: 16rem;
  height: 16rem;
  background: rgba(136, 184, 162, 0.42);
  top: -5rem;
  left: -4rem;
}

.hero__bg-orb--two {
  width: 18rem;
  height: 18rem;
  background: rgba(220, 207, 184, 0.28);
  right: -5rem;
  bottom: -6rem;
}

.hero__grid {
  display: grid;
  gap: 1.6rem;
}

.hero__content h1 {
  font-size: clamp(2rem, 10vw, 4.2rem);
  margin-bottom: 0.9rem;
}

.hero__lead {
  font-size: 1rem;
  color: rgba(243, 240, 232, 0.82);
  max-width: 42ch;
}

.hero__cta {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.65rem;
}

.hero__meta {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero__meta span {
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(243, 240, 232, 0.11);
  border: 1px solid rgba(243, 240, 232, 0.2);
  border-radius: 999px;
  padding: 0.4rem 0.62rem;
}

.phone-card {
  width: min(100%, 360px);
  margin-inline: auto;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(220, 207, 184, 0.36);
  background: linear-gradient(180deg, rgba(16, 36, 56, 0.94) 0%, rgba(12, 28, 46, 0.96) 100%);
  box-shadow: 0 24px 50px rgba(5, 10, 18, 0.45);
}

.phone-card__top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1rem;
  font-weight: 600;
  font-size: 0.8rem;
  color: rgba(243, 240, 232, 0.76);
  border-bottom: 1px solid rgba(243, 240, 232, 0.1);
}

.dot {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: #9ad4b7;
  box-shadow: 0 0 0 6px rgba(154, 212, 183, 0.15);
}

.phone-card__body {
  padding: 1.2rem 1rem 1.1rem;
}

.phone-card__body h3 {
  font-family: "Avenir Next", "Satoshi", sans-serif;
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.phone-card__body p {
  color: rgba(243, 240, 232, 0.72);
  font-size: 0.92rem;
}

.pulse-wrap {
  margin: 1.15rem auto;
  width: 11.5rem;
  aspect-ratio: 1;
  border-radius: 999px;
  position: relative;
  display: grid;
  place-items: center;
}

.pulse-ring {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(136, 184, 162, 0.55);
  border-radius: 999px;
  animation: pulseRing 3s ease-in-out infinite;
}

.pulse-core {
  width: 6rem;
  height: 6rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #8ec1aa 0%, #6d9c87 100%);
  color: #10253a;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(104, 157, 133, 0.45);
}

.phone-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.phone-stats div {
  background: rgba(243, 240, 232, 0.08);
  border: 1px solid rgba(243, 240, 232, 0.14);
  border-radius: 14px;
  padding: 0.65rem;
}

.phone-stats strong {
  display: block;
  font-size: 1rem;
}

.phone-stats span {
  display: block;
  font-size: 0.73rem;
  color: rgba(243, 240, 232, 0.74);
}

.problem-grid,
.steps,
.feature-grid,
.stats-grid,
.testimonial-grid,
.pricing-grid {
  display: grid;
  gap: 0.85rem;
}

.panel,
.step-card,
.feature-card,
.stat-card,
.quote,
.price-card,
.final-cta__box,
.faq-list details {
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-border);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--lp-shadow);
}

.panel,
.step-card,
.feature-card,
.stat-card,
.quote,
.price-card,
.final-cta__box {
  padding: 1rem;
}

.panel h3,
.step-card h3,
.feature-card h3,
.price-card h3 {
  font-family: "Avenir Next", "Satoshi", sans-serif;
  font-size: 1.06rem;
  margin-bottom: 0.35rem;
}

.panel p,
.step-card p,
.feature-card p,
.quote,
.price-card li,
.stat-card span {
  color: #5d6a7a;
  font-size: 0.94rem;
}

.step-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  margin-bottom: 0.62rem;
  font-weight: 800;
  font-size: 0.93rem;
  background: linear-gradient(135deg, #133353 0%, #1f466e 100%);
  color: #f3f0e8;
}

.feature-card__head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.6rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5b7890;
  font-weight: 700;
}

.mini-ui {
  margin-top: 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(17, 41, 64, 0.14);
  background: rgba(19, 50, 79, 0.06);
  padding: 0.7rem;
}

.mini-ui--calm button {
  width: 100%;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #7fb39c, #679780);
  color: #10233a;
  font-weight: 800;
  padding: 0.65rem;
}

.mini-ui--calm .bar {
  margin-top: 0.65rem;
  width: 100%;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(19, 50, 79, 0.14);
  overflow: hidden;
}

.mini-ui--calm .bar span {
  display: block;
  height: 100%;
  width: 45%;
  background: linear-gradient(90deg, #8fc8af, #cde6d9);
  animation: slideBar 3s ease-in-out infinite;
}

.mini-ui--checkin {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.chip {
  padding: 0.35rem 0.5rem;
  border-radius: 999px;
  font-size: 0.74rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(17, 41, 64, 0.12);
}

.mini-ui--decision .choice {
  border-radius: 10px;
  border: 1px solid rgba(17, 41, 64, 0.14);
  padding: 0.45rem 0.5rem;
  font-size: 0.78rem;
  margin-bottom: 0.42rem;
  background: rgba(255, 255, 255, 0.72);
}

.mini-ui--decision .choice.active {
  border-color: rgba(95, 142, 123, 0.45);
  background: rgba(136, 184, 162, 0.2);
}

.in-the-moment__wrap {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.moment-flow {
  display: grid;
  gap: 0.5rem;
}

.flow-step {
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  text-align: left;
  padding: 0.85rem 0.9rem;
  font-weight: 700;
  color: #143251;
  background: rgba(255, 255, 255, 0.86);
}

.flow-step.is-active {
  background: linear-gradient(120deg, #89baa4, #b4d7c6);
  border-color: rgba(95, 142, 123, 0.45);
  color: #0f2438;
  box-shadow: 0 12px 24px rgba(95, 142, 123, 0.32);
}

.stat-card strong {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 0.25rem;
  color: #0f2438;
}

.quote {
  font-size: 0.98rem;
}

.quote cite {
  margin-top: 0.8rem;
  display: block;
  font-style: normal;
  color: #49627a;
  font-size: 0.82rem;
  font-weight: 700;
}

.pricing {
  background: linear-gradient(180deg, rgba(220, 207, 184, 0.22), rgba(255, 255, 255, 0));
}

.price-card {
  position: relative;
}

.price-card .price {
  font-size: 2rem;
  font-weight: 900;
  color: #0d2238;
  margin: 0.6rem 0 0.9rem;
}

.price-card .price span {
  font-size: 0.9rem;
  color: #5b6b7b;
  font-weight: 600;
}

.price-card ul {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.price-card li::before {
  content: "?";
  margin-right: 0.45rem;
  color: #5f8e7b;
  font-weight: 900;
}

.price-card--premium {
  border: 1px solid rgba(95, 142, 123, 0.42);
  background: linear-gradient(180deg, rgba(136, 184, 162, 0.14), rgba(255, 255, 255, 0.88));
}

.badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  border-radius: 999px;
  background: #103251;
  color: #f3f0e8;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  padding: 0.35rem 0.5rem;
}

.faq-list {
  display: grid;
  gap: 0.6rem;
}

.faq-list details {
  padding: 0.2rem 0.9rem;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  padding: 0.8rem 0;
  color: #102a43;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  padding-bottom: 0.85rem;
  color: #5e6e7d;
  font-size: 0.9rem;
}

.final-cta {
  padding-bottom: 5rem;
}

.final-cta__box {
  background: linear-gradient(130deg, #122c47 0%, #193a59 100%);
  color: #f3f0e8;
  border-color: rgba(243, 240, 232, 0.22);
}

.final-cta__box h2 {
  color: #f3f0e8;
  margin-bottom: 0.7rem;
}

.final-cta__box p {
  color: rgba(243, 240, 232, 0.8);
}

.final-cta__actions {
  margin-top: 1rem;
  display: grid;
  gap: 0.6rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulseRing {
  0%, 100% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.07); opacity: 1; }
}

@keyframes slideBar {
  0%, 100% { width: 34%; }
  50% { width: 80%; }
}

@media (min-width: 760px) {
  .container {
    width: min(var(--lp-max), 100% - 3.2rem);
  }

  .hero {
    padding: 2.8rem 0 4.8rem;
  }

  .hero__grid {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 2.2rem;
  }

  .hero__cta {
    grid-template-columns: auto auto;
    justify-content: flex-start;
  }

  .btn--xl {
    width: auto;
    min-width: 10.6rem;
    padding-inline: 1.2rem;
  }

  .problem-grid,
  .steps,
  .feature-grid,
  .stats-grid,
  .testimonial-grid,
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .in-the-moment__wrap {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem;
  }

  .final-cta__actions {
    grid-template-columns: auto auto;
    justify-content: center;
  }

  .landing-nav {
    padding: 0.9rem 1.5rem;
  }
}

@media (max-width: 420px) {
  .landing-nav .btn--ghost {
    display: none;
  }

  .section {
    padding: 4rem 0;
  }
}
