:root {
  --ink: #11251b;
  --forest: #173d2a;
  --forest-deep: #0d2d1e;
  --leaf: #5f8f55;
  --leaf-bright: #8aae69;
  --cream: #f4f0e4;
  --paper: #fbfaf5;
  --sand: #ded5c1;
  --sun: #dfa13b;
  --rust: #b85c37;
  --muted: #607065;
  --white: #fffef8;
  --line: rgba(17, 37, 27, 0.13);
  --shadow: 0 24px 80px rgba(14, 38, 25, 0.16);
  --radius-lg: 36px;
  --radius-md: 24px;
  --shell: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-rounded, "SF Pro Rounded", "Avenir Next", Avenir, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h1 {
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(4rem, 7.5vw, 7.5rem);
  font-weight: 650;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5.3vw, 5.4rem);
  font-weight: 650;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  font-weight: 650;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  padding: 20px 0;
  color: var(--white);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.22rem;
  font-weight: 750;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.brand img {
  border-radius: 12px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.18);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.91rem;
  font-weight: 650;
}

.primary-nav a {
  text-decoration: none;
}

.primary-nav a:not(.nav-cta) {
  opacity: 0.76;
  transition: opacity 160ms ease;
}

.primary-nav a:not(.nav-cta):hover {
  opacity: 1;
}

