:root {
  color-scheme: light;
  --page: #f8f4ed;
  --paper: #fffdf8;
  --ink: #172019;
  --muted: #69756d;
  --line: rgba(23, 32, 25, 0.14);
  --leaf: #5f9b54;
  --leaf-dark: #2f6b44;
  --moss: #dfe8d2;
  --clay: #c76f45;
  --gold: #e9bf3f;
  --shadow: 0 24px 70px rgba(51, 42, 28, 0.16);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.site-footer,
.site-footer div {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(95, 155, 84, 0.28);
  border-radius: 50%;
  background: #fffaf0;
  color: #25c768;
  box-shadow: 0 10px 30px rgba(47, 107, 68, 0.12);
}

.nav-links {
  gap: 22px;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--muted);
}

.nav-links a,
.text-link,
.site-footer a {
  text-decoration: none;
}

.nav-links a:hover,
.text-link:hover,
.site-footer a:hover {
  color: var(--leaf-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  width: min(100% - 32px, var(--max));
  min-height: calc(100svh - 74px);
  margin: 0 auto;
  padding: clamp(36px, 7vw, 82px) 0 clamp(52px, 8vw, 96px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--leaf-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.4rem, 9vw, 7.4rem);
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4.9rem);
}

h3 {
  font-size: clamp(1.18rem, 2vw, 1.55rem);
}

.hero-text {
  max-width: 650px;
  margin: 26px 0 0;
  color: #3d493f;
  font-size: clamp(1.12rem, 2vw, 1.42rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.app-store-button {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 188px;
  min-height: 62px;
  padding: 10px 24px 12px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(23, 32, 25, 0.24);
}

.app-store-button:hover {
  transform: translateY(-1px);
}

.store-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.8;
}

.store-name {
  font-size: 1.45rem;
  font-weight: 850;
  line-height: 1.1;
}

.text-link {
  color: var(--leaf-dark);
  font-weight: 800;
}

.phone-stage {
  justify-self: center;
  width: min(100%, 388px);
  padding: 12px;
  border: 1px solid rgba(23, 32, 25, 0.1);
  border-radius: 36px;
  background: #181818;
  box-shadow: var(--shadow);
}

.phone-stage img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 25px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(100% - 32px, var(--max));
  margin: 0 auto clamp(52px, 8vw, 98px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.proof-strip div {
  display: grid;
  gap: 2px;
  padding: 22px;
  background: rgba(255, 253, 248, 0.72);
}

.proof-strip strong {
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  line-height: 1;
}

.proof-strip span {
  color: var(--muted);
  font-weight: 700;
}

.feature-band,
.split-section,
.purchase-section {
  width: min(100% - 32px, var(--max));
  margin: 0 auto clamp(52px, 8vw, 104px);
}

.feature-band {
  padding: clamp(28px, 5vw, 60px) 0;
}

.section-heading {
  display: grid;
  gap: 8px;
  max-width: 780px;
  margin-bottom: clamp(24px, 5vw, 46px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature,
.plant-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.74);
}

.feature {
  min-height: 250px;
  padding: clamp(22px, 4vw, 32px);
}

.feature-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--moss);
  color: var(--leaf-dark);
  font-weight: 900;
}

.feature p,
.plant-list p,
.split-section > p,
.purchase-section p,
.wide-copy {
  color: var(--muted);
  font-size: 1.04rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 7vw, 78px);
  align-items: start;
}

.plant-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.plant-list article {
  padding: 22px;
}

.muted {
  width: 100%;
  max-width: none;
  padding: clamp(52px, 8vw, 96px) max(16px, calc((100% - var(--max)) / 2));
  background: #eef3e7;
}

.muted .section-heading,
.muted .wide-copy {
  width: min(100%, var(--max));
  margin-left: auto;
  margin-right: auto;
}

.wide-copy {
  max-width: 820px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.science {
  align-items: center;
}

.science p:last-child {
  margin: 0;
  font-size: clamp(1.12rem, 2vw, 1.35rem);
}

.purchase-section {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(47, 107, 68, 0.22);
  border-radius: 8px;
  background: var(--leaf-dark);
  color: #fff;
}

.purchase-section > div {
  max-width: 720px;
}

.purchase-section .eyebrow,
.purchase-section p {
  color: #d9ebd2;
}

.purchase-section .app-store-button {
  flex: 0 0 auto;
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

.site-footer {
  justify-content: space-between;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer div {
  gap: 18px;
}

.legal-page {
  width: min(100% - 32px, 900px);
  min-height: calc(100svh - 180px);
  margin: 0 auto;
  padding: clamp(36px, 7vw, 86px) 0 clamp(52px, 8vw, 96px);
}

.legal-content {
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
}

.legal-content h1 {
  max-width: 760px;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
}

.legal-content h2 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
}

.legal-content p {
  color: var(--muted);
  font-size: 1.06rem;
}

.legal-content a {
  color: var(--leaf-dark);
  font-weight: 800;
}

.updated {
  margin-bottom: 34px;
}

.faq-list {
  display: grid;
  gap: 1px;
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.faq-list article {
  padding: 24px;
  background: var(--paper);
}

.faq-list p {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .phone-stage {
    width: min(100%, 330px);
  }

  .feature-grid,
  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .purchase-section {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
    gap: 14px;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding-top: 28px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.2rem);
  }

  .feature-grid,
  .plant-list,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip div,
  .feature,
  .plant-list article {
    padding: 20px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
