:root {
  --bg: #fafaf7;
  --text: #1f2220;
  --muted: #5c6660;
  --mint: #b8f2dd;
  --mint-strong: #79dbb7;
  --peach: #ffd7bf;
  --sky: #dbeefe;
  --card: #ffffffcc;
  --border: #d8e2dc;
  --radius: 18px;
  --shadow: 0 18px 50px -24px rgb(36 52 44 / 35%);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, #e9fff5 0%, transparent 45%),
    radial-gradient(circle at 90% 2%, #fff0e4 0%, transparent 35%),
    var(--bg);
  line-height: 1.6;
}

.page-glow {
  position: fixed;
  inset: -20% -10% auto;
  height: 420px;
  background:
    radial-gradient(closest-side, #b8f2dd9d 0%, #b8f2dd00 70%),
    radial-gradient(closest-side, #ffd7bf8a 0%, #ffd7bf00 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: -1;
}

.container {
  width: min(1080px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

h1,
h2,
h3 {
  font-family: "Poppins", "Segoe UI", sans-serif;
  line-height: 1.12;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.hero {
  text-align: center;
  padding-top: 5rem;
}

.hero-inner {
  max-width: 780px;
}

.brand-logo {
  width: min(240px, 68vw);
  height: auto;
  margin-bottom: 0.5rem;
}

.eyebrow {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: #547f6f;
}

.lead {
  max-width: 64ch;
  margin: 0 auto 1.5rem;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
}

.cta {
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(120deg, var(--mint) 0%, var(--peach) 100%);
  color: #1a2721;
  padding: 0.78rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid #d6e8de;
  box-shadow: var(--shadow);
}

.why {
  background: linear-gradient(180deg, #ebfff600 0%, #ebfff6 36%, #ebfff6 100%);
  border-block: 1px solid #d7ede3;
}

.section-subtitle {
  color: var(--muted);
  margin-bottom: 1.75rem;
}

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

.card {
  background: var(--card);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.card p {
  margin: 0;
  color: #45524b;
}

.how {
  border-bottom: 1px solid #f0dcca;
  background: linear-gradient(180deg, #fff0e400 0%, #fff4ec 38%, #fff4ec 100%);
}

.how-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

ol {
  padding-left: 1.2rem;
  margin: 0;
}

ol li {
  margin: 0 0 0.75rem;
}

.phone-wrap {
  justify-self: center;
  max-width: 340px;
  border: 4px solid var(--mint-strong);
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 30px 70px -40px rgb(61 73 59 / 56%);
  background: #fff;
}

.phone-shot {
  width: 100%;
  display: block;
}

.features-plus {
  border-top: 1px solid #e7efea;
  border-bottom: 1px solid #e7efea;
  background: linear-gradient(180deg, #ffffff 0%, #f9fdfb 100%);
}

.cards-plus .card {
  min-height: 150px;
}

.tutorial {
  border-top: 1px solid #d7ede3;
  border-bottom: 1px solid #f0dcca;
  background: linear-gradient(180deg, #f8fffc 0%, #fefcf8 100%);
}

.tutorial-video-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.tutorial-note {
  margin-top: -0.4rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #51615a;
  font-weight: 500;
}

.tutorial-video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #d6e0d9;
  background: #0f1411;
  box-shadow: var(--shadow);
}

.tutorial-title {
  margin-top: 0.65rem;
  margin-bottom: 0;
  text-align: center;
  font-weight: 700;
  color: #1f2f28;
}

.tutorial-link {
  margin-top: 0.7rem;
  text-align: center;
}

.tutorial-link a {
  color: #2b6b55;
  text-decoration: none;
  font-weight: 600;
}

.privacy {
  text-align: center;
}

.privacy p,
.access p {
  max-width: 66ch;
  margin-inline: auto;
  color: var(--muted);
}

.access {
  text-align: center;
  border-top: 1px solid #f0dcca;
  background: #fffaf5;
}

.subscribe-form {
  margin: 1.25rem auto 0;
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  align-items: center;
  max-width: 700px;
}

.subscribe-form input {
  width: min(440px, 100%);
  border-radius: 12px;
  border: 1px solid #cdd8d1;
  padding: 0.85rem 1rem;
  font: inherit;
}

.subscribe-form input:focus {
  outline: none;
  border-color: #5bcfa9;
  box-shadow: 0 0 0 4px #b8f2dd66;
}

.subscribe-form button {
  border: none;
  background: #1f2f28;
  color: #fff;
  border-radius: 12px;
  font: inherit;
  font-weight: 700;
  padding: 0.85rem 1.25rem;
  cursor: pointer;
  transition: transform 200ms ease, opacity 200ms ease;
}

.subscribe-form button:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.subscribe-form button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  transform: none;
}

.form-message {
  min-height: 1.5rem;
  margin-top: 0.6rem;
  font-size: 0.95rem;
  color: #1f2f28;
}

.footer {
  border-top: 1px solid #d9ddd8;
  text-align: center;
  font-size: 0.95rem;
  color: #48534d;
  padding: 1.7rem 1.2rem 2.2rem;
}

.footer p {
  margin: 0 0 0.35rem;
}

.footer a {
  color: #2b6b55;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reveal,
.reveal-delay {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-delay {
  transition-delay: 160ms;
}

.reveal.is-visible,
.reveal-delay.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr;
  }

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

  .phone-wrap {
    order: -1;
    margin-bottom: 0.6rem;
  }

}

@media (max-width: 640px) {
  .section {
    padding: 3.4rem 0;
  }

  .container {
    width: min(1080px, calc(100% - 1.5rem));
  }

  .subscribe-form {
    flex-direction: column;
    align-items: stretch;
  }

  .subscribe-form button {
    width: 100%;
  }

}

.footer-legal-links {
  margin-top: 0.65rem;
}

.footer-legal-links a {
  margin: 0 0.35rem;
}

.legal-page {
  padding-top: 2.5rem;
}

.legal-container {
  max-width: 860px;
  background: #ffffffcc;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.legal-home-link {
  display: inline-block;
  margin-bottom: 1rem;
  color: #2b6b55;
  text-decoration: none;
  font-weight: 600;
}

.legal-updated {
  color: var(--muted);
  margin-top: -0.45rem;
}

.legal-container h2 {
  margin-top: 1.45rem;
}

.legal-container p,
.legal-container li {
  color: #2a352f;
}

.legal-acceptance {
  margin-top: 1.4rem;
  font-weight: 600;
}

@media (max-width: 700px) {
  .legal-container {
    padding: 1.1rem;
  }
}
