:root {
  --green-900: #123524;
  --green-800: #1f4f32;
  --green-700: #2f6f45;
  --green-600: #3f8f5a;
  --green-100: #e9f6ed;
  --amber-500: #f4b63f;
  --amber-200: #fff1c8;
  --red-100: #fdebea;
  --red-500: #c84c3f;
  --ink: #172019;
  --muted: #5f6f63;
  --line: #dce7dd;
  --paper: #fffaf0;
  --white: #ffffff;
  --footer: #123524;
  --shadow: 0 20px 60px rgba(31, 79, 50, 0.16);
  --radius-lg: 24px;
  --radius-md: 18px;
  --content: min(1120px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Lato", system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: clip;
}

main {
  background: var(--paper);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

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

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

.skip-link:focus {
  z-index: 1000;
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 14px;
  right: 0;
  left: 0;
  background: transparent;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  transition: box-shadow 180ms ease, background 180ms ease, opacity 220ms ease, transform 220ms ease;
}

.site-header.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
}

.site-header.is-scrolled {
  background: transparent;
  box-shadow: none;
}

.download-drawer {
  position: fixed;
  top: 48%;
  right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  transform: translate(236px, -50%);
  transition: transform 220ms ease;
  will-change: transform;
}

.download-drawer.is-open {
  transform: translate(0, -50%);
}

.download-drawer-toggle {
  width: 52px;
  min-height: 176px;
  padding: 14px 8px;
  border: 1px solid rgba(31, 79, 50, 0.16);
  border-right: 0;
  border-radius: 20px 0 0 20px;
  background: var(--amber-500);
  color: #2b2110;
  box-shadow: 0 18px 46px rgba(31, 79, 50, 0.18);
  cursor: pointer;
}

.download-drawer-toggle span {
  writing-mode: vertical-rl;
  rotate: 180deg;
  display: inline-block;
  font-size: 0.94rem;
  font-weight: 900;
  letter-spacing: 0;
}

.download-drawer-panel {
  width: 236px;
  padding: 18px;
  display: grid;
  gap: 12px;
  border: 1px solid rgba(31, 79, 50, 0.14);
  border-right: 0;
  border-radius: 22px 0 0 22px;
  background: rgba(255, 250, 240, 0.96);
  box-shadow: 0 24px 64px rgba(31, 79, 50, 0.18);
  backdrop-filter: blur(18px);
}

.download-drawer-panel h2 {
  margin: 0 0 2px;
  color: var(--green-900);
  font-size: 1.15rem;
  line-height: 1.15;
}

.nav-shell {
  width: var(--content);
  height: 70px;
  margin: 0 auto;
  padding: 8px 8px 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(31, 79, 50, 0.12);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.88);
  box-shadow: 0 18px 54px rgba(23, 32, 25, 0.12);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 1.16rem;
  letter-spacing: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: block;
  flex: 0 0 auto;
  background: transparent url("../images/logo.png") center / contain no-repeat;
  filter: drop-shadow(0 10px 18px rgba(31, 79, 50, 0.16));
}

.brand small {
  display: block;
  margin-top: -4px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.nav-links {
  min-height: 52px;
  padding: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  font-weight: 700;
}

.nav-links a:not(.button),
.footer a:not(.brand) {
  position: relative;
}

.nav-links a:not(.button) {
  min-height: 44px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #334a38;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-links a:not(.button):hover {
  background: rgba(233, 246, 237, 0.9);
  color: var(--green-900);
  transform: translateY(-1px);
}

.nav-links a:not(.button)::after,
.footer a:not(.brand)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.footer a:hover::after {
  transform: scaleX(1);
}

.nav-links a:not(.button)::after {
  display: none;
}

.nav-cta {
  min-height: 44px;
  padding: 0 18px;
}

.menu-toggle {
  position: relative;
  z-index: 2;
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-900);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.menu-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 30px rgba(31, 79, 50, 0.18);
}

.button-green {
  background: var(--green-700);
  color: var(--white);
}

.button-amber {
  background: var(--amber-500);
  color: #2b2110;
}

.button-white {
  background: var(--white);
  color: var(--green-700);
}

.button-outline {
  border: 2px solid rgba(255, 255, 255, 0.76);
  background: transparent;
  color: var(--white);
}

.barn-intro {
  --barn-progress: 0;
  --barn-zoom: 0;
  position: relative;
  height: 200vh;
  min-height: 980px;
  overflow: clip;
  background:
    radial-gradient(circle at 72% 18%, rgba(244, 182, 63, 0.38), transparent 24%),
    linear-gradient(180deg, #79c9f6 0%, #b8e6ff 48%, #6fbb7a 100%);
  color: var(--white);
}

.barn-stage {
  position: sticky;
  top: 0;
  min-height: 100vh;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(180deg, #79c9f6 0%, #b8e6ff 48%, #6fbb7a 100%);
}

.barn-scene {
  position: absolute;
  inset: 0;
  min-height: 100vh;
  perspective: 1200px;
  transform-style: preserve-3d;
  overflow: hidden;
  transform: scale(calc(1 + var(--barn-zoom) * 0.18));
  transform-origin: 50% 72%;
}

.barn-scene::before {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 12%),
    linear-gradient(180deg, rgba(6, 16, 42, 0.96), rgba(10, 24, 58, 0.9) 58%, rgba(11, 31, 35, 0.7));
  content: "";
  opacity: clamp(0, calc((var(--barn-progress) - 0.38) * 2.4), 0.88);
}

.barn-scene::after {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: 2%;
  z-index: 2;
  height: 30%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 20% 55%, rgba(255, 241, 200, 0.22), transparent 38%),
    linear-gradient(90deg, rgba(255, 241, 200, 0.16), rgba(244, 182, 63, 0.2), transparent 82%);
  transform: rotateX(62deg) translateZ(4px);
  content: "";
}

.barn-sun {
  position: absolute;
  z-index: 2;
  top: calc(17% - min(var(--barn-progress) * 1.75, 1) * 13%);
  left: calc(4% + min(var(--barn-progress) * 1.75, 1) * 70%);
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #fff4a8 0 24%, #ffd45d 25% 58%, #f4a83f 59% 100%);
  box-shadow:
    0 0 calc(62px + var(--barn-progress) * 90px) rgba(255, 216, 123, 0.72),
    0 0 calc(var(--barn-progress) * 80px) rgba(255, 244, 168, 0.55);
  opacity: clamp(0, calc((0.52 - var(--barn-progress)) * 4.2), 1);
  transform:
    translateY(calc(52px - min(var(--barn-progress) * 1.75, 1) * 166px))
    scale(calc(0.72 + min(var(--barn-progress) * 1.75, 1) * 0.62));
}

.barn-sun::after {
  position: absolute;
  inset: -42px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 216, 123, 0.28), transparent 64%);
  content: "";
  opacity: clamp(0, calc((0.52 - var(--barn-progress)) * 3.2), 0.9);
}

.barn-moon {
  position: absolute;
  top: calc(17% - min(var(--barn-progress) * 1.75, 1) * 13%);
  left: calc(4% + min(var(--barn-progress) * 1.75, 1) * 70%);
  z-index: 5;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: #f6f0d6;
  box-shadow: 0 0 44px rgba(246, 240, 214, 0.42);
  opacity: clamp(0, calc((var(--barn-progress) - 0.38) * 4.2), 1);
  transform:
    translateY(calc(52px - min(var(--barn-progress) * 1.75, 1) * 166px))
    scale(calc(0.54 + min(var(--barn-progress) * 1.75, 1) * 0.46));
}

.barn-moon::after {
  position: absolute;
  top: -4px;
  left: 24px;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: rgba(8, 18, 39, 0.92);
  content: "";
}

.bird {
  position: absolute;
  width: 36px;
  height: 18px;
  opacity: 0.72;
}

.bird::before,
.bird::after {
  position: absolute;
  top: 7px;
  width: 18px;
  height: 10px;
  border-top: 3px solid rgba(255, 250, 240, 0.86);
  border-radius: 50%;
  content: "";
  animation: bird-flap 520ms ease-in-out infinite alternate;
}

.bird::before {
  left: 0;
  transform-origin: right center;
}

.bird::after {
  right: 0;
  transform-origin: left center;
}

.barn-field {
  position: absolute;
  right: -12%;
  left: -12%;
  border-radius: 50% 50% 0 0;
  transform-origin: center bottom;
}

.barn-field-back {
  bottom: 22%;
  height: 42%;
  background: #7cac48;
  transform: rotateX(58deg) translateZ(-90px);
}

.barn-field-front {
  bottom: -12%;
  height: 52%;
  background:
    repeating-linear-gradient(100deg, rgba(255, 250, 240, 0.16) 0 18px, transparent 18px 58px),
    #4b934a;
  transform: rotateX(62deg) translateZ(-30px);
}

.pasture-fence {
  position: absolute;
  left: 4%;
  bottom: 30%;
  width: 42%;
  height: 68px;
  z-index: 3;
  transform: none;
}

.pasture-fence::before,
.pasture-fence::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 9px;
  border-radius: 999px;
  background: #fff1c8;
  box-shadow: 0 8px 18px rgba(26, 13, 8, 0.12);
  content: "";
}

.pasture-fence::before {
  top: 18px;
}

.pasture-fence::after {
  top: 48px;
}

.pasture-fence span {
  position: absolute;
  bottom: 0;
  width: 10px;
  height: 68px;
  border-radius: 999px;
  background: #fff1c8;
}

.pasture-fence span:nth-child(1) { left: 4%; }
.pasture-fence span:nth-child(2) { left: 33%; }
.pasture-fence span:nth-child(3) { left: 62%; }
.pasture-fence span:nth-child(4) { left: 91%; }

.fruit-tree {
  position: absolute;
  right: max(86px, calc((100vw - 1120px) / 2 + 48px));
  bottom: 16%;
  z-index: 4;
  width: 220px;
  height: 300px;
  transform-origin: 50% 100%;
}

