@font-face {
  font-family: "Quicksand";
  src: url("../fonts/Quicksand-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Quicksand";
  src: url("../fonts/Quicksand-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Quicksand";
  src: url("../fonts/Quicksand-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Quicksand";
  src: url("../fonts/Quicksand-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  --forest-950: #0c3522;
  --forest-900: #174f32;
  --forest-800: #226341;
  --mint-500: #5fbd8a;
  --mint-300: #a7ddbf;
  --mint-150: #d9f1e3;
  --mint-100: #eaf7ef;
  --cream-50: #fdfbf6;
  --cream-100: #f8f4eb;
  --cream-200: #efe8db;
  --ink: #173126;
  --muted: #5f7067;
  --border: #d9e2dc;
  --white: #ffffff;
  --shadow-soft: 0 18px 50px rgba(20, 64, 41, 0.09);
  --shadow-phone: 0 28px 65px rgba(13, 53, 34, 0.17);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--cream-50);
  color: var(--ink);
  font-family: "Quicksand", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--forest-900);
  text-underline-offset: 0.22em;
  text-decoration-thickness: 0.08em;
}

a:hover {
  color: var(--forest-800);
}

:focus-visible {
  outline: 3px solid var(--mint-500);
  outline-offset: 4px;
  border-radius: 4px;
}

h1,
h2,
h3 {
  margin: 0 0 0.45em;
  color: var(--forest-950);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.65rem, 6.4vw, 5.7rem);
}

h2 {
  font-size: clamp(2.1rem, 4.6vw, 4rem);
}

h3 {
  font-size: clamp(1.75rem, 3.2vw, 2.8rem);
}

p {
  margin: 0 0 1.15rem;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(76px, 10vw, 150px) 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--forest-950);
  color: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus {
  color: var(--white);
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(253, 251, 246, 0.94);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  border-color: var(--cream-200);
  box-shadow: 0 8px 28px rgba(20, 64, 41, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 78px;
  gap: 30px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 190px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: clamp(18px, 3vw, 38px);
}

.main-nav a,
.footer-links a {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.main-nav a:hover,
.footer-links a:hover {
  color: var(--forest-800);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.8rem 1.45rem;
  border: 1px solid var(--forest-900);
  border-radius: 999px;
  background: var(--forest-900);
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--forest-800);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(23, 79, 50, 0.18);
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 0.65rem 1rem;
  font-size: 0.84rem;
}

.button-secondary {
  background: transparent;
  color: var(--forest-900);
}

.button-secondary:hover {
  background: var(--forest-900);
}

.button-disabled {
  border-color: var(--border);
  background: var(--cream-100);
  color: var(--muted);
  cursor: default;
}

.button-disabled:hover {
  background: var(--cream-100);
  color: var(--muted);
  box-shadow: none;
  transform: none;
}

.hero {
  padding-top: clamp(72px, 9vw, 135px);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.74fr);
  align-items: center;
  min-height: 660px;
  gap: clamp(50px, 8vw, 115px);
}

.eyebrow {
  margin-bottom: 1.1rem;
  color: var(--forest-800);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.highlight {
  position: relative;
  display: inline;
  z-index: 0;
}

.highlight::after {
  position: absolute;
  z-index: -1;
  right: -0.04em;
  bottom: 0.04em;
  left: -0.04em;
  height: 0.17em;
  border-radius: 999px;
  background: var(--mint-500);
  content: "";
}

.lead {
  max-width: 670px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 2rem;
}

.availability {
  display: grid;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.availability strong {
  color: var(--forest-900);
}

.trust-note {
  margin-top: 1.3rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-visual,
.screenshot-stage {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-visual::before,
.screenshot-stage::before {
  position: absolute;
  inset: 9% 0 5%;
  border-radius: 46% 54% 48% 52%;
  background: var(--mint-150);
  content: "";
}

.phone-shot {
  position: relative;
  z-index: 2;
  width: min(100%, 326px);
  border: 9px solid var(--white);
  border-radius: 36px;
  box-shadow: var(--shadow-phone);
}

.phone-shot-main {
  width: min(100%, 350px);
  transform: rotate(1.5deg);
}

.hero-plant {
  position: absolute;
  z-index: 3;
  right: -75px;
  bottom: -42px;
  width: 210px;
  filter: drop-shadow(0 18px 18px rgba(24, 79, 51, 0.16));
}

.feature-strip {
  border-block: 1px solid var(--cream-200);
  background: var(--white);
}

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

.feature-strip-grid > div {
  display: grid;
  gap: 2px;
  padding: 24px clamp(10px, 2vw, 28px);
  border-right: 1px solid var(--cream-200);
  text-align: center;
}

.feature-strip-grid > div:last-child {
  border-right: 0;
}

.feature-strip-grid strong {
  color: var(--forest-900);
  font-size: 0.94rem;
}

.feature-strip-grid span {
  color: var(--muted);
  font-size: 0.78rem;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto clamp(56px, 7vw, 90px);
  text-align: center;
}

.section-heading p:last-child {
  color: var(--muted);
}

.editorial-row {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(60px, 10vw, 145px);
}

.editorial-row-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
}

.editorial-row-reverse .screenshot-stage {
  order: 2;
}

.screenshot-stage {
  min-height: 690px;
  align-items: center;
}

.screenshot-stage::before {
  inset: 12% 5% 8%;
  border-radius: var(--radius-lg);
  background: var(--cream-100);
}

.editorial-copy {
  max-width: 610px;
}

.editorial-copy > p:not(.eyebrow, .step-number) {
  color: var(--muted);
}

.step-number {
  display: inline-grid;
  width: 50px;
  height: 50px;
  margin-bottom: 1.6rem;
  place-items: center;
  border-radius: 50%;
  background: var(--mint-150);
  color: var(--forest-900);
  font-weight: 700;
}

.check-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 600;
}

.check-list li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--mint-500);
  content: "";
  transform: translateY(-50%);
}

.garden-section {
  background: var(--mint-100);
  overflow: hidden;
}

.garden-stage::before {
  background: rgba(255, 255, 255, 0.74);
}

.floating-sprout {
  position: absolute;
  z-index: 3;
  right: -48px;
  bottom: 35px;
  width: 175px;
  filter: drop-shadow(0 15px 18px rgba(24, 79, 51, 0.13));
}

.growth-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 2rem;
}

