@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --green: #4ea62f;
  --green-2: #62c53c;
  --green-3: #b9ef91;
  --deep: #08110a;
  --ink: #101811;
  --paper: #f7faf5;
  --muted: #68736a;
  --line: #dfe8dc;
  --white: #fff;
  --shadow: 0 24px 70px rgba(10, 31, 12, 0.12);
  --radius: 24px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: min(1260px, calc(100% - 40px));
  margin: auto;
}
.nav {
  height: 78px;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(223, 232, 220, 0.75);
  background: rgba(247, 250, 245, 0.86);
  backdrop-filter: blur(18px);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: "Space Grotesk";
  font-weight: 700;
  letter-spacing: -0.03em;
}
.logo svg {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 7px 14px rgba(78, 166, 47, 0.2));
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
  color: #59645b;
}
.nav-links a:hover {
  color: var(--green);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 19px;
  border-radius: 13px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.2s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 28px rgba(78, 166, 47, 0.25);
}
.btn-primary:hover {
  background: #428f27;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(78, 166, 47, 0.3);
}
.btn-dark {
  background: var(--deep);
  color: #fff;
}
.btn-dark:hover {
  transform: translateY(-2px);
}
.btn-ghost {
  background: #fff;
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: #bcd1b8;
  transform: translateY(-2px);
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 100px;
  background:
    radial-gradient(
      circle at 8% 10%,
      rgba(185, 239, 145, 0.65),
      transparent 28%
    ),
    radial-gradient(
      circle at 92% 18%,
      rgba(78, 166, 47, 0.18),
      transparent 25%
    ),
    linear-gradient(180deg, #f8fcf6 0, #eef7eb 100%);
}
.hero:before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(78, 166, 47, 0.14);
  border-radius: 50%;
  right: -170px;
  top: -240px;
}
.hero:after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(78, 166, 47, 0.1);
  border-radius: 50%;
  left: -190px;
  bottom: -200px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 66px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3c8527;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}
