:root {
  color-scheme: light;
  --forest-950: #08271d;
  --forest-900: #103b2e;
  --forest-800: #174c39;
  --forest-700: #2f7651;
  --sage-500: #83b98b;
  --sage-300: #b9d994;
  --sage-100: #e7efe3;
  --cream-50: #fffaf2;
  --cream-100: #f7efe3;
  --cream-200: #ede1d1;
  --ink: #29231f;
  --muted: #6f665f;
  --sun: #e9bd42;
  --terracotta: #b9633d;
  --line: rgba(41, 35, 31, 0.14);
  --shadow: 0 18px 50px rgba(32, 39, 31, 0.12);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream-50);
  color: var(--ink);
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  left: 16px;
  top: 12px;
  transform: translateY(-150%);
  background: var(--cream-50);
  color: var(--forest-900);
  padding: 10px 14px;
  border-radius: 6px;
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 250, 242, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  width: min(calc(100% - 40px), var(--container));
  height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  width: 220px;
}

.site-nav,
.footer-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav__link,
.footer-nav a {
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav__link:hover,
.site-nav__link.is-active,
.footer-nav a:hover {
  color: var(--forest-700);
}

.site-nav__link.is-active {
  text-decoration: underline;
  text-decoration-color: var(--sun);
  text-decoration-thickness: 3px;
  text-underline-offset: 7px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--forest-900);
}

.mobile-nav {
  padding: 8px 20px 18px;
  border-top: 1px solid var(--line);
}

.mobile-nav .site-nav__link {
  display: block;
  padding: 12px 4px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--forest-700);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.eyebrow--light {
  color: var(--sage-300);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.7rem);
  font-weight: 820;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.15rem, 4.6vw, 4.4rem);
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.lede {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.65;
}

.hero {
  position: relative;
  min-height: min(790px, calc(100svh - 34px));
  overflow: hidden;
  background: var(--forest-950);
  color: var(--cream-50);
}

.hero__inner {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: center;
  padding: 76px 0 96px;
}

.hero__copy {
  width: min(58%, 680px);
}

.hero__wordmark {
  width: min(520px, 72vw);
  margin-bottom: 44px;
}

.hero h1 {
  font-size: clamp(3.5rem, 6.8vw, 6.8rem);
}

.hero .lede {
  color: rgba(255, 250, 242, 0.82);
}

.hero__product {
  position: absolute;
  z-index: 1;
  width: min(43vw, 520px);
  right: max(2vw, calc((100vw - var(--container)) / 2));
  top: 42px;
  box-shadow: var(--shadow);
  border-radius: 8px 8px 0 0;
}

.hero__flower {
  position: absolute;
  z-index: 0;
  width: 440px;
  left: -140px;
  bottom: -150px;
  opacity: 0.16;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--sage-300);
  color: var(--forest-950);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #c8e5a7;
}

.button--quiet {
  background: transparent;
  color: var(--cream-50);
  border-color: rgba(255, 250, 242, 0.36);
}

.button--quiet:hover {
  background: rgba(255, 250, 242, 0.08);
}

.trust-strip {
  background: var(--sun);
  color: var(--forest-950);
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-strip p {
  margin: 0;
  padding: 21px 18px;
  border-right: 1px solid rgba(8, 39, 29, 0.18);
  text-align: center;
  font-size: 0.92rem;
  font-weight: 800;
}

.trust-strip p:last-child {
  border-right: 0;
}

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

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

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

.section--dark {
  position: relative;
  overflow: hidden;
  background: var(--forest-950);
  color: var(--cream-50);
}

.section--dark .lede,
.section--dark .body-copy {
  color: rgba(255, 250, 242, 0.76);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 54px;
}

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

.step {
  border-top: 3px solid var(--forest-700);
  padding-top: 24px;
}

.step__number {
  color: var(--terracotta);
  font-size: 0.85rem;
  font-weight: 900;
}

.step p,
.body-copy {
  color: var(--muted);
  line-height: 1.65;
}

.support-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.support-band__image {
  width: auto;
  height: auto;
  max-height: 740px;
  justify-self: center;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.plain-list {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}

.plain-list li {
  position: relative;
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid rgba(255, 250, 242, 0.14);
  font-weight: 700;
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 21px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sun);
}

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

.gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream-50);
  box-shadow: var(--shadow);
}

.gallery img {
  width: 100%;
}

