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

@font-face {
  font-family: "Product Sans";
  src: url("assets/ProductSans-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

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

@font-face {
  font-family: "Product Sans";
  src: url("assets/ProductSans-Black.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

:root {
  --green: #17764e;
  --green-dark: #0b3d2b;
  --green-deep: #092f22;
  --green-soft: #dff3e6;
  --yellow: #ffc94d;
  --yellow-pale: #fff2c8;
  --brown: #8a7954;
  --soft-brown: #eee8db;
  --cream: #f7f4ea;
  --warm-white: #fffdf8;
  --ink: #10231a;
  --muted: #6f7d75;
  --line: #dce4df;
  --white: #ffffff;
  --shadow: 0 28px 70px rgba(30, 54, 39, 0.13);
  --radius-xl: 42px;
  --radius-lg: 30px;
  --radius-md: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--warm-white);
  color: var(--ink);
  font-family: "Product Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

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

p {
  color: var(--muted);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  color: white;
  background: var(--green-dark);
  transform: translateY(-160%);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 25px;
  border: 0;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--green-deep);
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(201, 147, 18, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #ffd361;
  box-shadow: 0 14px 28px rgba(201, 147, 18, 0.23);
}

.button-small {
  min-height: 43px;
  padding: 0 20px;
  font-size: 14px;
}

.hero-shell {
  position: relative;
  min-height: 1050px;
  margin: 14px;
  overflow: hidden;
  border-radius: 12px 12px var(--radius-xl) var(--radius-xl);
  background:
    radial-gradient(circle at 12% 60%, rgba(255, 201, 77, 0.2), transparent 26%),
    radial-gradient(circle at 88% 42%, rgba(23, 118, 78, 0.12), transparent 25%),
    linear-gradient(135deg, #fbf7ee 0%, #fffdf8 49%, #f4eadc 100%);
}

.hero-shell::before,
.hero-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-shell::before {
  width: 260px;
  height: 260px;
  left: -125px;
  bottom: 80px;
  background: rgba(255, 201, 77, 0.16);
}

.hero-shell::after {
  width: 360px;
  height: 360px;
  right: -210px;
  top: 310px;
  border: 1px solid rgba(23, 118, 78, 0.18);
}

.navbar {
  position: relative;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1180px, calc(100% - 64px));
  min-height: 84px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  width: max-content;
  color: var(--green);
  font-size: 27px;
  font-weight: 900;
  letter-spacing: -0.8px;
}

.brand-name {
  font-weight: 900;
}

.brand-app {
  font-weight: 400;
  letter-spacing: -0.4px;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
  border: 1px solid rgba(23, 118, 78, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(12px);
}

.nav-links a {
  padding: 8px 15px;
  border-radius: 999px;
  color: #53675c;
  font-size: 14px;
  font-weight: 500;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
  background: var(--green);
}

.nav-download {
  justify-self: end;
}

.menu-toggle {
  display: none;
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: min(840px, calc(100% - 40px));
  margin: 42px auto 0;
  text-align: center;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 16px;
  padding: 0 14px;
  border-radius: 0;
  color: #fff;
  background: #111;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -3.5px;
}

.highlight {
  position: relative;
  z-index: 0;
  display: inline-block;
  white-space: nowrap;
}

.highlight::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -2%;
  right: -2%;
  bottom: 4px;
  height: 30%;
  border-radius: 3px;
  background: var(--yellow);
  transform: rotate(-1deg);
}

.hero-description {
  max-width: 650px;
  margin: 0 auto 25px;
  font-size: 19px;
}

.store-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 166px;
  height: 55px;
  padding: 6px 17px;
  border: 1px solid #202020;
  border-radius: 13px;
  color: white;
  background: #101010;
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
}

.store-badge svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  fill: white;
}

.store-badge .play-icon {
  width: 27px;
  height: 29px;
}

.store-badge span {
  display: grid;
  line-height: 1;
}

.store-badge small {
  margin-bottom: 4px;
  font-size: 9px;
  letter-spacing: 0.02em;
}

.store-badge strong {
  font-size: 17px;
  font-weight: 500;
}

.hero-stage {
  position: absolute;
  left: 50%;
  bottom: -365px;
  width: min(1080px, 96%);
  height: 760px;
  transform: translateX(-50%);
}

.phone {
  position: relative;
  overflow: hidden;
  border: 8px solid #112018;
  border-radius: 48px;
  background: #f8f6ee;
  box-shadow: var(--shadow);
}

.phone > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.phone-speaker {
  position: absolute;
  z-index: 8;
  top: 10px;
  left: 50%;
  width: 32%;
  height: 24px;
  border-radius: 999px;
  background: #08100c;
  transform: translateX(-50%);
}

.phone-hero {
  position: absolute;
  z-index: 8;
  top: 42px;
  left: 50%;
  width: 326px;
  height: 708px;
  transform: translateX(-50%);
}

.phone-hero .hero-screen {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 550ms ease, transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transform: scale(1.018);
}

.phone-hero .hero-screen.is-active {
  opacity: 1;
  transform: scale(1);
}

.float-card {
  position: absolute;
  z-index: 12;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 11px 16px;
  border: 1px solid rgba(23, 118, 78, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(31, 61, 44, 0.14);
  backdrop-filter: blur(10px);
  animation: float 5s ease-in-out infinite;
}

.float-card img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.float-card div {
  display: grid;
}

.float-card small {
  color: var(--muted);
  font-size: 12px;
}

.float-card strong {
  color: var(--ink);
  font-size: 15px;
}

.float-task {
  left: 40px;
  top: 210px;
  min-width: 258px;
}

.float-stat {
  left: 178px;
  top: 24px;
  animation-delay: -2.3s;
}

.float-location {
  right: 95px;
  top: 260px;
  animation-delay: -1.2s;
}

.status-dot {
  width: 10px;
  height: 10px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255, 201, 77, 0.2);
}

.stat-icon,
.pin {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-weight: 700;
}

.pin {
  color: var(--yellow);
  font-size: 24px;
}

.feature-orbit {
  position: absolute;
  z-index: 7;
  right: 24px;
  top: 145px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.feature-orbit span {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  overflow: hidden;
  border: 6px solid white;
  border-radius: 50%;
  background: var(--green-soft);
  box-shadow: 0 12px 26px rgba(16, 35, 26, 0.12);
}

.feature-orbit .orbit-active {
  width: 88px;
  height: 88px;
  border-color: var(--yellow);
  transform: translateY(8px);
}

.feature-orbit img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.screen-dots {
  position: absolute;
  z-index: 20;
  left: 50%;
  bottom: 383px;
  display: flex;
  gap: 7px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  transform: translateX(-50%);
}

.screen-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #afbeb6;
  cursor: pointer;
  transition: width 200ms ease, background 200ms ease;
}

.screen-dots button.active {
  width: 22px;
  border-radius: 999px;
  background: var(--green);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1160px, calc(100% - 48px));
  min-height: 150px;
  margin: 0 auto;
  color: #68766f;
  font-size: 15px;
  font-weight: 700;
}

.trust-strip div {
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.trust-strip span {
  color: var(--green);
  font-size: 21px;
}

.section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 110px 0;
}

.section-copy {
  max-width: 520px;
}

.section-copy h2,
.section-heading h2,
.testimonial-header h2,
.download-copy h2 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -2px;
}

