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

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

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

:root {
  --green-950: #0c3e29;
  --green-900: #124d33;
  --green-800: #17643f;
  --green-700: #247a4f;
  --green-600: #318b5c;
  --green-300: #9dc9aa;
  --green-100: #e2f0e5;
  --green-50: #f2f8f2;
  --cream: #f8f4e9;
  --paper: #fffdf7;
  --yellow: #f4c85a;
  --orange: #e98c57;
  --ink: #18231c;
  --muted: #607066;
  --line: rgba(24, 35, 28, 0.13);
  --shadow: 0 26px 70px rgba(18, 77, 51, 0.13);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --content: 1180px;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--green-950);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

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

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(18, 77, 51, 0.09);
  background: rgba(255, 253, 247, 0.92);
  box-shadow: 0 8px 35px rgba(18, 77, 51, 0.07);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--content));
  min-height: 82px;
  margin: 0 auto;
}

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

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #34463a;
  font-size: 14px;
  font-weight: 600;
}

.site-nav > a:not(.nav-download) {
  position: relative;
  padding: 28px 0;
}

.site-nav > a:not(.nav-download)::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--green-700);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.site-nav > a:not(.nav-download):hover::after,
.site-nav > a:not(.nav-download):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-download {
  padding: 11px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--green-800);
  box-shadow: 0 8px 20px rgba(23, 100, 63, 0.2);
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-download:hover {
  background: var(--green-950);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.3;
}

.status-badge-live {
  border: 1px solid rgba(23, 100, 63, 0.16);
  color: var(--green-800);
  background: var(--green-100);
}

.status-badge-plan {
  border: 1px solid rgba(96, 112, 102, 0.18);
  color: var(--muted);
  background: #f1f2ee;
}

.hero {
  position: relative;
  min-height: 780px;
  padding: 156px 24px 96px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(244, 200, 90, 0.22) 0 8%, transparent 8.2%),
    radial-gradient(circle at 88% 14%, rgba(226, 240, 229, 0.85) 0 14%, transparent 14.2%),
    var(--cream);
}

.hero::before {
  position: absolute;
  top: -120px;
  left: 44%;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(23, 100, 63, 0.1);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.91fr) minmax(480px, 1.09fr);
  align-items: center;
  gap: 70px;
  width: min(100%, var(--content));
  margin: 0 auto;
}

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

