:root {
  --green: #00503b;
  --green-dark: #003f2f;
  --green-deeper: #003226;
  --green-soft: #2e6f5c;
  --mint: #8cedb8;
  --mint-strong: #77e8aa;
  --mint-soft: #d9f5e6;
  --sage: #dfeadb;
  --cream: #f5f3e0;
  --cream-light: #fbfaf3;
  --white: #ffffff;
  --ink: #073e31;
  --muted: #41665b;
  --line: rgba(0, 80, 59, .16);
  --line-light: rgba(255,255,255,.22);
  --shadow: 0 20px 60px rgba(0, 62, 47, .13);
  --shadow-small: 0 10px 28px rgba(0, 62, 47, .09);
  --max: 1180px;
  --radius-lg: 30px;
  --radius: 20px;
  --radius-sm: 14px;
  --header-height: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  background: var(--cream-light);
  color: var(--ink);
  font-family: "Poppins", "Avenir Next", Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
svg { display: block; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 200;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: none;
  transition: top .18s ease;
}
.skip-link:focus { top: 16px; }

.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* Brand */
.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: .92;
  text-decoration: none;
  white-space: nowrap;
}
.brand-name {
  color: var(--green);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -1.6px;
}
.brand-light .brand-name { color: #fff; }
.brand-four {
  display: inline-grid;
  place-items: center;
  width: 1.04em;
  height: 1.04em;
  margin: 0 .075em;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green-dark);
  font-size: .88em;
  font-weight: 800;
  vertical-align: .03em;
}
.brand-tag {
  margin-top: 7px;
  color: var(--mint);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .01em;
}
.brand-powered {
  margin-top: 8px;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
}

