:root {
  --bg: #08140f;
  --bg-alt: #0f2218;
  --surface: rgba(16, 35, 25, 0.84);
  --surface-strong: #143123;
  --text: #f3ffe7;
  --muted: #bddcc7;
  --accent: #74f59b;
  --accent-2: #ffd58a;
  --line: rgba(165, 228, 188, 0.25);
  --radius: 18px;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 16%, rgba(102, 244, 145, 0.28) 0%, transparent 40%),
    radial-gradient(circle at 90% 4%, rgba(255, 206, 117, 0.26) 0%, transparent 44%),
    linear-gradient(180deg, #06120d 0%, #0d1f16 40%, #07120d 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  background-image:
    linear-gradient(0deg, transparent 24%, rgba(255, 255, 255, 0.13) 25%, transparent 26%, transparent 74%, rgba(255, 255, 255, 0.13) 75%, transparent 76%),
    linear-gradient(90deg, transparent 24%, rgba(255, 255, 255, 0.13) 25%, transparent 26%, transparent 74%, rgba(255, 255, 255, 0.13) 75%, transparent 76%);
  background-size: 3px 3px;
  z-index: -1;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(58px);
  opacity: 0.35;
  z-index: -2;
}

.orb-a {
  width: 370px;
  height: 370px;
  background: #5ef18f;
  top: -90px;
  left: -85px;
  animation: driftA 12s ease-in-out infinite alternate;
}

.orb-b {
  width: 430px;
  height: 430px;
  background: #f8cc77;
  right: -110px;
  top: 100px;
  animation: driftB 14s ease-in-out infinite alternate;
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(6, 16, 12, 0.85);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 1.38rem;
  letter-spacing: 0.01em;
  color: #f8fff2;
  text-decoration: none;
}

.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 6px 20px rgba(117, 246, 157, 0.3);
}

.brand-text {
  text-shadow: 0 0 18px rgba(145, 251, 179, 0.24);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav a {
  color: #d5eedc;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.94rem;
}

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

.menu-toggle {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  padding: 0.82rem 1.2rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

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

.btn-primary {
  color: #062414;
  background: linear-gradient(135deg, var(--accent), #9afec4);
  box-shadow: 0 8px 26px rgba(113, 245, 150, 0.33);
}

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.btn-nav {
  padding: 0.66rem 0.96rem;
  font-size: 0.88rem;
  color: #062414;
  background: linear-gradient(135deg, var(--accent-2), #ffe7b2);
  border: 1px solid rgba(255, 221, 161, 0.6);
  box-shadow: 0 8px 22px rgba(255, 211, 120, 0.22);
}

.btn-lg {
  padding: 0.95rem 1.5rem;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 90px 0 44px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("farm-bg.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 18, 13, 0.88) 0%, rgba(8, 22, 16, 0.68) 46%, rgba(8, 24, 17, 0.72) 100%),
    radial-gradient(circle at 20% 30%, rgba(84, 243, 145, 0.18), transparent 44%);
  z-index: -1;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1.25fr 1fr;
  align-items: start;
}

.hero-copy h1 {
  margin: 0 0 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.08;
  max-width: 14ch;
}

.eyebrow {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  margin-bottom: 10px;
}

.sub {
  color: #d3ebdb;
  max-width: 58ch;
  line-height: 1.65;
}

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

.hero-badges {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges li {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-size: 0.83rem;
  font-weight: 700;
}

.hero-card {
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(12, 34, 24, 0.94), rgba(9, 25, 18, 0.92));
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.3);
}

.card-title {
  margin: 0 0 14px;
  font-weight: 800;
  color: var(--accent-2);
}

.stat-list {
  display: grid;
  gap: 10px;
}

.stat {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
  border-radius: 12px;
}

.stat-label {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 4px;
}

.stat-value {
  font-weight: 700;
  font-size: 0.95rem;
}

.section {
  padding: 62px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(18, 40, 29, 0.48), rgba(10, 21, 16, 0.46));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  max-width: 27ch;
}

.trust-strip {
  padding-top: 14px;
  padding-bottom: 16px;
}

.trust-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: rgba(17, 37, 27, 0.8);
}

.trust-kicker {
  margin: 0;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  font-weight: 800;
}

.trust-item h3 {
  margin: 8px 0 6px;
  font-size: 1rem;
}

.trust-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.feature-grid {
  margin-top: 24px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature,
.roadmap-item,
.eco-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--surface);
}

.feature h3,
.roadmap-item h3,
.eco-card h3 {
  margin: 0 0 8px;
  font-size: 1.06rem;
}

.feature p,
.roadmap-item p,
.eco-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.eco-grid {
  margin-top: 24px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.eco-card .btn {
  margin-top: 14px;
}

.steps {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.steps li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(16, 35, 26, 0.78);
}

.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #082414;
  background: linear-gradient(145deg, var(--accent-2), #ffebbf);
}

.steps h3 {
  margin: 0 0 6px;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.roadmap-grid {
  margin-top: 24px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.faq-list {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(15, 30, 22, 0.84);
  padding: 14px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.cta-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(17, 42, 29, 0.84), rgba(7, 20, 14, 0.9));
  padding: 28px;
  text-align: center;
}

.cta-box h2 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", sans-serif;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}

.footer-wrap {
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.mobile-play {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), #9afec4);
  color: #06301a;
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.78rem 1.15rem;
  box-shadow: 0 12px 34px rgba(118, 245, 156, 0.45);
  z-index: 25;
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes driftA {
  from { transform: translate(0, 0); }
  to { transform: translate(45px, 22px); }
}

@keyframes driftB {
  from { transform: translate(0, 0); }
  to { transform: translate(-42px, 34px); }
}

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

  .trust-grid,
  .feature-grid,
  .eco-grid {
    grid-template-columns: 1fr;
  }

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

  .site-nav {
    position: absolute;
    top: 76px;
    right: 4vw;
    left: 4vw;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(8, 19, 14, 0.96);
    padding: 16px;
  }

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

  .menu-toggle {
    display: inline-flex;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    border-radius: 10px;
    padding: 0.55rem 0.75rem;
    font-weight: 700;
    cursor: pointer;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 70px;
    padding-bottom: 34px;
  }

  .hero::before {
    background-position: 60% center;
    transform: scale(1.07);
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(5, 16, 12, 0.84) 0%, rgba(8, 21, 15, 0.8) 52%, rgba(9, 23, 16, 0.9) 100%);
  }

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

  .steps li {
    grid-template-columns: 1fr;
  }

  .step-num {
    width: 36px;
    height: 36px;
    font-size: 0.88rem;
  }

  .mobile-play {
    display: inline-flex;
  }

  .site-footer {
    padding-bottom: 74px;
  }
}