.tree-trunk {
  position: absolute;
  left: 92px;
  bottom: 0;
  width: 42px;
  height: 142px;
  border-radius: 24px 24px 10px 10px;
  background: linear-gradient(90deg, #6f421f, #9b6632 52%, #5d361a);
}

.tree-trunk::before,
.tree-trunk::after {
  position: absolute;
  bottom: 112px;
  width: 78px;
  height: 18px;
  border-radius: 999px;
  background: #7b4a23;
  content: "";
}

.tree-trunk::before {
  right: 20px;
  transform: rotate(-28deg);
}

.tree-trunk::after {
  left: 18px;
  transform: rotate(27deg);
}

.tree-crown {
  position: absolute;
  top: 8px;
  left: 12px;
  width: 196px;
  height: 178px;
  border-radius: 48% 52% 54% 46%;
  background:
    radial-gradient(circle at 32% 28%, #74a84b 0 28%, transparent 29%),
    radial-gradient(circle at 66% 30%, #5f983f 0 30%, transparent 31%),
    radial-gradient(circle at 47% 58%, #3f8f5a 0 48%, transparent 49%),
    #4f9a45;
  filter: drop-shadow(0 18px 24px rgba(18, 53, 36, 0.2));
  transform-origin: 50% 82%;
}

.barn-intro.is-harvesting .tree-crown {
  animation: tree-shake 260ms ease-in-out infinite alternate;
}

.tree-fruit {
  position: absolute;
  z-index: 8;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #d55344;
  box-shadow: inset -5px -4px rgba(104, 30, 24, 0.16);
}

.tree-fruit::before {
  position: absolute;
  top: -7px;
  left: 8px;
  width: 6px;
  height: 10px;
  border-radius: 999px;
  background: #355d24;
  content: "";
  transform: rotate(24deg);
}

.tree-fruit-one {
  top: 70px;
  left: 52px;
  animation: fruit-drop-one 1800ms ease-in infinite;
}

.tree-fruit-two {
  top: 52px;
  right: 58px;
  background: #f4b63f;
  animation: fruit-drop-two 2100ms ease-in infinite 420ms;
}

.tree-fruit-three {
  top: 116px;
  left: 102px;
  background: #d7c84b;
  animation: fruit-drop-three 1900ms ease-in infinite 820ms;
}

.cow {
  position: absolute;
  left: calc(6% + var(--barn-progress) * 5%);
  bottom: 25%;
  z-index: 4;
  width: 168px;
  height: 112px;
  transform:
    translateX(calc(var(--barn-progress) * 18px))
    scale(calc(0.9 + var(--barn-progress) * 0.03));
  transform-origin: center bottom;
  filter: drop-shadow(0 14px 14px rgba(26, 13, 8, 0.14));
  animation: cow-bob 1200ms ease-in-out infinite alternate;
}

.cow-body {
  position: absolute;
  left: 22px;
  bottom: 28px;
  width: 112px;
  height: 62px;
  border-radius: 48px 44px 34px 34px;
  background: #fff7df;
}

.cow-spot {
  position: absolute;
  border-radius: 50%;
  background: #2a211b;
}

.cow-spot-one {
  left: 45px;
  bottom: 55px;
  width: 49px;
  height: 25px;
}

.cow-spot-two {
  left: 91px;
  bottom: 47px;
  width: 25px;
  height: 31px;
}

.cow-head {
  position: absolute;
  right: 12px;
  bottom: 50px;
  width: 46px;
  height: 42px;
  border-radius: 48% 48% 42% 42%;
  background: #fff7df;
  box-shadow: inset 0 -13px #ead3b3;
  transform-origin: 42% 80%;
  animation: cow-head-nod 1500ms ease-in-out infinite alternate;
}

.cow-head::before,
.cow-head::after {
  position: absolute;
  top: 15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #172019;
  content: "";
}

.cow-head::before { left: 14px; }
.cow-head::after { right: 14px; }

.cow-ear {
  position: absolute;
  bottom: 82px;
  width: 20px;
  height: 14px;
  border-radius: 50%;
  background: #2a211b;
}

.cow-ear-left {
  right: 50px;
  transform: rotate(28deg);
}

.cow-ear-right {
  right: 5px;
  transform: rotate(-28deg);
}

.cow-leg {
  position: absolute;
  bottom: 0;
  width: 10px;
  height: 34px;
  border-radius: 999px;
  background: #fff7df;
  transform-origin: top;
  animation: cow-step 560ms ease-in-out infinite alternate;
}

.cow-leg::after {
  position: absolute;
  right: -2px;
  bottom: 0;
  left: -2px;
  height: 8px;
  border-radius: 8px 8px 3px 3px;
  background: #2a211b;
  content: "";
}

.cow-leg-one { left: 38px; }
.cow-leg-two {
  left: 66px;
  animation-delay: 280ms;
}
.cow-leg-three { left: 104px; }
.cow-leg-four {
  left: 128px;
  animation-delay: 280ms;
}

.chicken {
  position: absolute;
  z-index: 5;
  width: 64px;
  height: 50px;
  transform-style: preserve-3d;
  filter: drop-shadow(0 12px 10px rgba(26, 13, 8, 0.16));
  opacity: clamp(0, calc((0.94 - var(--barn-progress)) * 8), 1);
  transition: opacity 80ms linear;
}

.chicken-one {
  left: calc(-9% + (var(--barn-progress) * 58%));
  bottom: calc(9% + (var(--barn-progress) * 2%));
  transform: scale(calc(0.78 + var(--barn-progress) * 0.08));
}

.chicken-two {
  left: calc(-21% + (var(--barn-progress) * 64%));
  bottom: calc(6% + (var(--barn-progress) * 3%));
  transform: scale(calc(0.66 + var(--barn-progress) * 0.08));
  opacity: clamp(0, calc((0.9 - var(--barn-progress)) * 8), 1);
}

.barn-egg {
  position: absolute;
  left: 16px;
  bottom: 2px;
  z-index: -1;
  width: 22px;
  height: 28px;
  border-radius: 50% 50% 46% 46%;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.95), transparent 23%),
    linear-gradient(180deg, #fffdf0, #eadca7);
  box-shadow: 0 8px 12px rgba(26, 13, 8, 0.18);
  opacity: clamp(0, calc((var(--barn-progress) - 0.66) * 5), 1);
  transform:
    translate(
      calc(max(0, var(--barn-progress) - 0.66) * 190px),
      calc(max(0, var(--barn-progress) - 0.66) * 22px)
    )
    rotate(calc(var(--barn-progress) * 680deg));
}

.chicken-body {
  position: absolute;
  left: 10px;
  bottom: 12px;
  width: 48px;
  height: 34px;
  border-radius: 58% 45% 50% 46%;
  background: #fff7df;
  box-shadow: inset -10px -6px rgba(220, 180, 111, 0.24);
  animation: chicken-bob 360ms ease-in-out infinite alternate;
}

.chicken-head {
  position: absolute;
  right: 6px;
  top: 9px;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #fff7df;
}

.chicken-head::before {
  position: absolute;
  top: -8px;
  left: 8px;
  width: 14px;
  height: 12px;
  border-radius: 50% 50% 30% 30%;
  background: #d55344;
  content: "";
}

.chicken-head::after {
  position: absolute;
  top: 8px;
  right: 6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #172019;
  content: "";
}

.chicken-beak {
  position: absolute;
  top: 20px;
  right: -5px;
  width: 13px;
  height: 10px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: var(--amber-500);
}

.chicken-leg {
  position: absolute;
  bottom: 0;
  width: 4px;
  height: 16px;
  border-radius: 999px;
  background: #b45d25;
  transform-origin: top;
  animation: chicken-step 420ms ease-in-out infinite alternate;
}

.chicken-leg-left {
  left: 28px;
}

.chicken-leg-right {
  left: 44px;
  animation-delay: 210ms;
}

.fruit-basket {
  position: absolute;
  right: max(22px, calc((100vw - 1120px) / 2));
  bottom: 7%;
  z-index: 7;
  width: 118px;
  height: 104px;
  transform:
    translateY(calc(var(--barn-progress) * -12px))
    scale(calc(0.88 + max(0, var(--barn-progress) - 0.55) * 1.65));
  transform-origin: center bottom;
  opacity: 1;
  transform-style: preserve-3d;
}

.basket-handle {
  position: absolute;
  z-index: 4;
  right: 19px;
  bottom: 32px;
  left: 19px;
  height: 68px;
  border: 7px solid #7a4a22;
  border-bottom: 0;
  border-radius: 80px 80px 0 0;
}

.basket-body {
  position: absolute;
  right: 10px;
  bottom: 0;
  left: 10px;
  height: 58px;
  z-index: 2;
  border-radius: 16px 16px 28px 28px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 241, 200, 0.22) 0 8px, transparent 8px 18px),
    linear-gradient(180deg, #b8793a, #744519);
  box-shadow: 0 20px 28px rgba(26, 13, 8, 0.2);
}

.basket-body::before {
  position: absolute;
  top: -15px;
  right: -5px;
  left: -5px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(180deg, #d79a55, #8b5525);
  content: "";
  transform: rotateX(64deg);
  transform-origin: center;
}

.basket-body::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 42px;
  border-radius: 10px 10px 26px 26px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 241, 200, 0.24) 0 8px, transparent 8px 18px),
    linear-gradient(180deg, rgba(178, 114, 48, 0.9), #744519);
  content: "";
}

.fruit {
  position: absolute;
  bottom: 29px;
  z-index: 1;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  opacity: 1;
  transform:
    rotateX(12deg)
    scale(calc(0.84 + var(--barn-progress) * 0.08));
  transition: opacity 120ms linear;
}

.fruit::before {
  position: absolute;
  top: -8px;
  left: 11px;
  width: 7px;
  height: 10px;
  border-radius: 999px;
  background: #4b6f2f;
  content: "";
  transform: rotate(28deg);
}

.fruit-apple {
  left: 26px;
  background: #d55344;
}

.fruit-pear {
  left: 45px;
  bottom: 50px;
  width: 27px;
  height: 34px;
  border-radius: 48% 48% 55% 55%;
  background: #d7c84b;
}

.fruit-plum {
  left: 66px;
  background: #6d4aa8;
}

.fruit-orange {
  left: 50px;
  bottom: 66px;
  background: #f4b63f;
}

@keyframes chicken-bob {
  from {
    transform: translateY(0) rotate(-1deg);
  }

  to {
    transform: translateY(-3px) rotate(2deg);
  }
}

@keyframes chicken-step {
  from {
    transform: rotate(-14deg);
  }

  to {
    transform: rotate(14deg);
  }
}

@keyframes cow-step {
  from {
    transform: rotate(-5deg);
  }

  to {
    transform: rotate(5deg);
  }
}

@keyframes cow-bob {
  from {
    margin-bottom: 0;
  }

  to {
    margin-bottom: 4px;
  }
}

@keyframes cow-head-nod {
  from {
    transform: rotate(-4deg) translateY(0);
  }

  to {
    transform: rotate(5deg) translateY(3px);
  }
}

@keyframes bird-flap {
  from {
    transform: rotate(18deg);
  }

  to {
    transform: rotate(-24deg);
  }
}

@keyframes bird-left {
  from {
    translate: 112vw 0;
  }

  to {
    translate: -16vw 18px;
  }
}

@keyframes bird-right {
  from {
    translate: -18vw 0;
  }

  to {
    translate: 112vw -16px;
  }
}

@keyframes fruit-drop-one {
  0% {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  72% {
    opacity: 1;
    transform: translate(-62px, 250px) rotate(520deg) scale(0.92);
  }

  100% {
    opacity: 0;
    transform: translate(-62px, 250px) rotate(520deg) scale(0.72);
  }
}

@keyframes fruit-drop-two {
  0% {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  72% {
    opacity: 1;
    transform: translate(-92px, 268px) rotate(-460deg) scale(0.92);
  }

  100% {
    opacity: 0;
    transform: translate(-92px, 268px) rotate(-460deg) scale(0.72);
  }
}

@keyframes fruit-drop-three {
  0% {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  72% {
    opacity: 1;
    transform: translate(-108px, 214px) rotate(390deg) scale(0.94);
  }

  100% {
    opacity: 0;
    transform: translate(-108px, 214px) rotate(390deg) scale(0.74);
  }
}

@keyframes tree-shake {
  from {
    transform: rotate(-2.4deg) translateX(-2px);
  }

  to {
    transform: rotate(2.4deg) translateX(2px);
  }
}

.barn-building {
  position: absolute;
  z-index: 16;
  left: 50%;
  bottom: -1%;
  width: min(1080px, 104vw);
  aspect-ratio: 1.26;
  transform-style: preserve-3d;
  transform:
    translateX(-50%)
    translateY(calc(var(--barn-progress) * -12px + var(--barn-zoom) * -18vh))
    scale(calc(0.96 + var(--barn-progress) * 0.04 + var(--barn-zoom) * 1.42));
  transform-origin: 50% 78%;
}

.barn-roof {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  width: 92%;
  height: 34%;
  background:
    linear-gradient(180deg, rgba(255, 241, 200, 0.16), transparent 34%),
    linear-gradient(135deg, #c65f3f, #8c3326 56%, #5e201b);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  filter: drop-shadow(0 18px 18px rgba(26, 13, 8, 0.22));
  transform: translateX(-50%) translateZ(34px);
}

.barn-roof::after {
  position: absolute;
  right: 4%;
  bottom: 0;
  left: 4%;
  height: 18px;
  border-radius: 999px;
  background: rgba(95, 38, 27, 0.72);
  content: "";
}

.chimney {
  position: absolute;
  z-index: 4;
  top: 10%;
  right: 28%;
  width: 54px;
  height: 94px;
  background:
    repeating-linear-gradient(180deg, rgba(255, 241, 200, 0.16) 0 8px, transparent 8px 16px),
    linear-gradient(90deg, #74311f, #a94e34);
  transform: translateY(-44px);
  border-radius: 8px 8px 3px 3px;
  box-shadow: inset -10px 0 rgba(60, 22, 15, 0.18);
}

.chimney::before {
  position: absolute;
  right: -6px;
  left: -6px;
  top: -10px;
  height: 14px;
  border-radius: 8px;
  background: #5f261b;
  content: "";
}

.smoke {
  position: absolute;
  left: 50%;
  bottom: 100%;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.74);
  filter: blur(1px);
  opacity: clamp(0, calc((var(--barn-progress) - 0.18) * 3), calc((0.94 - var(--barn-progress)) * 2.4));
  transform:
    translate(
      calc(-50% + var(--barn-progress) * -28px),
      calc(var(--barn-progress) * -116px)
    )
    scale(calc(0.6 + var(--barn-progress) * 1.1));
}

.smoke-two {
  width: 42px;
  height: 42px;
  opacity: clamp(0, calc((var(--barn-progress) - 0.28) * 3), calc((0.98 - var(--barn-progress)) * 2.4));
  transform:
    translate(
      calc(-50% + var(--barn-progress) * 18px),
      calc(-18px + var(--barn-progress) * -142px)
    )
    scale(calc(0.55 + var(--barn-progress) * 1.25));
}

.smoke-three {
  width: 52px;
  height: 52px;
  opacity: clamp(0, calc((var(--barn-progress) - 0.38) * 3), calc((1 - var(--barn-progress)) * 2.4));
  transform:
    translate(
      calc(-50% + var(--barn-progress) * -6px),
      calc(-38px + var(--barn-progress) * -166px)
    )
    scale(calc(0.45 + var(--barn-progress) * 1.35));
}

.barn-wall {
  position: absolute;
  right: 7%;
  bottom: 0;
  left: 7%;
  top: 31%;
  height: auto;
  border-radius: 26px 26px 12px 12px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 68px),
    linear-gradient(180deg, #b8563d, #873821);
  box-shadow: 0 36px 90px rgba(12, 21, 14, 0.35);
  transform-style: preserve-3d;
}

.barn-wall::before,
.barn-wall::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 18px;
  background: rgba(255, 241, 200, 0.2);
  content: "";
}

.barn-wall::before {
  left: 18%;
}

.barn-wall::after {
  right: 18%;
}

.barn-window {
  position: absolute;
  top: 18%;
  width: 74px;
  height: 74px;
  border: 8px solid #fff1c8;
  border-radius: 18px;
  background: rgba(255, 216, 123, 0.62);
  box-shadow: inset 0 0 28px rgba(244, 182, 63, 0.34);
}

.barn-window-left {
  left: 11%;
}

.barn-window-right {
  right: 11%;
}

.barn-door-frame {
  position: absolute;
  right: 25%;
  bottom: 0;
  left: 25%;
  height: 68%;
  overflow: visible;
  border: 10px solid #fff1c8;
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
  background: rgb(45, 79, 53);
  transform-style: preserve-3d;
}

.barn-door {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  overflow: hidden;
  background:
    linear-gradient(35deg, transparent 44%, rgba(255, 241, 200, 0.38) 45% 48%, transparent 49%),
    linear-gradient(145deg, transparent 44%, rgba(255, 241, 200, 0.28) 45% 48%, transparent 49%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 34px),
    #7e321f;
  box-shadow: inset 0 0 0 5px rgba(255, 241, 200, 0.38);
  transform-style: preserve-3d;
  transition: transform 80ms linear;
}

.barn-door-left {
  left: 0;
  border-radius: 10px 0 0 0;
  transform-origin: left center;
  transform: rotateY(calc(var(--barn-progress) * -112deg));
}

.barn-door-right {
  right: 0;
  border-radius: 0 10px 0 0;
  transform-origin: right center;
  transform: rotateY(calc(var(--barn-progress) * 112deg));
}

.barn-door span {
  position: absolute;
  right: 16px;
  left: 16px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 241, 200, 0.44);
}

.barn-door span:first-child {
  top: 26%;
}

.barn-door span:last-child {
  bottom: 22%;
}

.barn-door-glow {
  position: absolute;
  inset: 0;
  z-index: 18;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 24px;
  text-align: center;
  color: #ffffff;
  opacity: clamp(0, calc((var(--barn-progress) - 0.28) * 3.6), 1);
  background: transparent;
  isolation: isolate;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.52);
}

.barn-door-glow > strong {
  display: block;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  filter: none;
  opacity: 1;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.05;
}

.barn-door-glow > small {
  margin-top: 10px;
  display: block;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  filter: none;
  opacity: 1;
  font-weight: 900;
}

.barn-door-glow .intro-app-cta {
  width: min(520px, 100%);
  max-width: 100%;
  margin-top: clamp(18px, 3vh, 30px);
  padding: 15px 16px;
  border: 1px solid rgba(255, 241, 200, 0.3);
  border-radius: 18px;
  background: rgba(255, 250, 240, 0.12);
  box-shadow: 0 20px 46px rgba(5, 18, 11, 0.2);
  backdrop-filter: blur(10px);
  text-shadow: none;
}

.barn-door-glow .intro-app-cta > span {
  color: var(--amber-200);
}

.barn-door-glow .intro-app-cta strong {
  margin: 6px auto 13px;
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  font-size: clamp(0.78rem, 1vw, 0.98rem);
  line-height: 1.28;
}

.barn-door-glow .intro-store-row {
  justify-content: center;
}

.barn-door-glow .intro-store-row .store-button {
  min-height: 44px;
  flex: 1 1 150px;
  padding: 8px 12px;
  border-radius: 14px;
}

.barn-path {
  position: absolute;
  right: 18%;
  bottom: -8%;
  width: 34%;
  height: 32%;
  clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%);
  background: linear-gradient(180deg, rgba(255, 241, 200, 0.76), rgba(177, 116, 61, 0.56));
  opacity: clamp(0, calc((0.82 - var(--barn-progress)) * 3.8), 0.9);
  transform: rotateX(62deg) translateZ(28px);
}

.ripple {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  transform: translate(-50%, -50%) scale(1);
  animation: ripple 620ms ease-out forwards;
}

@keyframes ripple {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

.hero {
  --hero-progress: 0;
  position: relative;
  width: var(--content);
  min-height: calc(100vh - 78px);
  margin: -1px auto 0;
  padding: 96px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: 56px;
  overflow: visible;
  background: var(--paper);
}

.hero-birds {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-birds .bird::before,
.hero-birds .bird::after {
  border-top-color: rgba(47, 111, 69, 0.64);
}

.hero-birds .bird-one {
  top: 13%;
  animation: bird-left 15s linear infinite;
}

.hero-birds .bird-two {
  top: 23%;
  animation: bird-right 18s linear infinite;
  animation-delay: -7s;
  transform: scale(0.76);
}

.hero-birds .bird-three {
  top: 8%;
  animation: bird-left 21s linear infinite;
  animation-delay: -11s;
  transform: scale(0.58);
}

.hero-birds .bird-four {
  top: 31%;
  animation: bird-right 16s linear infinite;
  animation-delay: -3s;
  transform: scale(0.64);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-copy > * {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.hero.is-visible .hero-copy > * {
  opacity: 1;
  transform: translateY(0);
}

.hero.is-visible .hero-copy > *:nth-child(2) {
  transition-delay: 100ms;
}

.hero.is-visible .hero-copy > *:nth-child(3) {
  transition-delay: 180ms;
}

.hero.is-visible .hero-copy > *:nth-child(4) {
  transition-delay: 260ms;
}

.hero.is-visible .hero-copy > *:nth-child(5) {
  transition-delay: 340ms;
}

.hero-egg-run {
  position: relative;
  width: min(780px, 100%);
  height: 74px;
  margin: 18px 0 0;
  overflow: visible;
}

.hero-egg-run::before {
  position: absolute;
  right: 0;
  bottom: 14px;
  left: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(47, 111, 69, 0), rgba(47, 111, 69, 0.26), rgba(47, 111, 69, 0));
  content: "";
}

.hero-egg-run span {
  position: absolute;
  right: 2px;
  bottom: 20px;
  width: 30px;
  height: 38px;
  border-radius: 50% 50% 46% 46%;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.98), transparent 23%),
    linear-gradient(180deg, #fffdf0, #eadca7);
  box-shadow: 0 10px 18px rgba(23, 32, 25, 0.14);
  transform-origin: 50% 72%;
  opacity: 1;
  transform:
    translateX(calc(var(--hero-progress) * -1 * (100% + min(744px, calc(100vw - 74px)))))
    rotate(calc(var(--hero-progress) * -980deg))
    scale(calc(0.92 + var(--hero-progress) * 0.08));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-700);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.eyebrow.light {
  color: var(--amber-200);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(3rem, 8vw, 5.75rem);
}

h2 {
  font-size: clamp(2.1rem, 5vw, 3.7rem);
}

h3 {
  font-size: 1.3rem;
}

.hero-text {
  max-width: 620px;
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: 1.18rem;
}

.search-card {
  max-width: 690px;
  padding: 8px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(31, 79, 50, 0.12);
}

.search-card:focus-within .search-icon {
  color: var(--amber-500);
  transform: rotate(-8deg) scale(1.08);
}

.search-icon {
  display: grid;
  place-items: center;
  color: var(--green-700);
  transition: transform 180ms ease, color 180ms ease;
}

.search-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.search-card input {
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
}

.hero-meta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
}

.hero-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

.hero-meta strong {
  color: var(--green-800);
}

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

.hero-visual img {
  width: 100%;
  height: min(68vh, 690px);
  min-height: 520px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.pickup-note {
  position: absolute;
  right: 26px;
  bottom: 28px;
  max-width: 280px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 44px rgba(23, 32, 25, 0.16);
}

.pickup-note span {
  color: var(--green-700);
  font-size: 0.8rem;
  font-weight: 900;
}

.pickup-note strong {
  display: block;
  margin-top: 4px;
  line-height: 1.25;
}

.scroll-3d {
  --progress: 0;
  --scene-step: 1;
  position: relative;
  height: 340vh;
  margin: 0;
  background: linear-gradient(180deg, rgb(45, 79, 53) 0%, #1f4f32 7%, #1f5a36 58%, #f3f8ef 100%);
  color: var(--white);
}

.scroll-3d.is-disabled {
  height: auto;
  min-height: 0;
}

.scroll-3d.is-disabled .scroll-3d-sticky {
  position: relative;
  top: auto;
  min-height: 0;
  grid-template-columns: minmax(0, 1fr);
  padding-top: 100px;
  padding-bottom: 100px;
}

.scroll-3d.is-disabled .scroll-3d-copy {
  max-width: 720px;
  transform: none;
}

.scroll-3d.is-disabled .farm-scene {
  display: none;
}

.scroll-3d.is-disabled .scene-text-track {
  min-height: 0;
}

.scroll-3d.is-disabled .scene-text {
  position: static;
  display: block;
  opacity: 1;
  transform: none;
}

.scroll-3d.is-disabled .scene-text + .scene-text {
  margin-top: 10px;
  opacity: 0.72;
}

.scroll-3d-sticky {
  position: sticky;
  top: 78px;
  min-height: calc(100vh - 78px);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(420px, 1fr);
  align-items: center;
  gap: 42px;
  padding: 72px max(20px, calc((100vw - 1120px) / 2));
}

.scroll-3d-copy {
  max-width: 520px;
  transform: translateY(calc(var(--progress) * -36px));
}

.scroll-3d-copy h2 {
  color: var(--white);
  text-wrap: balance;
}

.intro-app-cta {
  max-width: 430px;
  margin-top: 34px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 241, 200, 0.24);
  border-radius: 22px;
  background: rgba(255, 250, 240, 0.1);
  box-shadow: 0 20px 50px rgba(5, 18, 11, 0.18);
  backdrop-filter: blur(14px);
}

.intro-app-cta > span {
  display: block;
  color: var(--amber-200);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro-app-cta strong {
  display: block;
  margin: 7px 0 16px;
  color: var(--white);
  line-height: 1.34;
  font-size: 1.05rem;
}

.intro-store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.intro-store-row .store-button {
  min-width: 0;
  min-height: 50px;
  flex: 1 1 160px;
  padding: 9px 13px;
  border-radius: 16px;
}

.intro-store-row .store-button svg {
  width: 22px;
  height: 22px;
}

.scene-text-track {
  position: relative;
  min-height: clamp(180px, 24vw, 310px);
}

.scene-text {
  position: absolute;
  inset: 0 auto auto 0;
  max-width: 560px;
  margin: 0;
  opacity: 0;
  transform: translateY(34px) scale(0.96);
  transition: opacity 260ms ease, transform 260ms ease;
}

.scene-text.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.scene-text.is-past {
  opacity: 0;
  transform: translateY(-30px) scale(0.98);
}

.farm-scene {
  min-height: 620px;
  display: grid;
  place-items: center;
  perspective: 1100px;
  perspective-origin: 50% 42%;
}

.scene-world {
  position: relative;
  width: min(72vw, 780px);
  aspect-ratio: 1.22;
  transform-style: preserve-3d;
  transform:
    rotateX(calc(58deg - var(--progress) * 58deg))
    rotateZ(calc(-13deg + var(--progress) * 13deg))
    translate3d(calc((var(--progress) - 0.5) * -120px), calc((var(--progress) - 0.5) * 50px), 0)
    scale(calc(0.88 + var(--progress) * 0.18));
  transition: transform 90ms linear;
}

.map-plane {
  position: absolute;
  inset: 12% 5% 6%;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 22% 28%, rgba(255, 241, 200, 0.54) 0 7%, transparent 7.5%),
    radial-gradient(circle at 72% 30%, rgba(255, 241, 200, 0.46) 0 8%, transparent 8.5%),
    radial-gradient(circle at 62% 72%, rgba(47, 111, 69, 0.18) 0 13%, transparent 13.5%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.22), transparent 42%),
    linear-gradient(90deg, #c8df9b, #8fc47c 52%, #5f9c5d);
  box-shadow: 0 34px 80px rgba(5, 18, 11, 0.32);
  transform: translateZ(-30px);
}

.map-plane span {
  position: absolute;
  background: rgba(255, 250, 240, 0.42);
}

.map-plane span:nth-child(1) {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(47, 111, 69, 0.14);
  left: 12%;
  bottom: 12%;
}

.map-plane span:nth-child(2) {
  right: 17%;
  top: 13%;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(47, 111, 69, 0.12);
}

.map-plane span:nth-child(n+3) {
  display: none;
}

.route-line {
  position: absolute;
  left: 20%;
  right: 17%;
  top: 53%;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber-500), #fff1c8);
  box-shadow: 0 12px 28px rgba(244, 182, 63, 0.24);
  transform: translateZ(36px) rotateZ(-8deg) scaleX(calc(0.18 + var(--progress) * 0.82));
  transform-origin: left;
}

.map-house,
.map-basket {
  position: absolute;
  transform-style: preserve-3d;
}

.map-house {
  width: 132px;
  height: 118px;
  transform: translateZ(90px);
}

.map-house-a {
  left: 8%;
  top: 33%;
  width: 178px;
  height: 142px;
}

.map-house-b {
  right: 10%;
  top: 30%;
  transform: translateZ(110px) scale(0.88);
}

.node-roof {
  position: absolute;
  left: 50%;
  top: 0;
  width: 112px;
  height: 54px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: #b65a3c;
  transform: translateX(-50%);
}

.node-house {
  position: absolute;
  left: 50%;
  top: 48px;
  width: 84px;
  height: 62px;
  border-radius: 12px;
  background: #fff1c8;
  box-shadow: inset 0 -14px rgba(244, 182, 63, 0.18);
  transform: translateX(-50%);
}

.map-farm {
  filter: drop-shadow(0 18px 22px rgba(5, 18, 11, 0.2));
}

.farm-silo {
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: 28px;
  height: 72px;
  border-radius: 14px 14px 7px 7px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.3), transparent 48%),
    #d9dfd0;
  box-shadow: inset -8px 0 rgba(120, 135, 111, 0.18);
}

