:root {
  --green: #149647;
  --green-deep: #0f7c3a;
  --green-soft: #e8f6ec;
  --blue: #0f2140;
  --ink: #1f2d20;
  --muted: #576459;
  --line: #d9e6db;
  --surface: #ffffff;
  --surface-alt: #f5fbf6;
  --sky: #edf8ff;
  --shadow: 0 18px 40px rgba(17, 57, 27, 0.08);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(20, 150, 71, 0.08), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f8fcf8 100%);
}

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

.site-wrap {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 20px;
  top: -48px;
  z-index: 20;
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
}

.skip-link:focus {
  top: 16px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 10px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-logo {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0ea242, #52be75);
  box-shadow: inset 0 0 0 7px #fff;
}

.brand-orb {
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  border: 4px solid #0d4f8f;
}

.brand-leaf {
  position: absolute;
  top: 8px;
  right: 6px;
  width: 13px;
  height: 20px;
  border-radius: 20px 20px 2px 20px;
  background: #0ea242;
  transform: rotate(34deg);
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  line-height: 0.95;
  letter-spacing: 0.03em;
  color: var(--green-deep);
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a.active::after,
.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--green);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid #c9ddd0;
  border-radius: 14px;
  background: #fff;
}

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

.demo-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.demo-link {
  min-width: 138px;
  padding: 14px 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  box-shadow: 0 12px 28px rgba(20, 150, 71, 0.24);
}

.button {
  padding: 14px 22px;
}

.button:hover,
.demo-link:hover,
.button:focus-visible,
.demo-link:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  box-shadow: 0 12px 28px rgba(20, 150, 71, 0.22);
}

.button-secondary {
  color: var(--green-deep);
  border: 1px solid #b9d7c2;
  background: #fff;
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 1.18fr;
  gap: 26px;
  align-items: center;
  padding: 10px 0 0;
}

.kicker {
  margin: 0 0 12px;
  color: var(--green-deep);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.95;
  color: var(--blue);
}

h1 span {
  color: var(--green);
}

.lead {
  max-width: 57ch;
  margin: 14px 0 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #36463a;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #314635;
}

.point-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--green);
  border: 1px solid #abd3b6;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 0 0 0 34px;
  background:
    linear-gradient(180deg, #eef8ff 0%, #f9fcfd 56%, #f5fbf6 56%, #eef8f0 100%);
}

.sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.95), transparent 16%),
    radial-gradient(circle at 68% 18%, rgba(255, 255, 255, 0.85), transparent 11%);
}

.cloud {
  position: absolute;
  width: 110px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
}

.cloud::before {
  width: 38px;
  height: 38px;
  left: 15px;
  top: -16px;
}

.cloud::after {
  width: 46px;
  height: 46px;
  right: 14px;
  top: -19px;
}

.cloud-one {
  top: 36px;
  right: 34px;
}

.cloud-two {
  top: 88px;
  right: 184px;
  transform: scale(0.82);
}

.ecosystem {
  position: absolute;
  top: 34px;
  left: 120px;
  width: 310px;
  height: 250px;
}

.ecosystem-ring {
  position: absolute;
  inset: 16px 38px 16px 38px;
  border: 2px dashed rgba(20, 150, 71, 0.42);
  border-radius: 50%;
}

.ecosystem-center {
  position: absolute;
  top: 94px;
  left: 94px;
  width: 122px;
  height: 78px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  text-transform: uppercase;
}

.ecosystem-center strong {
  font-family: "Outfit", sans-serif;
  font-size: 2.15rem;
  line-height: 1;
  color: var(--green-deep);
}

.ecosystem-center span {
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 800;
  color: #415948;
}

.orbit {
  position: absolute;
  width: 86px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: #304939;
}

.orbit::before {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto 8px;
  border: 2px solid rgba(20, 150, 71, 0.35);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 16px rgba(17, 57, 27, 0.08);
}

.orbit-top {
  top: 0;
  left: 113px;
}

.orbit-left {
  top: 78px;
  left: 0;
}

.orbit-right {
  top: 82px;
  right: 0;
}

.orbit-bottom-left {
  bottom: 0;
  left: 36px;
}

.orbit-bottom-right {
  right: 22px;
  bottom: 2px;
}

