:root {
  --cream: #fbf8ec;
  --mist: #f5faef;
  --sage: #769e61;
  --forest: #193c33;
  --forest-soft: rgba(25, 60, 51, 0.68);
  --gold: #f5cc5f;
  --peach: #f7dbcd;
  --lavender: #a694df;
  --rust: #b84c3a;
  --white: rgba(255, 255, 255, 0.82);
  --line: rgba(25, 60, 51, 0.12);
  --shadow: 0 24px 70px rgba(43, 64, 37, 0.14);
  --shadow-soft: 0 14px 38px rgba(43, 64, 37, 0.1);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --max-width: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--forest);
  background:
    linear-gradient(135deg, rgba(245, 250, 239, 0.92), rgba(251, 248, 236, 0.98) 42%, rgba(247, 219, 205, 0.5)),
    var(--cream);
  font-family: var(--sans);
  letter-spacing: 0;
  min-width: 320px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(25, 60, 51, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 60, 51, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 64%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

p {
  color: var(--forest-soft);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.75;
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--forest);
  margin: 0;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 700;
}

h1 {
  font-size: clamp(3.2rem, 6vw, 5.7rem);
  line-height: 0.94;
  max-width: 800px;
}

h2 {
  font-size: clamp(2.15rem, 4.5vw, 4.5rem);
  line-height: 1.02;
}

h3 {
  font-size: 1.28rem;
  line-height: 1.2;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--forest);
  color: var(--cream);
  padding: 10px 14px;
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 16px 20px 8px;
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 12px 32px rgba(43, 64, 37, 0.08);
  padding: 9px 10px 9px 15px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 700;
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 5px 9px rgba(25, 60, 51, 0.12));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(25, 60, 51, 0.72);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  border-radius: 999px;
  padding: 10px 14px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(118, 158, 97, 0.12);
  color: var(--forest);
  transform: translateY(-1px);
}

.nav-links .nav-cta {
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 10px 22px rgba(25, 60, 51, 0.16);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(25, 60, 51, 0.08);
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 4px;
  background: var(--forest);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.section-pad {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0;
}

.hero {
  min-height: calc(100svh - 124px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.78fr);
  align-items: center;
  gap: clamp(36px, 6vw, 88px);
  padding-top: 22px;
  padding-bottom: 12px;
}

.eyebrow,
.section-kicker {
  color: rgba(25, 60, 51, 0.56);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.hero-subtitle {
  margin-top: 24px;
  max-width: 690px;
  font-size: clamp(1.08rem, 2vw, 1.38rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  border-radius: 18px;
  background: var(--forest);
  color: var(--cream);
  padding: 12px 20px 12px 16px;
  box-shadow: 0 18px 36px rgba(25, 60, 51, 0.22);
  font-size: 1.12rem;
  font-weight: 850;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.store-button small {
  display: block;
  color: rgba(251, 248, 236, 0.72);
  font-size: 0.72rem;
  font-weight: 750;
  margin-bottom: 4px;
}

.store-icon {
  width: 31px;
  height: 36px;
  position: relative;
}

.store-icon::before {
  content: "";
  position: absolute;
  inset: 4px 8px 0;
  border-radius: 16px 16px 12px 12px;
  background: linear-gradient(145deg, var(--cream), #ffffff);
}

.store-icon::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 0;
  width: 13px;
  height: 14px;
  border-radius: 10px 0 10px 0;
  background: var(--cream);
  transform: rotate(-18deg);
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  border-radius: 999px;
  color: var(--forest);
  font-weight: 850;
  padding: 0 4px;
  transition: color 180ms ease, transform 180ms ease;
}

.text-button::after {
  content: "";
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 45%, var(--forest) 46% 54%, transparent 55%),
    linear-gradient(45deg, transparent 49%, var(--forest) 50% 56%, transparent 57%);
  background-color: rgba(118, 158, 97, 0.14);
}

.store-button:hover,
.store-button:focus-visible,
.text-button:hover,
.text-button:focus-visible {
  transform: translateY(-2px);
}

.store-button:hover,
.store-button:focus-visible {
  background: #123029;
  box-shadow: 0 22px 46px rgba(25, 60, 51, 0.26);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-notes span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  color: rgba(25, 60, 51, 0.7);
  font-size: 0.88rem;
  font-weight: 750;
  padding: 8px 12px;
}

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

.ambient-panel {
  position: absolute;
  width: min(92%, 440px);
  aspect-ratio: 0.76;
  border-radius: 52px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.78), rgba(245, 204, 95, 0.2)),
    linear-gradient(25deg, rgba(166, 148, 223, 0.2), rgba(118, 158, 97, 0.18));
  box-shadow: var(--shadow);
  transform: rotate(-4deg);
}

.phone-shell {
  position: relative;
  z-index: 2;
  width: min(86vw, 302px);
  height: 560px;
  border: 10px solid #172f29;
  border-radius: 48px;
  background: linear-gradient(145deg, #fbf8ec, #f5faef);
  box-shadow: 0 26px 70px rgba(25, 60, 51, 0.28);
  overflow: hidden;
}

.phone-shell::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 88px;
  height: 24px;
  border-radius: 999px;
  background: #172f29;
  transform: translateX(-50%);
  z-index: 3;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px 2px;
  color: rgba(25, 60, 51, 0.72);
  font-size: 0.76rem;
  font-weight: 850;
}

.phone-content {
  padding: 18px 18px 20px;
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 700;
}

.mini-brand img {
  width: 38px;
  height: 42px;
  object-fit: contain;
}

.adaptive-line {
  margin-top: 18px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.04;
}

.produce-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 206px;
  margin-top: 14px;
}