.farm-silo::before {
  position: absolute;
  top: -12px;
  left: 0;
  width: 28px;
  height: 18px;
  border-radius: 50% 50% 8px 8px;
  background: #b65a3c;
  content: "";
}

.farm-barn-roof {
  position: absolute;
  left: 42px;
  top: 20px;
  width: 102px;
  height: 52px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: #9d452f;
}

.farm-barn {
  position: absolute;
  left: 52px;
  bottom: 18px;
  width: 82px;
  height: 66px;
  border-radius: 10px 10px 13px 13px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(255, 241, 200, 0.34) 49% 51%, transparent 52%),
    repeating-linear-gradient(90deg, rgba(255, 241, 200, 0.1) 0 5px, transparent 5px 13px),
    #b65a3c;
  box-shadow: inset 0 -12px rgba(93, 54, 26, 0.16);
}

.farm-door {
  position: absolute;
  left: 77px;
  bottom: 18px;
  width: 32px;
  height: 42px;
  border-radius: 18px 18px 4px 4px;
  background: #5d361a;
  box-shadow: inset 0 0 0 4px rgba(255, 241, 200, 0.16);
}

.farm-door::before,
.farm-door::after {
  position: absolute;
  right: 5px;
  left: 5px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 241, 200, 0.34);
  content: "";
}

