:root {
  --green: #2D6A4F;
  --green-2: #40916C;
  --green-3: #52B788;
  --mint: #D8F3DC;
  --ink: #13231b;
  --muted: #5f6b64;
  --bg: #f6f9f6;
  --card: #ffffff;
  --line: #e7ede9;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #40916C, #2D6A4F);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(45, 106, 79, 0.28);
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(45, 106, 79, 0.35);
}

.btn-ghost {
  background: #fff;
  color: var(--green);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--line);
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-2);
  background: var(--mint);
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 18px;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(246, 249, 246, 0.8);
  border-bottom: 1px solid var(--line);
}

.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 19px;
}

.brand .leaf {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, #52B788, #2D6A4F);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-weight: 500;
  font-size: 15px;
  color: var(--muted);
}

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

@media (max-width: 780px) {
  .nav-links {
    display: none;
  }
}

/* HERO */
.hero {
  position: relative;
  padding: 70px 0 90px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(82, 183, 136, 0.22), transparent 65%);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  position: relative;
}

.hero h1 {
  font-size: 54px;
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -1.5px;
}

.hero h1 .hl {
  background: linear-gradient(120deg, #40916C, #52B788);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p.sub {
  font-size: 19px;
  color: var(--muted);
  margin: 22px 0 30px;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 38px;
}

.hero-stats .n {
  font-size: 26px;
  font-weight: 800;
  color: var(--green);
}

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

@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero h1 {
    font-size: 40px;
  }
  .hero p.sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta,
  .hero-stats {
    justify-content: center;
  }
}

/* PHONE MOCK */
.phone {
  width: 300px;
  margin: 0 auto;
  border-radius: 42px;
  background: #0c1410;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(20, 40, 30, 0.3);
  position: relative;
}

.phone .notch {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 26px;
  background: #0c1410;
  border-radius: 16px;
  z-index: 3;
}

.screen {
  background: linear-gradient(180deg, #f3f7f4, #eaf2ec);
  border-radius: 32px;
  overflow: hidden;
  height: 600px;
  padding: 26px 16px 16px;
}

.s-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.s-brand {
  font-weight: 800;
  font-size: 16px;
  color: var(--green);
}

.s-pill {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  border: 1.5px solid var(--green-3);
  border-radius: 20px;
  padding: 4px 10px;
}

.s-card {
  background: #fff;
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 11px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.s-card.interactive:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.s-ring {
  display: flex;
  align-items: center;
  gap: 14px;
}

.s-num {
  font-size: 26px;
  font-weight: 900;
}

.s-sub {
  font-size: 11px;
  color: var(--muted);
}

.s-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  margin-top: 6px;
}

.s-bar {
  height: 6px;
  background: #eaeaea;
  border-radius: 4px;
  margin-top: 5px;
  overflow: hidden;
}

.s-bar > i {
  display: block;
  height: 6px;
  border-radius: 4px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* SECTIONS */
section {
  padding: 80px 0;
}

.sec-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}

.sec-head h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
}

.sec-head p {
  font-size: 17px;
  color: var(--muted);
  margin-top: 14px;
}

/* FEATURES GRID */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.feat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
  transition: transform 0.18s, box-shadow 0.18s;
}

.feat:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(20, 40, 30, 0.10);
}

.feat .ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
}

.feat h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 7px;
}

.feat p {
  font-size: 14.5px;
  color: var(--muted);
}

/* SPLIT highlight */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

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

.split.alt {
  direction: rtl;
}

.split.alt > * {
  direction: ltr;
}

.split-visual {
  background: linear-gradient(135deg, #1B4332, #40916C);
  border-radius: 28px;
  padding: 40px;
  color: #fff;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 30px 60px rgba(27, 67, 50, 0.25);
}

.split-visual .big {
  font-size: 46px;
  margin-bottom: 14px;
}

.chiplist {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.chiplist span {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 6px 13px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.chiplist span:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.03);
}

.split-txt h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.6px;
}

.split-txt p {
  font-size: 16px;
  color: var(--muted);
  margin: 16px 0;
}

.ticks {
  list-style: none;
}

.ticks li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 10px 0;
  font-size: 15px;
}

.ticks li::before {
  content: "✓";
  color: var(--green-2);
  font-weight: 800;
  background: var(--mint);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

/* STEPS */
.steps3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.step {
  text-align: center;
  padding: 20px;
}

.step .num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #52B788, #2D6A4F);
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 8px 20px rgba(45, 106, 79, 0.3);
}

.step h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 6px;
}

.step p {
  font-size: 14.5px;
  color: var(--muted);
}

/* CTA */
.cta-band {
  background: linear-gradient(135deg, #1B4332, #2D6A4F);
  border-radius: 30px;
  padding: 64px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: "🌿";
  position: absolute;
  font-size: 240px;
  opacity: 0.06;
  right: -20px;
  bottom: -60px;
}

.cta-band h2 {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -1px;
}

.cta-band p {
  font-size: 18px;
  opacity: 0.9;
  margin: 16px auto 28px;
  max-width: 520px;
}

.cta-band .btn {
  background: #fff;
  color: var(--green);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* FOOTER */
footer {
  padding: 50px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.disc {
  max-width: 620px;
  margin: 14px auto 0;
  font-size: 12.5px;
  color: #9aa6a0;
}

/* Toast styling for dynamic feedback */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--ink);
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  gap: 8px;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}