.produce-stage::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 204, 95, 0.32), rgba(245, 204, 95, 0));
}

.produce-stage img {
  position: relative;
  width: 170px;
  height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 22px 24px rgba(25, 60, 51, 0.12));
  animation: floatProduce 5.5s ease-in-out infinite;
}

.clarity-card {
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  padding: 14px;
  box-shadow: 0 14px 30px rgba(43, 64, 37, 0.1);
}

.clarity-card > div:first-child {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.metric-label {
  color: rgba(25, 60, 51, 0.58);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.clarity-card strong {
  font-family: var(--serif);
  font-size: 2rem;
}

.progress-track {
  height: 12px;
  border-radius: 999px;
  background: rgba(25, 60, 51, 0.09);
  overflow: hidden;
  margin: 14px 0 12px;
}

.progress-track span {
  display: block;
  width: 82%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--sage), var(--gold), var(--peach));
}

.clarity-card p {
  font-size: 0.86rem;
  line-height: 1.5;
}

.floating-ticket {
  position: absolute;
  z-index: 1;
  width: 220px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
  padding: 16px;
}

.floating-ticket strong {
  display: block;
  margin-bottom: 5px;
}

.floating-ticket span {
  display: block;
  color: var(--forest-soft);
  font-size: 0.9rem;
  line-height: 1.4;
}

.ticket-one {
  top: 118px;
  left: -12px;
}

.ticket-two {
  right: -8px;
  bottom: 76px;
}

.intro-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: 44px;
  align-items: end;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading p:last-child {
  margin-top: 16px;
}

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

.feature-card,
.deep-feature,
.legal-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-soft);
}

.feature-card {
  padding: 26px;
  min-height: 310px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(245, 204, 95, 0.24);
  color: #7d6420;
  font-weight: 900;
  margin-bottom: 48px;
}

.feature-card p,
.deep-feature p {
  margin-top: 14px;
}

.metaphor-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  align-items: center;
  gap: 46px;
}

.metaphor-copy p:not(.eyebrow) {
  margin: 20px 0 24px;
}

.produce-evolution {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.produce-evolution figure {
  margin: 0;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(247, 219, 205, 0.32)),
    rgba(255, 255, 255, 0.38);
  box-shadow: var(--shadow-soft);
  padding: 24px 14px;
}

.produce-evolution img {
  width: 100%;
  max-width: 152px;
  height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(25, 60, 51, 0.12));
}

.produce-evolution figcaption {
  margin-top: 12px;
  color: rgba(25, 60, 51, 0.68);
  font-weight: 850;
}

.product-row {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.app-preview {
  display: grid;
  place-items: center;
}

.app-preview img {
  width: min(100%, 360px);
  border: 10px solid #172f29;
  border-radius: 46px;
  box-shadow: 0 28px 76px rgba(25, 60, 51, 0.22);
}

.content-stack p:not(.eyebrow) {
  margin-top: 20px;
}

.insight-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.insight-list div,
.notification-stack div {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.5);
  padding: 16px 18px;
}