.farm-door::before {
  top: 13px;
  rotate: 36deg;
}

.farm-door::after {
  bottom: 13px;
  rotate: -36deg;
}

.farm-house-roof {
  position: absolute;
  right: 8px;
  top: 56px;
  width: 58px;
  height: 30px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: #7a4a22;
}

.farm-house {
  position: absolute;
  right: 13px;
  bottom: 18px;
  width: 48px;
  height: 39px;
  border-radius: 8px;
  background: #fff1c8;
  box-shadow: inset 0 -10px rgba(244, 182, 63, 0.2);
}

.farm-house::before {
  position: absolute;
  top: 12px;
  left: 10px;
  width: 11px;
  height: 11px;
  border-radius: 3px;
  background: #2d4f35;
  box-shadow: 18px 0 #2d4f35;
  content: "";
}

.map-basket {
  left: calc(16% + var(--progress) * 54%);
  top: calc(60% - var(--progress) * 20%);
  width: 118px;
  height: 94px;
  filter: drop-shadow(0 26px 28px rgba(5, 18, 11, 0.24));
  transform:
    translateZ(calc(128px + var(--progress) * 92px))
    rotateZ(calc(-8deg + var(--progress) * 18deg))
    scale(calc(0.78 + var(--progress) * 0.14));
}

.map-basket-handle {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 38px;
  left: 18px;
  height: 54px;
  border: 7px solid #7a4a22;
  border-bottom: 0;
  border-radius: 70px 70px 0 0;
}

.map-basket-body {
  position: absolute;
  z-index: 3;
  right: 8px;
  bottom: 0;
  left: 8px;
  height: 52px;
  border-radius: 15px 15px 24px 24px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 241, 200, 0.22) 0 8px, transparent 8px 18px),
    linear-gradient(180deg, #b8793a, #744519);
}

.map-basket-item {
  position: absolute;
  z-index: 2;
  bottom: 34px;
  border-radius: 50%;
}

.basket-bread {
  left: 20px;
  width: 46px;
  height: 26px;
  border-radius: 50% 50% 42% 42%;
  background:
    radial-gradient(circle at 34% 38%, rgba(255, 241, 200, 0.8) 0 5%, transparent 6%),
    radial-gradient(circle at 54% 30%, rgba(255, 241, 200, 0.7) 0 5%, transparent 6%),
    linear-gradient(180deg, #d99643, #9f5a24);
  transform: rotate(-12deg);
}

.basket-salami {
  left: 50px;
  bottom: 37px;
  width: 46px;
  height: 16px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 50%, #fff1c8 0 8%, transparent 9%),
    radial-gradient(circle at 48% 40%, #fff1c8 0 7%, transparent 8%),
    radial-gradient(circle at 70% 58%, #fff1c8 0 6%, transparent 7%),
    linear-gradient(180deg, #d55344, #8e2f28);
  transform: rotate(17deg);
}

.basket-egg {
  left: 74px;
  bottom: 35px;
  width: 26px;
  height: 34px;
  border-radius: 50% 50% 46% 46%;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.95), transparent 24%),
    linear-gradient(180deg, #fffdf0, #eadca7);
  box-shadow: 0 7px 12px rgba(5, 18, 11, 0.12);
  transform: rotate(8deg);
}

.section {
  width: var(--content);
  margin: 0 auto;
  padding: 104px 0;
}

.anchor-target {
  position: relative;
  top: -88px;
  display: block;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

#warum {
  width: 100%;
  padding-right: max(20px, calc((100vw - 1120px) / 2));
  padding-left: max(20px, calc((100vw - 1120px) / 2));
  background: linear-gradient(180deg, rgb(243, 247, 239) 0%, rgb(244, 248, 240) 18%, rgb(251, 242, 214) 100%);
}

.muted {
  width: 100%;
  padding-right: max(20px, calc((100vw - 1120px) / 2));
  padding-left: max(20px, calc((100vw - 1120px) / 2));
  background: #f3f8ef;
}

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

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.category-section {
  padding-top: 116px;
}

.category-intro {
  margin-bottom: 42px;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: 52px;
}

.category-heading {
  max-width: 720px;
}

.category-heading p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.16rem;
}

.category-photo {
  position: relative;
  min-height: 320px;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(31, 79, 50, 0.12);
  overflow: hidden;
}

.category-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 36, 24, 0), rgba(22, 36, 24, 0.1));
  content: "";
}

.category-photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: 58% 50%;
}

.category-grid,
.feature-grid,
.product-grid {
  display: grid;
  gap: 22px;
}

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

.product-grid,
.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-card,
.product-card,
.feature-card,
.compare-card {
  border: 1px solid rgba(31, 79, 50, 0.1);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(31, 79, 50, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.category-card:hover,
.product-card:hover,
.feature-card:hover,
.compare-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 24px 54px rgba(31, 79, 50, 0.15);
}

.category-card {
  min-height: 116px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.category-card:hover .icon-badge {
  transform: rotate(9deg) scale(1.08);
}

.icon-badge {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--amber-200);
  font-size: 1.9rem;
  transition: transform 180ms ease;
}

.category-card small,
.product-card p,
.feature-card p,
.compare-card li,
.app-copy p,
.footer p {
  color: var(--muted);
}

.product-card,
.feature-card {
  padding: 30px;
}

.product-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
}

.product-tag {
  width: fit-content;
  margin-bottom: 22px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--amber-200);
  color: #5c3b00;
  font-size: 0.78rem;
  font-weight: 900;
}

.product-card div {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.icon-button {
  position: relative;
  isolation: isolate;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border: 0;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 900;
  cursor: pointer;
}

.step-scroll {
  --step-progress: 0;
  --active-step: 1;
  width: 100%;
  height: 175vh;
  padding-top: 0;
  padding-bottom: 0;
  background: linear-gradient(180deg, rgb(236, 246, 238) 0%, var(--paper) 100%);
}

.step-scroll-sticky {
  position: sticky;
  top: 0;
  width: var(--content);
  margin: 0 auto;
  min-height: 680px;
  padding: clamp(38px, 6vh, 58px) 0 42px;
  display: grid;
  align-content: start;
  overflow: hidden;
}

.steps-birds {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.step-bird {
  position: absolute;
  width: 42px;
  height: 20px;
  opacity: 0.42;
  animation: step-bird-left 18s linear infinite;
}

.step-bird::before,
.step-bird::after {
  position: absolute;
  top: 8px;
  width: 21px;
  height: 11px;
  border-top: 3px solid rgba(47, 111, 69, 0.56);
  border-radius: 50%;
  content: "";
  animation: bird-flap 560ms ease-in-out infinite alternate;
}

.step-bird::before {
  left: 0;
  transform-origin: right center;
}

.step-bird::after {
  right: 0;
  transform-origin: left center;
}

.step-bird-one {
  top: 18%;
  left: 108%;
}

.step-bird-two {
  top: 34%;
  left: -12%;
  scale: 0.78;
  animation-name: step-bird-right;
  animation-duration: 22s;
  animation-delay: -7s;
}

.step-bird-three {
  top: 11%;
  left: 112%;
  scale: 0.62;
  animation-duration: 26s;
  animation-delay: -12s;
}

@keyframes step-bird-left {
  from {
    translate: 0 0;
  }

  to {
    translate: -125vw 18px;
  }
}

@keyframes step-bird-right {
  from {
    translate: 0 0;
  }

  to {
    translate: 125vw -14px;
  }
}

.step-scroll .section-heading {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin-bottom: clamp(44px, 7vh, 76px);
  transform: translateY(calc(var(--step-progress) * -18px));
}

.steps {
  position: relative;
  z-index: 1;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  list-style: none;
  counter-reset: steps;
}

.steps::before {
  position: absolute;
  top: 42px;
  right: 15%;
  left: 15%;
  z-index: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-600), var(--amber-500));
  content: "";
}

.step-scroll .steps::after {
  position: absolute;
  top: 42px;
  left: 15%;
  z-index: 0;
  width: calc(70% * var(--step-progress));
  height: 3px;
  border-radius: 999px;
  background: var(--amber-500);
  content: "";
}