.scene {
  position: absolute;
  inset: auto 0 0 0;
  height: 255px;
}

.hill {
  position: absolute;
  bottom: 0;
  border-radius: 50% 50% 0 0;
}

.hill-back {
  left: 250px;
  width: 360px;
  height: 110px;
  background: #9fd4a5;
}

.hill-mid {
  left: 160px;
  width: 500px;
  height: 92px;
  background: #75bb80;
}

.hill-front {
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, #84ca55, #6fb547);
}

.farmer {
  position: absolute;
  left: 38px;
  bottom: 26px;
  width: 118px;
  height: 202px;
}

.farmer-head {
  position: absolute;
  top: 12px;
  left: 39px;
  width: 36px;
  height: 42px;
  border-radius: 48% 48% 45% 45%;
  background: #da9b5d;
  box-shadow: inset -8px 0 0 rgba(0, 0, 0, 0.08);
}

.farmer-head::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -8px;
  width: 54px;
  height: 32px;
  border-radius: 24px 24px 12px 24px;
  background: #6cb536;
  transform: rotate(-12deg);
}

.farmer-body {
  position: absolute;
  left: 20px;
  top: 46px;
  width: 82px;
  height: 128px;
  border-radius: 34px 34px 18px 18px;
  background: linear-gradient(180deg, #8dd04c, #4f972f);
}

.farmer-body::before {
  content: "";
  position: absolute;
  left: 25px;
  top: -6px;
  width: 16px;
  height: 146px;
  background: #f7f7ef;
  transform: skew(-6deg);
  box-shadow: 18px 0 0 #f7f7ef;
}

.farmer-phone {
  position: absolute;
  right: 6px;
  top: 86px;
  width: 22px;
  height: 38px;
  border-radius: 5px;
  background: #14283c;
  transform: rotate(16deg);
}

.cow {
  position: absolute;
  bottom: 34px;
  width: 84px;
  height: 52px;
  border-radius: 18px;
  background: #f8faf9;
  box-shadow: inset -18px 0 0 rgba(0, 0, 0, 0.12);
}

.cow::before,
.cow::after {
  content: "";
  position: absolute;
  bottom: -15px;
  width: 4px;
  height: 18px;
  background: #2f3f37;
  box-shadow: 18px 0 0 #2f3f37, 48px 0 0 #2f3f37, 64px 0 0 #2f3f37;
}

.cow::after {
  right: 6px;
  display: none;
}

.cow-left {
  left: 212px;
}

.cow-center {
  left: 350px;
  transform: scale(0.64);
  bottom: 22px;
}

.facility {
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 225px;
  height: 192px;
}

.silo,
.building,
.truck-tank,
.truck-cab {
  position: absolute;
}

.silo {
  bottom: 74px;
  width: 40px;
  border-radius: 24px 24px 6px 6px;
  background: linear-gradient(180deg, #9aa9b0, #657985);
}

.silo::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 4px;
  width: 32px;
  height: 16px;
  border-radius: 50% 50% 0 0;
  background: #6f8792;
}

.silo-one {
  left: 22px;
  height: 96px;
}

.silo-two {
  left: 74px;
  height: 132px;
}

.building {
  left: 106px;
  bottom: 44px;
  width: 96px;
  height: 78px;
  border-radius: 6px;
  background: linear-gradient(180deg, #f8f8f4, #ced6d4);
}

.building::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 6px;
  width: 84px;
  height: 36px;
  clip-path: polygon(0 100%, 100% 100%, 78% 0, 20% 0);
  background: #72b88a;
}

.truck {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 148px;
  height: 74px;
}

.truck-tank {
  left: 0;
  top: 16px;
  width: 96px;
  height: 36px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #d8e5e8);
  box-shadow: inset -22px 0 0 #e9f0f2;
}

.truck-tank::before {
  content: "";
  position: absolute;
  left: 38px;
  top: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  background: #2da4bb;
  transform: rotate(-45deg);
}

.truck-cab {
  right: 16px;
  top: 22px;
  width: 42px;
  height: 30px;
  border-radius: 6px 8px 6px 6px;
  background: linear-gradient(180deg, #f7f9f8, #c9d7de);
}

.truck::before,
.truck::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #1e3441;
  box-shadow: inset 0 0 0 4px #bcc8cf;
}

.truck::before {
  left: 20px;
}

.truck::after {
  right: 18px;
}

.capability-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin-top: 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.capability {
  padding: 22px 16px 20px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.capability:last-child {
  border-right: 0;
}

.capability-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--green-deep);
  border: 1px solid #b5d9be;
  background: var(--green-soft);
}