/* Header and menu */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 70;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 max(26px, calc((100vw - var(--max)) / 2));
  color: #fff;
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled {
  background: rgba(0, 80, 59, .95);
  box-shadow: 0 1px 0 rgba(255,255,255,.11);
  backdrop-filter: blur(12px);
}
.header-back {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.86);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}
.header-back:hover { color: #fff; }
.site-header > .brand { justify-self: center; }
.menu-button {
  justify-self: end;
  width: 46px;
  height: 46px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 0 11px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: rgba(0, 58, 43, .18);
  color: #fff;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease;
}
.menu-button:hover { background: rgba(0, 58, 43, .42); transform: translateY(-1px); }
.menu-button span { display: block; width: 100%; height: 2px; border-radius: 2px; background: currentColor; }

.menu-panel {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  width: min(410px, 92vw);
  height: 100dvh;
  padding: 94px 48px 44px;
  background: var(--green-dark);
  color: #fff;
  transform: translateX(105%);
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
  box-shadow: -30px 0 80px rgba(0, 38, 29, .34);
}
.menu-panel.is-open { transform: translateX(0); }
.menu-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.menu-panel nav { display: flex; flex-direction: column; gap: 18px; }
.menu-panel nav a {
  color: #fff;
  font-size: 20px;
  font-weight: 650;
  text-decoration: none;
  letter-spacing: -.02em;
}
.menu-panel nav a:hover { color: var(--mint); }
.menu-rule { width: 100%; height: 1px; margin: 9px 0; background: rgba(255,255,255,.18); }
.menu-backdrop {
  position: fixed;
  z-index: 90;
  inset: 0;
  background: rgba(0, 31, 24, .55);
  backdrop-filter: blur(3px);
}

/* General typography */
h1, h2, h3 { margin: 0; color: var(--green); line-height: 1.08; letter-spacing: -.04em; }
h1 { font-size: clamp(45px, 5.5vw, 78px); font-weight: 800; }
h2 { font-size: clamp(34px, 4vw, 56px); font-weight: 800; }
h3 { font-size: 24px; font-weight: 700; }
p { margin-top: 0; }
.section { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.section-heading { max-width: 800px; margin: 0 auto 42px; text-align: center; }
.section-heading-left { max-width: 820px; margin-left: 0; text-align: left; }
.section-heading > p:last-child { max-width: 690px; margin: 18px auto 0; color: var(--muted); font-size: 16px; }
.section-heading-left > p:last-child { margin-left: 0; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--green-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow-mint { color: var(--mint); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 23px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .solution-card:focus-visible, .menu-button:focus-visible, .menu-close:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 3px;
}
.button-mint { background: var(--mint); color: var(--green-dark); box-shadow: 0 10px 26px rgba(0,0,0,.13); }
.button-mint:hover { background: var(--mint-strong); }
.button-green { background: var(--green); color: #fff; box-shadow: 0 10px 25px rgba(0,80,59,.16); }
.button-green:hover { background: var(--green-dark); }
.button-glass { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.08); color: #fff; backdrop-filter: blur(8px); }
.button-glass:hover { background: rgba(255,255,255,.16); }
.button-outline { border-color: rgba(255,255,255,.62); color: #fff; background: transparent; }
.button-outline:hover { background: rgba(255,255,255,.08); }
.text-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 18px; color: var(--green); font-weight: 700; text-underline-offset: 6px; }

/* Hero */
.hero {
  position: relative;
  min-height: 760px;
  height: min(86vh, 900px);
  display: grid;
  overflow: hidden;
  background: var(--green-dark);
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 55%; filter: saturate(.9) contrast(.98); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,64,47,.93) 0%, rgba(0,64,47,.78) 43%, rgba(0,64,47,.36) 74%, rgba(0,64,47,.2) 100%),
    linear-gradient(0deg, rgba(0,48,36,.28), transparent 42%);
}
.hero-orb { position: absolute; border-radius: 50%; border: 1px solid rgba(140,237,184,.22); background: rgba(140,237,184,.09); backdrop-filter: blur(2px); }
.hero-orb-one { width: 380px; height: 380px; right: 6%; top: 16%; }
.hero-orb-two { width: 250px; height: 250px; right: 22%; bottom: 5%; }
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  margin: auto;
  padding-top: 90px;
  color: #fff;
}
.hero-kicker { margin-bottom: 16px; color: var(--mint); font-size: 14px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero h1 { max-width: 980px; color: #fff; text-wrap: balance; }
.hero-lead { max-width: 750px; margin: 28px 0 0; color: rgba(255,255,255,.9); font-size: clamp(17px, 1.5vw, 21px); line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.hero-scroll {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 32px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,.78);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.hero-scroll span:last-child { font-size: 20px; animation: bounce 1.8s infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

.choice-ribbon {
  position: relative;
  z-index: 4;
  width: min(var(--max), calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: -48px auto 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: var(--shadow);
}
.choice-ribbon > div { padding: 24px 30px; border-right: 1px solid var(--line); }
.choice-ribbon > div:last-child { border-right: 0; }
.choice-ribbon strong { display: block; color: var(--green); font-size: 18px; }
.choice-ribbon span { display: block; margin-top: 4px; color: var(--muted); font-size: 13px; }

/* Intro */
.intro { display: grid; grid-template-columns: .95fr 1.05fr; gap: 90px; align-items: start; padding: 118px 0 100px; }
.intro h2 { max-width: 630px; }
.intro-text { padding-top: 25px; color: var(--muted); font-size: 18px; }
.intro-text p { margin-bottom: 22px; }
.intro-text strong { color: var(--green); }

/* Solutions */
.solutions-wrap { position: relative; overflow: hidden; padding: 105px 0 110px; background: var(--cream); }
.solutions-wrap::before, .solutions-wrap::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(140,237,184,.16);
}
.solutions-wrap::before { width: 420px; height: 420px; top: -220px; right: -80px; }
.solutions-wrap::after { width: 280px; height: 280px; bottom: -150px; left: -100px; }
.solutions-section { position: relative; z-index: 1; }
.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.solution-card {
  position: relative;
  min-height: 285px;
  padding: 28px 28px 28px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: #fff;
  color: var(--green);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 7px 22px rgba(0,80,59,.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.solution-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-small); }
.solution-card.is-active { border-color: var(--green); background: linear-gradient(145deg, #fff 42%, var(--mint-soft)); }
.solution-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: var(--mint-soft); }
.solution-icon svg { width: 27px; height: 27px; fill: none; stroke: var(--green); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.solution-number { position: absolute; top: 29px; right: 27px; color: var(--green-soft); font-size: 12px; font-weight: 800; }
.solution-card strong { display: block; max-width: 280px; margin-top: 28px; padding-right: 8px; font-size: 21px; line-height: 1.25; letter-spacing: -.025em; }
.solution-card > span:nth-last-of-type(2) { display: block; margin-top: 12px; padding-right: 18px; color: var(--muted); font-size: 14px; }
.solution-arrow { position: absolute; right: 24px; bottom: 20px; font-size: 25px; }

.solution-detail {
  display: grid;
  grid-template-columns: 165px 1fr auto;
  gap: 34px;
  align-items: center;
  margin-top: 20px;
  padding: 34px 36px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-small);
}
.detail-visual { position: relative; width: 138px; height: 138px; display: grid; place-items: center; }
.detail-ring { position: absolute; inset: 0; border-radius: 50%; border: 18px solid var(--mint-soft); box-shadow: inset 0 0 0 2px rgba(0,80,59,.08); }
.detail-ring::before, .detail-ring::after { content: ""; position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--green); }
.detail-ring::before { top: -14px; left: 50%; transform: translateX(-50%); }
.detail-ring::after { bottom: -14px; right: 13px; background: var(--mint); }
.detail-core { position: relative; z-index: 1; color: var(--green); font-size: 29px; font-weight: 800; letter-spacing: -.04em; }
.detail-copy h3 { margin-bottom: 9px; font-size: 31px; }
.detail-copy > p:not(.eyebrow):not(.detail-note) { max-width: 720px; margin-bottom: 0; color: var(--muted); }
.detail-copy ul { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 18px 0 0; padding: 0; list-style: none; }
.detail-copy li { position: relative; padding-left: 20px; color: var(--ink); font-size: 13px; font-weight: 600; }
.detail-copy li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.detail-note { max-width: 750px; margin: 16px 0 0; padding-top: 14px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.detail-cta { min-width: 225px; }

/* Process */
.process { padding: 108px 0 116px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 44px; }
.process-grid article { position: relative; min-height: 250px; padding: 30px 27px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 6px 20px rgba(0,80,59,.04); }
.process-grid article:not(:last-child)::after { content: "→"; position: absolute; z-index: 2; right: -17px; top: 46px; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--mint); color: var(--green); font-weight: 800; }
.step-number { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 34px; border-radius: 50%; background: var(--mint-soft); color: var(--green); font-size: 17px; font-weight: 800; }
.process-grid h3 { margin-bottom: 12px; font-size: 20px; }
.process-grid p { margin-bottom: 0; color: var(--muted); font-size: 14px; }

/* Data flow */
.data-flow-wrap { padding: 100px 0 105px; background: var(--green); color: #fff; }
.data-flow h2 { color: #fff; }
.data-flow .eyebrow { color: var(--mint); }
.flow-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 15px; align-items: stretch; }
.flow-grid article { min-width: 0; padding: 26px 22px; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); background: rgba(255,255,255,.08); backdrop-filter: blur(10px); }
.flow-grid article.flow-center { background: var(--mint); color: var(--green-dark); border-color: transparent; }
.flow-icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 24px; border-radius: 50%; background: rgba(140,237,184,.16); }
.flow-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--mint); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.flow-grid small { display: block; margin-bottom: 8px; color: var(--mint); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.flow-center small { color: var(--green-dark); opacity: .75; }
.flow-grid h3 { margin-bottom: 10px; color: #fff; font-size: 20px; }
.flow-center h3 { color: var(--green-dark); }
.flow-grid p { margin-bottom: 0; color: rgba(255,255,255,.78); font-size: 13px; }
.flow-center p { color: rgba(0,63,47,.8); }
.flow-arrow { align-self: center; color: var(--mint); font-size: 26px; font-weight: 700; }
.flow-logo { display: block; margin-bottom: 18px; color: var(--green-dark); font-size: 22px; font-weight: 800; letter-spacing: -.05em; }
.flow-logo span { display: inline-grid; place-items: center; width: 1.25em; height: 1.25em; margin: 0 .06em; border-radius: 50%; background: var(--green); color: var(--mint); font-size: .85em; }

/* Mangroves */
.mangrove { display: grid; grid-template-columns: 1.05fr .95fr; gap: 74px; align-items: center; padding: 120px 0; }
.mangrove-image-wrap { position: relative; min-height: 590px; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.mangrove-image-wrap img { width: 100%; height: 100%; min-height: 590px; object-fit: cover; object-position: 56% center; }
.image-label { position: absolute; left: 24px; bottom: 24px; padding: 11px 18px; border-radius: 999px; background: rgba(0,80,59,.88); color: #fff; font-size: 12px; font-weight: 700; backdrop-filter: blur(7px); }
.mangrove-copy > p:not(.eyebrow) { margin: 22px 0 0; color: var(--muted); font-size: 17px; }
.impact-list { display: grid; gap: 13px; margin-top: 30px; }
.impact-list article { display: grid; grid-template-columns: 45px 1fr; gap: 15px; align-items: start; padding: 17px 18px; border-radius: var(--radius-sm); background: var(--cream); }
.impact-list article > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--mint); }
.impact-list svg { width: 21px; height: 21px; fill: none; stroke: var(--green); stroke-width: 2.3; stroke-linecap: round; stroke-linejoin: round; }
.impact-list strong { color: var(--green); }
.impact-list p { margin: 3px 0 0; color: var(--muted); font-size: 13px; }

/* Documentation */
.documentation-wrap { padding: 112px 0; background: var(--cream); }
.documentation { display: grid; grid-template-columns: .95fr 1.05fr; gap: 80px; align-items: center; }
.doc-preview { position: relative; }
.doc-preview::before { content: ""; position: absolute; width: 280px; height: 280px; left: -80px; bottom: -70px; border-radius: 50%; background: var(--mint); opacity: .35; }
.doc-window { position: relative; z-index: 1; max-width: 520px; margin: 0 auto; overflow: hidden; border: 10px solid rgba(255,255,255,.9); border-radius: 24px; background: #fff; box-shadow: var(--shadow); transform: rotate(-1.4deg); }
.doc-topbar { height: 56px; display: flex; align-items: center; gap: 7px; padding: 0 18px; background: var(--green); color: #fff; }
.doc-topbar span { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); opacity: .65; }
.doc-topbar strong { margin-left: auto; font-size: 12px; }
.doc-body { padding: 34px 38px 38px; }
.doc-eyebrow { margin-bottom: 4px; color: var(--green-soft); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.doc-body h3 { font-size: 28px; }
.doc-circles { display: flex; margin: 28px 0 24px; }
.doc-circles > div { width: 128px; height: 128px; display: grid; place-content: center; border-radius: 50%; text-align: center; }
.doc-circles > div:first-child { background: var(--green); color: #fff; }
.doc-circles > div:last-child { margin-left: -16px; border: 1px solid var(--line); background: var(--mint-soft); color: var(--green); }
.doc-circles strong, .doc-circles span { display: block; }
.doc-circles strong { font-size: 23px; }
.doc-circles span { font-size: 10px; font-weight: 600; }
.doc-lines { display: grid; gap: 9px; margin-top: 20px; }
.doc-lines span { height: 8px; border-radius: 6px; background: var(--sage); }
.doc-lines span:nth-child(1) { width: 100%; }
.doc-lines span:nth-child(2) { width: 78%; }
.doc-lines span:nth-child(3) { width: 55%; }
.doc-status { display: flex; align-items: center; gap: 10px; margin-top: 25px; padding: 12px 14px; border-radius: 12px; background: var(--cream); color: var(--green); font-size: 12px; font-weight: 650; }
.doc-status svg { width: 19px; height: 19px; fill: none; stroke: var(--green); stroke-width: 2.3; stroke-linecap: round; stroke-linejoin: round; }
.documentation-copy > p:not(.eyebrow) { margin: 22px 0 0; color: var(--muted); font-size: 16px; }
.doc-benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; margin-top: 30px; }
.doc-benefits article { display: grid; grid-template-columns: 38px 1fr; gap: 13px; padding: 17px; border-radius: var(--radius-sm); background: #fff; }
.doc-benefits article > svg { width: 29px; height: 29px; fill: none; stroke: var(--green); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.doc-benefits strong, .doc-benefits span { display: block; }
.doc-benefits strong { color: var(--green); font-size: 14px; }
.doc-benefits span { margin-top: 3px; color: var(--muted); font-size: 11px; }

/* Segments */
.segments { padding: 118px 0; }
.segment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.segment-grid article { min-height: 205px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 6px 20px rgba(0,80,59,.035); }
.segment-grid svg { width: 36px; height: 36px; margin-bottom: 29px; fill: none; stroke: var(--green); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.segment-grid strong, .segment-grid span { display: block; }
.segment-grid strong { color: var(--green); font-size: 17px; }
.segment-grid span { margin-top: 8px; color: var(--muted); font-size: 13px; }

/* Contact */
.contact {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 112px;
  padding: 58px 60px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--green);
  color: #fff;
}
.contact::after { content: ""; position: absolute; width: 380px; height: 380px; right: -150px; top: -165px; border-radius: 50%; background: var(--mint); opacity: .13; }
.contact-copy, .contact-actions { position: relative; z-index: 1; }
.contact h2 { color: #fff; }
.contact-copy > p:last-child { max-width: 700px; margin: 20px 0 0; color: rgba(255,255,255,.82); }
.contact-actions { display: flex; flex-direction: column; align-items: stretch; gap: 12px; }
.contact-email { margin-top: 4px; color: rgba(255,255,255,.75); font-size: 12px; text-align: center; }
.contact-email a { color: #fff; font-weight: 700; }

/* Footer */
.site-footer { background: var(--green-dark); color: #fff; }
.footer-top { width: min(980px, calc(100% - 48px)); display: grid; grid-template-columns: 1.45fr .75fr 1fr; gap: 75px; margin: 0 auto; padding: 74px 0 64px; }
.footer-brand .brand { align-items: flex-start; }
.footer-brand .brand-name { font-size: 34px; }
.footer-brand p { max-width: 300px; margin: 22px 0 0; color: rgba(255,255,255,.7); font-size: 12px; }
.footer-column { display: flex; flex-direction: column; gap: 6px; font-size: 12px; }
.footer-column strong { margin-bottom: 6px; color: var(--mint); font-size: 13px; }
.footer-column a { color: #fff; text-decoration: none; }
.footer-column a:hover { color: var(--mint); }
.footer-column span { color: rgba(255,255,255,.75); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px max(26px, calc((100vw - var(--max)) / 2)); border-top: 1px solid rgba(255,255,255,.12); color: var(--mint); font-size: 10px; }
.footer-bottom nav { display: flex; gap: 20px; }
.footer-bottom a { color: rgba(255,255,255,.72); text-decoration: none; }
.noscript { position: fixed; z-index: 300; inset: auto 16px 16px; padding: 14px 18px; border-radius: 14px; background: var(--green-dark); color: #fff; font-size: 13px; box-shadow: var(--shadow); }

/* Motion */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .solution-detail { grid-template-columns: 130px 1fr; }
  .detail-cta { grid-column: 2; justify-self: start; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid article:nth-child(2)::after { display: none; }
  .flow-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-arrow { display: none; }
  .mangrove { gap: 45px; }
  .documentation { gap: 45px; }
}

@media (max-width: 860px) {
  :root { --header-height: 72px; }
  .site-header { padding: 0 20px; }
  .header-back { font-size: 0; }
  .header-back span { font-size: 20px; }
  .site-header .brand-name { font-size: 25px; }
  .hero { min-height: 700px; height: 88vh; }
  .hero-overlay { background: linear-gradient(0deg, rgba(0,64,47,.91) 0%, rgba(0,64,47,.58) 68%, rgba(0,64,47,.4) 100%); }
  .hero-inner { display: flex; flex-direction: column; justify-content: flex-end; padding: 120px 0 100px; }
  .hero h1 { font-size: clamp(42px, 9vw, 62px); }
  .hero-orb-one { width: 280px; height: 280px; right: -80px; top: 14%; }
  .hero-orb-two { width: 170px; height: 170px; right: 20%; bottom: 20%; }
  .choice-ribbon { grid-template-columns: 1fr; margin-top: 0; width: 100%; border-radius: 0; box-shadow: none; }
  .choice-ribbon > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .choice-ribbon > div:last-child { border-bottom: 0; }
  .intro { grid-template-columns: 1fr; gap: 26px; padding: 90px 0; }
  .intro-text { padding-top: 0; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: 230px; }
  .solution-detail { grid-template-columns: 105px 1fr; }
  .detail-visual { width: 100px; height: 100px; }
  .detail-ring { border-width: 13px; }
  .detail-core { font-size: 22px; }
  .mangrove { grid-template-columns: 1fr; }
  .mangrove-image-wrap, .mangrove-image-wrap img { min-height: 440px; }
  .documentation { grid-template-columns: 1fr; }
  .doc-preview { order: 2; }
  .segment-grid { grid-template-columns: repeat(2, 1fr); }
  .contact { grid-template-columns: 1fr; gap: 34px; padding: 48px 42px; }
  .contact-actions { max-width: 430px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .section { width: min(100% - 32px, var(--max)); }
  .header-back { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .site-header > .brand { justify-self: start; }
  .menu-button { grid-column: 2; }
  .menu-panel { padding: 88px 28px 38px; }
  .menu-panel nav a { font-size: 18px; }
  .hero { min-height: 720px; }
  .hero-inner { width: calc(100% - 32px); padding-bottom: 94px; }
  .hero-kicker { font-size: 11px; }
  .hero h1 { font-size: 42px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-scroll { bottom: 20px; }
  .choice-ribbon > div { padding: 20px 24px; }
  .intro { padding: 75px 0; }
  h2 { font-size: 37px; }
  .solutions-wrap { padding: 82px 0; }
  .solution-card { min-height: 225px; padding: 25px; }
  .solution-detail { grid-template-columns: 1fr; padding: 27px 24px; }
  .detail-visual { width: 96px; height: 96px; }
  .detail-cta { grid-column: 1; width: 100%; }
  .detail-copy ul { display: grid; gap: 7px; }
  .process { padding: 82px 0; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article::after { display: none !important; }
  .data-flow-wrap { padding: 78px 0; }
  .flow-grid { grid-template-columns: 1fr; }
  .mangrove { padding: 82px 0; }
  .mangrove-image-wrap, .mangrove-image-wrap img { min-height: 360px; }
  .documentation-wrap { padding: 82px 0; }
  .doc-window { border-width: 6px; }
  .doc-body { padding: 28px 24px 31px; }
  .doc-circles > div { width: 105px; height: 105px; }
  .doc-benefits { grid-template-columns: 1fr; }
  .segments { padding: 82px 0; }
  .segment-grid { grid-template-columns: 1fr; }
  .segment-grid article { min-height: 178px; }
  .contact { width: calc(100% - 32px); margin-bottom: 82px; padding: 38px 26px; border-radius: 22px; }
  .contact h2 { font-size: 35px; }
  .footer-top { grid-template-columns: 1fr; gap: 38px; padding: 60px 0 50px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; padding: 22px 24px; }
  .footer-bottom nav { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