.eyebrow:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(78, 166, 47, 0.12);
}
h1,
h2,
h3 {
  font-family: sans-serif;
  /* font-family: "Space Grotesk", sans-serif; */
  color: var(--ink);
  letter-spacing: -0.045em;
  line-height: 1.06;
  margin: 0 0 18px;
}
h1 {
  font-size: clamp(46px, 6.2vw, 76px);
  max-width: 730px;
}
h2 {
  font-size: clamp(34px, 4.4vw, 52px);
}
h3 {
  font-size: 21px;
}
.lead {
  font-size: 19px;
  color: #59665b;
  max-width: 650px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  font-size: 13px;
  color: #718074;
}
.hero-note b {
  color: #31572a;
}
.dashboard {
  position: relative;
  min-height: 505px;
}
.panel {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(214, 227, 210, 0.95);
  border-radius: 25px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.main-panel {
  inset: 25px 15px 28px 0;
  padding: 26px;
}
.panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.panel-title {
  font-family: "sans-serif";
  /* font-family: "Space Grotesk"; */
  font-weight: 700;
}
.status {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  background: #eaf7e6;
  color: #3d8529;
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}
.status i {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
}
.match {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 19px;
  border-radius: 19px;
  background: linear-gradient(135deg, #edf8e9, #fff);
  border: 1px solid #d9ebd4;
}
.ring {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--green) 0 77%, #dce9d8 77% 100%);
  position: relative;
}
.ring:after {
  content: "";
  position: absolute;
  inset: 8px;
  background: #fff;
  border-radius: 50%;
}
.ring strong {
  position: relative;
  z-index: 1;
  font-size: 12px !important;

  /* font-family: "Space Grotesk"; */
  font-family: "sans-serif";

  font-size: 20px;
}
.match-copy strong {
  display: block;
  /* font-family: "Space Grotesk"; */
  font-family: "sans-serif";

  font-size: 18px;
}
.match-copy span {
  font-size: 13px;
  color: var(--muted);
}
.signal-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.signal {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 13px;
}
.signal b {
  color: #356f28;
}
.floating {
  padding: 17px 19px;
  min-width: 220px;
}
.floating-one {
  right: -5px;
  top: 0;
  animation: float 5s ease-in-out infinite;
}
.floating-two {
  left: -28px;
  bottom: 0;
  animation: float 6s ease-in-out 1s infinite;
}
.float-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 800;
}
.float-big {
  /* font-family: "Space Grotesk"; */
  font-family: "sans-serif";

  font-size: 27px;
  font-weight: 700;
  color: var(--green);
  margin-top: 3px;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-9px) rotate(0.6deg);
  }
}
.section {
  padding: 96px 0;
}
.section-soft {
  background: #edf6ea;
}
.section-dark {
  background: var(--deep);
  color: #d9e7da;
  position: relative;
  overflow: hidden;
}
.section-dark:before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(78, 166, 47, 0.12);
  filter: blur(8px);
  right: -180px;
  top: -240px;
}
.center {
  text-align: center;
}
.section-intro {
  max-width: 710px;
  margin: 0 auto 48px;
}
.section-intro .lead {
  margin: auto;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 27px;
  transition: 0.2s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(16, 45, 19, 0.08);
  border-color: #cbdcc6;
}
.icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #e8f6e4;
  color: var(--green);
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 20px;
}
.card p {
  color: var(--muted);
  margin: 0;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.step {
  padding: 25px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.step:before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--green);
}
.step-no {
  font-size: 11px;
  font-weight: 850;
  color: var(--green);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.step p {
  color: var(--muted);
  font-size: 14px;
}
.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.metric {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
}
.metric strong {
  /* font-family: "Space Grotesk"; */
  font-family: "sans-serif";

  font-size: 34px;
  color: #a7ea86;
  display: block;
}
.metric span {
  font-size: 14px;
  color: #a7b8aa;
}
.quote {
  max-width: 880px;
  margin: auto;
  /* font-family: "Space Grotesk"; */
  font-family: "sans-serif";

  font-size: clamp(25px, 3.2vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.035em;
}
.quote em {
  color: var(--green-2);
  font-style: normal;
}
.cta {
  padding: 82px 0;
  background: linear-gradient(120deg, #163318, #08110a);
  color: #d7e5d7;
  position: relative;
  overflow: hidden;
}
.cta h2 {
  color: #fff;
  max-width: 750px;
}
.cta p {
  max-width: 650px;
}
.footer {
  padding: 38px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  background: #fff;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 18px;
}
.page {
  padding: 76px 0;
  background: #fff;
}
.prose {
  max-width: 850px;
}
.prose h1 {
  font-size: clamp(42px, 5vw, 64px);
}
.prose h2 {
  font-size: 30px;
  margin-top: 46px;
}
.prose h3 {
  margin-top: 30px;
}
.prose p,
.prose li {
  color: #59665b;
}
.prose ul {
  padding-left: 22px;
}
.notice {
  background: #edf8e9;
  border: 1px solid #cde5c7;
  border-radius: 19px;
  padding: 21px;
  margin: 28px 0;
}
.data-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 25px 0;
}
.data-item {
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 19px;
  background: #f9fcf8;
}
.data-item strong {
  display: block;
  color: var(--ink);
  margin-bottom: 5px;
}
.small {
  font-size: 13px;
  color: var(--muted);
}
.mobile-menu {
  display: none;
}

.desktoponly {
  display: block;
}
@media (max-width: 1300px) {
  .desktoponly {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .dashboard {
    min-height: 480px;
    margin-top: 15px;
  }
  .cards,
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .metric-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 650px) {
  .desktoponly {
    display: none;
  }
  .container {
    width: min(100% - 28px, 1160px);
  }
  .nav-links {
    display: none;
  }
  .mobile-menu {
    display: block;
  }
  .hero {
    padding: 64px 0 65px;
  }
  h1 {
    font-size: 45px;
  }
  .section {
    padding: 68px 0;
  }
  .cards,
  .steps,
  .data-grid {
    grid-template-columns: 1fr;
  }
  .dashboard {
    min-height: 430px;
  }
  .main-panel {
    inset: 35px 0 25px;
  }
  .floating-one {
    right: -4px;
    top: 0;
  }
  .floating-two {
    left: -4px;
    bottom: 0;
  }
  .floating {
    min-width: 190px;
  }
}
