:root {
  --forest: #173719;
  --forest-2: #254e24;
  --leaf: #7eb341;
  --leaf-2: #a2c85a;
  --cream: #f5dea0;
  --mist: #f5f8ef;
  --white: #ffffff;
  --ink: #172116;
  --muted: #65715f;
  --line: #dfe8d4;
  --shadow: 0 24px 70px rgba(23, 55, 25, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px max(20px, calc((100vw - 1120px) / 2));
  background: rgba(245, 248, 239, 0.88);
  border-bottom: 1px solid rgba(37, 78, 36, 0.12);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(23, 55, 25, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--forest);
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--forest);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--leaf);
  transition: width 180ms ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  background: var(--forest);
}

.section {
  padding: 96px 0;
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(23, 55, 25, 0.97), rgba(37, 78, 36, 0.92)),
    var(--forest);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  padding: 130px 0 74px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.82;
}

.field-lines {
  position: absolute;
  right: -8vw;
  bottom: -22vh;
  width: 68vw;
  min-width: 620px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at 50% 100%, transparent 0 24px, rgba(245, 222, 160, 0.24) 25px 27px),
    linear-gradient(180deg, rgba(126, 179, 65, 0.12), rgba(23, 55, 25, 0));
  transform: rotate(-7deg);
}

.scan-path {
  position: absolute;
  right: 9vw;
  top: 20vh;
  width: 360px;
  height: 220px;
  border: 1px solid rgba(245, 222, 160, 0.32);
  background:
    linear-gradient(90deg, transparent 47%, rgba(162, 200, 90, 0.32) 48% 52%, transparent 53%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 34px);
  border-radius: var(--radius);
  transform: rotate(8deg);
}

.drone-mark {
  position: absolute;
  right: 22vw;
  top: 25vh;
  width: 54px;
  height: 54px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow:
    -54px 0 0 -19px rgba(162, 200, 90, 0.72),
    54px 0 0 -19px rgba(162, 200, 90, 0.72),
    0 54px 0 -19px rgba(162, 200, 90, 0.72),
    0 -54px 0 -19px rgba(162, 200, 90, 0.72);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  gap: 60px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--leaf-2);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.about-section h2,
.contact-section h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3rem, 7vw, 6.6rem);
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--forest);
  background: var(--cream);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.button-wide {
  width: 100%;
}

.mission-panel {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(12, 27, 13, 0.52);
  box-shadow: var(--shadow);
}

.panel-logo {
  width: min(320px, 100%);
  margin: 0 auto 20px;
}

.panel-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  font-weight: 800;
}

.panel-status span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--leaf-2);
  box-shadow: 0 0 0 6px rgba(162, 200, 90, 0.16);
}