.section-copy > p:not(.section-tag),
.section-heading > p:not(.section-tag),
.testimonial-header p,
.download-copy p {
  font-size: 18px;
  line-height: 1.65;
}

.visual-panel {
  position: relative;
  min-height: 665px;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.green-panel {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 201, 77, 0.28), transparent 30%),
    linear-gradient(145deg, #0a5b3d, #16805a);
}

.phone-section {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: -102px;
  width: 310px;
  height: 673px;
  transform: translateX(-50%);
}

.crop-decoration {
  position: absolute;
  z-index: 2;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.task-decoration {
  left: -70px;
  bottom: -45px;
}

.crop-decoration img {
  width: 130%;
  height: 130%;
  object-fit: contain;
  transform: translate(-2%, -15%) rotate(-8deg);
}

.mini-note {
  position: absolute;
  z-index: 6;
  display: grid;
  min-width: 126px;
  padding: 14px 18px;
  border-radius: 16px;
  background: white;
  box-shadow: 0 16px 40px rgba(6, 41, 28, 0.2);
}

.mini-note strong {
  font-size: 20px;
}

.mini-note span {
  color: var(--muted);
  font-size: 12px;
}

.note-top {
  right: 32px;
  top: 62px;
}

.note-bottom {
  left: 32px;
  top: 250px;
}

.feature-list {
  display: grid;
  gap: 25px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
}

.feature-list li > span,
.step-number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--green-deep);
  background: var(--yellow);
  font-weight: 900;
}