.growth-steps figure {
  margin: 0;
  padding: 14px 10px 12px;
  border: 1px solid rgba(23, 79, 50, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.75);
  text-align: center;
}

.growth-steps img {
  width: 100%;
  max-height: 105px;
  object-fit: contain;
}

.growth-steps figcaption {
  margin-top: 6px;
  color: var(--forest-900);
  font-size: 0.78rem;
  font-weight: 700;
}

.plus-section {
  background: var(--cream-100);
}

.plus-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  align-items: center;
  min-height: 700px;
  padding: clamp(34px, 6vw, 82px);
  gap: clamp(45px, 8vw, 105px);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.plus-copy > p:not(.eyebrow, .fine-print) {
  color: var(--muted);
}

.check-list.compact {
  gap: 0.7rem;
  font-size: 0.95rem;
}

.fine-print {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.plus-visual {
  display: flex;
  justify-content: center;
}

.plus-visual .phone-shot {
  width: min(100%, 290px);
}

.privacy-section {
  padding-bottom: 0;
}

.privacy-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: clamp(38px, 6vw, 72px);
  gap: 45px;
  border: 1px solid rgba(23, 79, 50, 0.12);
  border-radius: var(--radius-lg);
  background: var(--mint-100);
}

.privacy-card > div {
  max-width: 760px;
}

.privacy-card p:last-child {
  color: var(--muted);
}

.faq-container {
  max-width: 900px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: 0 8px 25px rgba(20, 64, 41, 0.04);
}

.faq-list summary {
  padding: 20px 58px 20px 22px;
  color: var(--forest-950);
  font-weight: 700;
  cursor: pointer;
}

.faq-list summary::marker {
  color: var(--mint-500);
}

.faq-list details[open] summary {
  color: var(--forest-800);
}

.faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.cta-section {
  padding-top: 0;
}

.cta-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 700px);
  justify-content: center;
  align-items: center;
  padding: clamp(38px, 6vw, 70px);
  gap: clamp(25px, 5vw, 65px);
  border-radius: var(--radius-lg);
  background: var(--forest-900);
  color: var(--white);
}

.cta-card img {
  filter: drop-shadow(0 16px 16px rgba(0, 0, 0, 0.18));
}

.cta-card h2,
.cta-card .eyebrow {
  color: var(--white);
}

.cta-card p {
  color: rgba(255, 255, 255, 0.78);
}