.hero-copy > .status-badge {
  margin-bottom: 16px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.eyebrow > span {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.hero h1 {
  margin-bottom: 28px;
  font-size: clamp(48px, 5.15vw, 74px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.hero h1 em {
  position: relative;
  z-index: 1;
  color: var(--green-700);
  font-style: normal;
}

.hero h1 em::after {
  position: absolute;
  z-index: -1;
  right: -4px;
  bottom: 2px;
  left: -2px;
  height: 16px;
  border-radius: 50%;
  background: rgba(244, 200, 90, 0.55);
  content: "";
  transform: rotate(-1deg);
}

.hero-description {
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  gap: 25px;
  color: #fff;
  background: var(--green-800);
  box-shadow: 0 14px 30px rgba(23, 100, 63, 0.22);
}

.button-primary:hover {
  background: var(--green-950);
  box-shadow: 0 18px 36px rgba(12, 62, 41, 0.24);
}

.button-secondary {
  border-color: rgba(23, 100, 63, 0.2);
  color: var(--green-800);
  background: rgba(255, 255, 255, 0.55);
}

.button-secondary:hover {
  background: #fff;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border: 1px solid rgba(23, 100, 63, 0.1);
  border-radius: 999px;
  color: #486052;
  background: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  font-weight: 600;
}

.hero-points li::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-600);
  content: "";
}

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

.hero-photo-wrap {
  position: absolute;
  top: 22px;
  right: 0;
  width: min(100%, 500px);
  height: 420px;
  padding: 16px;
  border-radius: 45% 45% 42px 42px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: rotate(1.8deg);
}

.hero-photo {
  width: 100%;
  height: 100%;
  border-radius: calc(45% - 10px) calc(45% - 10px) 29px 29px;
  object-fit: cover;
}

.photo-caption {
  position: absolute;
  right: 30px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 180px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 16px;
  color: #fff;
  background: rgba(12, 62, 41, 0.78);
  box-shadow: 0 12px 30px rgba(12, 62, 41, 0.18);
  backdrop-filter: blur(10px);
}

.caption-dot {
  width: 11px;
  height: 11px;
  border: 3px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: #a7ef9f;
  box-shadow: 0 0 0 5px rgba(167, 239, 159, 0.15);
}

.photo-caption span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.photo-caption strong {
  font-size: 13px;
}

.photo-caption small {
  margin-top: 2px;
  opacity: 0.75;
  font-size: 10px;
}

.harvest-card {
  position: absolute;
  z-index: 3;
  bottom: 15px;
  left: -38px;
  width: 250px;
  padding: 23px;
  border: 1px solid rgba(23, 100, 63, 0.08);
  border-radius: 24px;
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 18px 45px rgba(18, 77, 51, 0.15);
}

.harvest-card > span {
  color: var(--green-600);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.harvest-card > strong {
  display: block;
  margin-bottom: 16px;
  font-size: 17px;
}

.harvest-card ol {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.harvest-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #5a695f;
  font-size: 12px;
}

.harvest-card li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: var(--green-700);
  background: var(--green-100);
  font-size: 10px;
  font-weight: 700;
}

.produce-bowl {
  position: absolute;
  z-index: 4;
  right: -32px;
  bottom: 0;
  width: 144px;
  height: auto;
  filter: drop-shadow(0 15px 18px rgba(18, 77, 51, 0.15));
  transform: rotate(-7deg);
}

.sun {
  position: absolute;
  top: -2px;
  right: 54px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 20px rgba(244, 200, 90, 0.15);
}

.field-lines {
  position: absolute;
  right: -160px;
  bottom: -160px;
  width: 620px;
  height: 350px;
  border: 1px solid rgba(23, 100, 63, 0.09);
  border-radius: 50%;
  transform: rotate(-14deg);
}

.field-lines::before,
.field-lines::after {
  position: absolute;
  inset: 45px;
  border: inherit;
  border-radius: inherit;
  content: "";
}

.field-lines::after {
  inset: 90px;
}

.section {
  padding: 128px 24px;
}

.section-inner {
  width: min(100%, var(--content));
  margin: 0 auto;
}

.section-heading h2,
.how-intro h2,
.download-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 4vw, 58px);
  letter-spacing: -0.055em;
  line-height: 1.16;
}

.section-heading > p:last-child,
.how-intro > p,
.download-copy > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.heading-centered {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}

.heading-centered .eyebrow {
  justify-content: center;
}

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

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

