:root {
  --lime: #c6f000;
  --lime-deep: #b4dc00;
  --orange: #f5a000;
  --orange-dark: #d48900;
  --ink: #14180a;
  --olive: #3d4a14;
  --cream: #f3f0e4;
  --cream-2: #e9e4d4;
  --forest: #3a4816;
  --forest-dark: #252c0c;
  --muted: #5c6348;
  --line: rgba(20, 24, 10, 0.1);
  --white: #fff;
  --black: #111;
  --radius: 14px;
  --radius-lg: 22px;
  --header-h: 76px;
  --max: 1180px;
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

section[id],
main[id] {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.wrap {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--header-h);
  background: rgba(198, 240, 0, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(20, 24, 10, 0.08);
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.nav-links a:hover { color: var(--olive); }

.nav-cta {
  background: var(--ink) !important;
  color: var(--lime) !important;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
}

.lang {
  display: flex;
  gap: 0.3rem;
  font-weight: 800;
  font-size: 0.8rem;
}

.lang span { opacity: 0.35; }
.lang a { opacity: 0.45; }
.lang a.active, .lang a:hover { opacity: 1; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-ink {
  background: var(--ink);
  color: var(--lime);
}

.btn-orange {
  background: var(--orange);
  color: var(--ink);
}

.btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.btn-ghost-light {
  border-color: var(--lime);
  color: var(--lime);
  background: transparent;
}

/* Hero */
.hero {
  min-height: 100vh;
  padding: calc(var(--header-h) + 2.5rem) 0 4rem;
  background:
    linear-gradient(90deg, var(--lime) 0 42%, transparent 72%),
    url("../public/images/forest-aerial-1.jpg") right center / cover no-repeat;
  display: flex;
  align-items: center;
}

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

.hero-kicker {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.2rem, 9vw, 7.2rem);
  line-height: 0.86;
  letter-spacing: -0.03em;
  margin-bottom: 1.1rem;
}

.hero h1 img {
  height: clamp(3.4rem, 10vw, 7.4rem);
  width: auto;
}

.hero-tag {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  max-width: 22ch;
  margin-bottom: 1.6rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-bottom: 2.2rem; }

.founders {
  font-size: 0.92rem;
  color: var(--olive);
}

.founders strong {
  display: block;
  color: var(--ink);
  margin-bottom: 0.15rem;
}

/* Sections */
.section { padding: 5.5rem 0; }
.section-tight { padding: 4.2rem 0; }
.bg-cream { background: var(--cream); }
.bg-cream-2 { background: var(--cream-2); }
.bg-ink { background: var(--ink); color: var(--cream); }
.bg-forest { background: var(--forest-dark); color: var(--cream); }
.bg-lime { background: var(--lime); }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.7rem;
}

.bg-ink .eyebrow, .bg-forest .eyebrow { color: var(--lime); }

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.lede {
  font-size: 1.12rem;
  max-width: 46rem;
  color: var(--muted);
}

.bg-ink .lede, .bg-forest .lede { color: rgba(243, 240, 228, 0.78); }

/* Problem */
.stat-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.big-stat {
  display: flex;
  align-items: baseline;
  gap: 0.02em;
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 9rem);
  line-height: 1;
  letter-spacing: -0.04em;
  padding-bottom: 0.12em;
  margin-bottom: 0.06em;
}

.big-stat span {
  color: var(--orange);
  font-size: 0.55em;
  line-height: 1;
}

.stat-row h2 {
  margin-top: 0;
}

.weevil-card {
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.weevil-card img {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
}

.split-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.split-photos figure {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.split-photos img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.split-photos figcaption {
  padding: 1rem 1.15rem 1.2rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.pesticide {
  margin-top: 3rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--white);
}

.pesticide-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}

.trend {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: end;
}

.trend-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
}

.trend-num.down { color: var(--orange); }

.trend-line {
  height: 6px;
  margin-bottom: 0.7rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), rgba(245, 160, 0, 0.15));
}

.molecule {
  width: 92px;
  opacity: 0.85;
}

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.orbit {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.orbit-core {
  width: min(260px, 58%);
  aspect-ratio: 1;
  border: 1px solid rgba(61, 74, 20, 0.25);
  border-radius: 50%;
  overflow: hidden;
  background: #1a220c;
}

.orbit-core img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pillar {
  position: absolute;
  max-width: 150px;
  font-weight: 800;
  font-size: 0.92rem;
  line-height: 1.25;
}

.pillar::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: var(--olive);
  margin-bottom: 0.4rem;
}

.pillar-n { top: 8%; left: 50%; transform: translateX(-50%); text-align: center; }
.pillar-n::before { margin-inline: auto; }
.pillar-e { right: 0; top: 46%; }
.pillar-s { bottom: 8%; left: 50%; transform: translateX(-50%); text-align: center; }
.pillar-s::before { margin-inline: auto; }
.pillar-w { left: 0; top: 46%; }

.why-card {
  background: var(--orange);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.7rem;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.9rem;
}

.why-card p { font-weight: 700; }

/* Traction */
.traction {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  background: #2a140c url("../public/images/process.jpg") center / cover no-repeat;
}

.traction::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 10, 6, 0.15), rgba(20, 10, 6, 0.55) 70%);
}

.traction .wrap {
  position: relative;
  z-index: 1;
  padding-bottom: 2.4rem;
}

.traction-logo {
  height: 64px;
  margin-bottom: 1.6rem;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
}

.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

.stat {
  background: var(--black);
  color: var(--white);
  border-radius: 12px;
  padding: 1rem 0.9rem 0.95rem;
  text-align: center;
}

.stat img {
  height: 36px;
  margin: 0 auto 0.7rem;
}

