:root {
  --teal: #00a89c;
  --teal-dark: #008f85;
  --ink: #1a1a1a;
  --muted: #66706e;
  --bg: #ffffff;
  --font: "Figtree", system-ui, sans-serif;
  --display: "Outfit", system-ui, sans-serif;
  --safe-b: env(safe-area-inset-bottom, 0px);
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: #e8ecee;
  line-height: 1.45;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.page {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg);
  min-height: 100dvh;
}

.hero-img {
  width: 100%;
  height: auto;
}

.content {
  padding: 1.15rem 1.25rem 0.25rem;
  text-align: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--teal-dark);
}

.brand img {
  width: 34px;
  height: 34px;
}

.eyebrow {
  margin: 0 0 0.35rem;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 700;
}

h1 {
  margin: 0 0 0.55rem;
  font-family: var(--display);
  font-size: clamp(1.3rem, 5.4vw, 1.6rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.lead {
  margin: 0 auto 1.1rem;
  max-width: 36ch;
  color: var(--muted);
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 340px;
  min-height: 52px;
  padding: 0.85rem 1.15rem;
  border-radius: 12px;
  background: var(--teal);
  color: #fff;
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 700;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.btn:hover {
  background: var(--teal-dark);
}

.btn:active {
  transform: scale(0.98);
}

.btn--secondary {
  margin-top: 1.25rem;
  background: #fff;
  color: var(--teal-dark);
  border: 2px solid var(--teal);
  max-width: 340px;
}

.btn--secondary:hover {
  background: #f0faf8;
}

.trust {
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.stores {
  margin-top: 1.35rem;
}

.stores__label {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.stores__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.stores__list li {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #f0faf8;
  border: 1px solid rgba(0, 168, 156, 0.25);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal-dark);
}

.benefits {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  text-align: left;
}

.benefits li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.4rem;
  border-top: 1px solid #eef1f0;
  font-size: 0.92rem;
  font-weight: 600;
  color: #2a3331;
}

.benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.footer {
  padding: 1.25rem 1.25rem calc(4.75rem + var(--safe-b));
  text-align: center;
}

.footer p {
  margin: 0;
  font-size: 0.74rem;
  color: #9aa3a1;
}

.sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 0.55rem 0.85rem calc(0.55rem + var(--safe-b));
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.95) 35%, #fff);
  transform: translateY(110%);
  transition: transform 0.28s ease;
  pointer-events: none;
}

.sticky.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

.sticky[hidden] {
  display: block;
  visibility: hidden;
}

.sticky.is-visible[hidden] {
  visibility: visible;
}

.sticky .btn {
  max-width: none;
  min-height: 48px;
}

@media (min-width: 560px) {
  body {
    padding: 1.25rem 0;
  }

  .page {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  }

  .content {
    padding: 1.35rem 1.75rem 0.5rem;
  }

  .footer {
    padding-bottom: 1.75rem;
  }

  .sticky {
    display: none;
  }
}
