:root {
  --green: #3cb54a;
  --green-dark: #2e9139;
  --green-tint: #eaf7ec;
  --cream: #faf7f0;
  --ink: #14261a;
  --ink-soft: #5a6b5e;
  --line: #e3e1da;
  --glass: rgba(255, 255, 255, 0.62);
  --r-card: 22px;
  --r-pill: 999px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}

a { color: var(--green-dark); }
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

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

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.wrap-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
header.site {
  padding: 20px 0;
  position: relative;
  z-index: 10;
}
header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
header.site img.logo { height: 44px; width: auto; display: block; }
nav.site {
  display: flex;
  align-items: center;
  gap: 22px;
}
nav.site a.navlink {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
}
nav.site a.navlink:hover { color: var(--green-dark); }

/* Pills */
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 22px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.pill:active { transform: scale(0.98); }
.pill-filled { background: var(--green); color: white; }
.pill-filled:hover { background: var(--green-dark); }
.pill-outline { background: transparent; color: var(--green-dark); border-color: var(--green); }
.pill-outline:hover { background: var(--green-tint); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 90px;
  background: radial-gradient(120% 100% at 85% 0%, var(--green-tint), var(--cream) 60%);
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
}

.dot-field {
  position: absolute;
  inset: -10% -10% auto auto;
  width: 520px;
  height: 520px;
  background-image: radial-gradient(var(--green) 6px, transparent 7px);
  background-size: 40px 40px;
  opacity: 0.07;
  pointer-events: none;
}

.badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--green-dark);
  background: var(--green-tint);
  border-radius: var(--r-pill);
  padding: 7px 16px;
  margin-bottom: 22px;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}

.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 0 32px;
}

h2 { font-size: 1.7rem; letter-spacing: -0.01em; margin: 0 0 8px; }
h3 { font-size: 1.1rem; margin: 0 0 6px; }

.waitlist {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 480px;
}
.waitlist input[type="email"] {
  flex: 1 1 240px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 1rem;
  background: white;
}
.waitlist button {
  padding: 14px 26px;
  border: none;
  border-radius: var(--r-pill);
  background: var(--green);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}
.waitlist button:hover { background: var(--green-dark); }
.waitlist button:disabled { opacity: 0.6; cursor: default; }

.form-note {
  margin-top: 12px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  min-height: 1.4em;
}
.form-note.ok { color: var(--green-dark); font-weight: 600; }
.form-note.err { color: #a3302a; font-weight: 600; }
.privacy-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 10px; }
.privacy-note a { color: var(--ink-soft); text-decoration: underline; }

.hero-art { position: relative; display: flex; justify-content: center; }
.phone-frame {
  position: relative;
  width: min(300px, 78vw);
  aspect-ratio: 9 / 19.5;
  background: #0b0f0c;
  border-radius: 52px;
  padding: 14px;
  box-shadow: 0 40px 70px -25px rgba(20, 38, 26, 0.35), 0 0 0 1px rgba(20, 38, 26, 0.06);
  transform: rotate(-2deg);
}
.phone-island {
  position: absolute;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 24px;
  background: #0b0f0c;
  border-radius: 999px;
  z-index: 2;
}
.phone-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 38px;
  display: block;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Steps */
.steps-section { padding: 70px 0; }
.steps-section .kicker {
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.step .num {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-dark);
  background: var(--green-tint);
  border-radius: var(--r-pill);
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.step p { color: var(--ink-soft); margin: 0; }

/* Feature cards */
.features-section { padding: 20px 0 80px; }
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.features .card {
  border-radius: var(--r-card);
  padding: 28px 24px;
  background: white;
  box-shadow: 0 8px 30px rgba(20, 38, 26, 0.07);
}
.features .card p { color: var(--ink-soft); margin: 0; font-size: 0.95rem; }
.data-disclaimer { margin: 22px 0 0; font-size: 0.85rem; color: var(--ink-soft); text-align: center; }

/* Business strip */
.business-strip {
  margin: 0 24px 80px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  padding: 52px 40px;
}
.business-strip .inner {
  max-width: 1032px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.business-strip h2 { color: white; margin-bottom: 6px; }
.business-strip p { color: rgba(255,255,255,0.88); margin: 0; max-width: 46ch; }
.business-strip form { display: flex; gap: 10px; flex-wrap: wrap; max-width: 420px; }
.business-strip input[type="email"] {
  flex: 1 1 200px;
  padding: 13px 18px;
  border: none;
  border-radius: var(--r-pill);
  font-size: 0.95rem;
}
.business-strip .pill-filled { background: white; color: var(--green-dark); }
.business-strip .pill-filled:hover { background: var(--cream); }
.business-strip .form-note { color: rgba(255,255,255,0.85); }
.business-strip .form-note.ok { color: white; }

/* Footer */
footer.site {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
footer.site .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
footer.site a { color: var(--ink-soft); margin-right: 16px; text-decoration: none; }
footer.site a:hover { color: var(--green-dark); }

.legal h2 { margin-top: 40px; font-size: 1.3rem; }
.legal p, .legal li { color: var(--ink); }
.legal .updated { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 32px; }
main.legal-main { padding: 56px 0 40px; }