.steps-car {
  position: absolute;
  top: 42px;
  left: calc(15% + var(--step-progress) * 70%);
  z-index: 1;
  width: 62px;
  height: 220px;
  list-style: none;
  opacity: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.steps-car svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.basket-shadow {
  fill: none;
  stroke: rgba(31, 79, 50, 0.22);
  stroke-width: 4;
  stroke-linecap: round;
}

.basket-handle-line {
  fill: none;
  stroke: #7a4a22;
  stroke-width: 4;
  stroke-linecap: round;
}

.basket-shell {
  fill: #b8793a;
  stroke: #5c3515;
  stroke-width: 3;
  stroke-linejoin: round;
}

.basket-weave {
  fill: none;
  stroke: rgba(255, 241, 200, 0.58);
  stroke-width: 2;
  stroke-linecap: round;
}

.steps li:not(.steps-car) {
  position: relative;
  z-index: 1;
  text-align: center;
  opacity: 0.58;
  transform: translateY(18px) scale(0.98);
  transition: opacity 240ms ease, transform 240ms ease;
}

.steps li.is-active,
.steps li.is-past {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.steps li:not(.steps-car) > span {
  position: relative;
  z-index: 2;
  width: 86px;
  height: 86px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border: 8px solid var(--paper);
  border-radius: 50%;
  background: var(--green-700);
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(31, 79, 50, 0.18);
  transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.steps li.is-active:not(.steps-car) > span {
  background: var(--amber-500);
  color: #3b2600;
  transform: scale(1.12);
  box-shadow: 0 20px 42px rgba(244, 182, 63, 0.28);
}

.steps li.is-past:not(.steps-car) > span {
  background: var(--green-600);
}

.steps p {
  margin: 12px auto 0;
  max-width: 300px;
  color: var(--muted);
}

.steps h3 {
  font-size: 1.45rem;
}

.concept-section {
  --concept-progress: 0;
  --active-concept: 1;
  position: relative;
  height: 340vh;
  width: 100%;
  padding: 0;
  overflow: visible;
  background: linear-gradient(180deg, rgb(251, 242, 214) 0%, #fff7df 22%, #fbfff6 62%, #e9f6ed 100%);
}

.concept-section.section-reveal,
.concept-section.section-reveal.is-visible {
  transform: none;
}

.concept-section::before {
  position: absolute;
  top: 74px;
  right: max(20px, calc((100vw - 1120px) / 2));
  width: 168px;
  height: 168px;
  border: 1px solid rgba(47, 111, 69, 0.16);
  border-radius: 42% 58% 54% 46%;
  background: rgba(255, 255, 255, 0.46);
  content: "";
}

.concept-sticky {
  position: sticky;
  top: 0;
  isolation: isolate;
  height: 100vh;
  min-height: 680px;
  padding: clamp(58px, 7vh, 86px) max(20px, calc((100vw - 1120px) / 2)) clamp(44px, 6vh, 72px);
  display: grid;
  align-content: center;
  overflow: hidden;
}

.concept-cows {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.concept-cow {
  position: absolute;
  left: -90px;
  width: 70px;
  height: 48px;
  opacity: 0.18;
  filter: blur(0.2px);
  animation: concept-cow-run 22s linear infinite;
}

.concept-cow-one {
  top: 22%;
  animation-duration: 24s;
}

.concept-cow-two {
  top: 57%;
  animation-duration: 29s;
  animation-delay: -10s;
  transform: scale(0.82);
}

.concept-cow-three {
  top: 77%;
  animation-duration: 20s;
  animation-delay: -16s;
  transform: scale(0.68);
}

.concept-cow-body {
  position: absolute;
  left: 8px;
  bottom: 10px;
  width: 44px;
  height: 25px;
  border: 2px solid rgba(38, 60, 44, 0.62);
  border-radius: 18px 15px 13px 13px;
  background: rgba(255, 250, 240, 0.72);
}

.concept-cow-head {
  position: absolute;
  right: 5px;
  bottom: 21px;
  width: 21px;
  height: 19px;
  border: 2px solid rgba(38, 60, 44, 0.62);
  border-radius: 11px 11px 9px 9px;
  background: rgba(255, 250, 240, 0.72);
}

.concept-cow-head::before,
.concept-cow-head::after {
  position: absolute;
  bottom: 5px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(38, 60, 44, 0.72);
  content: "";
}

.concept-cow-head::before {
  left: 5px;
}

.concept-cow-head::after {
  right: 5px;
}

.concept-cow-spot {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  background: rgba(38, 60, 44, 0.62);
}

.concept-cow-spot.spot-one {
  left: 18px;
  bottom: 23px;
  width: 11px;
  height: 9px;
}

.concept-cow-spot.spot-two {
  left: 34px;
  bottom: 17px;
  width: 8px;
  height: 11px;
}

.concept-cow-leg {
  position: absolute;
  bottom: 1px;
  width: 5px;
  height: 12px;
  border-radius: 999px;
  background: rgba(38, 60, 44, 0.7);
  animation: concept-cow-leg 420ms ease-in-out infinite alternate;
}

.concept-cow-leg.leg-one {
  left: 17px;
}

.concept-cow-leg.leg-two {
  left: 39px;
  animation-delay: -210ms;
}

@keyframes concept-cow-run {
  from {
    translate: 0 0;
  }

  to {
    translate: calc(100vw + 180px) 0;
  }
}

@keyframes concept-cow-leg {
  from {
    transform: rotate(12deg);
  }

  to {
    transform: rotate(-12deg);
  }
}

.concept-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.45fr);
  align-items: end;
  gap: 42px;
  transform: translateY(calc(var(--concept-progress) * -12px));
  transition: transform 180ms ease;
}

.concept-copy {
  max-width: 760px;
}

.concept-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.16rem;
}

.concept-proof {
  position: relative;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(31, 79, 50, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 64px rgba(31, 79, 50, 0.12);
}

.concept-proof::before {
  position: absolute;
  right: -34px;
  bottom: -44px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: rgba(244, 182, 63, 0.24);
  content: "";
}

.concept-proof span {
  display: block;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.concept-proof strong {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  display: block;
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.concept-grid {
  position: relative;
  z-index: 1;
  margin-top: clamp(32px, 5vh, 58px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  perspective: 1200px;
}

.concept-card {
  min-height: 260px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(31, 79, 50, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  opacity: 0.48;
  box-shadow: 0 12px 34px rgba(31, 79, 50, 0.08);
  transform: translateY(18px) scale(0.94);
  transform-origin: center;
  transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease, opacity 260ms ease, border-color 260ms ease;
}

.concept-card:hover {
  transform: translateY(-5px) scale(1.01);
  background: var(--white);
  box-shadow: 0 26px 58px rgba(31, 79, 50, 0.14);
}

.concept-card.is-active {
  z-index: 2;
  border-color: rgba(244, 182, 63, 0.72);
  background: var(--white);
  opacity: 1;
  box-shadow: 0 34px 76px rgba(31, 79, 50, 0.18), 0 0 0 8px rgba(244, 182, 63, 0.16);
  transform: translateY(-12px) scale(1.08);
}

.concept-card.is-past {
  opacity: 0.78;
  transform: translateY(0) scale(0.98);
}

.concept-card span {
  display: none;
}

.concept-card h3 {
  max-width: 220px;
  font-size: 1.24rem;
}

.concept-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.concept-mobile {
  display: none;
}

.concept-mobile-inner {
  width: var(--content);
  margin: 0 auto;
}

.why-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.56fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 108px);
  align-items: start;
}

.why-story-heading {
  position: sticky;
  top: 126px;
  padding-top: 8px;
}

.why-story-heading h2 {
  max-width: 560px;
}

.why-story-heading p:not(.eyebrow) {
  max-width: 470px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.62;
}

.why-story-text {
  --why-cow-y: 34px;
  position: relative;
  display: grid;
  gap: 18px;
}

.why-story-text::before {
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 29px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(244, 182, 63, 0.74), rgba(47, 111, 69, 0.28));
  content: "";
}

.why-cow {
  position: absolute;
  top: var(--why-cow-y);
  left: 30px;
  z-index: 1;
  width: 58px;
  height: 46px;
  filter: drop-shadow(0 10px 14px rgba(31, 79, 50, 0.2));
  transform: translate(-50%, -50%) rotate(calc((var(--why-progress, 0) - 0.5) * 5deg));
  transition: top 120ms linear;
  pointer-events: none;
}

.why-cow-body {
  position: absolute;
  left: 7px;
  bottom: 10px;
  width: 39px;
  height: 24px;
  border: 2px solid #263c2c;
  border-radius: 17px 15px 13px 13px;
  background: #fffaf0;
}

.why-cow-head {
  position: absolute;
  right: 1px;
  bottom: 19px;
  width: 20px;
  height: 19px;
  border: 2px solid #263c2c;
  border-radius: 11px 11px 9px 9px;
  background: #fffaf0;
}

.why-cow-head::before,
.why-cow-head::after {
  position: absolute;
  bottom: 5px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #263c2c;
  content: "";
}

.why-cow-head::before {
  left: 5px;
}

.why-cow-head::after {
  right: 5px;
}

.why-cow-ear {
  position: absolute;
  bottom: 34px;
  width: 8px;
  height: 7px;
  border-radius: 70% 30% 70% 30%;
  background: #263c2c;
}

.why-cow-ear-left {
  right: 18px;
  transform: rotate(-22deg);
}

.why-cow-ear-right {
  right: -2px;
  transform: rotate(36deg);
}

.why-cow-spot {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  background: #263c2c;
}

.why-cow-spot-one {
  left: 15px;
  bottom: 23px;
  width: 11px;
  height: 9px;
}

.why-cow-spot-two {
  left: 30px;
  bottom: 17px;
  width: 8px;
  height: 11px;
}

.why-cow-leg {
  position: absolute;
  bottom: 0;
  width: 5px;
  height: 13px;
  border-radius: 999px;
  background: #263c2c;
}

.why-cow-leg-one {
  left: 13px;
}

.why-cow-leg-two {
  left: 28px;
}

.why-cow-leg-three {
  left: 39px;
}

.why-cow-tail {
  position: absolute;
  left: 3px;
  bottom: 28px;
  width: 12px;
  height: 3px;
  border-radius: 999px;
  background: #263c2c;
  transform: rotate(26deg);
  transform-origin: right center;
}

.why-point {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  filter: grayscale(1);
  opacity: 0.48;
  transform: scale(0.98);
  transform-origin: left center;
  transition: filter 260ms ease, opacity 260ms ease, transform 260ms ease;
}

.why-point > span {
  position: relative;
  z-index: 4;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border: 8px solid var(--paper);
  border-radius: 50%;
  background: #d7dfd3;
  color: #647064;
  font-size: 0.88rem;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(31, 79, 50, 0.08);
  transition: background 260ms ease, color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.why-point > div {
  padding: 28px clamp(24px, 4vw, 38px);
  border: 1px solid rgba(31, 79, 50, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 10px 28px rgba(31, 79, 50, 0.05);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.why-point:hover > div {
  border-color: rgba(244, 182, 63, 0.52);
  box-shadow: 0 24px 60px rgba(31, 79, 50, 0.13);
}

.why-point.is-active,
.why-point.is-past {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1);
}

.why-point.is-active {
  transform: translateX(8px) scale(1.035);
}

.why-point.is-active > div {
  border-color: rgba(244, 182, 63, 0.58);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 66px rgba(31, 79, 50, 0.13), 0 0 0 7px rgba(244, 182, 63, 0.12);
}

.why-point.is-past > div {
  background: rgba(255, 255, 255, 0.82);
}

.why-point.is-active > span {
  transform: scale(1.12);
}

.why-point.is-active > span,
.why-point.is-past > span {
  background: var(--green-700);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(31, 79, 50, 0.16);
}

.why-point:nth-child(even).is-active > span,
.why-point:nth-child(even).is-past > span {
  background: var(--amber-500);
  color: #3b2600;
}

.why-point h3 {
  max-width: 620px;
  font-size: clamp(1.28rem, 2vw, 1.72rem);
}

.why-point p {
  margin: 0;
  margin-top: 12px;
  color: #3f4f43;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.68;
}

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

.compare-card {
  padding: 38px;
}

.compare-card.problem {
  background: var(--red-100);
}

.compare-card.solution {
  background: var(--green-100);
}

.large-icon {
  width: 76px;
  height: 76px;
  margin-bottom: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--red-500);
}

.large-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution .large-icon,
.large-icon.green,
.large-icon.leaf {
  color: var(--green-700);
}

.large-icon.amber {
  color: var(--amber-500);
}

.compare-card ul {
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.compare-card li {
  position: relative;
  padding-left: 28px;
}

.compare-card li::before {
  position: absolute;
  left: 0;
  color: currentColor;
  font-weight: 900;
  content: "•";
}

.feature-card {
  min-height: 315px;
}

.farmer-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 0;
  padding: 116px max(20px, calc((100vw - 1120px) / 2));
  background: linear-gradient(135deg, var(--green-600), var(--green-900));
  color: var(--white);
}

.farmer-band > div {
  max-width: 760px;
}

.farmer-band p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.15rem;
}

.button-row,
.store-row {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.blob {
  position: absolute;
  z-index: -1;
  fill: rgba(255, 255, 255, 0.08);
}

.blob-one {
  right: -110px;
  bottom: -110px;
  width: 420px;
}

.blob-two {
  top: -120px;
  left: 50%;
  width: 360px;
}

.app-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  align-items: center;
  gap: 58px;
}

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

.store-button {
  position: relative;
  isolation: isolate;
  min-width: 190px;
  min-height: 58px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  border-radius: 18px;
  background: #111827;
  color: var(--white);
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease;
}

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

.store-button svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.store-button small {
  display: block;
  line-height: 1;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.7rem;
}

.phone-mockup {
  justify-self: center;
  width: min(330px, 100%);
  padding: 12px;
  border-radius: 38px;
  background: #162017;
  box-shadow: var(--shadow);
}

.phone-screen {
  min-height: 560px;
  padding: 24px 18px;
  border-radius: 30px;
  background: linear-gradient(180deg, #fbfff6, #e9f6ed);
}

.phone-pill {
  width: 88px;
  height: 7px;
  margin: 0 auto 28px;
  display: block;
  border-radius: 999px;
  background: #162017;
}

.app-item {
  margin: 16px 0;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(31, 79, 50, 0.08);
}

.app-item > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--amber-200);
}

.app-item small {
  display: block;
  color: var(--muted);
}

.phone-screen .button {
  width: 100%;
  margin-top: 16px;
}

.farm-photo-band {
  width: var(--content);
  margin: 0 auto;
  padding: 104px 0;
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  align-items: center;
  gap: 52px;
}

.farm-photo-copy {
  max-width: 520px;
}

.farm-photo-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.12rem;
}

.farm-photo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(180px, 0.72fr);
  grid-template-rows: repeat(2, minmax(190px, 1fr));
  gap: 16px;
}

.farm-photo-card {
  position: relative;
  min-height: 190px;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: var(--green-100);
  box-shadow: 0 18px 44px rgba(31, 79, 50, 0.12);
}

.farm-photo-large {
  grid-row: 1 / span 2;
  min-height: 420px;
}

.farm-photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  transition: transform 520ms ease;
}

.farm-photo-card:hover img {
  transform: scale(1.045);
}

.farm-photo-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(5, 18, 11, 0.58));
  content: "";
}

.farm-photo-card figcaption {
  position: absolute;
  right: 16px;
  bottom: 15px;
  left: 16px;
  z-index: 1;
  color: var(--white);
  font-weight: 900;
  line-height: 1.18;
}

.parallax-section {
  --parallax: 0.5;
  position: relative;
  min-height: clamp(520px, 72vh, 760px);
  margin: 0 0 24px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.parallax-section::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 18, 11, 0.78), rgba(5, 18, 11, 0.5) 47%, rgba(5, 18, 11, 0.14)),
    linear-gradient(180deg, rgba(5, 18, 11, 0.16), rgba(5, 18, 11, 0.52));
  content: "";
}

.parallax-media {
  position: absolute;
  inset: -18% 0;
  z-index: -2;
}

.parallax-layer {
  width: 100%;
  height: 125%;
  display: block;
  object-fit: cover;
  object-position: 50% 48%;
  transform: translate3d(0, calc((var(--parallax) - 0.5) * -96px), 0) scale(1.08);
  will-change: transform;
}

.trust-parallax .parallax-layer {
  object-position: 50% 44%;
}

.partner-parallax {
  margin-bottom: 24px;
}

.partner-parallax::after {
  background:
    linear-gradient(270deg, rgba(5, 18, 11, 0.78), rgba(5, 18, 11, 0.5) 48%, rgba(5, 18, 11, 0.12)),
    linear-gradient(180deg, rgba(5, 18, 11, 0.12), rgba(5, 18, 11, 0.54));
}

.partner-parallax .parallax-layer {
  object-position: 50% 54%;
}

.parallax-copy {
  width: var(--content);
  max-width: 1120px;
  margin: 0 auto;
  padding: 92px 0;
}

.parallax-copy-right {
  text-align: left;
}

.parallax-copy-right > * {
  width: min(100%, 700px);
  margin-left: auto;
}

.parallax-copy h2 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 5.4rem);
  line-height: 0.94;
  text-wrap: balance;
}