.cta-card .button-disabled {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.site-footer {
  padding: 70px 0 26px;
  border-top: 1px solid var(--cream-200);
  background: var(--cream-100);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
}

.footer-brand img {
  width: 185px;
}

.footer-brand p {
  max-width: 420px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.87rem;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--cream-200);
  color: var(--muted);
  font-size: 0.75rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

/* Privacy document */
.legal-page {
  background: var(--cream-50);
}

.legal-header {
  border-bottom-color: var(--cream-200);
}

.legal-main {
  padding: clamp(64px, 8vw, 110px) 0 120px;
}

.legal-hero {
  max-width: 860px;
  margin-bottom: 55px;
}

.legal-hero h1 {
  font-size: clamp(2.5rem, 5.4vw, 4.7rem);
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.88rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  align-items: start;
  gap: clamp(45px, 8vw, 100px);
}

.legal-toc {
  position: sticky;
  top: 105px;
  display: grid;
  gap: 8px;
  max-height: calc(100vh - 130px);
  overflow: auto;
}

.legal-toc strong {
  margin-bottom: 8px;
  color: var(--forest-900);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-toc a {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
}

.legal-toc a:hover {
  color: var(--forest-900);
}

.legal-document {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.legal-document > section {
  scroll-margin-top: 105px;
}

.legal-document > section + section {
  margin-top: 52px;
  padding-top: 48px;
  border-top: 1px solid var(--cream-200);
}

.legal-document h2 {
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.legal-document h3 {
  font-size: 1.08rem;
  line-height: 1.4;
  letter-spacing: 0;
}

.legal-document p,
.legal-document li {
  color: #3f5148;
  font-size: 0.96rem;
}

.legal-document ul,
.legal-document ol {
  padding-left: 1.3rem;
}

.legal-document li + li {
  margin-top: 0.35rem;
}

.legal-note {
  padding: 18px 20px;
  border-left: 4px solid var(--mint-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--mint-100);
}

/* Support and account resources */
.resource-page .legal-hero {
  max-width: 900px;
}

.resource-page .legal-hero > p:last-child {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
}

.resource-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: start;
  gap: clamp(30px, 6vw, 72px);
}

.resource-document {
  max-width: none;
}

.resource-document section:first-child h2 {
  margin-top: 0;
}

.resource-aside {
  position: sticky;
  top: 105px;
  display: grid;
  gap: 18px;
}

.resource-card,
.support-card {
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.resource-card {
  padding: 24px;
}

.resource-card h2 {
  margin-bottom: 0.65rem;
  font-size: 1.15rem;
}

.resource-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.resource-links {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.resource-links a {
  font-weight: 700;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.support-card {
  padding: 24px;
}

.support-card h3 {
  margin-bottom: 0.6rem;
  color: var(--forest-900);
  font-size: 1.05rem;
}

.support-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.caution-note {
  padding: 20px 22px;
  border: 1px solid #e7cf8a;
  border-radius: var(--radius-sm);
  background: #fff8df;
  color: #4f4322;
}

.caution-note strong {
  color: var(--forest-950);
}

@media (max-width: 920px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
    padding-block: 14px;
    gap: 12px 20px;
  }

  .main-nav {
    order: 3;
    flex: 0 0 100%;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 4px 0 2px;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    white-space: nowrap;
  }

  .hero-grid,
  .editorial-row,
  .editorial-row-reverse,
  .plus-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .lead {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    max-width: 460px;
    margin-inline: auto;
  }

  .editorial-row-reverse .screenshot-stage {
    order: 0;
  }

  .screenshot-stage {
    min-height: 620px;
  }

  .editorial-copy {
    max-width: 680px;
    margin-inline: auto;
  }

  .plus-card {
    text-align: left;
  }

  .plus-visual {
    order: -1;
  }

  .privacy-card {
    grid-template-columns: 1fr;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .resource-layout {
    grid-template-columns: 1fr;
  }

  .resource-aside {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-toc {
    position: static;
    grid-template-columns: repeat(2, 1fr);
    max-height: none;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
  }

  .legal-toc strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner > .button {
    display: none;
  }

  .brand img {
    width: 160px;
  }

  .main-nav {
    gap: 18px;
  }

  .hero {
    padding-top: 55px;
  }

  .hero-grid {
    gap: 55px;
  }

  .phone-shot-main,
  .phone-shot {
    width: min(82vw, 310px);
    border-width: 7px;
    border-radius: 30px;
  }

  .hero-plant {
    right: -5px;
    bottom: -25px;
    width: 140px;
  }

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

  .feature-strip-grid > div:nth-child(2) {
    border-right: 0;
  }

  .feature-strip-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--cream-200);
  }

  .screenshot-stage {
    min-height: 560px;
  }

  .floating-sprout {
    right: -10px;
    width: 125px;
  }

  .growth-steps {
    gap: 8px;
  }

  .growth-steps figure {
    padding-inline: 5px;
  }

  .plus-card,
  .privacy-card,
  .cta-card {
    border-radius: var(--radius-md);
  }

  .cta-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-card img {
    width: 145px;
    margin-inline: auto;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 7px;
  }

  .legal-toc {
    grid-template-columns: 1fr;
  }

  .legal-document {
    padding: 24px 20px;
  }

  .support-grid,
  .resource-aside {
    grid-template-columns: 1fr;
  }

  .page-actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
