:root {
  --green: #2f8a35;
  --dark-green: #1f6e28;
  --orange: #f28b22;
  --text: #25313a;
  --muted: #5f707a;
  --bg: #f7faf7;
  --card: #ffffff;
  --line: #dfe8df;
  --shadow: 0 22px 55px rgba(29, 65, 37, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}
main {
  max-width: 1040px;
  margin: 0 auto;
  padding: 32px 20px 64px;
}
.hero {
  text-align: center;
  padding: 34px 0 52px;
}
.icon-wrap { display: flex; justify-content: center; }
.app-icon {
  width: 178px;
  height: 178px;
  border-radius: 38px;
  box-shadow: var(--shadow);
  object-fit: cover;
  background: linear-gradient(135deg, #78d52c, #2fb12c);
}
.eyebrow {
  margin: 28px 0 8px;
  color: var(--orange);
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: 0.95rem;
}
h1 {
  margin: 0;
  color: var(--green);
  font-size: clamp(3.2rem, 9vw, 6rem);
  line-height: .95;
  letter-spacing: -0.06em;
}
.subtitle {
  margin: 18px 0 0;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
}
.hero-copy {
  margin: 8px 0 20px;
  color: var(--muted);
  font-size: 1.25rem;
}
.pill-row, .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.pill-row span {
  background: #eaf5ea;
  color: var(--dark-green);
  border: 1px solid #d4e9d4;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
}
.cta-row { margin-top: 24px; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.primary {
  background: var(--green);
  color: white;
  box-shadow: 0 12px 28px rgba(47, 138, 53, .25);
}
.secondary {
  background: #ffffff;
  color: var(--green);
  border: 2px solid #d4e9d4;
}
.price { color: var(--muted); font-weight: 700; }
.card, .feature {
  background: var(--card);
  border: 1px solid #edf1ed;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.card { padding: clamp(26px, 5vw, 48px); margin: 24px 0; }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
h2 {
  color: var(--green);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.05;
  margin: 0 0 14px;
  letter-spacing: -0.04em;
}
.clean-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.25rem;
  font-weight: 800;
}
.clean-list li {
  margin: 12px 0;
  padding-left: 34px;
  position: relative;
}
.clean-list li::before {
  content: "✓";
  color: var(--green);
  position: absolute;
  left: 0;
}
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin: 24px 0;
}
.feature {
  padding: 30px;
  border-left: 8px solid var(--green);
}
.feature.orange { border-left-color: var(--orange); }
.emoji { font-size: 2rem; }
h3 {
  font-size: 1.65rem;
  margin: 10px 0 8px;
  line-height: 1.15;
}
.feature p, .card p { color: var(--muted); font-size: 1.08rem; }
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 22px;
}
.compare > div {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: #fff;
  font-weight: 700;
}
.compare > div:nth-child(2n+1) { border-right: 1px solid var(--line); }
.compare-head {
  background: #eaf5ea !important;
  color: var(--green);
  font-size: 1.2rem;
}
.compare-head.muted { color: var(--muted); background: #f3f5f3 !important; }
.center { text-align: center; }
.big-price {
  color: var(--orange) !important;
  font-size: clamp(3rem, 8vw, 5rem) !important;
  font-weight: 900;
  margin: 0;
}
.support .email {
  display: inline-block;
  margin-top: 12px;
  background: var(--green);
  color: white;
  padding: 14px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
}
footer {
  max-width: 1040px;
  margin: 0 auto;
  padding: 26px 20px 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 760px) {
  main { padding-top: 18px; }
  .app-icon { width: 152px; height: 152px; border-radius: 32px; }
  .split, .grid { grid-template-columns: 1fr; }
  .compare { font-size: .95rem; }
  .btn { width: 100%; }
  .cta-row { width: 100%; }
}
