:root {
  --bg: #f8fdf9;
  --bg-soft: #edf8f1;
  --ink: #0f2d1f;
  --muted: #51655b;
  --brand: #1ea672;
  --brand-dark: #0f7b53;
  --accent: #ffd36b;
  --line: #d8e8df;
  --card: #ffffff;
  --shadow: 0 18px 38px rgba(19, 72, 48, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at 20% 0%, #d6f3e4 0%, var(--bg) 40%), var(--bg);
  color: var(--ink);
  line-height: 1.5;
}

.page-noise {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.28;
  z-index: -2;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(248, 253, 249, 0.82);
  border-bottom: 1px solid rgba(30, 166, 114, 0.12);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  text-decoration: none;
  font-family: "Sora", sans-serif;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: linear-gradient(140deg, var(--brand), #49d297);
  color: #fff;
  font-weight: 700;
}

.brand-text {
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}

.site-nav .nav-cta {
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  padding: 4.5rem 0 3.2rem;
  overflow: clip;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
}

.hero-bg-shape-1 {
  width: 340px;
  height: 340px;
  right: -120px;
  top: 40px;
  background: radial-gradient(circle at 30% 30%, #9df0c6 0, #61cf9b 60%, transparent 70%);
  opacity: 0.6;
}

.hero-bg-shape-2 {
  width: 260px;
  height: 260px;
  left: -80px;
  bottom: 10px;
  background: radial-gradient(circle at 60% 40%, #ffe7aa 0, #ffd36b 65%, transparent 76%);
  opacity: 0.55;
}

.hero-grid {
  display: grid;
  gap: 2.3rem;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

.eyebrow {
  margin: 0;
  color: var(--brand-dark);
  font-weight: 700;
  letter-spacing: 0.07em;
  font-size: 0.79rem;
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  line-height: 1.14;
}

h1 {
  margin: 0.75rem 0 1rem;
  font-size: clamp(2rem, 5.2vw, 3.7rem);
}

h2 {
  margin: 0.7rem 0;
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
}

.hero-sub {
  color: var(--muted);
  max-width: 58ch;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.6rem 0 1.2rem;
}

.store-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  min-width: 190px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.store-badge strong {
  font-size: 0.98rem;
}

.store-badge span {
  font-size: 0.86rem;
  color: var(--muted);
}

.store-badge.primary {
  border-color: var(--brand-dark);
  background: linear-gradient(130deg, var(--brand), #2fbd84);
  color: #fff;
}

.store-badge.primary span {
  color: #e9fff4;
}

.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.quick-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.3rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--brand-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.phone-mock {
  margin-inline: auto;
  width: min(320px, 80vw);
  border: 10px solid #1b2a23;
  background: #1b2a23;
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.phone-notch {
  width: 40%;
  height: 18px;
  margin: 0.35rem auto 0;
  border-radius: 0 0 12px 12px;
  background: #0f1512;
}

.phone-screen {
  margin: 0.7rem;
  border-radius: 26px;
  background: linear-gradient(180deg, #f4fbf7 0%, #ebf8f0 100%);
  padding: 1rem;
}

.screen-title {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.86rem;
}

.meter-wrap {
  display: grid;
  place-items: center;
  margin: 1rem 0 1.25rem;
}

.meter-ring {
  display: grid;
  place-items: center;
  width: 142px;
  height: 142px;
  border-radius: 50%;
  background: conic-gradient(var(--brand) 0 290deg, #cde8da 290deg 360deg);
  position: relative;
  text-align: center;
}

.meter-ring::before {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  background: #f3fbf7;
}

.meter-ring span,
.meter-ring small {
  position: relative;
  z-index: 2;
}

.meter-ring span {
  font-family: "Sora", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.meter-ring small {
  color: var(--muted);
  font-size: 0.75rem;
}

.screen-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.95rem;
}

.screen-stats div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.55rem 0.45rem;
}

.screen-stats strong {
  font-size: 0.95rem;
}

.screen-stats span {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
}

.screen-button {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
}

.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1rem 0;
}

.proof-grid article {
  text-align: center;
}

.proof-grid strong {
  display: block;
  font-family: "Sora", sans-serif;
}

.proof-grid span {
  font-size: 0.85rem;
  color: var(--muted);
}

.section {
  padding: 4.8rem 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-head h2 {
  margin-bottom: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.1rem 1rem;
  box-shadow: 0 8px 24px rgba(30, 70, 49, 0.08);
}

.feature-card h3 {
  margin: 0 0 0.45rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.how {
  background: linear-gradient(180deg, rgba(77, 196, 138, 0.09), rgba(255, 255, 255, 0));
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem 1rem;
}

.step-num {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  font-weight: 700;
}

.step h3 {
  margin: 0.9rem 0 0.3rem;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.platform-wrap {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 1.3rem;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(140deg, #ffffff 0%, #f2fbf5 100%);
}

.platform-wrap p {
  color: var(--muted);
}

.platform-chips {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 0.7rem;
}

.platform-chips span {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 600;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.quote {
  margin: 0;
  padding: 1.15rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 28px rgba(20, 50, 34, 0.08);
}

.quote cite {
  display: block;
  margin-top: 0.85rem;
  font-style: normal;
  color: var(--brand-dark);
  font-weight: 600;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  border: none;
  background: #fff;
  padding: 1rem;
  font: inherit;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  max-height: 160px;
}

.final-cta {
  padding-top: 2.6rem;
}

.cta-wrap {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(140deg, #e8f9ef, #fcfffd);
  padding: 2.2rem 1rem;
}

.cta-wrap p {
  color: var(--muted);
}

.cta-wrap .hero-actions {
  justify-content: center;
}

.site-footer {
  margin-top: 2.6rem;
  border-top: 1px solid var(--line);
  background: #f0faf3;
}

.footer-wrap {
  min-height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.footer-wrap nav {
  display: inline-flex;
  gap: 1rem;
}

.footer-wrap a {
  text-decoration: none;
  color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

@media (max-width: 960px) {
  .hero-grid,
  .platform-wrap {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .steps,
  .quote-grid,
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    right: 4vw;
    top: 74px;
    width: min(260px, 90vw);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.55rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 0.65rem 0.75rem;
    border-radius: 10px;
  }

  .site-nav a:hover {
    background: var(--bg-soft);
  }

  .hero {
    padding-top: 3rem;
  }

  .feature-grid,
  .steps,
  .quote-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.7rem 0;
  }

  .footer-wrap {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0.9rem 0;
  }
}
