.update-site {
  --ink: #07100e;
  --teal: #18d7b0;
  --teal-dark: #174c49;
  --mint-panel: rgba(43, 222, 178, 0.72);
  --yellow: #fff200;
  --gold: #dea12b;
  --blue: #25aeea;
  --white: #fffdf6;
  --muted-white: rgba(255, 253, 246, 0.76);
  --curved-section-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M0 15 C0 8 3 5.5 8.5 4.8 L100 0 V100 H0 Z'/%3E%3C/svg%3E");
  color: var(--white);
  background: var(--ink);
}

.update-site [id] {
  scroll-margin-top: 116px;
}

.update-site button {
  border: 0;
  cursor: pointer;
}

.update-nav {
  position: fixed;
  z-index: 80;
  top: 28px;
  left: 50%;
  display: grid;
  width: min(1260px, calc(100vw - 112px));
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  transform: translateX(-50%);
}

.update-menu-bar,
.nav-tools {
  min-height: 64px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 70px rgba(7, 16, 14, 0.14);
  backdrop-filter: blur(18px);
}

.update-menu-bar {
  display: grid;
  grid-template-columns: minmax(250px, 0.86fr) minmax(0, 2.14fr);
  align-items: center;
  padding: 0 54px 0 52px;
  border-radius: 999px;
}

.update-brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.update-brand img {
  display: block;
  width: auto;
  height: 42px;
  max-width: 190px;
  object-fit: contain;
}

.update-menu-bar nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-width: 0;
  overflow: visible;
  scrollbar-width: none;
}

.update-menu-bar nav::-webkit-scrollbar {
  display: none;
}

.main-menu-item {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  justify-content: center;
  padding: 16px 0;
  margin: -16px 0;
}

.main-menu-link {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.main-menu-link:hover,
.main-menu-link[aria-current="page"],
.main-menu-item:hover .main-menu-link,
.main-menu-item:focus-within .main-menu-link {
  color: var(--ink);
}

.main-menu-dropdown {
  position: absolute;
  z-index: 30;
  top: calc(100% - 4px);
  left: 50%;
  display: grid;
  width: max-content;
  min-width: 150px;
  gap: 0;
  padding: 10px;
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 45px rgba(7, 16, 14, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -4px);
  visibility: hidden;
}

.main-menu-item:hover .main-menu-dropdown,
.main-menu-item:focus-within .main-menu-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.main-menu-dropdown a {
  display: grid;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 9px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.main-menu-dropdown a:hover {
  color: var(--white);
  background: var(--ink);
}

.nav-tools {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.search-control {
  position: relative;
}

.nav-tools button,
.mobile-explore summary {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 45px rgba(7, 16, 14, 0.12);
  list-style: none;
  transition: color 180ms ease, background 180ms ease;
}

.mobile-explore {
  position: relative;
}

.mobile-explore summary::-webkit-details-marker {
  display: none;
}

.nav-tools button:hover,
.mobile-explore summary:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
}

.search-popover {
  position: absolute;
  z-index: 45;
  top: calc(100% + 14px);
  right: 0;
  display: grid;
  width: 320px;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(7, 16, 14, 0.16);
  backdrop-filter: blur(16px);
}

.search-popover label {
  display: grid;
  gap: 8px;
}

.search-popover label span {
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.search-popover input {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(7, 16, 14, 0.12);
  border-radius: 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 800;
}

.search-results {
  display: grid;
  gap: 6px;
  max-height: 330px;
  overflow-y: auto;
}

.search-results a {
  display: grid;
  gap: 3px;
  padding: 10px 11px;
  border-radius: 12px;
  color: var(--ink);
  background: rgba(7, 16, 14, 0.06);
}

.search-results a:hover {
  color: var(--white);
  background: var(--ink);
}

.search-results span {
  color: #007a70;
  font-size: 9px;
  font-weight: 950;
  text-transform: uppercase;
}

.search-results strong {
  font-size: 13px;
  line-height: 1.15;
}

.search-results small,
.search-results p {
  margin: 0;
  color: rgba(7, 16, 14, 0.62);
  font-size: 11px;
  line-height: 1.25;
}

.search-results a:hover span,
.search-results a:hover small {
  color: rgba(255, 253, 246, 0.72);
}

.mobile-explore > .mobile-menu-panel {
  position: absolute;
  top: calc(100% + 22px);
  right: -24px;
  display: none;
  width: 96px;
  gap: 0;
  padding: 14px 12px;
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 45px rgba(7, 16, 14, 0.12);
  backdrop-filter: blur(14px);
}

.mobile-explore[open] > .mobile-menu-panel {
  display: grid;
}

.desktop-account-menu {
  display: grid;
}

.mobile-nav-menu {
  display: none;
}

.desktop-account-menu a {
  display: grid;
  min-height: 30px;
  place-items: center;
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.desktop-account-menu a + a {
  border-top: 1px solid rgba(7, 16, 14, 0.14);
}

.desktop-account-menu a:hover {
  color: var(--ink);
}

.update-hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  align-items: center;
  padding: 156px max(24px, calc((100vw - 1120px) / 2)) 106px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(235, 247, 255, 0.4), rgba(235, 247, 255, 0) 34%),
    url("../website%20image/sample%20layout%20b.png") center / cover;
}

.update-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(235, 247, 255, 0.22), rgba(235, 247, 255, 0) 35%);
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: url("../website%20image/sample%20layout%20b.png") center / cover;
}

