:root {
  --bg: #f6faf7;
  --bg-soft: #eef6f1;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #ffffff;
  --surface-green: linear-gradient(180deg, rgba(243, 251, 245, 0.96), rgba(232, 245, 236, 0.96));
  --text: #123126;
  --muted: #5a7267;
  --line: rgba(18, 49, 38, 0.1);
  --shadow: 0 30px 80px rgba(26, 67, 50, 0.12);
  --shadow-soft: 0 18px 50px rgba(26, 67, 50, 0.08);
  --brand: #1f8a56;
  --brand-strong: #176d45;
  --brand-soft: #dff3e6;
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1160px;
  --header-height: 84px;
  --font-sans: "SF Pro Display", "SF Pro Text", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-sans);
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(170, 233, 186, 0.45), transparent 28%),
    radial-gradient(circle at 100% 8%, rgba(190, 233, 203, 0.35), transparent 24%),
    linear-gradient(180deg, #fbfdfc 0%, var(--bg) 44%, #f3f8f5 100%);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.24)),
    linear-gradient(90deg, rgba(23, 109, 69, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(23, 109, 69, 0.04) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 26%);
  opacity: 0.5;
  z-index: -1;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 200;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading h2,
.hero-copy h1,
.split-grid h2,
.support-shell h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero-copy h1 {
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  max-width: 11ch;
}

.headline-break {
  display: block;
}

.section-heading h2,
.split-grid h2,
.support-shell h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-strong);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead,
.section-heading p,
.community-copy p,
.support-shell p,
.footer-copy {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.14rem);
  text-wrap: pretty;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: saturate(180%) blur(18px);
  background: rgba(248, 251, 249, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(18, 49, 38, 0.06);
}

.nav-shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(31, 138, 86, 0.18);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.96rem;
  transition: color var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  padding-top: 56px;
  overflow: clip;
}

.hero-grid,
.split-grid,
.support-shell {
  display: grid;
  gap: 36px;
  align-items: center;
}

.hero-grid {
  grid-template-columns: 1.08fr 0.92fr;
}

.hero-copy {
  max-width: 620px;
  position: relative;
  z-index: 2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  min-height: 58px;
  padding: 14px 22px;
  border-radius: 20px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(180deg, #27935d 0%, #176d45 100%);
  box-shadow: 0 16px 30px rgba(23, 109, 69, 0.22);
}

.button-store {
  padding: 0;
  min-height: auto;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.button-store img {
  width: auto;
  height: 60px;
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(18, 49, 38, 0.08);
  box-shadow: 0 18px 34px rgba(18, 49, 38, 0.06);
}

.button-label {
  font-size: 1rem;
}

.button-caption {
  opacity: 0.8;
  font-size: 0.78rem;
  font-weight: 500;
}

.hero-points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  text-wrap: pretty;
}

.hero-points li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #62c487, #218a56);
}

.hero-text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 600;
  transition: color var(--transition);
}

.hero-text-link:hover {
  color: var(--text);
}

.hero-search-copy {
  max-width: 54ch;
  color: rgba(18, 49, 38, 0.72);
  font-size: 1.04rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  perspective: 1200px;
  z-index: 2;
}

.phone-mockup {
  position: relative;
  width: min(100%, 340px);
  aspect-ratio: 1350 / 2760;
  filter: drop-shadow(0 36px 60px rgba(21, 70, 46, 0.2));
  animation: phone-float 6.5s ease-in-out infinite;
}

.phone-screen-clip,
.phone-frame-image {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
}

.phone-screen-clip {
  inset: 2.65% 5.6%;
  width: 88.8%;
  height: 94.7%;
  overflow: hidden;
  border-radius: 12.5%;
  z-index: 1;
}

.phone-screen-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.phone-frame-image {
  inset: 0;
  z-index: 2;
  pointer-events: none;
  object-fit: contain;
}

