:root {
  --green: #21d764;
  --green-deep: #10b954;
  --mint: #dcfae7;
  --ink: #20212a;
  --muted: #6d7280;
  --line: #edf0f2;
  --soft: #f8fbfa;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(28, 38, 45, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 18px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.brand:hover {
  opacity: 0.86;
  transform: translateY(-1px);
}

.brand-logo {
  width: 196px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 700;
}

.nav a,
.header-link,
.text-link {
  transition: color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.nav a:hover,
.text-link:hover {
  color: var(--green-deep);
}

.header-link {
  border: 1px solid var(--green);
  border-radius: 2px;
  padding: 11px 22px;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 800;
}

.header-link:hover {
  color: var(--white);
  background: var(--green);
  transform: translateY(-2px);
}

.section-grid,
.split-section,
.program-section,
.impact-section,
.closing-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  min-height: 680px;
  padding: 58px 0 92px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 800;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.82);
}

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

h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.94;
  letter-spacing: 0;
  font-weight: 800;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 13px;
  font-size: 20px;
  line-height: 1.25;
}

.hero-lede,
.section-copy p,
.band-copy p,
.program-card p,
.mini-card p,
.process-cards p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.hero-lede {
  max-width: 560px;
  margin-bottom: 34px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 4px;
  padding: 0 24px;
  border: 1px solid var(--green);
  font-size: 13px;
  font-weight: 800;
  transition: transform 190ms ease, box-shadow 190ms ease, background 190ms ease, color 190ms ease;
}

.button.primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 34px rgba(33, 215, 100, 0.24);
}

.button.ghost {
  color: var(--green-deep);
  background: var(--white);
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(33, 215, 100, 0.26);
}

.button.ghost:hover {
  color: var(--white);
  background: var(--green);
}

.hero-visual {
  position: relative;
  justify-self: end;
  width: min(560px, 100%);
  aspect-ratio: 1.16;
}

.hero-visual img,
.organic-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: path("M 56 26 C 137 -21 267 -2 374 62 C 479 126 582 224 526 344 C 472 459 303 490 175 456 C 47 423 -28 324 10 205 C 27 150 9 76 56 26 Z");
  filter: saturate(1.02);
}

.blob {
  position: absolute;
  inset: -30px -24px 36px 58px;
  border-radius: 40% 58% 50% 46%;
  background: var(--mint);
}

.shape {
  position: absolute;
  pointer-events: none;
}

.shape-circle {
  top: 100px;
  left: 4%;
  width: 20px;
  height: 20px;
  border: 1px solid #ff6e73;
  border-radius: 50%;
}

.shape-plus {
  top: 96px;
  left: 43%;
  width: 26px;
  height: 26px;
}

.shape-plus::before,
.shape-plus::after {
  content: "";
  position: absolute;
  left: 12px;
  width: 1px;
  height: 26px;
  background: var(--green);
}

.shape-plus::after {
  transform: rotate(90deg);
}

.shape-diamond {
  right: 1%;
  bottom: 128px;
  width: 15px;
  height: 15px;
  border: 1px solid #875bff;
  transform: rotate(45deg);
}

.statement {
  width: min(780px, calc(100% - 48px));
  margin: 20px auto 90px;
  text-align: center;
}

.statement p {
  color: #3c3f48;
  font-size: clamp(21px, 3vw, 29px);
  line-height: 1.56;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: min(960px, calc(100% - 48px));
  margin: 0 auto 130px;
}

.mini-card,
.program-card,
.process-cards article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 10px 34px rgba(20, 30, 38, 0.04);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease, background 190ms ease, color 190ms ease;
}

.mini-card {
  padding: 31px 28px;
  text-align: center;
}

.mini-card:hover {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-14px);
  box-shadow: var(--shadow);
}

.mini-card:hover p,
.mini-card:hover .icon {
  color: rgba(255, 255, 255, 0.86);
}

.program-card:hover,
.process-cards article:hover {
  transform: translateY(-8px);
  border-color: rgba(33, 215, 100, 0.55);
  box-shadow: var(--shadow);
}

.icon,
.card-icon {
  display: inline-grid;
  place-items: center;
  color: var(--green);
  background: #ecfff3;
}