.capability h2 {
  margin-top: 12px;
  font-size: 1rem;
  color: var(--blue);
}

.capability p {
  margin: 6px 0 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--muted);
}

.products {
  padding: 14px 0 0;
}

.section-head {
  margin-bottom: 14px;
}

.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.section-tag {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-head h2 {
  margin-top: 12px;
  max-width: 14ch;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.04;
  color: var(--blue);
}

.section-intro {
  max-width: 50ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-block {
  padding: 34px 0 0;
}

.solution-grid,
.platform-grid,
.contact-layout {
  display: grid;
  gap: 18px;
}

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

.solution-card,
.platform-card,
.contact-card,
.contact-form {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.solution-step {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--green-deep);
  background: var(--green-soft);
  font-size: 0.8rem;
  font-weight: 800;
}

.solution-card h3,
.platform-card h3,
.contact-card h3,
.contact-form h3 {
  font-size: 1.35rem;
  color: var(--blue);
}

.solution-card p,
.platform-card p,
.contact-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.solution-card a,
.resource-links a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--green-deep);
  font-weight: 800;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.product-card {
  padding: 14px 16px 16px;
  border-right: 1px solid var(--line);
}

.product-card:last-child {
  border-right: 0;
}

.product-visual {
  height: 118px;
  margin-bottom: 12px;
  border-radius: 14px;
  background-color: #f4faf5;
  position: relative;
  overflow: hidden;
}

.visual-case::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 20px;
  width: 90px;
  height: 62px;
  border-radius: 10px;
  background: linear-gradient(180deg, #1f2528, #454d50);
  box-shadow: 18px 16px 0 -6px #dde6e1, 66px 20px 0 -26px #bccac6;
  transform: rotate(-8deg);
}

.visual-meter::before {
  content: "";
  position: absolute;
  left: 70px;
  top: 12px;
  width: 44px;
  height: 92px;
  border-radius: 16px;
  background: linear-gradient(180deg, #1c2325, #4a5354);
  box-shadow: inset 0 0 0 6px #2d3336;
}

.visual-meter::after {
  content: "";
  position: absolute;
  left: 80px;
  top: 26px;
  width: 24px;
  height: 18px;
  border-radius: 4px;
  background: #94e050;
}

.visual-analyzer::before {
  content: "";
  position: absolute;
  left: 54px;
  top: 16px;
  width: 74px;
  height: 90px;
  border-radius: 20px 20px 12px 12px;
  background: linear-gradient(180deg, #fafbfa, #cad5cf);
  box-shadow: inset 0 0 0 5px #a7b5ad;
}

.visual-analyzer::after {
  content: "";
  position: absolute;
  left: 72px;
  top: 30px;
  width: 38px;
  height: 20px;
  border-radius: 4px;
  background: #46cc79;
}

.visual-unit::before {
  content: "";
  position: absolute;
  left: 58px;
  top: 14px;
  width: 88px;
  height: 92px;
  border-radius: 16px;
  background: linear-gradient(180deg, #111819, #303a3d);
  transform: rotate(12deg);
}

.visual-unit::after {
  content: "";
  position: absolute;
  left: 84px;
  top: 26px;
  width: 34px;
  height: 26px;
  border-radius: 6px;
  background: #4ecf73;
  transform: rotate(12deg);
}

.product-card h3 {
  font-size: 1.28rem;
  color: var(--green-deep);
}

.product-card p {
  margin: 8px 0 14px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.93rem;
}

.product-card a {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid #bbd7c2;
  border-radius: 999px;
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 800;
}

.about-platform {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
  padding: 18px 0 0;
}

.about-platform h2 {
  margin-top: 8px;
  max-width: 12ch;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
  color: var(--blue);
}

.about-platform p {
  color: #3d4b40;
  line-height: 1.7;
}

.about-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.about-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--muted);
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.about-stats article {
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
}

.about-stats strong {
  display: block;
  color: var(--blue);
  font-size: 1.15rem;
}

.about-stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
}

.dashboard-block {
  display: flex;
  align-items: flex-end;
  gap: 18px;
}

.dashboard-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.laptop {
  flex: 1;
  padding: 12px 14px 18px;
}

.mobile {
  width: 160px;
  padding: 12px 12px 16px;
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--blue);
}

.panel-pill {
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--green-deep);
  background: var(--green-soft);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.metric {
  padding: 10px;
  border-radius: 14px;
  background: #f8fcf8;
}

.metric strong {
  display: block;
  font-size: 1.3rem;
  color: var(--blue);
}

.metric span,
.mobile-score span {
  color: var(--muted);
  font-size: 0.8rem;
}

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

.bars,
.line-chart {
  height: 140px;
  padding: 14px;
  border-radius: 14px;
  background: #f8fcf8;
}

.bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.bars span {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, #7ed485, #2fa964);
}

.bars span:nth-child(1) { height: 24%; }
.bars span:nth-child(2) { height: 35%; }
.bars span:nth-child(3) { height: 45%; }
.bars span:nth-child(4) { height: 60%; }
.bars span:nth-child(5) { height: 73%; }
.bars span:nth-child(6) { height: 88%; }
.bars span:nth-child(7) { height: 82%; }

.line-chart svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #4cbf78;
  stroke-width: 6;
  stroke-linecap: round;
}

