:root {
  --bg: #06130f;
  --bg-2: #0a1d16;
  --text: #effaf3;
  --muted: #a7b8ae;
  --line: rgba(255, 255, 255, 0.12);
  --card: rgba(255, 255, 255, 0.075);
  --card-strong: rgba(255, 255, 255, 0.12);
  --green: #5cf2a7;
  --green-2: #18c984;
  --lime: #c8ff61;
  --sand: #f2d99c;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 28px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(92, 242, 167, 0.14), transparent 28rem),
    radial-gradient(circle at 88% 20%, rgba(200, 255, 97, 0.12), transparent 26rem),
    linear-gradient(180deg, var(--bg), #07110d 50%, #050806);
  color: var(--text);
  overflow-x: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image:
    linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent),
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.18) 0 1px, transparent 1px);
  background-size: 180px 180px, 22px 22px;
  z-index: 20;
}

.orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(54px);
  opacity: 0.24;
  z-index: -1;
}

.orb-1 {
  width: 360px;
  height: 360px;
  background: var(--green);
  left: -120px;
  top: 15vh;
}

.orb-2 {
  width: 440px;
  height: 440px;
  background: #88ffdd;
  right: -170px;
  top: 45vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 22px;
  backdrop-filter: blur(18px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(5, 14, 10, 0.72);
  box-shadow: 0 18px 60px rgba(0,0,0,.25);
  z-index: -1;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green), var(--lime));
  color: #062015;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(92, 242, 167, .22);
}

.brand strong {
  display: block;
  letter-spacing: -0.03em;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  transition: color .2s ease;
}

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

.header-cta {
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(92, 242, 167, .13);
  color: var(--green);
  border: 1px solid rgba(92, 242, 167, .25);
  font-weight: 700;
  font-size: 14px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  color: var(--text);
}

.menu-button span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 999px;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px 22px;
}

.section.compact {
  padding-top: 12px;
  padding-bottom: 52px;
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 50px;
  align-items: center;
  min-height: calc(100vh - 96px);
  padding-top: 80px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  font-size: 12px;
  margin: 0 0 18px;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(92,242,167,.6);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 12px rgba(92,242,167,0); }
  100% { box-shadow: 0 0 0 0 rgba(92,242,167,0); }
}

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

h1 {
  font-size: clamp(42px, 7vw, 86px);
  line-height: .91;
  letter-spacing: -0.075em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: .98;
  letter-spacing: -0.058em;
  margin-bottom: 18px;
}

h3 {
  font-size: 22px;
  letter-spacing: -0.035em;
  margin-bottom: 10px;
}

.hero-lead,
.section-copy p,
.section-head p,
.demo-card p,
.contact-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 34px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

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

.btn.primary {
  color: #07150f;
  background: linear-gradient(135deg, var(--green), var(--lime));
  box-shadow: 0 18px 48px rgba(92, 242, 167, .2);
}

.btn.secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255,255,255,.06);
}

.btn.full {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero-stats div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.045);
}

.hero-stats strong {
  display: block;
  color: var(--green);
  font-size: 26px;
  letter-spacing: -0.04em;
}

.hero-stats span {
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  perspective: 1200px;
}

.dashboard-card {
  position: relative;
  padding: 22px;
  min-height: 560px;
  border-radius: 38px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.05)),
    radial-gradient(circle at 30% 10%, rgba(92, 242, 167, .2), transparent 20rem);
  box-shadow: var(--shadow);
  transform: rotateX(4deg) rotateY(-7deg);
  overflow: hidden;
}

.dashboard-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -26% -20%;
  height: 220px;
  background: radial-gradient(ellipse, rgba(92,242,167,.16), transparent 65%);
}

.dashboard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.mini-label {
  color: var(--muted);
  font-size: 13px;
}

.dashboard-top h2 {
  font-size: 32px;
  margin-bottom: 0;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(92,242,167,.13);
  color: var(--green);
  border: 1px solid rgba(92,242,167,.22);
  font-size: 13px;
  font-weight: 800;
}

.status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: currentColor;
}

.map-grid {
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 16px;
}