.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 177.778vh;
  min-height: 56.25vw;
  border: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1.04);
  transition: opacity 240ms ease;
}

.hero-video.is-ready iframe {
  opacity: 1;
}

.hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(660px, calc(100vw - 48px));
  grid-template-columns: minmax(0, 1fr) 72px;
  gap: 12px;
  align-items: end;
  padding: 24px 28px 24px 30px;
  background: var(--mint-panel);
}

.hero-panel h1 {
  min-width: 0;
  margin: 0;
  color: var(--white);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(40px, 4.1vw, 56px);
  line-height: 0.93;
}

.hero-video-button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  justify-self: end;
  min-width: 0;
  padding: 0;
  color: var(--white);
  background: transparent;
  font-family: "Aeonik Fono", monospace;
  font-size: 9px;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.hero-video-button span {
  width: 48px;
}

.hero-watch-video {
  position: absolute;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 92px 0 0;
  background: #000;
}

.hero-watch-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.hero-watch-close {
  position: absolute;
  top: 108px;
  right: 24px;
  z-index: 2;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-next {
  position: absolute;
  z-index: 3;
  right: max(28px, calc((100vw - 1120px) / 2));
  bottom: 94px;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 20px 50px rgba(7, 16, 14, 0.24);
  transition: transform 180ms ease;
}

.hero-next:hover {
  transform: translateX(4px);
}

.farmer-story {
  position: relative;
  display: grid;
  min-height: 660px;
  align-items: center;
  margin-top: -92px;
  padding: 224px max(24px, calc((100vw - 1120px) / 2)) 96px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 16, 14, 0.18), rgba(7, 16, 14, 0.04) 55%, rgba(7, 16, 14, 0)),
    url("../website%20image/sample%20layout%20b%20copy.png") center top / cover;
  -webkit-mask-image: var(--curved-section-mask);
  mask-image: var(--curved-section-mask);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.farmer-story::before {
  display: none;
}

.story-copy,
.platform-copy,
.finance-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.story-copy h2,
.platform-copy h2,
.finance-copy h2,
.metrics-stage h2,
.partner-copy h2,
.news-copy h2 {
  margin: 0;
  font-family: "Public Sans", Arial, sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 950;
  line-height: 1.02;
}

.story-copy p,
.platform-copy p,
.finance-copy p,
.partner-copy p {
  max-width: 475px;
  margin: 16px 0 20px;
  color: var(--muted-white);
  font-size: 15px;
  line-height: 1.45;
}

.micro-button {
  display: inline-flex;
  min-height: 37px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal);
  font-size: 13px;
  font-weight: 950;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.micro-button:hover {
  color: var(--ink);
  background: var(--white);
  transform: translateY(-2px);
}

.micro-button.yellow {
  color: var(--ink);
  background: var(--yellow);
}

.micro-button.yellow:hover {
  color: var(--white);
  background: var(--ink);
}

.platform-section {
  display: grid;
  min-height: 590px;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.74fr);
  align-items: center;
  padding: 104px max(24px, calc((100vw - 1120px) / 2)) 134px;
  background:
    linear-gradient(90deg, rgba(7, 16, 14, 0.02), rgba(7, 16, 14, 0.34) 50%, rgba(7, 16, 14, 0.62)),
    url("../website%20image/sample%20layout%20b%20copy%202.png") center top / cover;
}

.platform-copy {
  grid-column: 2;
}

.platform-copy .mergdata-logo img {
  height: 38px;
  max-width: 280px;
}

.platform-copy h2 {
  margin-top: 18px;
  max-width: 520px;
}