.mobile-score {
  padding: 10px 12px 18px;
  border-radius: 14px;
  background: #f8fcf8;
}

.mobile-score strong {
  display: block;
  font-size: 2.2rem;
  color: var(--blue);
}

.compact {
  height: 92px;
  margin-top: 12px;
}

.resources-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 22px 0 32px;
}

.resource-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.resource-card h3 {
  color: var(--blue);
  font-size: 1.45rem;
}

.resource-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.resource-card .button {
  margin-top: 18px;
}

.resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 16px;
}

.contact-layout {
  grid-template-columns: 0.88fr 1.12fr;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #c9ddd0;
  border-radius: 14px;
  font: inherit;
  color: var(--ink);
  background: #fbfefa;
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(20, 150, 71, 0.18);
  border-color: var(--green);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-points,
  .capability-strip,
  .product-grid,
  .about-platform,
  .resources-contact,
  .solution-grid,
  .platform-grid,
  .about-stats,
  .contact-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual {
    min-height: 560px;
    border-radius: 26px;
  }
}

@media (max-width: 860px) {
  .site-wrap {
    width: min(100% - 20px, 100%);
  }

  .topbar {
    flex-wrap: wrap;
    align-items: center;
  }

  .main-nav {
    display: none;
    width: 100%;
    justify-content: flex-start;
    gap: 12px 16px;
    padding: 14px 0 4px;
  }

  .topbar.nav-open .main-nav {
    display: flex;
  }

  .hero-points,
  .capability-strip,
  .product-grid,
  .about-platform,
  .resources-contact,
  .metric-row,
  .chart-row,
  .solution-grid,
  .platform-grid,
  .about-stats,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .split {
    display: grid;
    align-items: start;
  }

  .capability,
  .product-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-card:last-child {
    border-bottom: 0;
  }

  .dashboard-block {
    flex-direction: column;
    align-items: stretch;
  }

  .mobile {
    width: 100%;
  }

  .nav-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .ecosystem {
    left: 50%;
    transform: translateX(-50%) scale(0.88);
    transform-origin: top center;
  }

  .facility {
    transform: scale(0.88);
    transform-origin: bottom right;
  }
}

@media (max-width: 620px) {
  .topbar {
    padding-top: 12px;
  }

  .brand-copy strong {
    font-size: 1.6rem;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .button,
  .demo-link {
    width: 100%;
  }

  .main-nav a {
    width: 100%;
    padding: 10px 0;
  }

  .contact-form,
  .contact-card,
  .solution-card,
  .platform-card,
  .resource-card {
    padding: 20px;
  }

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

  .ecosystem {
    top: 18px;
    transform: translateX(-50%) scale(0.68);
  }

  .farmer {
    left: 8px;
    transform: scale(0.82);
    transform-origin: bottom left;
  }

  .cow-left {
    left: 122px;
  }

  .cow-center {
    left: 208px;
  }

  .facility {
    right: -18px;
    transform: scale(0.7);
  }
}