.feature-card,
.step-card,
.premium-card,
.faq-item,
.support-card,
.trust-shell {
  backdrop-filter: blur(14px);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.hero-ambient,
.hero-gridlines {
  position: absolute;
  pointer-events: none;
}

.hero-ambient {
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.75;
}

.hero-ambient-one {
  width: 420px;
  height: 420px;
  top: -120px;
  right: 10%;
  background: radial-gradient(circle, rgba(161, 234, 184, 0.65), rgba(161, 234, 184, 0.08) 68%, transparent 72%);
}

.hero-ambient-two {
  width: 360px;
  height: 360px;
  bottom: -120px;
  left: -60px;
  background: radial-gradient(circle, rgba(225, 244, 231, 0.9), rgba(225, 244, 231, 0.08) 68%, transparent 72%);
}

.hero-gridlines {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 109, 69, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(23, 109, 69, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 70%);
  opacity: 0.45;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.55;
}

.glow-one {
  width: 160px;
  height: 160px;
  top: 70px;
  right: 10px;
  background: rgba(150, 231, 176, 0.9);
}

.glow-two {
  width: 180px;
  height: 180px;
  bottom: 30px;
  left: 20px;
  background: rgba(195, 239, 205, 0.82);
}

.trust-strip {
  padding-top: 0;
}

.trust-shell {
  display: grid;
  gap: 18px;
  padding: 26px 28px;
  border-radius: 30px;
  text-align: center;
  color: var(--muted);
}

.trust-shell p,
.faq-item p,
.step-card p,
.feature-card p,
.premium-card p,
.cta-shell p {
  text-wrap: pretty;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.trust-pills span,
.card-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(18, 49, 38, 0.08);
  background: rgba(255, 255, 255, 0.75);
  color: rgba(18, 49, 38, 0.7);
  letter-spacing: -0.01em;
}

.trust-pills span {
  padding: 0.5rem 0.85rem;
  font-size: 0.86rem;
  font-weight: 600;
}

.features-grid,
.steps-grid,
.premium-grid {
  display: grid;
  gap: 18px;
}

.features-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.step-card,
.premium-card {
  position: relative;
  padding: 26px;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.feature-card::before,
.premium-card::before,
.step-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(31, 138, 86, 0.45), transparent);
}

.feature-card:hover,
.premium-card:hover,
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 56px rgba(18, 49, 38, 0.1);
  border-color: rgba(31, 138, 86, 0.16);
}

.card-kicker {
  min-width: 44px;
  margin-bottom: 18px;
  padding: 0.34rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.feature-card h3,
.step-card h3,
.premium-card h3 {
  margin: 16px 0 8px;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

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

.icon-wrap {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(31, 138, 86, 0.1);
}

.icon-wrap svg {
  width: 25px;
  height: 25px;
  stroke: var(--brand-strong);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.muted-section,
.premium-section {
  background: linear-gradient(180deg, rgba(234, 245, 238, 0.78), rgba(244, 248, 245, 0.28));
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-weight: 800;
}

.split-grid {
  grid-template-columns: 0.7fr 1.3fr;
}

.community-copy {
  display: grid;
  gap: 8px;
}

.premium-shell {
  padding: 48px;
  border-radius: 36px;
  background: var(--surface-green);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.premium-shell::before {
  content: "";
  position: absolute;
  inset: -30% auto auto 60%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.55), transparent 68%);
  pointer-events: none;
}

.premium-heading {
  margin-bottom: 28px;
}

.premium-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.premium-card {
  background: rgba(255, 255, 255, 0.72);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 24px;
  overflow: clip;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.faq-item:hover {
  transform: translateY(-2px);
}

.faq-item summary {
  position: relative;
  padding: 22px 56px 22px 22px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: pretty;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--brand-strong);
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.support-shell {
  grid-template-columns: 1fr 0.8fr;
}

.support-card {
  padding: 28px;
  border-radius: var(--radius);
}

.support-mail {
  display: inline-block;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.cta-section {
  background: linear-gradient(180deg, rgba(234, 245, 238, 0.78), rgba(244, 248, 245, 0.28));
  text-align: center;
}

.cta-shell {
  display: grid;
  gap: 20px;
  justify-items: center;
  max-width: 600px;
}

.cta-shell h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.cta-shell > p {
  margin: 0;
  color: var(--muted);
}

.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 99;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(18, 49, 38, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(18, 49, 38, 0.1);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  opacity: 0;
}

.back-to-top:not([hidden]) {
  opacity: 1;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(18, 49, 38, 0.14);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: var(--brand-strong);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer {
  padding: 18px 0 42px;
}

.footer-shell {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.brand-footer {
  margin-bottom: 12px;
}

.footer-heading {
  display: inline-block;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--text);
}

.footer-links,
.footer-meta {
  display: grid;
  align-content: start;
  gap: 8px;
  color: var(--muted);
}

.footer-copy {
  max-width: 30ch;
}

:focus-visible {
  outline: 3px solid rgba(35, 144, 91, 0.35);
  outline-offset: 3px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.2, 0.65, 0.2, 1);
  will-change: opacity, transform;
}

[data-reveal="zoom"] {
  transform: translateY(24px) scale(0.96);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes phone-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .split-grid,
  .support-shell,
  .footer-shell,
  .features-grid,
  .steps-grid,
  .premium-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    padding-top: 10px;
  }

  .footer-shell {
    gap: 28px;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 72px 0;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    display: grid;
    gap: 10px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(18, 49, 38, 0.08);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity var(--transition), transform var(--transition);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-shell {
    min-height: 76px;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-copy h1 {
    max-width: 10ch;
  }

  .phone-mockup {
    max-width: 320px;
  }

  .button-store img {
    height: 56px;
  }

  .premium-shell {
    padding: 24px;
  }

  .trust-shell {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