.solutions-strip {
  position: relative;
  z-index: 5;
  margin-top: -7rem;
  padding: 0 max(24px, calc((100vw - 1120px) / 2)) 32px;
  color: var(--ink);
}

.solutions-inner {
  max-width: 1120px;
}

.solutions-label {
  margin: 0 0 10px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 950;
}

.solution-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(96px, 1fr)) minmax(128px, auto);
  gap: 8px;
  align-items: start;
}

.solution-option {
  position: relative;
  display: grid;
  min-width: 0;
  align-content: start;
}

.solution-option button,
.solution-tabs a {
  display: inline-flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 7px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.solution-option:hover button,
.solution-option:focus-within button {
  color: var(--white);
  background: var(--teal-dark);
  transform: translateY(-2px);
}

.solution-tabs a {
  align-self: start;
  color: var(--yellow);
  background: var(--ink);
}

.solution-tabs a:hover {
  color: var(--ink);
  background: var(--yellow);
}

.solution-detail {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  left: 0;
  display: grid;
  width: 100%;
  min-height: 144px;
  gap: 12px;
  padding: 13px;
  border-radius: 7px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 40px rgba(7, 16, 14, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  visibility: hidden;
  transition: opacity 120ms ease, transform 120ms ease;
}

.solution-option:hover .solution-detail,
.solution-option:focus-within .solution-detail {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.solution-detail p {
  margin: 0;
  color: #364540;
  font-size: 11px;
  line-height: 1.33;
}

.solution-detail span {
  align-self: end;
  color: #667570;
  font-size: 10px;
  font-weight: 900;
}

.solution-detail svg {
  justify-self: end;
}

.finance-section {
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 0.52fr);
  gap: 54px;
  align-items: center;
  padding: 118px max(24px, calc((100vw - 1120px) / 2));
  background:
    linear-gradient(90deg, rgba(11, 79, 72, 0.1), rgba(11, 79, 72, 0.18)),
    url("../website%20image/sample%20layout%20b%20copy%203.png") center / cover;
}

.finance-copy h2 {
  max-width: 640px;
  color: #25f3b6;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(54px, 7vw, 88px);
  line-height: 0.94;
}

.finance-copy p {
  max-width: 620px;
  color: rgba(255, 253, 246, 0.72);
}

.finance-pillar-list {
  display: grid;
  gap: 12px;
}

.finance-pillar-list article {
  min-height: 104px;
  padding: 19px 22px;
  border-radius: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 42px rgba(7, 16, 14, 0.12);
}

.finance-pillar-list article.is-gold {
  background: rgba(194, 151, 53, 0.78);
}

.finance-pillar-list article.is-blue {
  background: rgba(37, 174, 234, 0.82);
}

.finance-pillar-list article.is-slate {
  background: rgba(198, 211, 207, 0.78);
}

.finance-pillar-list h3 {
  margin: 0 0 6px;
  font-size: 28px;
  line-height: 1;
}

.finance-pillar-list p {
  margin: 0;
  color: rgba(255, 253, 246, 0.82);
  font-size: 14px;
  line-height: 1.35;
}

.update-metrics {
  padding: 72px max(24px, calc((100vw - 1120px) / 2));
  background:
    linear-gradient(90deg, rgba(7, 16, 14, 0.48), rgba(7, 16, 14, 0.4)),
    url("../website%20image/sample%20layout%20b%20copy%204.png") center / cover;
}

.metrics-stage {
  max-width: 980px;
  margin: 0 auto;
}

.metrics-stage h2 {
  margin-bottom: 46px;
  color: var(--teal);
  text-align: center;
}

.update-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 76px;
}

.update-metric-grid article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.update-metric-grid svg {
  color: var(--teal);
}

.update-metric-grid article.is-amber svg {
  color: var(--gold);
}

.update-metric-grid article.is-gold svg {
  color: #d0a85e;
}

.update-metric-grid article.is-blue svg {
  color: var(--blue);
}

.update-metric-grid strong {
  display: block;
  color: var(--white);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(46px, 7vw, 72px);
  line-height: 0.88;
}

.update-metric-grid span {
  display: block;
  color: rgba(255, 253, 246, 0.72);
  font-size: 18px;
  font-weight: 750;
}

.update-partners {
  padding: 78px max(24px, calc((100vw - 1120px) / 2));
  color: var(--ink);
  background: #fff;
}

.partner-board {
  display: grid;
  min-height: 346px;
  grid-template-columns: minmax(0, 0.65fr) minmax(280px, 0.35fr);
  align-items: stretch;
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid rgba(7, 16, 14, 0.22);
  background: var(--ink);
}

.partner-copy {
  display: grid;
  align-content: end;
  padding: 32px 34px;
  color: var(--white);
}

.partner-copy h2 {
  max-width: 360px;
  margin-bottom: 18px;
}

.partner-copy p {
  margin: 0;
  color: rgba(255, 253, 246, 0.58);
  font-size: 13px;
}

.partner-logo-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 12px;
  padding: 12px 0 12px 12px;
  background: #fff;
}