.feature-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 20px;
}

.feature-list p {
  margin: 0;
  line-height: 1.45;
}

.story-section {
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
}

.story-section .button {
  margin-top: 12px;
}

.farmer-visual {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #f0eadb, #fff9ea);
}

.farmer-visual > img {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: -12px;
  width: min(540px, 92%);
  transform: translateX(-50%);
}

.sun-shape {
  position: absolute;
  z-index: 1;
  top: 65px;
  left: 50%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--yellow);
  transform: translateX(-50%);
}

.metric-card {
  position: absolute;
  z-index: 6;
  display: grid;
  width: 145px;
  padding: 16px 18px;
  border: 1px solid rgba(23, 118, 78, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 15px 40px rgba(16, 35, 26, 0.14);
}

.metric-card strong {
  color: var(--green);
  font-size: 27px;
}

.metric-card span {
  color: var(--muted);
  font-size: 12px;
}

.metric-one {
  left: 28px;
  bottom: 96px;
}

.metric-two {
  right: 24px;
  top: 88px;
}

.leaf {
  position: absolute;
  width: 100px;
  height: 230px;
  border-radius: 100% 0 100% 0;
  background: var(--green);
  opacity: 0.13;
}

.leaf-one {
  left: -22px;
  top: 60px;
  transform: rotate(35deg);
}

.leaf-two {
  right: -30px;
  bottom: 45px;
  transform: rotate(-30deg) scale(0.75);
}

.workflow-section {
  padding: 115px max(24px, calc((100vw - 1160px) / 2));
  background:
    radial-gradient(circle at 50% 60%, rgba(255, 201, 77, 0.12), transparent 35%),
    linear-gradient(#fbf8f0, #fff);
}

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

.workflow-grid {
  display: grid;
  grid-template-areas:
    "one phone three"
    "two phone four";
  grid-template-columns: 1fr 355px 1fr;
  align-items: center;
  gap: 26px 55px;
  max-width: 1160px;
  min-height: 680px;
  margin: 0 auto;
}

.step-one { grid-area: one; }
.step-two { grid-area: two; }
.step-three { grid-area: three; }
.step-four { grid-area: four; }

.step-card {
  position: relative;
  min-height: 190px;
  padding: 35px 28px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: 0 12px 36px rgba(20, 48, 34, 0.06);
}

.step-card .step-number {
  position: absolute;
  top: -19px;
  left: 25px;
}

.step-card h3 {
  margin-bottom: 9px;
  font-size: 23px;
}

.step-card p {
  margin-bottom: 0;
  line-height: 1.45;
}

.workflow-phone-wrap {
  position: relative;
  grid-area: phone;
  align-self: end;
  height: 680px;
}

.phone-workflow {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 0;
  width: 322px;
  height: 700px;
  transform: translateX(-50%);
}

.connector {
  position: absolute;
  z-index: 1;
  top: 50%;
  width: 100px;
  border-top: 2px dashed rgba(23, 118, 78, 0.4);
}

.connector::after {
  content: "";
  position: absolute;
  top: -6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
}

.connector-left {
  left: -78px;
}

.connector-left::after {
  left: 0;
}

.connector-right {
  right: -78px;
}

.connector-right::after {
  right: 0;
}

.details-section {
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  padding-top: 140px;
  padding-bottom: 140px;
}

.details-visual {
  position: relative;
  min-height: 650px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 80% 15%, rgba(255, 201, 77, 0.7), transparent 23%),
    linear-gradient(145deg, var(--green), var(--green-dark));
}

.phone-detail {
  position: absolute;
  width: 280px;
  height: 607px;
}

.phone-detail-back {
  top: 32px;
  left: 42px;
  opacity: 0.84;
  transform: rotate(-7deg);
}

.phone-detail-front {
  z-index: 4;
  right: 36px;
  bottom: -38px;
  transform: rotate(5deg);
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.check-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 13px;
  min-height: 112px;
  margin: 0;
  padding: 14px 14px 14px 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 22px;
  background:
    radial-gradient(circle at 0% 100%, rgba(255, 201, 77, 0.24), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(226, 241, 232, 0.5));
  clip-path: inset(0 round 22px);
  box-shadow:
    0 18px 38px rgba(28, 65, 45, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.check-card::before {
  content: none;
}

.check-card:hover {
  border-color: rgba(23, 118, 78, 0.2);
  box-shadow:
    0 24px 46px rgba(28, 65, 45, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transform: translateY(-4px);
}

.check-card-image {
  display: grid;
  place-items: center;
  width: 72px;
  height: 82px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(223, 243, 230, 0.82), rgba(255, 255, 255, 0.68));
}

.check-card-image img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  filter: drop-shadow(0 8px 9px rgba(24, 68, 44, 0.12));
}

.check-card-copy {
  display: grid;
  min-width: 0;
  line-height: 1.12;
}

.check-card-copy small {
  margin-bottom: 6px;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.check-card-copy strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.check-card .check-mark {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  box-shadow: 0 7px 16px rgba(23, 118, 78, 0.22);
  font-size: 14px;
  font-weight: 700;
}

.testimonial-section {
  overflow: hidden;
  padding: 110px max(24px, calc((100vw - 1160px) / 2)) 150px;
  background: linear-gradient(180deg, #fff 0%, #fbf5e9 100%);
}

.testimonial-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  max-width: 1160px;
  margin: 0 auto 65px;
}

.testimonial-header > div:first-child {
  max-width: 720px;
}

.testimonial-header h2 {
  margin-bottom: 15px;
}

.testimonial-header p:last-child {
  margin-bottom: 0;
}

.testimonial-controls {
  display: flex;
  gap: 10px;
}

.testimonial-controls button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--green-dark);
  background: white;
  box-shadow: 0 10px 28px rgba(31, 61, 44, 0.11);
  cursor: pointer;
}

.testimonial-controls button:last-child {
  color: white;
  background: var(--green);
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1160px;
  margin: 0 auto;
  transition: transform 450ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.quote-card {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 34px;
  border: 1px solid rgba(23, 118, 78, 0.08);
  border-radius: 22px;
  background: white;
  box-shadow: 0 18px 45px rgba(50, 56, 40, 0.08);
}

.tilt-left {
  transform: rotate(-4deg) translateY(18px);
}

.tilt-right {
  transform: rotate(4deg) translateY(18px);
}

.featured-quote {
  position: relative;
  z-index: 2;
}

.stars {
  margin-bottom: 18px;
  color: #e9a81c;
  letter-spacing: 3px;
}

.quote-card blockquote {
  margin: 0 0 30px;
  color: #304139;
  font-size: 19px;
  line-height: 1.55;
}

.quote-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.quote-card footer div {
  display: grid;
}

.quote-card footer small {
  color: var(--muted);
}

.download-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 560px;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto 110px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  color: white;
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 201, 77, 0.32), transparent 32%),
    linear-gradient(135deg, #09583b, #16875c);
}