.value-card {
  position: relative;
  min-height: 420px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.value-card-featured {
  color: #fff;
  background: var(--green-800);
}

.card-number {
  position: absolute;
  top: 30px;
  right: 30px;
  color: rgba(23, 100, 63, 0.34);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.value-card-featured .card-number {
  color: rgba(255, 255, 255, 0.48);
}

.value-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
  font-size: 26px;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.value-card p {
  position: relative;
  z-index: 2;
  max-width: 240px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.value-card-featured p {
  color: rgba(255, 255, 255, 0.72);
}

.value-icon {
  position: relative;
  width: 104px;
  height: 104px;
  margin: 40px 0 36px;
  border-radius: 36px;
  background: var(--green-50);
}

.value-card-featured .value-icon {
  background: rgba(255, 255, 255, 0.1);
}

.sprout::before,
.sprout::after {
  position: absolute;
  top: 26px;
  width: 35px;
  height: 23px;
  border-radius: 85% 10% 85% 10%;
  background: var(--green-600);
  content: "";
}

.sprout::before {
  left: 18px;
  transform: rotate(32deg);
}

.sprout::after {
  right: 17px;
  transform: scaleX(-1) rotate(32deg);
}

.sprout span {
  position: absolute;
  bottom: 20px;
  left: 51px;
  width: 3px;
  height: 44px;
  border-radius: 3px;
  background: var(--green-700);
}

.value-card-featured .sprout::before,
.value-card-featured .sprout::after,
.value-card-featured .sprout span {
  background: #b9e894;
}

.hands::before,
.hands::after {
  position: absolute;
  top: 30px;
  width: 44px;
  height: 52px;
  border: 4px solid var(--green-600);
  border-radius: 50% 50% 18px 18px;
  content: "";
}

.hands::before {
  left: 13px;
  border-right: 0;
  transform: rotate(18deg);
}

.hands::after {
  right: 13px;
  border-left: 0;
  transform: rotate(-18deg);
}

.hands span {
  position: absolute;
  top: 34px;
  left: 43px;
  width: 18px;
  height: 18px;
  border-radius: 80% 10% 80% 10%;
  background: var(--yellow);
  transform: rotate(45deg);
}

.basket::before {
  position: absolute;
  top: 41px;
  left: 24px;
  width: 57px;
  height: 40px;
  border-radius: 6px 6px 22px 22px;
  background: var(--orange);
  content: "";
  clip-path: polygon(0 0, 100% 0, 84% 100%, 16% 100%);
}

.basket::after {
  position: absolute;
  top: 27px;
  left: 34px;
  width: 36px;
  height: 32px;
  border: 5px solid var(--green-700);
  border-bottom: 0;
  border-radius: 25px 25px 0 0;
  content: "";
}

.how-section {
  color: #fff;
  background:
    radial-gradient(circle at 10% 88%, rgba(244, 200, 90, 0.13) 0 12%, transparent 12.2%),
    linear-gradient(145deg, var(--green-950), #155c3b 70%, #17643f);
}

.how-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 110px;
}

.eyebrow-light {
  color: #b8d8c1;
}

.how-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.how-intro > p {
  color: rgba(255, 255, 255, 0.62);
}

.text-link {
  display: inline-flex;
  gap: 15px;
  align-items: center;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

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

.step-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 25px;
  padding: 12px 0 48px;
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.step-item:last-child {
  margin-bottom: 0;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  color: var(--yellow);
  font-size: 18px;
  font-weight: 700;
}

.step-item p {
  margin-bottom: 9px;
  color: #94c2a2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.step-item h3 {
  margin-bottom: 10px;
  font-size: 26px;
  letter-spacing: -0.035em;
}

.step-item div > span {
  display: block;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
}

.benefit-section {
  background: var(--green-50);
}

.benefit-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 55px;
}

.benefit-heading .eyebrow {
  align-self: start;
  flex: 1;
  margin-top: 16px;
}

.benefit-heading h2 {
  flex: 1.3;
  margin-bottom: 0;
}

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

.benefit-card {
  position: relative;
  min-height: 470px;
  padding: 46px;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.consumer-card {
  border: 1px solid rgba(23, 100, 63, 0.1);
  background: #fff;
}

.farmer-card {
  color: #fff;
  background: #d47b4e;
}

.benefit-label {
  margin-bottom: 76px;
  color: var(--green-600);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.farmer-card .benefit-label {
  color: rgba(255, 255, 255, 0.7);
}

.benefit-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 28px;
  font-size: 30px;
  letter-spacing: -0.04em;
  line-height: 1.35;
}

.benefit-card ul {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.benefit-card li {
  display: flex;
  gap: 9px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

.benefit-card li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: var(--green-700);
  background: var(--green-100);
  font-size: 10px;
  font-weight: 700;
}

.farmer-card li {
  color: rgba(255, 255, 255, 0.78);
}

.farmer-card li span {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.benefit-orbit {
  position: absolute;
  top: -84px;
  right: -80px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(23, 100, 63, 0.12);
  border-radius: 50%;
}

.benefit-orbit::before,
.benefit-orbit::after {
  position: absolute;
  border: inherit;
  border-radius: inherit;
  content: "";
}

.benefit-orbit::before {
  inset: 28px;
}

.benefit-orbit::after {
  inset: 62px;
  background: var(--green-100);
}

.benefit-orbit span {
  position: relative;
  z-index: 2;
  color: var(--green-700);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.benefit-land {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 330px;
  height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transform: rotate(-10deg);
}

.benefit-land::before,
.benefit-land::after {
  position: absolute;
  inset: 34px;
  border: inherit;
  border-radius: inherit;
  content: "";
}

.benefit-land::after {
  inset: 70px;
}

.benefit-land span {
  position: absolute;
  z-index: 2;
  top: 16px;
  width: 14px;
  height: 40px;
  border-radius: 80% 10% 80% 10%;
  background: #f5c64f;
  transform: rotate(28deg);
}

.benefit-land span:nth-child(1) { left: 90px; }
.benefit-land span:nth-child(2) { top: 6px; left: 140px; transform: rotate(-10deg); }
.benefit-land span:nth-child(3) { top: 22px; left: 190px; transform: rotate(-32deg); }

.partner-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 34px 38px;
  margin-top: 24px;
  border: 1px solid rgba(23, 100, 63, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
}

.partner-callout > div > p {
  margin-bottom: 7px;
  color: var(--green-600);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.partner-callout h3 {
  margin-bottom: 5px;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.partner-callout > div > span {
  color: var(--muted);
  font-size: 14px;
}

.partner-callout .button {
  flex: 0 0 auto;
}

.future-section {
  background:
    radial-gradient(circle at 92% 12%, rgba(244, 200, 90, 0.18) 0 8%, transparent 8.2%),
    var(--cream);
}

.future-heading {
  max-width: 850px;
}

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

.future-card {
  position: relative;
  min-height: 320px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
}

.future-card-current {
  border-color: rgba(23, 100, 63, 0.2);
  background: var(--green-50);
}

.future-card-number {
  position: absolute;
  top: 30px;
  right: 30px;
  color: rgba(23, 100, 63, 0.28);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.future-card .status-badge {
  margin-bottom: 42px;
}

.future-card-kicker {
  margin-bottom: 10px;
  color: var(--green-600);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.future-card h3 {
  margin-bottom: 15px;
  font-size: 27px;
  letter-spacing: -0.04em;
  line-height: 1.35;
}

.future-card > p:last-child {
  max-width: 440px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.future-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.magazine-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(244, 200, 90, 0.12) 0 7%, transparent 7.2%),
    linear-gradient(180deg, var(--paper) 0%, #f2f7ef 100%);
}

.magazine-section::before {
  position: absolute;
  right: -180px;
  bottom: -210px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(23, 100, 63, 0.08);
  border-radius: 50%;
  content: "";
}

.magazine-heading {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.magazine-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.magazine-card {
  display: flex;
  min-width: 0;
  min-height: 545px;
  overflow: hidden;
  border: 1px solid rgba(23, 100, 63, 0.1);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 48px rgba(18, 77, 51, 0.08);
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.magazine-card:hover {
  box-shadow: 0 28px 64px rgba(18, 77, 51, 0.14);
  transform: translateY(-7px);
}

.magazine-image {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--green-100);
}

.magazine-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(12, 62, 41, 0.12));
  content: "";
  pointer-events: none;
}

.magazine-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.magazine-card:hover .magazine-image img {
  transform: scale(1.035);
}

.magazine-image > span {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  color: #fff;
  background: rgba(12, 62, 41, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
}

.magazine-copy {
  display: flex;
  flex: 1;
  padding: 28px;
  flex-direction: column;
}

.magazine-meta {
  margin-bottom: 13px;
  color: var(--green-600);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.magazine-copy h3 {
  margin-bottom: 15px;
  font-size: 25px;
  letter-spacing: -0.045em;
  line-height: 1.35;
}

.magazine-copy > p:not(.magazine-meta) {
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.magazine-tip {
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  margin-top: auto;
  border-radius: 15px;
  background: var(--green-50);
}

.magazine-tip span {
  color: var(--green-600);
  font-size: 10px;
  font-weight: 700;
}

.magazine-tip strong {
  color: var(--green-950);
  font-size: 13px;
  font-weight: 600;
}

.magazine-closing {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 20px 26px;
  margin: 34px auto 0;
  border: 1px solid rgba(23, 100, 63, 0.09);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 253, 247, 0.72);
  font-size: 14px;
  text-align: center;
}

.magazine-closing strong {
  color: var(--green-800);
}

.download-section {
  padding: 0 24px 100px;
  background: var(--green-50);
}

.download-inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  align-items: center;
  gap: 50px;
  width: min(100%, var(--content));
  min-height: 650px;
  padding: 72px 70px 0;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 48px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(244, 200, 90, 0.17) 0 11%, transparent 11.2%),
    var(--green-800);
}

.download-inner::before {
  position: absolute;
  right: -120px;
  bottom: -220px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.download-copy {
  align-self: center;
  padding-bottom: 72px;
}

.download-copy > p {
  color: rgba(255, 255, 255, 0.67);
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 33px;
}

.store-buttons a {
  display: inline-flex;
  height: 48px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.store-buttons a:hover {
  opacity: 0.88;
  transform: translateY(-3px);
}

.store-buttons img {
  width: auto;
  height: 100%;
}

.app-preview {
  position: relative;
  align-self: end;
  height: 590px;
}

.phone-frame {
  position: absolute;
  bottom: -60px;
  left: 50%;
  width: 310px;
  height: 620px;
  padding: 12px;
  border: 7px solid #17211b;
  border-radius: 46px;
  background: #17211b;
  box-shadow: 0 36px 70px rgba(5, 34, 21, 0.35);
  transform: translateX(-50%) rotate(3deg);
}

.phone-top {
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 50%;
  width: 92px;
  height: 24px;
  border-radius: 999px;
  background: #17211b;
  transform: translateX(-50%);
}

.app-screen {
  height: 100%;
  padding: 48px 20px 20px;
  overflow: hidden;
  border-radius: 33px;
  color: var(--ink);
  background: #fffdf7;
}

.app-wordmark {
  width: 76px;
  height: auto;
  margin-bottom: 34px;
}

.app-screen > p {
  margin-bottom: 20px;
  font-size: 19px;
  line-height: 1.45;
}

.app-screen > p strong {
  color: var(--green-700);
  font-size: 26px;
}

.app-farm-photo {
  width: 100%;
  height: 190px;
  border-radius: 19px;
  object-fit: cover;
}

.app-farm-info {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
}

.app-farm-info span {
  align-self: flex-start;
  padding: 4px 8px;
  margin-bottom: 9px;
  border-radius: 7px;
  color: var(--green-700);
  background: var(--green-100);
  font-size: 10px;
  font-weight: 700;
}

.app-farm-info strong {
  font-size: 17px;
}

.app-farm-info small {
  margin-top: 4px;
  color: #829087;
  font-size: 11px;
}

.app-icon-chip {
  position: absolute;
  z-index: 5;
  top: 150px;
  right: -10px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 18px 35px rgba(12, 62, 41, 0.22);
  backdrop-filter: blur(12px);
}

.app-icon-chip img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.app-icon-chip span {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.app-icon-chip strong {
  font-size: 13px;
}

.app-icon-chip small {
  color: var(--muted);
  font-size: 10px;
}

.site-footer {
  padding: 72px 24px 38px;
  color: #fff;
  background: #0b2d20;
}

.footer-main,
.footer-bottom {
  width: min(100%, var(--content));
  margin: 0 auto;
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-main > img {
  width: 200px;
  height: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 28px;
  max-width: 620px;
  padding-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-links strong {
  color: #fff;
}

.footer-bottom {
  padding-top: 30px;
}

.footer-bottom address {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 22px;
  max-width: 930px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-style: normal;
}

.footer-bottom p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.32);
  font-size: 10px;
}

@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 32px;
  }

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

  .hero-photo-wrap {
    height: 390px;
  }

  .produce-bowl {
    right: -5px;
    width: 120px;
  }

  .how-layout {
    gap: 70px;
  }

  .magazine-card {
    min-height: 520px;
  }

  .magazine-copy {
    padding: 24px;
  }

  .magazine-copy h3 {
    font-size: 23px;
  }

  .download-inner {
    padding-right: 45px;
    padding-left: 45px;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 74px;
  }

  .header-inner {
    width: min(calc(100% - 36px), var(--content));
    min-height: 72px;
  }

  .brand {
    width: 90px;
  }

  .menu-button {
    position: relative;
    z-index: 102;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 13px;
    background: rgba(226, 240, 229, 0.75);
    cursor: pointer;
  }

  .menu-button span:not(.sr-only) {
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--green-900);
    transition: transform 0.2s ease;
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 80px 32px;
    color: var(--green-950);
    background: rgba(248, 244, 233, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav > a:not(.nav-download) {
    padding: 16px 0;
    border-bottom: 1px solid rgba(23, 100, 63, 0.12);
    font-size: 25px;
  }

  .site-nav > a:not(.nav-download)::after {
    display: none;
  }

  .nav-download {
    justify-content: center;
    padding: 16px;
    margin-top: 28px;
    border-radius: 15px;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 130px 22px 80px;
  }

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

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

  .hero-visual {
    width: min(100%, 620px);
    min-height: 520px;
    margin: 0 auto;
  }

  .hero-photo-wrap {
    width: calc(100% - 34px);
    height: 430px;
  }

  .harvest-card {
    left: 0;
  }

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

  .value-card {
    min-height: 350px;
  }

  .value-icon {
    margin-top: 28px;
    margin-bottom: 25px;
  }

  .how-layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .how-intro {
    position: static;
  }

  .benefit-heading {
    display: block;
  }

  .benefit-heading .eyebrow {
    margin-top: 0;
  }

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

  .partner-callout {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .future-card {
    min-height: 0;
  }

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

  .magazine-card {
    display: grid;
    min-height: 330px;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  }

  .magazine-image {
    min-height: 330px;
    aspect-ratio: auto;
  }

  .magazine-copy {
    padding: 30px;
  }

  .download-inner {
    grid-template-columns: 1fr;
    padding: 68px 42px 0;
  }

  .download-copy {
    padding-bottom: 0;
  }

  .app-preview {
    height: 570px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .desktop-only {
    display: none;
  }

  .hero {
    padding: 116px 20px 70px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(41px, 12vw, 56px);
  }

  .hero-description {
    margin-bottom: 28px;
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-points {
    gap: 6px;
  }

  .hero-points li {
    padding: 6px 8px;
    font-size: 10px;
  }

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

  .hero-photo-wrap {
    top: 0;
    right: 0;
    width: calc(100% - 14px);
    height: 330px;
    padding: 11px;
    border-radius: 44% 44% 30px 30px;
  }

  .hero-photo {
    border-radius: calc(44% - 5px) calc(44% - 5px) 22px 22px;
  }

  .photo-caption {
    right: 20px;
    bottom: 19px;
    min-width: 155px;
    padding: 10px 12px;
  }

  .harvest-card {
    bottom: 4px;
    width: 210px;
    padding: 17px;
  }

  .harvest-card > strong {
    font-size: 14px;
  }

  .produce-bowl {
    right: -10px;
    bottom: 10px;
    width: 100px;
  }

  .sun {
    right: 25px;
    width: 60px;
    height: 60px;
  }

  .section {
    padding: 90px 20px;
  }

  .section-heading h2,
  .how-intro h2,
  .download-copy h2 {
    font-size: 38px;
  }

  .section-heading > p:last-child,
  .how-intro > p,
  .download-copy > p {
    font-size: 15px;
  }

  .heading-centered {
    margin-bottom: 44px;
  }

  .value-card {
    min-height: 338px;
    padding: 26px;
  }

  .value-card h3 {
    font-size: 23px;
  }

  .value-card p {
    font-size: 14px;
  }

  .value-icon {
    width: 90px;
    height: 90px;
  }

  .sprout span { left: 44px; }
  .sprout::before { left: 12px; }
  .sprout::after { right: 11px; }
  .hands span { left: 36px; }
  .hands::before { left: 7px; }
  .hands::after { right: 7px; }
  .basket::before { left: 17px; }
  .basket::after { left: 27px; }

  .step-item {
    grid-template-columns: 52px 1fr;
    gap: 18px;
    padding-bottom: 36px;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 15px;
  }

  .step-item h3 {
    font-size: 21px;
  }

  .step-item div > span {
    font-size: 14px;
  }

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

  .benefit-card {
    min-height: 440px;
    padding: 32px 26px;
    border-radius: 28px;
  }

  .benefit-label {
    margin-bottom: 62px;
  }

  .benefit-card h3 {
    font-size: 25px;
  }

  .benefit-card li {
    align-items: flex-start;
    font-size: 13px;
  }

  .partner-callout {
    gap: 24px;
    padding: 28px 24px;
  }

  .partner-callout h3 {
    font-size: 22px;
  }

  .partner-callout .button {
    width: 100%;
  }

  .future-card {
    padding: 27px;
  }

  .future-card .status-badge {
    margin-bottom: 34px;
  }

  .future-card h3 {
    font-size: 23px;
  }

  .magazine-card {
    display: flex;
    min-height: 0;
  }

  .magazine-image {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .magazine-copy {
    padding: 24px;
  }

  .magazine-copy h3 {
    font-size: 23px;
  }

  .magazine-closing {
    padding: 18px 20px;
    border-radius: 24px;
    font-size: 13px;
  }

  .download-section {
    padding: 0 12px 70px;
  }

  .download-inner {
    min-height: 0;
    padding: 56px 24px 0;
    border-radius: 32px;
  }

  .store-buttons a {
    height: 43px;
  }

  .app-preview {
    height: 510px;
  }

  .phone-frame {
    width: 270px;
    height: 540px;
  }

  .app-screen {
    padding: 45px 17px 17px;
  }

  .app-screen > p {
    font-size: 16px;
  }

  .app-screen > p strong {
    font-size: 22px;
  }

  .app-farm-photo {
    height: 165px;
  }

  .app-icon-chip {
    top: 132px;
    right: -18px;
    padding: 9px 13px 9px 9px;
  }

  .app-icon-chip img {
    width: 40px;
    height: 40px;
  }

  .site-footer {
    padding-top: 55px;
  }

  .footer-main {
    display: block;
  }

  .footer-main > img {
    width: 160px;
    margin-bottom: 40px;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 12px 19px;
  }

  .footer-bottom address {
    display: grid;
    gap: 3px;
  }
}

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

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