.parallax-copy p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.2rem;
}

.parallax-points {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.parallax-points span {
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-weight: 900;
  backdrop-filter: blur(14px);
}

.footer {
  padding: 72px max(20px, calc((100vw - 1120px) / 2)) 28px;
  background: var(--footer);
  color: var(--white);
}

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

.footer h2 {
  margin: 0 0 16px;
  font-family: "Lato", system-ui, sans-serif;
  font-size: 1rem;
}

.footer a:not(.brand) {
  width: fit-content;
  margin: 8px 0;
  display: block;
  color: rgba(255, 255, 255, 0.76);
}

.footer p {
  max-width: 280px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-brand .brand-mark {
  width: 58px;
  height: 58px;
  background-image: url("../images/dark_without%20a%20background.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  filter: drop-shadow(0 12px 22px rgba(5, 18, 11, 0.28));
}

.footer-bottom {
  margin-top: 54px;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
}

.socials a svg {
  width: 20px;
  height: 20px;
}

.consumer-page {
  background: var(--paper);
}

.consumer-page .section-reveal {
  opacity: 0;
  transform: translateY(34px);
}

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

.consumer-hero {
  width: var(--content);
  min-height: calc(100vh - 84px);
  margin: 0 auto;
  padding: 92px 0 84px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: 58px;
}

.consumer-hero-copy {
  max-width: 690px;
}

.consumer-hero-copy h1 {
  color: var(--green-900);
}

.consumer-hero-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.18rem;
}

.consumer-hero-visual {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(31, 79, 50, 0.14);
}

.consumer-hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 53, 36, 0.04), rgba(18, 53, 36, 0.3));
  content: "";
}

.consumer-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: 50% 48%;
}

.consumer-hero-note {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  max-width: min(340px, calc(100% - 40px));
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 250, 240, 0.94);
  box-shadow: 0 16px 42px rgba(5, 18, 11, 0.18);
}

.consumer-hero-note span {
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.consumer-hero-note strong {
  display: block;
  margin-top: 4px;
  line-height: 1.25;
}

.consumer-section {
  width: var(--content);
  margin: 0 auto;
  padding: 96px 0;
}

.consumer-issue-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.consumer-issue-grid article,
.consumer-faq-grid article {
  padding: 24px;
  border: 1px solid rgba(31, 79, 50, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 46px rgba(31, 79, 50, 0.08);
}

.consumer-issue-grid span {
  color: var(--amber-500);
  font-weight: 900;
}

.consumer-issue-grid h3,
.consumer-faq-grid h3 {
  margin: 10px 0 8px;
  color: var(--green-900);
}

.consumer-issue-grid p,
.consumer-faq-grid p {
  margin: 0;
  color: var(--muted);
}

.consumer-contrast {
  width: var(--content);
  margin: 0 auto;
  padding: 96px 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: 56px;
}

.consumer-contrast-image {
  min-height: 540px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(31, 79, 50, 0.14);
}

.consumer-contrast-image img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: 50% 42%;
}

.consumer-contrast-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.16rem;
}

.consumer-check-list {
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.consumer-check-list li {
  position: relative;
  padding: 13px 14px 13px 46px;
  border: 1px solid rgba(31, 79, 50, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--green-900);
  font-weight: 800;
}

.consumer-check-list li::before {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--amber-500);
  box-shadow: inset 0 0 0 5px var(--green-900);
  content: "";
}

.consumer-photo-strip {
  width: var(--content);
  margin: 0 auto;
  padding: 0 0 96px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.consumer-photo-strip figure {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(31, 79, 50, 0.12);
}

.consumer-photo-strip img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.consumer-photo-strip figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(5, 18, 11, 0.62));
  content: "";
}

.consumer-photo-strip figcaption {
  position: absolute;
  right: 16px;
  bottom: 15px;
  left: 16px;
  z-index: 1;
  color: var(--white);
  font-weight: 900;
}

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

.consumer-cta {
  width: var(--content);
  margin: 0 auto 96px;
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  border-radius: 28px;
  background: var(--green-900);
  color: var(--white);
  box-shadow: 0 24px 64px rgba(18, 53, 36, 0.18);
}

.consumer-cta h2 {
  color: var(--white);
}

.consumer-cta p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.consumer-cta .button {
  justify-self: end;
}

.legal-page {
  background: var(--paper);
}

.legal-header {
  width: var(--content);
  margin: 24px auto 0;
  padding: 10px 10px 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(31, 79, 50, 0.12);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.92);
  box-shadow: 0 18px 54px rgba(23, 32, 25, 0.12);
}

.legal-main {
  width: var(--content);
  margin: 0 auto;
  padding: 76px 0 96px;
}

.legal-hero {
  max-width: 760px;
  margin-bottom: 38px;
}

.legal-hero h1 {
  margin-bottom: 14px;
  color: var(--green-900);
}

.legal-hero p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

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

.legal-content article {
  padding: 24px;
  border: 1px solid rgba(31, 79, 50, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
}

.legal-content h2 {
  margin: 0 0 10px;
  color: var(--green-900);
  font-size: 1.08rem;
}

.legal-content p {
  margin: 0;
  color: #34483a;
}

.legal-content a {
  color: var(--green-700);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-footer {
  padding-top: 28px;
}

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

.partner-page {
  background: var(--paper);
}

.partner-page .section-reveal {
  opacity: 0;
  transform: translateY(34px);
}

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

.partner-header {
  position: sticky;
  top: 14px;
  z-index: 40;
  width: var(--content);
  min-height: 70px;
  margin: 14px auto 0;
  padding: 8px 8px 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(31, 79, 50, 0.12);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.9);
  box-shadow: 0 18px 54px rgba(23, 32, 25, 0.12);
  backdrop-filter: blur(20px);
}

.partner-nav {
  min-height: 52px;
  padding: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  font-weight: 700;
}

.partner-nav a {
  min-height: 44px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #334a38;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.partner-nav a:hover {
  background: rgba(233, 246, 237, 0.9);
  color: var(--green-900);
  transform: translateY(-1px);
}

.partner-hero {
  position: relative;
  overflow: hidden;
  width: var(--content);
  min-height: calc(100vh - 84px);
  margin: 0 auto;
  padding: 92px 0 84px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: 58px;
}

.partner-hero-birds {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.partner-hero-birds .bird::before,
.partner-hero-birds .bird::after {
  border-color: rgba(47, 111, 69, 0.38);
}

.partner-hero-birds .bird-one {
  top: 19%;
  left: 104%;
  animation: bird-left 19s linear infinite;
}

.partner-hero-birds .bird-two {
  top: 34%;
  left: -12%;
  scale: 0.72;
  animation: bird-right 23s linear infinite -7s;
}

.partner-hero-birds .bird-three {
  top: 11%;
  left: 112%;
  scale: 0.58;
  animation: bird-left 27s linear infinite -12s;
}

.partner-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.partner-hero-copy > * {
  opacity: 0;
  transform: translateY(24px);
  animation: partner-hero-in 620ms ease forwards;
}

.partner-hero-copy > *:nth-child(2) {
  animation-delay: 90ms;
}

.partner-hero-copy > *:nth-child(3) {
  animation-delay: 170ms;
}

.partner-hero-copy > *:nth-child(4) {
  animation-delay: 250ms;
}

.partner-hero-copy h1 {
  color: var(--green-900);
}

.partner-hero-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.18rem;
}

.partner-outline {
  border-color: rgba(31, 79, 50, 0.32);
  color: var(--green-900);
}

.partner-hero-visual {
  position: relative;
  z-index: 1;
  min-height: 520px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(31, 79, 50, 0.14);
  transform: translateY(18px) rotate(1deg);
  animation: partner-visual-in 760ms ease 160ms forwards, partner-visual-float 5s ease-in-out 980ms infinite alternate;
}

.partner-hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 53, 36, 0.02), rgba(18, 53, 36, 0.18));
  content: "";
}

.partner-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 50% 58%;
}

.partner-note {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  max-width: min(330px, calc(100% - 40px));
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 250, 240, 0.92);
  box-shadow: 0 16px 42px rgba(5, 18, 11, 0.18);
  animation: partner-note-pulse 1800ms ease-in-out infinite alternate;
}

.partner-note span {
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.partner-note strong {
  display: block;
  margin-top: 4px;
  line-height: 1.25;
}

.partner-route {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.partner-route::before {
  position: absolute;
  right: 28%;
  bottom: 26%;
  width: 42%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 241, 200, 0.9), transparent);
  content: "";
  transform: rotate(-13deg);
  transform-origin: right center;
}

.partner-route span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--amber-500);
  box-shadow: 0 0 0 8px rgba(244, 182, 63, 0.18);
  animation: partner-route-dot 1800ms ease-in-out infinite;
}

.partner-route span:nth-child(1) {
  right: 62%;
  bottom: 34%;
}

.partner-route span:nth-child(2) {
  right: 46%;
  bottom: 30%;
  animation-delay: 260ms;
}

.partner-route span:nth-child(3) {
  right: 30%;
  bottom: 25%;
  animation-delay: 520ms;
}

.partner-float {
  position: absolute;
  z-index: 2;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.9);
  color: var(--green-900);
  font-size: 0.76rem;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(5, 18, 11, 0.16);
  animation: partner-chip-float 2400ms ease-in-out infinite alternate;
}

.partner-float-one {
  top: 22px;
  left: 22px;
}

.partner-float-two {
  top: 74px;
  right: 22px;
  animation-delay: 420ms;
}

.partner-section {
  width: var(--content);
  margin: 0 auto;
  padding: 96px 0;
}

.partner-goal {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
  align-items: start;
  gap: 52px;
  border-top: 1px solid rgba(31, 79, 50, 0.12);
}

.partner-goal p:not(.eyebrow) {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 1.22rem;
}

.partner-proof-photos {
  width: var(--content);
  margin: 0 auto;
  padding: 0 0 96px;
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.9fr;
  gap: 16px;
}

.partner-proof-photos figure {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(31, 79, 50, 0.12);
}

.partner-proof-photos figure:first-child {
  min-height: 390px;
}

.partner-proof-photos img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  transition: transform 520ms ease;
}

.partner-proof-photos figure:nth-child(2) img {
  object-position: 50% 72%;
}

.partner-proof-photos figure:nth-child(3) img {
  object-position: 48% 50%;
}

.partner-proof-photos figure:hover img {
  transform: scale(1.045);
}

.partner-proof-photos figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(5, 18, 11, 0.62));
  content: "";
}

.partner-proof-photos figcaption {
  position: absolute;
  right: 16px;
  bottom: 15px;
  left: 16px;
  z-index: 1;
  color: var(--white);
  font-weight: 900;
  line-height: 1.18;
}

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

.partner-benefits article,
.partner-tool-grid article {
  padding: 24px;
  border: 1px solid rgba(31, 79, 50, 0.1);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(31, 79, 50, 0.08);
  transform: translateY(0);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.partner-benefits article:hover,
.partner-tool-grid article:hover {
  border-color: rgba(244, 182, 63, 0.52);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 54px rgba(31, 79, 50, 0.15);
}

.partner-benefits article:hover span {
  animation: partner-badge-pop 420ms ease;
}

.partner-benefits span {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--amber-200);
  color: #5c3b00;
  font-weight: 900;
}

.partner-benefits h3,
.partner-steps h3 {
  font-size: 1.25rem;
}

.partner-benefits p,
.partner-steps p,
.partner-tool-grid span {
  color: var(--muted);
}

.partner-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 104px max(20px, calc((100vw - 1120px) / 2));
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  color: var(--white);
}

.partner-band::before {
  position: absolute;
  inset: auto -8% -34% -8%;
  z-index: -1;
  height: 58%;
  border-radius: 50% 50% 0 0;
  background:
    repeating-linear-gradient(100deg, rgba(255, 250, 240, 0.08) 0 18px, transparent 18px 58px),
    rgba(255, 250, 240, 0.06);
  content: "";
}

.partner-band-birds {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.partner-band-copy {
  max-width: 760px;
  margin-bottom: 42px;
}

.partner-band-copy h2 {
  color: var(--white);
}

.partner-steps {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  list-style: none;
}

.partner-steps li {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(255, 241, 200, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 240, 0.08);
  overflow: hidden;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.partner-steps li::after {
  position: absolute;
  top: -60%;
  left: -30%;
  width: 44%;
  height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  content: "";
  transform: rotate(18deg) translateX(-140%);
  transition: transform 520ms ease;
}

.partner-steps li:hover {
  border-color: rgba(255, 241, 200, 0.34);
  background: rgba(255, 250, 240, 0.12);
  transform: translateY(-6px);
}

.partner-steps li:hover::after {
  transform: rotate(18deg) translateX(360%);
}

.partner-steps span {
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--amber-500);
  color: #3b2600;
  font-weight: 900;
}

.partner-steps p {
  color: rgba(255, 255, 255, 0.78);
}

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

.partner-tool-grid strong,
.partner-tool-grid span {
  display: block;
}

.partner-tool-grid strong {
  margin-bottom: 10px;
  color: var(--green-900);
  font-size: 1.08rem;
}

.partner-register {
  width: var(--content);
  margin: 0 auto 96px;
  padding: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  border-radius: 28px;
  background: var(--green-900);
  color: var(--white);
  box-shadow: 0 28px 70px rgba(31, 79, 50, 0.16);
  overflow: hidden;
  position: relative;
}

.partner-register::before {
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(244, 182, 63, 0.14);
  content: "";
  animation: partner-register-glow 2600ms ease-in-out infinite alternate;
}

.partner-register h2 {
  position: relative;
  color: var(--white);
}

.partner-register p:not(.eyebrow) {
  position: relative;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
}

.partner-register .button {
  position: relative;
}

@keyframes partner-hero-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes partner-visual-in {
  to {
    transform: translateY(0) rotate(0);
  }
}

@keyframes partner-visual-float {
  from {
    translate: 0 0;
  }

  to {
    translate: 0 -10px;
  }
}

@keyframes partner-note-pulse {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-6px);
  }
}