.nav-cta {
  padding: 10px 17px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  padding: 170px 0 115px;
  color: var(--white);
  background:
    radial-gradient(circle at 74% 42%, rgba(122, 163, 87, 0.25), transparent 32%),
    linear-gradient(135deg, var(--forest-deep), #1b4a32 58%, #244f35);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero-glow {
  position: absolute;
  border: 1px solid rgba(173, 196, 119, 0.16);
  border-radius: 48% 52% 55% 45%;
  pointer-events: none;
}

.hero-glow-one {
  top: 210px;
  right: -180px;
  width: 650px;
  height: 650px;
  transform: rotate(24deg);
}

.hero-glow-two {
  top: 300px;
  right: -60px;
  width: 440px;
  height: 440px;
  transform: rotate(-8deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  align-items: center;
  gap: 60px;
}

.hero-copy {
  padding-bottom: 25px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: #c9d9ad;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 30px;
  height: 1px;
  background: currentColor;
}

.eyebrow-dark {
  color: var(--leaf);
}

.eyebrow-light {
  color: #c7daa7;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 205px;
  padding: 11px 18px 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.store-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.23);
}

.store-button img {
  border-radius: 10px;
}

.store-button span {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.store-button small {
  margin-bottom: 3px;
  color: #5b655e;
  font-size: 0.65rem;
}

.store-button strong {
  font-size: 1.15rem;
  letter-spacing: -0.025em;
}

.text-link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
}

.text-link span {
  margin-left: 4px;
  color: #c9d9ad;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  margin: 28px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  list-style: none;
}

.hero-notes li::before {
  margin-right: 8px;
  color: var(--leaf-bright);
  content: "✓";
}

.hero-preview {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
}

.hero-preview::before {
  position: absolute;
  width: min(560px, 100%);
  aspect-ratio: 1;
  border: 1px solid rgba(196, 218, 155, 0.14);
  border-radius: 50%;
  content: "";
}

.hero-image {
  position: relative;
  z-index: 1;
  width: min(390px, 100%);
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 65px rgba(0, 0, 0, 0.34);
}

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

.proof-strip {
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

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

.proof-grid p {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 9px;
  margin: 0;
  padding: 27px 15px;
  border-right: 1px solid var(--line);
}

.proof-grid p:first-child {
  border-left: 1px solid var(--line);
}

.proof-grid strong {
  color: var(--forest);
  font-size: 1.42rem;
  letter-spacing: -0.05em;
}

.proof-grid span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 650;
}

.section {
  padding: 130px 0;
}

.features {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(270px, 0.6fr);
  column-gap: 55px;
  align-items: end;
  margin-bottom: 70px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p:last-child {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 1.02rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--cream);
}

.feature-card-wide {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 60px 1fr minmax(280px, 0.7fr);
  align-items: center;
  gap: 28px;
  min-height: 340px;
}

.feature-card:not(.feature-card-wide) {
  padding-top: 36px;
}

.feature-number {
  color: var(--leaf);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.feature-card:not(.feature-card-wide) .feature-number {
  margin-bottom: 70px;
}

.feature-kicker {
  margin-bottom: 8px;
  color: var(--leaf);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-card p:not(.feature-kicker) {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
}

.scale-graphic {
  position: relative;
  height: 150px;
}

.scale-line {
  position: absolute;
  top: 74px;
  right: 5%;
  left: 5%;
  height: 2px;
  background: var(--leaf);
}

.scale-dot {
  position: absolute;
  top: 64px;
  width: 22px;
  height: 22px;
  border: 5px solid var(--cream);
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 1px rgba(23, 61, 42, 0.24);
}

.scale-dot-one { left: 5%; }
.scale-dot-two { right: 5%; }

.scale-copy {
  position: absolute;
  top: 88px;
  left: 50%;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 800;
  transform: translateX(-50%);
}

.growth-rings {
  position: absolute;
  right: 24px;
  bottom: 18px;
  width: 190px;
  height: 190px;
}

.growth-rings span {
  position: absolute;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(95, 143, 85, 0.36);
  border-radius: 50%;
}

.growth-rings span:nth-child(1) { width: 70px; height: 70px; background: rgba(95, 143, 85, 0.18); }
.growth-rings span:nth-child(2) { width: 125px; height: 125px; }
.growth-rings span:nth-child(3) { width: 190px; height: 190px; border-style: dashed; }

.feature-card-sun {
  color: var(--white);
  border-color: transparent;
  background: var(--forest);
}

.feature-card-sun .feature-number,
.feature-card-sun .feature-kicker {
  color: #d5b15c;
}

.feature-card-sun p:not(.feature-kicker) {
  color: rgba(255, 255, 255, 0.66);
}

.sun-graphic {
  position: relative;
  width: min(15rem, 100%);
  aspect-ratio: 15 / 8;
  overflow: hidden;
  margin: 2rem 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 1.25rem;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    rgba(255, 255, 255, 0.035);
  background-size: 24px 24px;
}

.sun-core {
  position: absolute;
  z-index: 3;
  top: 6%;
  right: 9%;
  color: #f2b744;
  font-family: Georgia, serif;
  font-size: 2.5rem;
  line-height: 1;
  text-shadow: 0 0 20px rgba(223, 161, 59, 0.25);
}

.sun-path {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 70%;
  height: 52%;
  border-top: 1px dashed rgba(242, 183, 68, 0.65);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.sun-shadow {
  position: absolute;
  z-index: 1;
  right: 37%;
  bottom: 10%;
  width: 46%;
  height: 22%;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.38));
  filter: blur(4px);
  transform: rotate(-13deg);
  transform-origin: right center;
}

.shade-canopy {
  position: absolute;
  z-index: 2;
  right: 21%;
  bottom: 14%;
  width: 24%;
  max-width: 3.6rem;
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 30%, #a8c273 0 7%, transparent 8%),
    radial-gradient(circle at 66% 31%, #9bb86a 0 8%, transparent 9%),
    radial-gradient(circle at 39% 68%, #779d59 0 9%, transparent 10%),
    radial-gradient(circle at 69% 67%, #6f9252 0 8%, transparent 9%),
    #527b49;
  box-shadow: 0 7px 15px rgba(0, 0, 0, 0.25);
}

.shade-canopy i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.north-marker,
.sun-time {
  position: absolute;
  z-index: 4;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.62rem;
  font-weight: 780;
  letter-spacing: 0.08em;
}

.north-marker {
  top: 8%;
  left: 6%;
}

.sun-time {
  right: 5%;
  bottom: 5%;
  padding: 0.25rem 0.45rem;
  border-radius: 100px;
  color: #f6d698;
  background: rgba(13, 45, 30, 0.8);
  letter-spacing: 0;
}

.seasonal-card {
  color: var(--white);
  border-color: transparent;
  background: #6c4937;
}

.seasonal-card .feature-number,
.seasonal-card .feature-kicker {
  color: #efc88f;
}

.seasonal-card p:not(.feature-kicker) {
  color: rgba(255, 255, 255, 0.68);
}

.season-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.season-row span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
}

.season-swatch {
  width: 28px;
  height: 28px;
  border: 4px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.spring { background: #b5c887; }
.summer { background: #4e8250; }
.fall { background: #cf793b; }
.winter { background: #d4cab9; }

.how-it-works {
  color: var(--white);
  background: #d9a64b;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr);
  gap: 100px;
  align-items: start;
}

.how-it-works .eyebrow {
  color: rgba(23, 61, 42, 0.74);
}

.how-it-works h2 {
  color: var(--forest-deep);
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(23, 61, 42, 0.22);
}

.steps li:first-child {
  padding-top: 0;
}

.steps > li > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(23, 61, 42, 0.32);
  border-radius: 50%;
  color: var(--forest-deep);
  font-size: 0.8rem;
  font-weight: 800;
}

.steps h3 {
  margin-bottom: 7px;
  color: var(--forest-deep);
  font-size: 1.45rem;
}

.steps p {
  margin-bottom: 0;
  color: rgba(23, 61, 42, 0.74);
}

.privacy-section {
  background: var(--paper);
}

.privacy-card {
  display: grid;
  grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1.35fr);
  align-items: center;
  gap: 70px;
  overflow: hidden;
  padding: 70px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 15% 50%, rgba(142, 176, 108, 0.22), transparent 31%),
    var(--forest-deep);
  box-shadow: var(--shadow);
}

.privacy-mark {
  display: grid;
  min-height: 290px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 66%);
}

.privacy-mark img {
  border-radius: 24px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.32);
}

.privacy-copy h2 {
  font-size: clamp(2.6rem, 4.6vw, 4.7rem);
}

.privacy-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.privacy-copy ul {
  display: grid;
  gap: 11px;
  margin: 27px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  list-style: none;
}

.privacy-copy li::before {
  margin-right: 10px;
  color: #b7ce8c;
  content: "✓";
}

.faq-section {
  padding-top: 40px;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
  gap: 90px;
}

.compact-heading {
  display: block;
  margin: 0;
}

.compact-heading h2 {
  font-size: clamp(2.7rem, 4.5vw, 4.6rem);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 50px 24px 0;
  cursor: pointer;
  color: var(--forest-deep);
  font-size: 1.06rem;
  font-weight: 720;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 19px;
  right: 0;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--forest);
  background: var(--cream);
  content: "+";
  font-size: 1.25rem;
  transition: transform 160ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 610px;
  padding: 0 45px 22px 0;
  color: var(--muted);
}

.download-section {
  padding: 20px 0 110px;
}

.download-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
  padding: 70px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--forest);
}

.download-card h2 {
  margin-bottom: 0;
  font-size: clamp(2.7rem, 4.8vw, 5rem);
}

.download-action {
  display: grid;
  justify-items: start;
  gap: 14px;
}

.download-action p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
}