.download-copy {
  position: relative;
  z-index: 5;
  padding: 65px;
}

.download-copy h2 {
  color: white;
}

.download-copy > p:not(.section-tag) {
  color: rgba(255, 255, 255, 0.78);
}

.download-copy .store-row {
  justify-content: flex-start;
  margin-top: 28px;
}

.light-tag {
  color: #614b0c;
  background: var(--yellow);
}

.download-phones {
  position: relative;
  align-self: stretch;
}

.download-phone {
  position: absolute;
  bottom: -200px;
  width: 275px;
  height: 598px;
}

.download-phone-back {
  left: 25px;
  transform: rotate(-8deg);
  opacity: 0.9;
}

.download-phone-front {
  z-index: 3;
  right: 34px;
  transform: rotate(6deg);
}

.site-footer {
  padding: 0 max(24px, calc((100vw - 1160px) / 2)) 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.4fr 1fr;
  gap: 55px;
  padding: 20px 0 70px;
}

.footer-grid > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid h3 {
  margin-bottom: 4px;
  font-size: 16px;
}

.footer-grid a:not(.brand) {
  color: var(--muted);
  font-size: 14px;
}

.footer-grid a:hover {
  color: var(--green);
}

.footer-brand p {
  max-width: 310px;
  margin-top: 18px;
  font-size: 14px;
}

.social-row {
  display: flex;
  gap: 9px;
}