.insight-list strong,
.notification-stack strong {
  display: block;
  margin-bottom: 5px;
}

.insight-list span,
.notification-stack span {
  color: var(--forest-soft);
  line-height: 1.55;
}

.garden-section {
  width: min(1280px, calc(100% - 40px));
}

.journey-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.56fr) minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
}

.garden-frame {
  max-height: 620px;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.garden-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.produce-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.path-item {
  display: grid;
  place-items: center;
  min-height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.path-item img {
  width: 120px;
  height: 128px;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(25, 60, 51, 0.12));
}

.path-item span {
  color: var(--forest-soft);
  font-weight: 850;
}

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

.deep-feature {
  min-height: 440px;
  padding: clamp(28px, 5vw, 48px);
}

.notification-stack {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.privacy-feature {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(166, 148, 223, 0.14)),
    rgba(255, 255, 255, 0.52);
}

.privacy-feature .text-button {
  margin-top: 24px;
}

.final-cta {
  width: min(980px, calc(100% - 40px));
  text-align: center;
  padding-top: 92px;
}

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

.final-cta p {
  max-width: 620px;
  margin: 18px auto 0;
}

.cta-logo {
  width: 84px;
  height: 96px;
  object-fit: contain;
  margin: 0 auto 22px;
  filter: drop-shadow(0 18px 22px rgba(25, 60, 51, 0.14));
}

.site-footer {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
  padding: 36px 0 48px;
}

.site-footer p {
  max-width: 460px;
  font-size: 0.96rem;
  margin-top: 10px;
}

.footer-brand {
  width: fit-content;
}

.footer-links {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  color: rgba(25, 60, 51, 0.68);
  font-weight: 760;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.legal-card a:hover,
.legal-card a:focus-visible {
  color: var(--forest);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.legal-shell {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0 92px;
}

.legal-hero {
  margin-bottom: 26px;
}

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

.legal-card {
  padding: clamp(26px, 5vw, 54px);
}

.legal-card h2 {
  font-family: var(--sans);
  font-size: clamp(1.28rem, 2.4vw, 1.65rem);
  line-height: 1.2;
  margin-top: 36px;
}

.legal-card h2:first-of-type {
  margin-top: 28px;
}

.legal-card p {
  font-size: 1rem;
  line-height: 1.78;
  margin-top: 12px;
}

.legal-card a {
  color: var(--forest);
  font-weight: 850;
}

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

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

@keyframes floatProduce {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

@media (max-width: 980px) {
  .hero,
  .intro-grid,
  .metaphor-section,
  .product-row,
  .journey-layout,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-visual {
    min-height: 620px;
  }

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

  .feature-card {
    min-height: auto;
  }

  .step-number {
    margin-bottom: 28px;
  }

  .produce-evolution {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-layout {
    align-items: start;
  }

  .garden-frame {
    max-height: 520px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding-inline: 14px;
  }

  .nav-shell {
    position: relative;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
    padding: 10px;
  }

  .nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 13px 14px;
  }

  .section-pad,
  .garden-section,
  .final-cta,
  .site-footer,
  .legal-shell {
    width: min(100% - 28px, var(--max-width));
  }

  .section-pad {
    padding: 76px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
    gap: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .store-button {
    justify-content: center;
    width: 100%;
  }

  .text-button {
    justify-content: center;
  }

  .hero-visual {
    min-height: 520px;
  }

  .phone-shell {
    width: min(100%, 320px);
    height: 560px;
    min-height: 0;
    border-radius: 42px;
  }

  .produce-stage {
    min-height: 220px;
  }

  .produce-stage img {
    width: 176px;
    height: 226px;
  }

  .hero-notes {
    display: none;
  }

  .floating-ticket {
    width: min(210px, 58vw);
  }

  .ticket-one {
    top: 70px;
    left: 0;
  }

  .ticket-two {
    right: 0;
    bottom: 46px;
  }

  .produce-path {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(3rem, 17vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .produce-evolution,
  .produce-path {
    grid-template-columns: 1fr;
  }

  .produce-evolution figure {
    min-height: 260px;
  }

  .produce-evolution img {
    height: 180px;
  }

  .path-item {
    min-height: 168px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

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