.gallery figcaption {
  padding: 18px 20px 20px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.focus-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.focus-item,
.price-card,
.support-contact {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream-50);
}

.focus-item {
  padding: 26px;
}

.focus-item strong {
  color: var(--forest-700);
}

.focus-item p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.price-card {
  padding: clamp(28px, 5vw, 50px);
}

.price-card--featured {
  border: 2px solid var(--forest-700);
}

.price-card__price {
  margin-bottom: 20px;
  color: var(--forest-900);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 850;
}

.price-card__price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

.price-card__note {
  max-width: 470px;
  margin: -4px 0 24px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.price-card ul {
  margin: 24px 0 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.8;
}

.safety-note {
  border-left: 5px solid var(--sun);
  padding: 22px 26px;
  background: rgba(233, 189, 66, 0.15);
}

.safety-note p:last-child {
  margin-bottom: 0;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 12vw, 150px) 0;
  background: var(--forest-800);
  color: var(--cream-50);
  text-align: center;
}

.final-cta h2,
.final-cta .lede {
  margin-left: auto;
  margin-right: auto;
}

.final-cta .lede {
  color: rgba(255, 250, 242, 0.78);
}

.final-cta__flower {
  position: absolute;
  width: 420px;
  right: -130px;
  bottom: -180px;
  opacity: 0.24;
}

.legal-hero {
  padding: clamp(66px, 9vw, 112px) 0 54px;
  background: var(--cream-100);
}

.legal-hero h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.legal-meta {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.legal-content {
  max-width: 850px;
  padding: 70px 0 110px;
}

.legal-section {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.legal-section:first-child {
  padding-top: 0;
}

.legal-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.legal-section p,
.legal-section li {
  color: var(--muted);
  line-height: 1.72;
}

.legal-section li + li {
  margin-top: 8px;
}

.support-contact {
  margin-top: 32px;
  padding: 30px;
}

.reveal-button,
.revealed-email {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  padding: 13px 20px;
  background: var(--forest-800);
  color: var(--cream-50);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.reveal-button:hover,
.revealed-email:hover {
  background: var(--forest-700);
}

.support-faq {
  margin-top: 56px;
}

details {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  color: var(--forest-900);
  font-size: 1.1rem;
  font-weight: 800;
}

details p {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.site-footer {
  padding: 68px 0;
  background: var(--forest-950);
  color: rgba(255, 250, 242, 0.72);
}

.site-footer__inner {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 42px;
}

.site-footer__wordmark {
  width: 240px;
  margin-bottom: 20px;
}

.site-footer p {
  max-width: 540px;
  line-height: 1.6;
}

.site-footer .footer-nav {
  justify-content: flex-end;
}

.site-footer .footer-nav a {
  color: rgba(255, 250, 242, 0.76);
}

.site-footer__legal {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 250, 242, 0.14);
  font-size: 0.84rem;
}

:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 4px;
}

@media (max-width: 860px) {
  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    min-height: min(760px, calc(100svh - 20px));
  }

  .hero__copy {
    width: 72%;
  }

  .hero__product {
    right: -110px;
    width: 430px;
    opacity: 0.44;
  }

  .steps,
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery {
    max-width: 520px;
    margin: 0 auto;
  }

  .support-band {
    grid-template-columns: 1fr;
  }

  .support-band__image {
    width: min(100%, 430px);
  }
}

@media (max-width: 640px) {
  .site-header__inner {
    width: min(calc(100% - 28px), var(--container));
    height: 66px;
  }

  .site-brand {
    width: 182px;
  }

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

  .hero {
    min-height: calc(100svh - 92px);
  }

  .hero__inner {
    align-items: flex-start;
    padding: 44px 0 28px;
  }

  .hero__copy {
    width: 100%;
  }

  .hero__wordmark {
    width: 300px;
    margin-bottom: 34px;
  }

  .hero h1 {
    max-width: 540px;
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .hero .lede {
    max-width: 92%;
  }

  .hero__product {
    width: 370px;
    right: -142px;
    top: 170px;
    opacity: 0.12;
  }

  .hero__copy {
    position: relative;
    z-index: 2;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .trust-strip p:nth-child(2) {
    border-right: 0;
  }

  .trust-strip p:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(8, 39, 29, 0.18);
  }

  .steps,
  .focus-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer .footer-nav {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
  }

  .site-footer__legal {
    grid-column: auto;
  }
}

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

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