@keyframes partner-route-dot {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(0.76);
  }

  45% {
    opacity: 1;
    transform: scale(1.12);
  }
}

@keyframes partner-chip-float {
  from {
    transform: translateY(0) rotate(-1deg);
  }

  to {
    transform: translateY(-10px) rotate(1deg);
  }
}

@keyframes partner-badge-pop {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.12) rotate(8deg);
  }
}

@keyframes partner-register-glow {
  from {
    transform: scale(0.9);
    opacity: 0.55;
  }

  to {
    transform: scale(1.1);
    opacity: 0.95;
  }
}

.section-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 1024px) {
  :root {
    --content: min(100% - 32px, 1120px);
  }

  .site-header {
    top: 12px;
    width: var(--content);
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .site-header.is-hidden {
    transform: translate(-50%, -120%);
  }

  .site-header.is-scrolled {
    transform: translateX(-50%);
  }

  .nav-shell {
    width: 100%;
    min-height: 68px;
    border-radius: 24px;
    position: relative;
    overflow: visible;
  }

  .brand small {
    display: none;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 44px;
  }

  .nav-links {
    position: absolute;
    z-index: 70;
    top: calc(100% + 8px);
    right: 0;
    width: min(86vw, 400px);
    height: auto;
    max-height: calc(100vh - 24px);
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(31, 79, 50, 0.12);
    border-radius: 24px;
    background: rgba(255, 250, 240, 0.97);
    box-shadow: 0 26px 70px rgba(23, 32, 25, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }

  .nav-links a:not(.button) {
    width: 100%;
    justify-content: center;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }

  .barn-stage {
    min-height: 100vh;
  }

  .barn-scene {
    min-height: 100vh;
  }

  .barn-building {
    left: 50%;
    right: auto;
    bottom: 0;
    width: min(960px, 118vw);
    transform:
      translateX(-50%)
      translateY(calc(var(--barn-progress) * -12px))
      scale(calc(0.96 + var(--barn-progress) * 0.04));
  }

  .hero,
  .app-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 42px;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-visual img {
    height: min(58vh, 560px);
    min-height: 430px;
  }

  .scroll-3d-sticky {
    grid-template-columns: minmax(240px, 0.72fr) minmax(360px, 1fr);
    gap: 28px;
  }

  .scene-world {
    width: min(68vw, 650px);
  }

  .category-intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .category-photo,
  .category-photo img {
    min-height: 260px;
  }

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

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

  .concept-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .concept-proof {
    max-width: 520px;
  }

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

  .concept-card.is-active {
    transform: translateY(-8px) scale(1.04);
  }

  .why-story {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .why-story-heading {
    position: relative;
    top: auto;
  }

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

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

  .partner-hero,
  .partner-goal,
  .consumer-hero,
  .consumer-contrast,
  .farm-photo-band {
    grid-template-columns: 1fr;
  }

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

  .consumer-issue-grid,
  .consumer-photo-strip,
  .consumer-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .parallax-copy {
    padding: 78px 0;
  }

  .partner-benefits,
  .partner-tool-grid,
  .partner-proof-photos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .partner-register {
    grid-template-columns: 1fr;
  }

  .partner-register .button {
    width: fit-content;
  }
}

@media (max-width: 768px) {
  :root {
    --content: min(100% - 28px, 1120px);
  }

  .site-header {
    top: 10px;
    width: var(--content);
    right: auto;
    left: 50%;
    border-radius: 22px;
    transform: translateX(-50%);
  }

  .site-header.is-hidden {
    transform: translate(-50%, -120%);
  }

  .site-header.is-scrolled {
    transform: translateX(-50%);
  }

  .download-drawer {
    top: auto;
    right: 0;
    bottom: 18px;
    transform: translate(150px, 0);
  }

  .download-drawer.is-open {
    transform: translate(0, 0);
  }

  .download-drawer-toggle {
    width: 30px;
    min-height: 94px;
    padding: 8px 4px;
  }

  .download-drawer-panel {
    width: 150px;
    padding: 8px;
    gap: 6px;
  }

  .download-drawer-panel h2 {
    font-size: 0.82rem;
  }

  .download-drawer .store-button {
    min-height: 38px;
    padding: 6px 8px;
    gap: 6px;
    border-radius: 12px;
    font-size: 0.68rem;
  }

  .download-drawer .store-button svg {
    width: 16px;
    height: 16px;
  }

  .download-drawer .store-button small {
    font-size: 0.5rem;
  }

  .download-drawer-toggle span {
    font-size: 0.58rem;
  }

  .nav-shell {
    min-height: 66px;
    width: 100%;
    padding: 7px 8px 7px 10px;
    border-radius: 24px;
    position: relative;
    overflow: visible;
  }

  .brand small {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    z-index: 70;
    top: calc(100% + 8px);
    right: 0;
    width: min(86vw, 360px);
    height: auto;
    max-height: calc(100vh - 20px);
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(31, 79, 50, 0.12);
    border-radius: 24px;
    background: rgba(255, 250, 240, 0.96);
    box-shadow: 0 26px 70px rgba(23, 32, 25, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }

  .nav-links a:not(.button) {
    width: 100%;
    justify-content: center;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .nav-cta {
    margin-top: 10px;
  }

  .hero {
    padding: 76px 0 56px;
    gap: 34px;
  }

  .barn-intro {
    min-height: 860px;
    height: 155vh;
  }

  .barn-stage {
    min-height: 100vh;
    padding: 0;
  }

  .barn-scene {
    min-height: 100vh;
    width: 100%;
  }

  .barn-building {
    bottom: 2%;
    width: min(720px, 132vw);
  }

  .barn-window {
    width: 48px;
    height: 48px;
    border-width: 6px;
    border-radius: 13px;
  }

  .pasture-fence {
    left: 2%;
    right: auto;
    bottom: 24%;
    width: 48%;
    height: 58px;
  }

  .pasture-fence span {
    height: 58px;
  }

  .chicken {
    width: 58px;
    height: 46px;
  }

  .chicken-one {
    left: calc(-18% + (var(--barn-progress) * 50%));
    bottom: calc(8% + (var(--barn-progress) * 2%));
  }

  .chicken-two {
    left: calc(-34% + (var(--barn-progress) * 58%));
    bottom: calc(5% + (var(--barn-progress) * 3%));
  }

  .chicken-body {
    width: 38px;
    height: 27px;
  }

  .chicken-head {
    width: 21px;
    height: 21px;
  }

  .cow {
    left: 5%;
    bottom: 25%;
    width: 118px;
    height: 82px;
  }

  .cow-body {
    width: 80px;
    height: 44px;
  }

  .cow-head {
    width: 34px;
    height: 31px;
    bottom: 38px;
  }

  .cow-ear {
    bottom: 62px;
  }

  .cow-leg {
    height: 25px;
  }

  .chimney {
    width: 38px;
    height: 68px;
    transform: translateY(-31px);
  }

  .smoke {
    width: 27px;
    height: 27px;
  }

  .fruit-basket {
    right: 6%;
    bottom: 9%;
    width: 112px;
    height: 100px;
  }

  .basket-handle {
    right: 18px;
    left: 18px;
    height: 64px;
    border-width: 6px;
  }

  .basket-body {
    height: 52px;
  }

  .fruit {
    bottom: 42px;
    width: 25px;
    height: 25px;
  }

  .fruit-apple { left: 25px; }
  .fruit-pear { left: 44px; bottom: 48px; width: 26px; height: 33px; }
  .fruit-plum { left: 64px; }
  .fruit-orange { left: 47px; bottom: 63px; }

  .barn-door-frame {
    right: 22%;
    left: 22%;
    border-width: 7px;
    border-bottom: 0;
  }

  .scroll-3d {
    display: block;
    height: 235vh;
    min-height: 0;
    background: linear-gradient(180deg, rgb(45, 79, 53) 0%, rgb(243, 247, 239) 100%);
  }

  .scroll-3d-sticky {
    position: sticky;
    top: 0;
    min-height: 100vh;
    min-height: 100svh;
    grid-template-columns: minmax(0, 1fr);
    align-content: start;
    gap: 22px;
    padding: 72px max(14px, calc((100vw - 1120px) / 2)) 54px;
  }

  .scroll-3d-copy {
    max-width: 620px;
    transform: none;
  }

  .scroll-3d-copy h2 {
    font-size: clamp(2.1rem, 11vw, 3.55rem);
    line-height: 0.95;
  }

  .barn-door-glow .intro-app-cta {
    width: min(100%, 360px);
    margin-top: 16px;
    padding: 12px;
    border-radius: 16px;
  }

  .barn-door-glow .intro-store-row .store-button {
    flex-basis: 100%;
    width: 100%;
    min-height: 40px;
  }

  .scene-text-track {
    min-height: clamp(120px, 30vw, 180px);
  }

  .scene-text {
    position: absolute;
    inset: 0 auto auto 0;
    display: block;
    opacity: 0;
    transform: translateY(28px) scale(0.96);
    transition: opacity 260ms ease, transform 260ms ease;
  }

  .scene-text.is-active {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .scene-text.is-past {
    opacity: 0;
    transform: translateY(-24px) scale(0.98);
  }

  .scene-text + .scene-text {
    margin-top: 0;
  }

  .farm-scene {
    display: none;
  }

  .hero-egg-run {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .search-card {
    grid-template-columns: 30px minmax(0, 1fr);
    border-radius: 24px;
  }

  .search-card .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .hero-visual img {
    min-height: 320px;
    height: min(52vh, 420px);
    border-radius: 24px;
  }

  .pickup-note {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
  }

  .section,
  .muted {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .section h2,
  .concept-copy h2,
  .why-story-heading h2 {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
    line-height: 0.98;
    text-wrap: balance;
  }

  .step-scroll {
    height: auto;
  }

  .step-scroll-sticky {
    position: relative;
    top: auto;
    min-height: 0;
    padding: 0;
  }

  .category-grid,
  .product-grid,
  .feature-grid,
  .concept-grid,
  .compare-grid,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .category-intro {
    gap: 28px;
  }

  .category-photo {
    min-height: 230px;
    border-radius: 26px;
  }

  .category-photo img {
    min-height: 230px;
  }

  .category-card {
    min-height: 104px;
  }

  .concept-section {
    display: none;
  }

  .concept-mobile {
    display: block;
    padding: 74px 0;
    overflow: hidden;
    background: linear-gradient(180deg, rgb(251, 242, 214) 0%, #fff7df 28%, #e9f6ed 100%);
  }

  .concept-mobile-inner > p:not(.eyebrow) {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.58;
  }

  .concept-mobile-proof {
    position: relative;
    margin-top: 24px;
    padding: 18px;
    overflow: hidden;
    border: 1px solid rgba(31, 79, 50, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 18px 44px rgba(31, 79, 50, 0.1);
  }

  .concept-mobile-proof::after {
    position: absolute;
    right: -38px;
    bottom: -48px;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    background: rgba(244, 182, 63, 0.2);
    content: "";
  }

  .concept-mobile-proof span {
    color: var(--green-700);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .concept-mobile-proof strong {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 8px;
    font-size: clamp(1.35rem, 7vw, 1.85rem);
    line-height: 1.08;
  }

  .concept-mobile-cards {
    position: relative;
    margin-top: 28px;
    display: grid;
    gap: 16px;
  }

  .concept-mobile-cards::before {
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 18px;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--green-700), var(--amber-500));
    content: "";
  }

  .concept-mobile-card {
    position: relative;
    min-height: 0;
    margin-left: 32px;
    padding: 22px;
    overflow: hidden;
    border: 1px solid rgba(31, 79, 50, 0.1);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 34px rgba(31, 79, 50, 0.09);
    transform: translateZ(0);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  }

  .concept-mobile-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--green-700), var(--amber-500));
    content: "";
  }

  .concept-mobile-card::after {
    position: absolute;
    top: -58px;
    right: -68px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(244, 182, 63, 0.13);
    content: "";
  }

  .concept-mobile-card span {
    position: absolute;
    top: 18px;
    left: -44px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--amber-500);
    color: #3b2600;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(244, 182, 63, 0.24);
  }

  .concept-mobile-card h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: clamp(1.42rem, 6vw, 1.85rem);
    line-height: 1.08;
  }

  .concept-mobile-card p {
    position: relative;
    z-index: 1;
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.58;
  }

  .concept-mobile-card:hover,
  .concept-mobile-card:focus-within {
    border-color: rgba(244, 182, 63, 0.6);
    box-shadow: 0 22px 54px rgba(31, 79, 50, 0.14);
    transform: translateY(-3px);
  }

  .why-story {
    gap: 26px;
  }

  #warum {
    overflow: hidden;
    padding-right: max(16px, calc((100vw - 1120px) / 2));
    padding-left: max(16px, calc((100vw - 1120px) / 2));
  }

  .why-story-heading p:not(.eyebrow) {
    margin-top: 16px;
    font-size: 1.12rem;
    line-height: 1.58;
  }

  .why-story-text::before {
    display: none;
  }

  .why-cow {
    display: none;
  }

  .why-point {
    display: block;
    filter: none;
    opacity: 1;
    transform: none;
    transition: filter 260ms ease, opacity 260ms ease, transform 260ms ease;
  }

  .why-point > span {
    width: auto;
    height: auto;
    margin: 0 0 10px;
    padding: 6px 10px;
    display: inline-flex;
    border: 0;
    border-radius: 999px;
    background: var(--amber-500);
    color: #3b2600;
    font-size: 0.82rem;
    box-shadow: 0 10px 22px rgba(244, 182, 63, 0.24);
  }

  .why-point > div {
    position: relative;
    overflow: hidden;
    padding: 24px 22px;
    border-radius: 20px;
  }

  .why-point > div::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--green-700), var(--amber-500));
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 320ms ease;
  }

  .why-point > div::after {
    position: absolute;
    top: -60px;
    right: -70px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(244, 182, 63, 0.16);
    content: "";
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 260ms ease, transform 260ms ease;
  }

  .why-point.is-active,
  .why-point.is-past,
  .why-point.is-active > span {
    transform: none;
  }

  .why-point.is-active {
    transform: translateY(-4px) scale(1.01);
  }

  .why-point.is-active > span {
    background: var(--green-700);
    color: var(--white);
    box-shadow: 0 14px 30px rgba(31, 79, 50, 0.2);
  }

  .why-point.is-active > div {
    border-color: rgba(244, 182, 63, 0.62);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 54px rgba(31, 79, 50, 0.14), 0 0 0 6px rgba(244, 182, 63, 0.1);
  }

  .why-point.is-active > div::before,
  .why-point.is-past > div::before {
    transform: scaleX(1);
  }

  .why-point.is-active > div::after {
    opacity: 1;
    transform: scale(1);
  }

  .why-point h3 {
    position: relative;
    z-index: 1;
    font-size: clamp(1.65rem, 7vw, 2.05rem);
    line-height: 1.06;
  }

  .why-point p {
    position: relative;
    z-index: 1;
    font-size: clamp(1.12rem, 4.6vw, 1.28rem);
    line-height: 1.62;
  }

  .steps {
    gap: 28px;
  }

  .steps::before {
    top: 0;
    bottom: 0;
    left: 43px;
    width: 3px;
    height: auto;
  }

  .step-scroll .steps::after {
    top: 0;
    bottom: 0;
    left: 43px;
    width: 3px;
    height: calc(100% * var(--step-progress));
  }

  .steps-car {
    top: calc(var(--step-progress) * 100%);
    left: 43px;
    transform: translate(-50%, -50%) rotate(90deg) scale(0.56);
  }

  .steps li:not(.steps-car) {
    min-height: 100px;
    padding-left: 108px;
    text-align: left;
  }

  .steps li:not(.steps-car) > span {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
  }

  .steps p {
    margin-left: 0;
  }

  .farmer-band {
    padding-top: 80px;
    padding-bottom: 86px;
  }

  .app-section {
    gap: 34px;
  }

  .app-copy {
    max-width: none;
  }

  .store-row {
    flex-direction: column;
    width: 100%;
  }

  .phone-screen {
    min-height: 470px;
  }

  .store-button {
    width: 100%;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-header {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 24px;
  }

  .legal-header .button {
    width: 100%;
  }

  .legal-main {
    padding: 52px 0 72px;
  }

  .legal-content article {
    padding: 20px;
  }

  .partner-header {
    position: relative;
    top: auto;
    align-items: flex-start;
    flex-direction: column;
    border-radius: 24px;
  }

  .partner-nav {
    width: 100%;
    justify-content: space-between;
  }

  .partner-nav a {
    flex: 1 1 0;
    justify-content: center;
    padding: 0 8px;
    font-size: 0.88rem;
  }

  .partner-hero {
    min-height: auto;
    padding: 56px 0 64px;
  }

  .consumer-hero {
    min-height: auto;
    padding: 56px 0 64px;
  }

  .partner-hero-visual,
  .partner-hero-visual img,
  .consumer-hero-visual,
  .consumer-hero-visual img,
  .consumer-contrast-image,
  .consumer-contrast-image img {
    min-height: 360px;
  }

  .partner-section,
  .consumer-section,
  .consumer-contrast {
    padding: 72px 0;
  }

  .farm-photo-band {
    padding: 72px 0;
  }

  .farm-photo-grid,
  .partner-proof-photos,
  .consumer-issue-grid,
  .consumer-photo-strip,
  .consumer-faq-grid {
    grid-template-columns: 1fr;
  }

  .farm-photo-large {
    grid-row: auto;
  }

  .farm-photo-card,
  .farm-photo-large,
  .partner-proof-photos figure,
  .partner-proof-photos figure:first-child {
    min-height: 280px;
  }

  .parallax-section {
    min-height: 620px;
  }

  .parallax-section::after,
  .partner-parallax::after {
    background:
      linear-gradient(180deg, rgba(5, 18, 11, 0.2), rgba(5, 18, 11, 0.72)),
      linear-gradient(90deg, rgba(5, 18, 11, 0.72), rgba(5, 18, 11, 0.28));
  }

  .parallax-media {
    inset: -10% 0;
  }

  .parallax-layer {
    height: 116%;
    transform: translate3d(0, calc((var(--parallax) - 0.5) * -48px), 0) scale(1.05);
  }

  .parallax-copy {
    align-self: end;
    padding: 72px 0 54px;
  }

  .parallax-copy h2 {
    font-size: clamp(2.15rem, 12vw, 3.7rem);
  }

  .parallax-copy p:not(.eyebrow) {
    font-size: 1.04rem;
  }

  .parallax-points {
    gap: 8px;
  }

  .parallax-points span {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.9rem;
  }

  .partner-benefits,
  .partner-tool-grid {
    grid-template-columns: 1fr;
  }

  .partner-band {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .partner-register {
    margin-bottom: 72px;
    padding: 28px;
    border-radius: 22px;
  }

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

  .consumer-photo-strip {
    padding-bottom: 72px;
  }

  .consumer-photo-strip figure {
    min-height: 280px;
  }

  .consumer-cta {
    margin-bottom: 72px;
    padding: 28px;
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .consumer-cta .button {
    width: 100%;
    justify-self: stretch;
  }
}

@media (max-width: 430px) {
  :root {
    --content: min(100% - 24px, 1120px);
  }

  .brand {
    font-size: 1.15rem;
  }

  .partner-nav {
    align-items: stretch;
    flex-direction: column;
    border-radius: 20px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .footer-brand .brand-mark {
    width: 52px;
    height: 52px;
  }

  .scroll-3d {
    height: 220vh;
  }

  .download-drawer {
    transform: translate(128px, 0);
  }

  .download-drawer-panel {
    width: 128px;
    padding: 7px;
  }

  .download-drawer-toggle {
    width: 28px;
    min-height: 86px;
  }

  .download-drawer-toggle span {
    font-size: 0.54rem;
  }

  .download-drawer .store-button {
    min-height: 36px;
    padding: 6px 7px;
    font-size: 0.62rem;
  }

  .download-drawer .store-button svg {
    width: 15px;
    height: 15px;
  }

  .barn-building {
    width: min(620px, 142vw);
  }

  .barn-door-frame {
    right: 18%;
    left: 18%;
  }

  .scroll-3d-sticky {
    padding-top: 58px;
    padding-bottom: 46px;
  }

  .scroll-3d-copy h2 {
    font-size: clamp(2.05rem, 10.5vw, 3rem);
  }

  .scene-text-track {
    min-height: 132px;
  }

  .scene-text + .scene-text {
    margin-top: 6px;
  }

  .barn-door-glow {
    padding: 18px;
  }

  .barn-door-glow .intro-app-cta strong {
    font-size: 0.8rem;
  }

  .barn-door-glow .intro-app-cta > span {
    font-size: 0.62rem;
  }

  .hero-meta span {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.2rem);
  }

  .hero-text {
    font-size: 1.04rem;
  }

  .hero-visual img {
    min-height: 280px;
    height: 340px;
  }

  .category-card,
  .product-card,
  .feature-card,
  .compare-card,
  .concept-card {
    padding: 24px;
  }

  .why-point {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .why-story-text::before {
    left: 20px;
  }

  .why-point > span {
    width: 42px;
    height: 42px;
    border-width: 5px;
    font-size: 0.78rem;
  }

  .why-cow {
    left: 20px;
    transform: translate(-50%, -50%) scale(0.68) rotate(calc((var(--why-progress, 0) - 0.5) * 5deg));
  }

  .steps-car {
    transform: translate(-50%, -50%) rotate(90deg) scale(0.48);
  }

  .steps li:not(.steps-car) {
    padding-left: 96px;
  }

  .phone-screen {
    min-height: 410px;
    padding: 20px 14px;
  }

  .app-item {
    align-items: flex-start;
    padding: 12px;
  }

  .app-item > span {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
  }
}

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

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

  .step-scroll {
    height: auto;
    --step-progress: 1 !important;
  }

  .concept-section {
    height: auto;
    --concept-progress: 1 !important;
  }

  .step-scroll-sticky,
  .concept-sticky {
    position: relative;
    top: auto;
    min-height: 0;
  }

  .steps li,
  .concept-card {
    grid-area: auto;
    opacity: 1;
    transform: none;
  }

  .hero-copy > * {
    opacity: 1;
    transform: none;
  }

  .partner-hero-copy > *,
  .partner-hero-visual,
  .partner-note,
  .partner-float,
  .partner-route span,
  .partner-register::before {
    opacity: 1;
    transform: none;
    translate: none;
  }

  .barn-intro {
    min-height: 760px;
    height: auto;
  }

  .barn-stage {
    position: relative;
  }

  .barn-intro {
    --barn-progress: 1 !important;
  }

  .scroll-3d {
    height: auto;
  }

  .scroll-3d-sticky {
    position: relative;
    top: auto;
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .scroll-3d-copy {
    transform: none;
  }

  .farm-scene {
    display: none;
  }

  .scene-text-track {
    min-height: 0;
  }

  .scene-text {
    position: static;
    opacity: 1;
    transform: none;
  }

  .concept-cow {
    display: none;
  }
}

/* ── Cookie Banner ────────────────────────────────────── */

.cookie-banner {
  position: fixed;
  right: max(20px, calc((100vw - 1120px) / 2));
  bottom: 24px;
  left: max(20px, calc((100vw - 1120px) / 2));
  z-index: 1000;
  border: 1px solid rgba(31, 79, 50, 0.12);
  border-radius: 24px;
  background: rgba(255, 250, 240, 0.95);
  box-shadow: 0 -18px 54px rgba(23, 32, 25, 0.12);
  backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 420ms ease, transform 420ms ease;
}

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

.cookie-banner.is-hidden {
  opacity: 0;
  transform: translateY(40px);
  pointer-events: none;
}

.cookie-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
}

.cookie-banner-copy strong {
  display: block;
  margin-bottom: 4px;
  color: var(--green-900);
}

.cookie-banner-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cookie-banner {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .cookie-banner-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-banner-actions .button {
    flex: 1;
    justify-content: center;
  }
}


/* Nova staging QA patch 2026-06-26: make the first viewport self-explanatory on the staging subdomain. */
.site-header.is-hidden {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.barn-quick-message {
  position: absolute;
  z-index: 24;
  left: clamp(18px, 6vw, 86px);
  top: clamp(118px, 15vh, 190px);
  bottom: auto;
  width: min(560px, calc(100% - 36px));
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(255, 246, 222, 0.58);
  border-radius: 28px;
  color: #fffaf0;
  background: linear-gradient(135deg, rgba(22, 58, 38, 0.84), rgba(47, 111, 69, 0.66));
  box-shadow: 0 28px 70px rgba(10, 28, 18, 0.28);
  backdrop-filter: blur(14px);
}

.barn-quick-message p {
  margin: 0 0 10px;
  color: #f8be3b;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.barn-quick-message h1 {
  max-width: 15ch;
  margin: 0;
  color: #fffaf0;
  font-size: clamp(2.15rem, 4.6vw, 4.65rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.barn-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.barn-quick-actions .button-ghost {
  color: #fffaf0;
  border-color: rgba(255, 250, 240, 0.54);
  background: rgba(255, 250, 240, 0.11);
}

@media (max-width: 760px) {
  .barn-quick-message {
    left: 16px;
    right: 16px;
    top: 104px;
    bottom: auto;
    width: auto;
    padding: 16px;
    border-radius: 22px;
  }

  .barn-quick-message h1 {
    max-width: 17ch;
    font-size: clamp(1.7rem, 10vw, 2.7rem);
  }

  .barn-quick-actions .button {
    flex: 1 1 100%;
    min-height: 46px;
  }

  .download-drawer {
    top: auto;
    right: 0;
    bottom: 82px;
  }

  .site-header.is-hidden,
  .site-header.is-scrolled {
    transform: translateX(-50%);
  }
}