.store-button-light {
  border-color: rgba(255, 255, 255, 0.16);
}

.site-footer {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.brand-footer {
  color: var(--forest);
  font-size: 1rem;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
}

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

@media (max-width: 1050px) {
  .hero {
    min-height: auto;
    padding-bottom: 90px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-copy {
    max-width: 790px;
  }

  .hero-preview {
    width: min(620px, 100%);
    margin-inline: auto;
  }

  .section-heading,
  .split-heading,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-heading > p:last-child {
    max-width: 640px;
  }

  .privacy-card {
    grid-template-columns: 250px 1fr;
    padding: 55px;
  }

  .privacy-mark {
    min-height: 250px;
  }

  .download-card {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 30px, 620px);
    --radius-lg: 26px;
  }

  body {
    font-size: 16px;
  }

  .site-header {
    padding: 15px 0;
  }

  .brand span {
    font-size: 1.02rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .primary-nav {
    gap: 9px;
  }

  .primary-nav > a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    padding: 8px 13px;
    font-size: 0.78rem;
  }

  .hero {
    padding: 125px 0 78px;
  }

  h1 {
    font-size: clamp(3.3rem, 17vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-notes {
    display: grid;
    gap: 7px;
  }

  .hero-preview {
    min-height: auto;
    padding-block: 20px;
  }

  .hero-image {
    width: min(340px, 84vw);
  }

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

  .proof-grid p {
    border-bottom: 1px solid var(--line);
  }

  .proof-grid p:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  .proof-grid span {
    font-size: 0.68rem;
  }

  .section {
    padding: 90px 0;
  }

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

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

  .feature-card,
  .feature-card-wide {
    display: block;
    grid-column: auto;
    min-height: 410px;
    padding: 30px;
  }

  .feature-card-wide .feature-number {
    margin-bottom: 70px;
  }

  .scale-graphic {
    position: absolute;
    right: 20px;
    bottom: 18px;
    width: 230px;
  }

  .season-row {
    position: absolute;
    right: 30px;
    bottom: 30px;
    left: 30px;
  }

  .privacy-card {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 30px;
  }

  .privacy-mark {
    min-height: 200px;
  }

  .privacy-copy h2 {
    font-size: 2.8rem;
  }

  .faq-section {
    padding-top: 10px;
  }

  .download-section {
    padding-top: 0;
    padding-bottom: 75px;
  }

  .download-card {
    gap: 38px;
    padding: 38px 28px;
  }

  .download-action {
    width: 100%;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 430px) {
  .season-row {
    grid-template-columns: 1fr 1fr;
  }
}

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

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