.mission-panel dl {
  display: grid;
  gap: 1px;
  margin: 22px 0 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.mission-panel div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.mission-panel dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mission-panel dd {
  margin: 0;
  font-weight: 800;
}

.stats-band {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-grid div {
  padding: 28px 20px;
  border-left: 1px solid var(--line);
}

.stats-grid div:last-child {
  border-right: 1px solid var(--line);
}

.stats-grid strong {
  display: block;
  color: var(--forest);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.stats-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.section-heading {
  max-width: 760px;
  text-align: center;
}

.section-heading h2,
.about-section h2,
.contact-section h2 {
  color: var(--forest);
  font-size: clamp(2rem, 4vw, 4rem);
}

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

.align-left {
  text-align: left;
}

.align-left p:not(.eyebrow) {
  margin-left: 0;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.filter {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--forest);
  background: var(--white);
  font-weight: 800;
  cursor: pointer;
}

.filter.is-active {
  color: var(--white);
  border-color: var(--forest);
  background: var(--forest);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.service-card,
.package-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(23, 55, 25, 0.06);
}

.service-card {
  min-height: 348px;
  padding: 24px;
  transition: opacity 160ms ease, transform 160ms ease;
}

.service-card.is-hidden {
  display: none;
}

.service-card:hover {
  transform: translateY(-4px);
}

.card-icon {
  position: relative;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border: 1px solid rgba(126, 179, 65, 0.28);
  border-radius: var(--radius);
  background: #eef5e6;
}

.card-icon::before,
.card-icon::after {
  position: absolute;
  content: "";
}

.spray::before {
  inset: 13px 8px auto;
  height: 6px;
  background: var(--forest);
}

.spray::after {
  left: 11px;
  right: 11px;
  bottom: 9px;
  height: 14px;
  border-left: 3px solid var(--leaf);
  border-right: 3px solid var(--leaf);
}

.spread::before {
  left: 11px;
  top: 11px;
  width: 26px;
  height: 26px;
  border: 3px solid var(--forest);
  border-radius: 50%;
}

.spread::after {
  left: 22px;
  top: 7px;
  width: 4px;
  height: 34px;
  background: var(--leaf);
  transform: rotate(45deg);
}

.map::before {
  inset: 10px;
  border: 2px solid var(--forest);
}

.map::after {
  left: 17px;
  top: 15px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--leaf);
}

.analytics::before {
  left: 10px;
  right: 10px;
  bottom: 11px;
  height: 20px;
  background: linear-gradient(90deg, var(--leaf) 0 24%, transparent 24% 38%, var(--forest) 38% 62%, transparent 62% 76%, var(--leaf-2) 76%);
}

.thermal::before {
  left: 11px;
  top: 11px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--cream), var(--leaf) 48%, var(--forest) 50%);
}

.enterprise::before {
  left: 10px;
  top: 10px;
  width: 28px;
  height: 28px;
  border: 2px solid var(--forest);
  transform: rotate(45deg);
}

.enterprise::after {
  left: 20px;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--leaf);
}

.service-card h3,
.timeline h3,
.package-card h3 {
  margin: 0 0 10px;
  color: var(--forest);
  font-size: 1.25rem;
}

.service-card p,
.package-card p,
.timeline p {
  margin: 0;
  color: var(--muted);
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-weight: 700;
}

.service-card li::before {
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--leaf);
}

.split-section,
.packages-section,
.outputs-section {
  background: var(--white);
}

.split-grid,
.insight-grid,
.about-grid,
.contact-grid,
.footer-grid,
.output-grid {
  display: grid;
  align-items: center;
  gap: 56px;
}

.output-grid {
  grid-template-columns: 0.85fr 1fr;
}

.output-list {
  display: grid;
  gap: 14px;
}

.output-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(90deg, var(--mist), #ffffff);
}

.output-list span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--forest);
  border-radius: var(--radius);
  background: var(--cream);
  font-weight: 900;
}

.output-list h3,
.sector-grid h3 {
  margin: 0 0 8px;
  color: var(--forest);
  font-size: 1.15rem;
}

.output-list p,
.sector-grid p {
  margin: 0;
  color: var(--muted);
}

.split-grid {
  grid-template-columns: 0.82fr 1fr;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--forest);
  border-radius: 50%;
  background: var(--cream);
  font-weight: 900;
}

@media (min-width: 641px) {
  .timeline article span,
  .output-list article span {
    grid-row: 1 / 3;
  }

  .timeline article h3,
  .timeline article p,
  .output-list article h3,
  .output-list article p {
    grid-column: 2;
  }
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--forest);
  font-weight: 900;
  border-bottom: 2px solid var(--leaf);
}

.insight-grid {
  grid-template-columns: 1fr 0.9fr;
}

.insight-visual {
  min-height: 470px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(23, 55, 25, 0.86), rgba(126, 179, 65, 0.24)),
    #dfe8d4;
  box-shadow: var(--shadow);
}

.map-panel {
  position: absolute;
  inset: 34px 34px 110px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(118deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 28px),
    repeating-linear-gradient(26deg, rgba(245, 222, 160, 0.16) 0 18px, rgba(126, 179, 65, 0.2) 18px 40px);
}