.icon {
  width: 38px;
  height: 38px;
  margin-bottom: 19px;
  border-radius: 6px;
  font-size: 19px;
  line-height: 1;
}

.split-section {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  align-items: center;
  gap: clamp(44px, 8vw, 110px);
  margin-bottom: 132px;
}

.organic-photo {
  position: relative;
  aspect-ratio: 1.08;
}

.organic-photo::before {
  content: "";
  position: absolute;
  inset: -18px 50px 28px -34px;
  z-index: -1;
  border-radius: 44% 56% 50% 47%;
  background: var(--mint);
}

.secondary-photo img {
  object-position: 30% center;
}

.section-copy p {
  max-width: 590px;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--green-deep);
  font-weight: 800;
}

.text-link::after {
  content: "→";
  margin-left: 10px;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(5px);
}

.program-section {
  margin-bottom: 118px;
}

.section-heading {
  max-width: 710px;
  margin-bottom: 44px;
}

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

.program-card {
  min-height: 292px;
  padding: 32px 28px;
}

.card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 30px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.green-band {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 64px;
  align-items: center;
  margin: 0 0 118px;
  padding: 104px max(48px, calc((100vw - 1180px) / 2)) 108px;
  color: var(--white);
  background: var(--green);
  overflow: hidden;
}

.green-band::before,
.green-band::after {
  content: "";
  position: absolute;
  border: 72px solid rgba(255, 255, 255, 0.1);
  border-radius: 44% 56% 50% 47%;
}

.green-band::before {
  left: -130px;
  bottom: -120px;
  width: 360px;
  height: 360px;
}

.green-band::after {
  top: -96px;
  right: -70px;
  width: 310px;
  height: 310px;
}

.band-copy,
.process-cards {
  position: relative;
  z-index: 1;
}

.band-copy p {
  color: rgba(255, 255, 255, 0.78);
}

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

.process-cards article {
  min-height: 210px;
  padding: 34px 28px;
}

.process-cards span {
  display: block;
  margin-bottom: 18px;
  color: var(--ink);
  font-weight: 800;
}

.impact-section {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 112px;
}

.quote-panel {
  position: relative;
  padding: 58px 0 58px 56px;
}

.quote-panel::before {
  content: "“";
  position: absolute;
  top: -16px;
  left: 0;
  color: var(--green);
  font-size: 120px;
  line-height: 1;
  font-weight: 800;
}

blockquote {
  margin: 0;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.28;
  font-weight: 800;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.metrics div {
  padding: 31px;
  border-radius: 6px;
  background: var(--soft);
  border: 1px solid var(--line);
  transition: transform 190ms ease, background 190ms ease, box-shadow 190ms ease;
}

.metrics div:hover {
  transform: translateY(-6px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.metrics strong {
  display: block;
  margin-bottom: 8px;
  font-size: 31px;
}

.metrics span {
  color: var(--muted);
  font-size: 14px;
}

.closing-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 94px;
  padding: 76px 74px;
  background:
    radial-gradient(circle at 30% 20%, rgba(33, 215, 100, 0.1), transparent 28%),
    linear-gradient(135deg, #f7fffa 0%, #ffffff 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.closing-section h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 42px 0 54px;
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

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

  .hero,
  .split-section,
  .green-band,
  .impact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 54px;
  }

  .hero-visual {
    justify-self: start;
  }

  .feature-strip,
  .program-grid,
  .process-cards {
    grid-template-columns: 1fr 1fr;
  }

  .closing-section,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header,
  .section-grid,
  .split-section,
  .program-section,
  .impact-section,
  .closing-section,
  .footer {
    width: calc(100% - 32px);
    max-width: 1180px;
  }

  .site-header {
    padding-top: 18px;
  }

  .header-link {
    padding: 9px 14px;
  }

  .brand-logo {
    width: 154px;
    height: 38px;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(31px, 9.4vw, 40px);
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .hero {
    overflow: hidden;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .feature-strip,
  .program-grid,
  .process-cards,
  .metrics {
    grid-template-columns: 1fr;
  }

  .green-band {
    padding: 72px 24px;
  }

  .quote-panel {
    padding-left: 34px;
  }

  .closing-section {
    padding: 44px 28px;
  }
}