.stat h3 {
  font-size: 0.92rem;
  line-height: 1.25;
  margin-bottom: 0.45rem;
}

.stat p {
  color: var(--orange);
  font-weight: 800;
  font-size: 0.82rem;
}

/* Trials / plant */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.panel img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.panel img.map {
  object-fit: contain;
  background: var(--cream);
}

.panel-body { padding: 1.4rem 1.5rem 1.6rem; }

.legend {
  display: flex;
  gap: 1.1rem;
  margin-top: 0.9rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.4rem;
}

.dot-lime { background: var(--lime); box-shadow: 0 0 0 3px #111; }
.dot-orange { background: var(--orange); box-shadow: 0 0 0 3px #111; }

.plant-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.chip {
  background: var(--orange);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

/* Competition */
.comp-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.2rem;
}

.comp-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.comp-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.comp-card h3 {
  padding: 0.9rem 1rem 1.05rem;
  text-align: center;
  font-size: 0.95rem;
}

.matrix {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  min-height: 460px;
  padding: 2.4rem 2rem 2.2rem;
}

.axis-x, .axis-y {
  position: absolute;
  background: rgba(20, 24, 10, 0.18);
}

.axis-x { left: 8%; right: 8%; top: 50%; height: 1px; }
.axis-y { top: 10%; bottom: 12%; left: 50%; width: 1px; }

.axis-label {
  position: absolute;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
}

.axis-label.top { top: 12px; left: 52%; }
.axis-label.bottom { bottom: 12px; left: 52%; }
.axis-label.left { left: 12px; top: 48%; }
.axis-label.right { right: 12px; top: 48%; }

.plot {
  position: absolute;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
}

.plot b { display: block; }
.plot small { color: var(--muted); font-weight: 700; }
.plot .price { color: var(--olive); }

.plot::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ink);
  margin: 0 auto 0.35rem;
}

.plot-jifteco::before { background: var(--orange); width: 18px; height: 18px; }

.plot-ecovax { left: 18%; top: 22%; }
.plot-conniflex { left: 28%; top: 38%; }
.plot-woodcoat { left: 66%; top: 34%; }
.plot-jifteco { left: 82%; top: 20%; }

.lvm-note {
  position: absolute;
  right: 1.2rem;
  bottom: 2.6rem;
  font-size: 0.75rem;
  color: var(--muted);
  text-align: right;
  max-width: 160px;
}

/* GTM */
.gtm {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.bullets {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.bullets li {
  font-weight: 700;
  padding-left: 1rem;
  position: relative;
}

.bullets li::before {
  content: ">";
  position: absolute;
  left: 0;
  color: var(--orange);
}

.bullets .quiet { color: var(--muted); font-weight: 700; }

.gtm-map {
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gtm-map img {
  width: 100%;
  height: 460px;
  object-fit: contain;
  object-position: center;
}

.markets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem 1rem;
  margin-top: 1.2rem;
  font-size: 0.88rem;
}

.markets b { font-variant-numeric: tabular-nums; }
.markets span { color: var(--orange); }

/* Pipeline */
.pipeline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.pipe {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

.pipe img {
  width: 100%;
  height: 220px;
  object-fit: contain;
}

.pipe h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  text-transform: uppercase;
}

.when {
  display: inline-block;
  font-weight: 800;
  color: var(--olive);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

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

/* Financials */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  background: var(--white);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  font-variant-numeric: tabular-nums;
}

th, td {
  padding: 0.7rem 0.85rem;
  text-align: right;
  font-size: 0.9rem;
}

th:first-child, td:first-child { text-align: left; font-weight: 700; }

thead th {
  background: var(--olive);
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

tbody tr:nth-child(even) { background: rgba(198, 240, 0, 0.12); }

.row-accent td {
  background: var(--orange) !important;
  color: var(--ink);
  font-weight: 800;
}

.row-soft td { background: rgba(198, 240, 0, 0.28) !important; }

.muted-row td { color: var(--muted); font-style: italic; font-weight: 600; }

.table-note {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: var(--muted);
}

/* Need */
.need-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.need-list, .todo-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.todo-list { color: var(--orange); }

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: end;
  min-height: 420px;
}

.contact-brand img { height: 72px; margin-bottom: 1.4rem; }

.people {
  display: grid;
  gap: 1.1rem;
}

.people a {
  color: var(--lime);
  font-weight: 700;
}

.people a:hover { text-decoration: underline; }

.footer {
  padding: 1.4rem 0 2rem;
  font-size: 0.8rem;
  color: rgba(243, 240, 228, 0.55);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

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

@media (max-width: 980px) {
  .stat-row, .why-grid, .two-col, .gtm, .pipeline, .need-grid, .contact {
    grid-template-columns: 1fr;
  }
  .stats { grid-template-columns: 1fr 1fr; }
  .comp-photos { grid-template-columns: 1fr; }
  .plot-ecovax { left: 20%; top: 24%; }
  .hero {
    background:
      linear-gradient(180deg, var(--lime) 0 55%, transparent 88%),
      url("../public/images/forest-aerial-1.jpg") center 20% / cover no-repeat;
  }
  .orbit { min-height: 380px; }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--lime);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.1rem 1.3rem 1.4rem;
    gap: 0.85rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    border-bottom: 1px solid rgba(20, 24, 10, 0.08);
  }
  .nav-links.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: 0 18px 40px rgba(20, 24, 10, 0.12);
  }
  .split-photos, .markets { grid-template-columns: 1fr; }
  .split-photos img { height: 280px; }
  .stats { grid-template-columns: 1fr; }
  .matrix { min-height: 520px; }
}
