:root {
  --green-950: #063f39;
  --green-800: #075e54;
  --green-600: #128c7e;
  --green-400: #25d366;
  --green-100: #dff8e8;
  --ink: #152923;
  --muted: #5e6f68;
  --paper: #f7faf6;
  --white: #fff;
  --line: #dce7df;
  --yellow: #f4c95d;
  --shadow: 0 24px 70px rgba(5, 63, 57, 0.18);
  --content: min(1120px, calc(100% - 96px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.5;
}
body.menu-open, body.dialog-open { overflow: hidden; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.05; letter-spacing: 0; }
h2 { margin-bottom: 18px; font-size: clamp(34px, 5vw, 58px); }
h3 { font-size: 21px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  height: 70px;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(20px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(16px);
}
.brand {
  display: flex;
  align-items: center;
}
.header-brand {
  height: 70px;
  gap: 8px;
}
.header-brand img {
  width: 43px;
  height: 43px;
  border-radius: 10px;
  object-fit: cover;
}
.brand-name {
  display: flex;
  align-items: baseline;
  color: #14233a;
  font-size: 21px;
  font-weight: 850;
  line-height: 1;
}
.brand-name strong {
  color: #08bd46;
  font-weight: 850;
}
.main-nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 700; }
.main-nav > a { color: var(--muted); }
.main-nav > a:hover { color: var(--green-800); }
.menu-button { display: none; width: 42px; height: 42px; padding: 10px; border: 0; background: transparent; }
.menu-button span { display: block; height: 2px; margin: 5px 0; background: var(--ink); }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 3px solid rgba(37, 211, 102, .38);
  outline-offset: 3px;
}
.button-small { min-height: 40px; padding: 0 16px; font-size: 13px; }
.button-primary { background: var(--green-400); color: #073e29; }
.button-primary:hover { background: #2be070; }
.button-secondary { border-color: var(--green-800); background: transparent; color: var(--green-800); }
.button-light { background: var(--white); color: var(--green-800); }

.hero {
  position: relative;
  min-height: 90svh;
  overflow: hidden;
  padding-top: 70px;
  background: var(--green-950);
}
.hero-image {
  position: absolute;
  inset: 70px 0 0;
  width: 100%;
  height: calc(100% - 70px);
  object-fit: cover;
  filter: brightness(1.08) saturate(1.04);
}
.hero-overlay {
  position: absolute;
  inset: 70px 0 0;
  background: linear-gradient(
    90deg,
    rgba(4, 37, 32, .82) 0%,
    rgba(4, 37, 32, .68) 38%,
    rgba(4, 37, 32, .22) 60%,
    rgba(4, 37, 32, 0) 82%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: var(--content);
  margin: 0 auto;
  padding: clamp(90px, 15vh, 150px) 0 100px;
  color: var(--white);
}
.eyebrow { margin-bottom: 12px; color: var(--green-600); font-size: 12px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow-light { color: #88e5b0; }
.hero h1 { margin-bottom: 0; font-size: clamp(56px, 8vw, 100px); }
.hero h2 { margin: 2px 0 22px; color: var(--green-400); font-size: clamp(34px, 5vw, 58px); }
.hero-content > p:not(.eyebrow) { max-width: 560px; color: #d5e2dd; font-size: clamp(17px, 2vw, 21px); }
.hero h1,
.hero h2,
.hero-content > p,
.hero .text-link,
.hero .trust-row {
  text-shadow: 0 2px 16px rgba(1, 24, 20, .55);
}
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 28px; }
.text-link { font-weight: 750; }
.download-note {
  margin: 10px 0 0;
  color: #b5cac2 !important;
  font-size: 12px !important;
  font-weight: 700;
}
.trust-row { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 32px; color: #b5cac2; font-size: 13px; font-weight: 700; }
.trust-row span::before { display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: var(--green-400); content: ""; }

.section-inner { width: var(--content); margin: 0 auto; }
.reality-section {
  padding: 90px 0;
  background: var(--green-950);
  color: var(--white);
}
.reality-heading {
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 48px;
}
.reality-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -48px; }
.reality-heading h2 { margin-bottom: 0; }
.reality-heading > p:last-child {
  margin-bottom: 8px;
  color: #bfd4cc;
  font-size: 18px;
}
.reality-scenes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.reality-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  background: #102d27;
}
.reality-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.reality-old img { object-position: 58% center; }
.reality-now img { object-position: 56% center; }
.reality-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 84px 28px 24px;
  background: linear-gradient(transparent, rgba(4, 28, 24, .96));
}
.reality-caption span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.reality-now .reality-caption span { color: #8ee9b4; }
.reality-caption h3 { margin-bottom: 7px; font-size: 27px; }
.reality-caption p { max-width: 480px; margin-bottom: 0; color: #d0ded9; }
.reality-truth {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding-top: 30px;
}
.reality-truth strong { max-width: 660px; color: var(--green-400); font-size: clamp(23px, 3vw, 34px); line-height: 1.2; }
.reality-truth p { max-width: 340px; margin-bottom: 0; color: #a8c2b8; }
.counter-section {
  padding: 78px 0;
  background: var(--white);
}
.counter-grid {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 90px;
  align-items: center;
}
.counter-visual {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 8px;
  background: #e9f2ec;
  box-shadow: 0 18px 42px rgba(5, 63, 57, .13);
}
.counter-visual img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: 43% center;
}
.counter-copy > p:last-child {
  max-width: 600px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}
.problem-section, .how-section, .features-section, .pricing-section { padding: 90px 0; }
.problem-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 80px; align-items: end; }
.problem-grid p:last-child { margin-bottom: 16px; color: var(--muted); font-size: 18px; }
.relationship-story {
  display: grid;
  margin-top: 48px;
  grid-template-columns: minmax(0, 1fr) 62px minmax(0, 1fr);
  align-items: center;
}
.story-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--green-950);
  box-shadow: 0 18px 42px rgba(5, 63, 57, .12);
}
.story-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.story-card > div {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 45px 22px 20px;
  background: linear-gradient(transparent, rgba(4, 37, 32, .9));
  color: var(--white);
}
.story-card > div span {
  display: flex;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green-400);
  color: #073e29;
  font-size: 12px;
  font-weight: 900;
}
.story-card p { margin-bottom: 0; font-size: 19px; font-weight: 800; }
.story-connection {
  position: relative;
  z-index: 2;
  display: flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border: 8px solid var(--paper);
  border-radius: 50%;
  background: var(--green-400);
  color: #073e29;
  font-size: 25px;
  font-weight: 900;
}
.problem-action {
  display: flex;
  width: var(--content);
  margin: 30px auto 0;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.problem-action strong { max-width: 520px; font-size: 20px; }

.section-heading { max-width: 780px; margin-bottom: 45px; }
.how-section { background: var(--white); }
.how-grid { display: grid; grid-template-columns: 1fr 380px; gap: 90px; align-items: center; }
.steps { border-top: 1px solid var(--line); }
.steps article { display: grid; grid-template-columns: 45px 160px 1fr; gap: 18px; align-items: center; padding: 26px 0; border-bottom: 1px solid var(--line); }
.steps article > span { color: var(--green-600); font-size: 13px; font-weight: 900; }
.steps h3, .steps p { margin-bottom: 0; }
.steps p { color: var(--muted); }

.phone {
  position: relative;
  width: 310px;
  height: 651px;
  margin: 0 auto;
  overflow: hidden;
  border: 9px solid #14241f;
  border-radius: 38px;
  background: #14241f;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.app-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.features-section { background: #eef4ef; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.feature-grid article { min-height: 170px; padding: 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.5); }
.feature-grid strong { display: block; margin-bottom: 30px; color: var(--green-600); font-size: 28px; }
.feature-grid h3 { margin-bottom: 0; font-size: 18px; }

.promise-section { padding: 0; background: var(--green-950); color: var(--white); }
.promise-grid { display: grid; width: 100%; max-width: none; grid-template-columns: 1fr 1fr; align-items: center; }
.promise-grid > img { width: 100%; height: 520px; object-fit: cover; object-position: 76% center; }
.promise-grid > div { max-width: 580px; padding: 60px; }
blockquote { margin: 0 0 20px; font-size: clamp(38px, 5vw, 64px); font-weight: 830; line-height: 1.08; }
.promise-grid p:last-child { color: #bad4ca; font-size: 18px; }

.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 820px; margin: 0 auto; }
.price-plan { position: relative; display: flex; min-height: 445px; flex-direction: column; padding: 34px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
.featured-plan { border: 2px solid var(--green-600); box-shadow: var(--shadow); }
.popular-label { position: absolute; top: 0; right: 22px; padding: 7px 11px; background: var(--yellow); font-size: 10px; font-weight: 850; text-transform: uppercase; }
.plan-label { color: var(--green-600); font-weight: 850; }
.price { display: flex; align-items: end; gap: 6px; margin: 15px 0 20px; }
.price strong { font-size: 44px; line-height: 1; }
.price span { color: var(--muted); }
.price-plan ul { flex: 1; margin: 20px 0 28px; padding: 0; list-style: none; }
.price-plan li { padding: 11px 0; border-bottom: 1px solid var(--line); }
.price-plan li::before { margin-right: 9px; color: var(--green-600); content: "✓"; font-weight: 900; }
.price-plan small { margin-top: 12px; color: var(--muted); text-align: center; }
.sales-line { margin: 32px 0 0; color: var(--green-800); font-size: 18px; font-weight: 800; text-align: center; }

.final-cta { padding: 80px 0; background: var(--green-800); color: var(--white); text-align: center; }
.final-cta img { width: 76px; height: 76px; margin: 0 auto 18px; border-radius: 17px; }
.final-cta h2 { margin-bottom: 26px; }
footer { display: flex; width: var(--content); min-height: 130px; margin: auto; align-items: center; justify-content: space-between; gap: 25px; color: var(--muted); font-size: 13px; }
footer p { margin-bottom: 0; }
.footer-brand {
  height: 58px;
  gap: 8px;
}
.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  object-fit: cover;
}
.footer-credit {
  display: grid;
  gap: 4px;
  text-align: right;
}
.footer-credit strong { color: var(--green-800); }

.lead-dialog { width: min(460px, calc(100% - 28px)); padding: 34px; border: 0; border-radius: 8px; color: var(--ink); box-shadow: var(--shadow); }
.lead-dialog::backdrop { background: rgba(6, 36, 31, .72); backdrop-filter: blur(5px); }
.lead-dialog h2 { font-size: 34px; }
.dialog-close { position: absolute; top: 10px; right: 10px; width: 38px; height: 38px; border: 0; background: transparent; color: var(--muted); font-size: 28px; cursor: pointer; }
.lead-dialog form { display: grid; gap: 16px; margin-top: 24px; }
.lead-dialog label { color: var(--muted); font-size: 13px; font-weight: 700; }
.lead-dialog input { width: 100%; height: 48px; margin-top: 6px; padding: 0 13px; border: 1px solid var(--line); border-radius: 6px; }
.form-success { display: grid; gap: 22px; padding-top: 20px; text-align: center; }
.form-success[hidden] { display: none; }

@media (max-width: 820px) {
  :root { --content: min(100% - 40px, 680px); }
  .site-header { height: 66px; padding: 0 16px; }
  .header-brand { height: 66px; gap: 6px; }
  .header-brand img { width: 39px; height: 39px; }
  .brand-name { font-size: 19px; }
  .menu-button { display: block; }
  .main-nav { position: fixed; inset: 66px 0 auto; display: none; padding: 20px; border-bottom: 1px solid var(--line); background: var(--paper); flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav.open { display: flex; }
  .main-nav > a { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .main-nav .button { margin-top: 14px; }
  .hero { min-height: 790px; padding-top: 66px; }
  .hero-image { top: 66px; height: calc(100% - 66px); object-position: 65% center; }
  .hero-overlay {
    top: 66px;
    background: linear-gradient(
      180deg,
      rgba(4, 37, 32, .84) 0%,
      rgba(4, 37, 32, .64) 52%,
      rgba(4, 37, 32, .12) 86%
    );
  }
  .hero-content { padding-top: 65px; }
  .hero-content > p:not(.eyebrow) { max-width: 92%; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 14px; max-width: 330px; }
  .text-link { text-align: center; }
  .reality-section { padding: 68px 0; }
  .reality-heading { grid-template-columns: 1fr; gap: 18px; }
  .reality-heading .eyebrow { grid-column: auto; margin-bottom: 0; }
  .reality-scenes { grid-template-columns: 1fr; }
  .reality-card, .reality-card img { min-height: 340px; height: 340px; }
  .reality-truth { align-items: flex-start; flex-direction: column; gap: 12px; }
  .counter-section { padding: 68px 0; }
  .counter-grid { grid-template-columns: 1fr; gap: 36px; }
  .counter-visual { min-height: 290px; }
  .counter-visual img { height: 310px; object-position: 40% center; }
  .problem-section, .how-section, .features-section, .pricing-section { padding: 68px 0; }
  .problem-grid, .how-grid { grid-template-columns: 1fr; gap: 42px; }
  .relationship-story { grid-template-columns: 1fr; gap: 0; }
  .story-card, .story-card img { min-height: 300px; height: 300px; }
  .story-connection { margin: -10px auto; transform: rotate(90deg); }
  .problem-action { align-items: stretch; flex-direction: column; text-align: center; }
  .steps article { grid-template-columns: 35px 1fr; }
  .steps p { grid-column: 2; }
  .phone { width: 270px; height: 564px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .promise-grid { grid-template-columns: 1fr; }
  .promise-grid > img { height: 330px; }
  .promise-grid > div { padding: 55px 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  footer { padding: 32px 0; flex-direction: column; justify-content: center; text-align: center; }
  .footer-credit { text-align: center; }
}

@media (max-width: 480px) {
  :root { --content: calc(100% - 32px); }
  .hero { min-height: 740px; }
  .hero h1 { font-size: 54px; }
  .hero h2 { font-size: 37px; }
  .trust-row { gap: 8px 14px; }
  .reality-card, .reality-card img { min-height: 300px; height: 300px; }
  .reality-caption { padding: 70px 20px 20px; }
  .story-card, .story-card img { min-height: 250px; height: 250px; }
  .feature-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; }
}