.pasture {
  position: relative;
  min-height: 335px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(120deg, rgba(200,255,97,.12), transparent 45%),
    repeating-linear-gradient(35deg, rgba(255,255,255,.03) 0 1px, transparent 1px 18px),
    linear-gradient(140deg, #183823, #0b2119 55%, #102615);
}

.pasture::before {
  content: "";
  position: absolute;
  left: -20%;
  top: 34%;
  width: 140%;
  height: 95px;
  background: rgba(255,255,255,.06);
  transform: rotate(-13deg);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.cow {
  position: absolute;
  width: 14px;
  height: 24px;
  border-radius: 9px 9px 7px 7px;
  background: #effaf3;
  box-shadow: 16px 10px 0 -4px rgba(239,250,243,.82);
}

.cow::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #102615;
  top: 5px;
  left: 4px;
}

.cow-1 { left: 25%; top: 32%; transform: rotate(18deg); }
.cow-2 { left: 58%; top: 22%; transform: rotate(-12deg); }
.cow-3 { left: 68%; top: 63%; transform: rotate(22deg); }
.cow-4 { left: 36%; top: 69%; transform: rotate(-28deg); }

.drone {
  position: absolute;
  left: 49%;
  top: 44%;
  width: 42px;
  height: 42px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  border: 2px solid var(--green);
  box-shadow: 0 0 42px rgba(92,242,167,.6);
}

.drone::before,
.drone::after {
  content: "";
  position: absolute;
  inset: 17px -26px;
  border-top: 2px solid rgba(92,242,167,.8);
  border-bottom: 2px solid rgba(92,242,167,.8);
}

.drone::after {
  transform: rotate(90deg);
}

.scan-ring {
  position: absolute;
  left: 49%;
  top: 44%;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(92,242,167,.45);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  animation: ring 2.6s infinite;
}

.r2 { animation-delay: 1.1s; }

@keyframes ring {
  from { opacity: .8; transform: translate(-50%, -50%) scale(.45); }
  to { opacity: 0; transform: translate(-50%, -50%) scale(2.4); }
}

.side-panel {
  display: grid;
  gap: 12px;
}

.metric {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 8px;
}

.metric strong {
  color: var(--text);
  font-size: 26px;
  letter-spacing: -0.04em;
}

.alert-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(242, 217, 156, .22);
  border-radius: 22px;
  background: rgba(242, 217, 156, .08);
}

.alert-icon {
  display: grid;
  place-items: center;
  flex: 0 0 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sand);
  color: #1d1609;
  font-weight: 900;
}

.alert-card p {
  margin: 0;
  color: #f7ead0;
  line-height: 1.55;
}

.logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.logos span {
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.045);
  font-weight: 700;
}

.two-col {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 46px;
  align-items: start;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.problem-grid article,
.feature-card,
.flow-step,
.tech-panel,
.benefit-list > div,
.demo-card,
.contact-card {
  border: 1px solid var(--line);
  background: var(--card);
  backdrop-filter: blur(16px);
}

.problem-grid article {
  min-height: 220px;
  padding: 22px;
  border-radius: 24px;
}

.problem-grid span {
  color: var(--green);
  font-weight: 900;
}

.problem-grid p,
.feature-card p,
.flow-step p,
.benefit-list p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.solution {
  position: relative;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card {
  min-height: 310px;
  padding: 24px;
  border-radius: 26px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  background: var(--card-strong);
  border-color: rgba(92,242,167,.32);
}

.icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  border-radius: 18px;
  color: #06130f;
  font-size: 25px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--green), var(--lime));
}

.flow {
  display: grid;
  grid-template-columns: 1fr 34px 1fr 34px 1fr 34px 1fr;
  align-items: center;
  margin-top: 36px;
}

.flow-step {
  min-height: 250px;
  padding: 22px;
  border-radius: 26px;
}

.flow-step span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 14px;
  background: rgba(92,242,167,.14);
  color: var(--green);
  font-weight: 900;
  border: 1px solid rgba(92,242,167,.24);
}

.flow-line {
  height: 1px;
  background: linear-gradient(90deg, var(--line), var(--green), var(--line));
}

.tech-panel {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 20px;
  margin-top: 18px;
  padding: 24px;
  border-radius: var(--radius);
}

.tech-panel ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.85;
}

.mini-terminal {
  padding: 18px;
  border-radius: 22px;
  background: #020604;
  border: 1px solid rgba(92,242,167,.22);
  overflow: auto;
}

pre {
  margin: 0;
  color: #b8ffd7;
  line-height: 1.75;
  font-size: 14px;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit-list > div {
  padding: 24px;
  border-radius: 26px;
}

.benefit-list strong {
  color: var(--green);
}

.demo-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 15%, rgba(200,255,97,.14), transparent 18rem),
    rgba(255,255,255,.075);
}

.demo-card div {
  max-width: 760px;
}

.demo-card p {
  margin-bottom: 0;
}

.contact-card {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  padding: 34px;
  border-radius: 34px;
}

.contact-info {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-info a {
  color: var(--green);
  font-weight: 800;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 26px;
  background: rgba(0,0,0,.18);
  border: 1px solid var(--line);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 750;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  color: var(--text);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  background: rgba(255,255,255,.07);
  outline: none;
  padding: 14px 16px;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(92,242,167,.55);
  box-shadow: 0 0 0 4px rgba(92,242,167,.1);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 26px 22px 42px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--green);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero,
  .two-col,
  .tech-panel,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .dashboard-card {
    transform: none;
  }

  .cards,
  .benefit-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .flow-line {
    width: 1px;
    height: 28px;
    margin: 0 auto;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header.nav-open .nav {
    display: grid;
    position: absolute;
    left: 22px;
    right: 22px;
    top: 78px;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(5, 14, 10, 0.96);
  }

  .site-header.nav-open .nav a {
    padding: 14px;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 68px 18px;
  }

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

  .hero {
    padding-top: 50px;
  }

  .hero-stats,
  .problem-grid,
  .cards,
  .benefit-list,
  .map-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-card {
    min-height: auto;
    border-radius: 28px;
  }

  .pasture {
    min-height: 280px;
  }

  .side-panel {
    grid-template-columns: repeat(3, 1fr);
  }

  .metric {
    padding: 14px;
  }

  .metric strong {
    font-size: 20px;
  }

  .demo-card {
    display: grid;
    padding: 24px;
  }

  .footer {
    display: grid;
  }
}