.map-row {
  position: absolute;
  left: 12%;
  right: 12%;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.map-row:nth-child(1) {
  top: 28%;
}

.map-row:nth-child(2) {
  top: 52%;
}

.map-row:nth-child(3) {
  top: 76%;
}

.pin {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--leaf-2);
}

.pin-a {
  left: 22%;
  top: 32%;
}

.pin-b {
  right: 23%;
  top: 49%;
}

.pin-c {
  left: 48%;
  bottom: 22%;
}

.data-panel {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 28px;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
}

.data-panel span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.data-panel strong {
  display: block;
  margin: 4px 0 14px;
  color: var(--forest);
  font-size: 1.3rem;
}

.bar {
  height: 9px;
  margin-top: 9px;
  border-radius: 999px;
  background: var(--line);
}

.bar::after {
  display: block;
  height: 100%;
  content: "";
  border-radius: inherit;
  background: linear-gradient(90deg, var(--leaf), var(--forest));
}

.bar-one::after {
  width: 86%;
}

.bar-two::after {
  width: 68%;
}

.bar-three::after {
  width: 77%;
}

.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.benefit-list span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--forest);
  background: var(--white);
  font-weight: 800;
}

.sectors-section {
  background:
    linear-gradient(180deg, rgba(245, 248, 239, 0.94), rgba(245, 248, 239, 0.98)),
    var(--mist);
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.sector-grid article {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(23, 55, 25, 0.06);
}

.about-section .about-grid {
  grid-template-columns: 0.9fr 1fr;
}

.about-section h2,
.about-section .eyebrow {
  color: var(--white);
}

.about-copy {
  padding: 28px;
  border-left: 3px solid var(--leaf-2);
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
}

.about-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.about-copy p + p {
  margin-top: 18px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.package-card {
  min-height: 250px;
  padding: 26px;
}

.package-card.featured {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.package-card.featured h3,
.package-card.featured p,
.package-card.featured a {
  color: var(--white);
}

.package-card p {
  margin-bottom: 26px;
}

.package-card a {
  color: var(--forest);
  font-weight: 900;
  border-bottom: 2px solid var(--leaf);
}

.contact-section {
  padding: 96px 0;
  background: linear-gradient(90deg, var(--cream), #fff7dd);
}

.contact-grid {
  grid-template-columns: 1fr 420px;
}

.contact-section p:not(.eyebrow) {
  max-width: 650px;
  color: #4c583f;
  font-size: 1.08rem;
}

.contact-card {
  padding: 24px;
}

.contact-line {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--forest);
  font-size: 1.05rem;
  font-weight: 900;
}

.contact-line span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.contact-card .button {
  margin-top: 22px;
  color: var(--white);
  background: var(--forest);
  box-shadow: none;
}

.site-footer {
  padding: 34px 0;
  background: #0f2110;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  grid-template-columns: 180px 1fr;
  gap: 24px;
}

.footer-grid img {
  width: 180px;
}

.footer-grid p {
  margin: 0;
  font-weight: 800;
}

.legal-fineprint {
  max-width: 720px;
  margin-top: 10px !important;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.82rem;
  font-weight: 700 !important;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .split-grid,
  .insight-grid,
  .about-section .about-grid,
  .contact-grid,
  .output-grid {
    grid-template-columns: 1fr;
  }

  .mission-panel {
    max-width: 520px;
  }

  .stats-grid,
  .service-grid,
  .package-grid,
  .sector-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .insight-grid .section-heading {
    order: -1;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero {
    padding-top: 112px;
  }

  .scan-path,
  .drone-mark {
    opacity: 0.34;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 15vw, 4.2rem);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .stats-grid,
  .service-grid,
  .package-grid,
  .sector-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid div {
    border-right: 1px solid var(--line);
  }

  .section {
    padding: 72px 0;
  }

  .mission-panel div,
  .timeline article,
  .output-list article {
    grid-template-columns: 1fr;
  }

  .insight-visual {
    min-height: 380px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