.social-row a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: white !important;
  background: var(--green);
  font-size: 11px !important;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.toast {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 24px;
  max-width: calc(100% - 32px);
  padding: 13px 20px;
  border-radius: 999px;
  color: white;
  background: var(--green-deep);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

body.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

body.reveal-ready .hero-stage.reveal {
  opacity: 0;
  transform: translate(-50%, 28px);
}

body.reveal-ready .hero-stage.reveal.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1050px) {
  .hero-shell { min-height: 1010px; }
  .float-task { left: 0; }
  .float-location { right: 15px; }
  .feature-orbit { right: -25px; }
  .section { gap: 50px; }
  .workflow-grid { grid-template-columns: 1fr 320px 1fr; gap: 22px 34px; }
  .phone-workflow { width: 295px; height: 641px; }
  .phone-detail { width: 245px; height: 532px; }
  .download-phone { width: 238px; height: 517px; }
}

@media (max-width: 820px) {
  body { font-size: 16px; }
  .hero-shell { min-height: 960px; margin: 8px; }
  .navbar { grid-template-columns: 1fr auto; width: calc(100% - 36px); }
  .nav-download { display: none; }
  .menu-toggle {
    position: relative;
    z-index: 52;
    display: grid;
    place-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 12px;
    border: 0;
    border-radius: 50%;
    background: white;
    cursor: pointer;
  }
  .menu-toggle span { display: block; width: 20px; height: 2px; border-radius: 5px; background: var(--green-dark); transition: transform 200ms ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .nav-links {
    position: fixed;
    z-index: 50;
    inset: 8px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 7px;
    padding: 70px 30px;
    border-radius: 26px;
    background: rgba(255, 253, 248, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity 200ms ease, transform 200ms ease;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-links a { padding: 14px 18px; text-align: center; font-size: 22px; }
  .hero-copy { margin-top: 32px; }
  .hero-copy h1 { font-size: clamp(42px, 11vw, 64px); letter-spacing: -2.5px; }
  .hero-description { font-size: 17px; }
  .hero-stage { bottom: -390px; height: 720px; width: 100%; }
  .phone-hero { top: 38px; width: 290px; height: 630px; }
  .float-task { left: 18px; top: 190px; min-width: unset; }
  .float-task div, .float-task .status-dot { display: none; }
  .float-stat { left: 26px; top: 30px; }
  .float-location { right: 14px; top: 270px; }
  .feature-orbit { right: 0; top: 100px; flex-direction: column; }
  .feature-orbit span { width: 58px; height: 58px; }
  .feature-orbit .orbit-active { width: 68px; height: 68px; }
  .screen-dots { bottom: 404px; }
  .trust-strip { min-height: 125px; overflow-x: auto; justify-content: flex-start; scrollbar-width: none; }
  .trust-strip::-webkit-scrollbar { display: none; }
  .section, .story-section, .details-section { grid-template-columns: 1fr; gap: 60px; padding: 75px 0; }
  .section-copy { max-width: none; }
  .visual-panel { min-height: 600px; }
  .story-section .section-copy { order: 2; }
  .story-section .farmer-visual { order: 1; }
  .workflow-section { padding-top: 80px; padding-bottom: 80px; }
  .workflow-grid { grid-template-areas: "phone phone" "one three" "two four"; grid-template-columns: 1fr 1fr; min-height: auto; }
  .workflow-phone-wrap { height: 650px; margin-bottom: 45px; }
  .connector { display: none; }
  .details-visual { min-height: 610px; }
  .details-section .section-copy { padding-top: 15px; }
  .testimonial-track { display: flex; width: max-content; gap: 18px; }
  .quote-card { width: min(75vw, 380px); transform: none; }
  .download-section { grid-template-columns: 1fr; min-height: 920px; }
  .download-copy { padding: 55px 45px; }
  .download-phones { min-height: 450px; }
  .download-phone { bottom: -170px; }
  .download-phone-back { left: 18%; }
  .download-phone-front { right: 18%; }
  .footer-grid { grid-template-columns: 1.8fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 560px) {
  :root { --radius-xl: 30px; }
  .hero-shell { min-height: 900px; border-radius: 8px 8px 30px 30px; }
  .navbar { min-height: 70px; }
  .brand { font-size: 23px; }
  .brand img { width: 37px; height: 37px; border-radius: 50%; }
  .hero-copy { width: calc(100% - 32px); margin-top: 24px; }
  .eyebrow { font-size: 11px; }
  .hero-copy h1 { margin-bottom: 17px; font-size: 41px; line-height: 1.02; letter-spacing: -2px; }
  .highlight { white-space: normal; }
  .hero-description { max-width: 350px; font-size: 16px; line-height: 1.45; }
  .store-badge { min-width: 149px; height: 51px; padding: 6px 12px; }
  .store-badge strong { font-size: 15px; }
  .hero-stage { bottom: -365px; }
  .phone-hero { width: 264px; height: 573px; border-width: 7px; border-radius: 40px; }
  .phone-speaker { height: 19px; }
  .float-stat { left: 10px; top: 10px; min-height: 60px; padding: 8px 10px; }
  .float-stat small { display: none; }
  .float-task { left: -5px; top: 235px; }
  .float-location { right: -12px; top: 270px; min-height: 62px; padding: 9px 11px; }
  .float-location small { display: none; }
  .feature-orbit { right: -18px; top: 100px; }
  .feature-orbit span:first-child, .feature-orbit span:last-child { display: none; }
  .screen-dots { bottom: 375px; }
  .trust-strip { width: calc(100% - 32px); min-height: 110px; gap: 25px; font-size: 13px; }
  .section { width: calc(100% - 32px); padding: 62px 0; }
  .section-copy h2, .section-heading h2, .testimonial-header h2, .download-copy h2 { font-size: 38px; letter-spacing: -1.5px; }
  .section-copy > p:not(.section-tag), .section-heading > p:not(.section-tag), .testimonial-header p, .download-copy p { font-size: 16px; }
  .visual-panel { min-height: 520px; }
  .phone-section { width: 245px; height: 532px; bottom: -72px; border-radius: 40px; }
  .note-top { right: 14px; top: 34px; }
  .note-bottom { left: 13px; top: 230px; }
  .mini-note { min-width: 108px; padding: 10px 14px; }
  .mini-note strong { font-size: 17px; }
  .farmer-visual { min-height: 480px; }
  .sun-shape { width: 260px; height: 260px; }
  .metric-card { width: 120px; padding: 12px; }
  .metric-card strong { font-size: 22px; }
  .metric-one { left: 12px; bottom: 55px; }
  .metric-two { right: 12px; top: 50px; }
  .workflow-section { padding-left: 16px; padding-right: 16px; }
  .section-heading { margin-bottom: 42px; }
  .workflow-grid { grid-template-areas: "phone" "one" "two" "three" "four"; grid-template-columns: 1fr; gap: 30px; }
  .workflow-phone-wrap { height: 590px; margin-bottom: 25px; }
  .phone-workflow { width: 268px; height: 582px; border-radius: 41px; }
  .step-card { min-height: auto; padding: 32px 24px 22px; }
  .details-visual { min-height: 500px; }
  .phone-detail { width: 205px; height: 445px; border-width: 6px; border-radius: 36px; }
  .phone-detail-back { left: 17px; top: 30px; }
  .phone-detail-front { right: 14px; bottom: -24px; }
  .check-grid { grid-template-columns: 1fr; }
  .check-card { grid-template-columns: 68px minmax(0, 1fr) 28px; min-height: 104px; }
  .check-card-image { width: 68px; height: 76px; }
  .testimonial-section { padding: 70px 16px 105px; }
  .testimonial-header { align-items: flex-end; gap: 12px; margin-bottom: 38px; }
  .testimonial-header > div:first-child { max-width: calc(100% - 60px); }
  .testimonial-controls { display: none; }
  .testimonial-track { overflow-x: auto; width: auto; margin-right: -16px; padding: 10px 16px 28px 2px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .testimonial-track::-webkit-scrollbar { display: none; }
  .quote-card { width: 82vw; min-height: 300px; flex: 0 0 auto; scroll-snap-align: start; }
  .download-section { width: calc(100% - 24px); min-height: 830px; margin-bottom: 75px; }
  .download-copy { padding: 45px 27px; }
  .download-copy .store-row { justify-content: flex-start; }
  .download-phones { min-height: 380px; }
  .download-phone { width: 205px; height: 445px; border-width: 6px; border-radius: 36px; bottom: -135px; }
  .download-phone-back { left: 4%; }
  .download-phone-front { right: 4%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; padding-bottom: 50px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}

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