.partner-logo-stack div {
  display: grid;
  min-height: 78px;
  place-items: center;
  padding: 10px;
  background: #fff;
}

.partner-logo-stack img {
  width: 100%;
  max-height: 76px;
  object-fit: contain;
}

.update-news {
  position: relative;
  display: grid;
  gap: 26px;
  padding: 82px max(24px, calc((100vw - 1120px) / 2)) 150px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(224, 153, 38, 0.12), rgba(224, 153, 38, 0.08)),
    url("../website%20image/sample%20layout%20b%20copy%205.png") center / cover;
}

.update-news::before,
.update-news::after {
  content: "";
  position: absolute;
  right: -8%;
  left: -8%;
  height: 74px;
  background: #fff;
  transform: rotate(-2.8deg);
}

.update-news::before {
  top: -44px;
}

.update-news::after {
  display: none;
}

.news-copy,
.news-run,
.update-news > .micro-button {
  position: relative;
  z-index: 2;
}

.news-copy p {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 18px;
  font-weight: 850;
}

.news-copy h2 {
  max-width: 680px;
  font-size: clamp(28px, 4vw, 39px);
}

.news-run {
  display: grid;
  grid-template-columns: auto repeat(3, minmax(0, 1fr)) auto;
  gap: 28px;
  align-items: center;
}

.news-run > button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  background: var(--white);
}

.news-run article {
  display: grid;
  grid-template-columns: minmax(95px, 0.88fr) minmax(0, 1fr);
  min-height: 136px;
  color: var(--ink);
  background: var(--white);
}

.news-run img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-run article div {
  display: grid;
  align-content: space-between;
  gap: 16px;
  padding: 13px 14px;
}

.news-run article p {
  margin: 0;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.13;
}

.news-run time {
  color: #777;
  font-size: 10px;
  font-weight: 850;
}

.update-footer {
  position: relative;
  min-height: 650px;
  margin-top: -112px;
  padding: 186px max(24px, calc((100vw - 1120px) / 2)) 74px;
  overflow: hidden;
  background: #020504;
  -webkit-mask-image: var(--curved-section-mask);
  mask-image: var(--curved-section-mask);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.footer-content {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(520px, 100%);
  gap: 28px;
}

.newsletter h2,
.contact-block h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 14px;
  font-weight: 950;
}

.newsletter {
  display: grid;
  width: min(240px, 100%);
  gap: 10px;
}

.newsletter label {
  display: grid;
  gap: 8px;
}

.newsletter label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.newsletter input {
  min-height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  font-size: 12px;
  font-weight: 750;
}

.newsletter button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 6px;
  color: var(--white);
  background: var(--teal);
  font-size: 11px;
  font-weight: 950;
}

.contact-block {
  max-width: 330px;
}

.contact-block p {
  margin: 0 0 18px;
  color: rgba(255, 253, 246, 0.84);
  font-size: 14px;
  line-height: 1.36;
}

.contact-block strong {
  display: inline-grid;
  width: 16px;
  height: 16px;
  place-items: center;
  margin: 0 1px;
  color: var(--ink);
  background: var(--white);
  font-size: 11px;
  line-height: 1;
}

.footer-mark {
  margin-top: 26px;
}

.footer-mark .farmerline-logo img {
  height: clamp(58px, 8vw, 104px);
}

.footer-lines {
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: min(620px, 70vw);
  height: 560px;
  border: 1px solid rgba(24, 215, 176, 0.32);
  border-radius: 300px 0 0 0;
  transform: skewY(-4deg);
  transform-origin: left top;
}

.footer-lines::before,
.footer-lines::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(24, 215, 176, 0.24);
}

.footer-lines::before {
  right: 118px;
  top: 110px;
  width: 310px;
  height: 188px;
}

.footer-lines::after {
  right: 118px;
  bottom: 124px;
  width: 270px;
  height: 170px;
}

.update-site [data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

.update-site [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .update-nav {
    top: 16px;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .update-menu-bar {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 28px;
    padding: 0 18px 0 24px;
  }

  .update-menu-bar nav {
    justify-content: flex-start;
    gap: 18px;
  }

  .platform-section,
  .finance-section,
  .partner-board {
    grid-template-columns: 1fr;
  }

  .platform-copy {
    grid-column: auto;
  }

  .solution-tabs {
    grid-template-columns: repeat(3, minmax(100px, 1fr));
  }

  .solution-tabs a {
    grid-column: span 3;
  }

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

  .news-run > button {
    display: none;
  }
}

@media (max-width: 760px) {
  .update-site [id] {
    scroll-margin-top: 152px;
  }

  .update-nav {
    width: calc(100vw - 18px);
  }

  .update-menu-bar,
  .nav-tools {
    min-height: 42px;
  }

  .update-menu-bar {
    padding: 0 12px 0 16px;
  }

  .update-menu-bar nav {
    display: none;
  }

  .update-brand img {
    height: 20px;
  }

  .nav-tools button,
  .mobile-explore summary {
    width: 42px;
    height: 42px;
  }

  .mobile-explore > div {
    top: calc(100% + 14px);
    right: -8px;
  }

  .mobile-explore > .mobile-menu-panel {
    right: 0;
    width: min(340px, calc(100vw - 24px));
    gap: 8px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
  }

  .desktop-account-menu {
    display: none;
  }

  .mobile-nav-menu {
    display: grid;
    gap: 6px;
  }

  .mobile-nav-group {
    display: grid;
    gap: 5px;
  }

  .mobile-nav-group > a {
    display: grid;
    min-height: 36px;
    align-items: center;
    padding: 0 12px;
    border-radius: 11px;
    color: var(--ink);
    background: rgba(7, 16, 14, 0.06);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
  }

  .mobile-submenu {
    display: grid;
    gap: 5px;
    padding-left: 12px;
  }

  .mobile-submenu a {
    display: grid;
    min-height: 32px;
    align-items: center;
    padding: 0 12px;
    border-radius: 10px;
    color: rgba(7, 16, 14, 0.78);
    background: rgba(7, 16, 14, 0.04);
    font-size: 12px;
    font-weight: 850;
  }

  .mobile-account-menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid rgba(7, 16, 14, 0.12);
  }

  .mobile-account-menu a {
    display: grid;
    min-height: 36px;
    place-items: center;
    border-radius: 11px;
    color: var(--white);
    background: var(--ink);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
  }

  .search-popover {
    right: -50px;
    width: min(320px, calc(100vw - 24px));
  }

  .update-hero {
    min-height: 660px;
    padding: 156px 18px 96px;
  }

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

  .hero-panel h1 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .hero-next {
    right: 22px;
    bottom: 72px;
    width: 64px;
    height: 64px;
  }

  .farmer-story,
  .platform-section,
  .finance-section,
  .update-metrics,
  .update-partners,
  .update-news,
  .update-footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .farmer-story,
  .platform-section {
    min-height: 540px;
  }

  .solutions-strip {
    margin-top: -70px;
    padding-right: 18px;
    padding-left: 18px;
  }

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

  .solution-tabs a {
    grid-column: 1 / -1;
  }

  .solution-tabs button,
  .solution-tabs a {
    min-height: 40px;
    font-size: 12px;
  }

  .solution-detail {
    width: 100%;
  }

  .finance-section {
    gap: 32px;
  }

  .finance-copy h2 {
    font-size: clamp(44px, 13vw, 68px);
  }

  .update-metric-grid,
  .news-run {
    grid-template-columns: 1fr;
  }

  .update-metric-grid {
    gap: 26px;
  }

  .partner-logo-stack {
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .partner-copy {
    padding: 26px 22px;
  }

  .news-run article {
    grid-template-columns: minmax(120px, 0.72fr) minmax(0, 1fr);
  }
}

@media (max-width: 480px) {
  .update-menu-bar {
    grid-template-columns: 1fr;
    gap: 2px;
    align-content: center;
    min-height: 58px;
  }

  .main-menu-link {
    min-height: 30px;
    font-size: 10px;
  }

  .story-copy h2,
  .platform-copy h2,
  .metrics-stage h2,
  .partner-copy h2,
  .news-copy h2 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .solution-tabs {
    grid-template-columns: 1fr;
  }

  .solution-tabs a {
    grid-column: auto;
  }

  .update-metric-grid article,
  .news-run article {
    grid-template-columns: 1fr;
  }

  .update-metric-grid strong {
    font-size: 48px;
  }

  .news-run img {
    height: 180px;
  }

  .footer-mark .farmerline-logo img {
    max-width: 100%;
    height: auto;
  }
}
