:root {
  --green: #00503b;
  --green-deep: #003c2d;
  --green-night: #002d22;
  --cream: #f5f3e0;
  --cream-soft: #faf8ee;
  --mint: #8cedb8;
  --mint-strong: #77e8aa;
  --mint-soft: #d9f5e6;
  --beige: #d8d1ae;
  --ink: #004331;
  --muted: #536b63;
  --white: #fbfaf1;
  --line: rgba(0, 80, 59, .16);
  --shadow: 0 24px 74px rgba(0, 55, 40, .13);
  --serif: "Iowan Old Style", "Baskerville", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: "Avenir Next", "Avenir", "Century Gothic", "Trebuchet MS", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; background: var(--cream); }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .025;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.52'/%3E%3C/svg%3E");
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.wrap { width: min(calc(100% - 56px), var(--max)); margin-inline: auto; }
.section-space { padding: clamp(96px, 10vw, 158px) 0; }
.skip-link {
  position: fixed;
  left: 20px;
  top: -90px;
  z-index: 200;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green-night);
  font-weight: 700;
  text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus { top: 18px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 max(28px, calc((100vw - var(--max)) / 2));
  color: white;
  transition: background .28s ease, box-shadow .28s ease, backdrop-filter .28s ease;
}
.site-header.is-scrolled {
  background: rgba(0, 60, 45, .94);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .14);
  backdrop-filter: blur(14px);
}
.header-back {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .8);
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
}
.header-back:hover { color: white; }
.header-cta {
  justify-self: end;
  padding: 10px 17px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 999px;
  color: white;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.header-cta:hover { background: var(--mint); border-color: var(--mint); color: var(--green-night); }
.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: 28px; font-weight: 700; letter-spacing: -1.55px; }
.brand-light .brand-name { color: white; }
.brand-four {
  display: inline-grid;
  place-items: center;
  width: 1.08em;
  height: 1.08em;
  margin: 0 .07em;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green-deep);
  font-size: .86em;
  font-weight: 800;
  vertical-align: .04em;
}
.brand-tag { margin-top: 7px; color: var(--mint); font-size: 9px; font-weight: 700; }

.kicker {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.kicker-mint { color: var(--mint); }
h1, h2, h3, p { margin-top: 0; }
h2 {
  margin-bottom: 0;
  color: var(--green);
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.9vw, 6.8rem);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.052em;
}
.lead { color: var(--muted); font-size: clamp(1.08rem, 1.35vw, 1.42rem); line-height: 1.65; }
.story-copy > p:not(.kicker):not(.lead):not(.dilemma-conclusion) { color: var(--muted); font-size: 1rem; line-height: 1.72; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-mint { background: var(--mint); color: var(--green-night); box-shadow: 0 14px 34px rgba(0, 27, 20, .16); }
.button-mint:hover { background: var(--mint-strong); }
.button-glass { border-color: rgba(255, 255, 255, .52); background: rgba(255, 255, 255, .08); color: white; backdrop-filter: blur(9px); }
.button-glass:hover { background: rgba(255, 255, 255, .15); }

.hero {
  min-height: 100svh;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  background: var(--green-night);
  color: white;
}
.hero-image {
  position: absolute;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(.88) contrast(1.02);
  transform: scale(1.025);
  animation: hero-settle 1.8s cubic-bezier(.2, .72, .2, 1) forwards;
}
@keyframes hero-settle { to { transform: scale(1); } }
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(0, 40, 30, .95) 0%, rgba(0, 48, 36, .83) 39%, rgba(0, 45, 34, .32) 74%, rgba(0, 45, 34, .52) 100%),
    linear-gradient(180deg, rgba(0, 45, 34, .18) 0%, rgba(0, 45, 34, .12) 65%, rgba(0, 45, 34, .78) 100%);
}
.hero-ring { position: absolute; z-index: -2; border: 1px solid rgba(140, 237, 184, .24); border-radius: 50%; }
.hero-ring-one { width: min(58vw, 770px); aspect-ratio: 1; right: -19%; top: -31%; }
.hero-ring-two { width: min(22vw, 290px); aspect-ratio: 1; right: 13%; bottom: 15%; background: rgba(140, 237, 184, .06); }
.hero-inner {
  width: min(calc(100% - 56px), var(--max));
  margin: auto;
  padding: 150px 0 88px;
}
.hero h1 {
  max-width: 10.2ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.15rem, 7.2vw, 8.4rem);
  font-weight: 400;
  line-height: .91;
  letter-spacing: -.062em;
}
.hero h1 span, .hero h1 em { display: block; font-style: normal; }
.hero h1 em { color: var(--mint); }
.hero-lead {
  max-width: 47rem;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .77);
  font-size: clamp(1.08rem, 1.4vw, 1.5rem);
  line-height: 1.62;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-ribbon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  padding-inline: max(28px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(255, 255, 255, .18);
  background: rgba(0, 45, 34, .72);
  backdrop-filter: blur(12px);
}
.hero-ribbon div { min-width: 0; padding: 20px 24px 21px 0; border-right: 1px solid rgba(255, 255, 255, .16); }
.hero-ribbon div + div { padding-left: 24px; }
.hero-ribbon div:last-child { border-right: 0; }
.hero-ribbon small { display: block; margin-bottom: 4px; color: rgba(255, 255, 255, .55); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.hero-ribbon strong { display: block; color: white; font-family: var(--serif); font-size: clamp(1.18rem, 1.65vw, 1.7rem); font-weight: 400; line-height: 1.14; }

.dilemma { position: relative; overflow: hidden; background: var(--cream-soft); }
.dilemma::before { content: ""; position: absolute; width: 500px; aspect-ratio: 1; right: -250px; bottom: -270px; border-radius: 50%; background: rgba(140, 237, 184, .16); }
.dilemma-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr); gap: clamp(60px, 8vw, 120px); align-items: center; }
.dilemma .story-copy h2 { max-width: 10.2ch; }
.dilemma .lead { max-width: 38rem; margin: 32px 0 20px; }
.dilemma-conclusion { max-width: 39rem; margin: 26px 0 0; padding-left: 20px; border-left: 2px solid var(--mint); color: var(--muted); line-height: 1.7; }
.dilemma-conclusion strong { color: var(--green); font-weight: 700; }
.visibility-frame {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(210px, 1.14fr) 40px minmax(150px, .86fr);
  align-items: center;
  padding: 38px 36px 86px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, .54);
  box-shadow: var(--shadow);
}
.visibility-inside, .visibility-outside { min-width: 0; }
.visibility-inside {
  width: min(100%, 300px);
  aspect-ratio: 1;
  align-self: center;
  justify-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 2vw, 30px);
  border-radius: 50%;
  background: var(--green);
  color: white;
  text-align: center;
  box-shadow: 0 18px 46px rgba(0, 55, 40, .17);
}
.frame-label { color: var(--mint); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.visibility-inside > strong { max-width: 100%; margin-top: 12px; font-family: var(--serif); font-size: clamp(2.45rem, 3vw, 3.25rem); font-weight: 400; line-height: 1; letter-spacing: -.05em; white-space: nowrap; }
.visibility-inside ul { width: 100%; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; margin: 22px 0 0; padding: 0; list-style: none; }
.visibility-inside li { min-width: 0; padding: 6px 4px; border: 1px solid rgba(255, 255, 255, .22); border-radius: 999px; background: rgba(255, 255, 255, .045); font-size: 8px; line-height: 1.15; white-space: nowrap; }
.visibility-boundary { height: 86%; display: grid; place-items: center; }
.visibility-boundary span { width: 1px; height: 100%; background: linear-gradient(transparent, var(--beige) 18%, var(--beige) 82%, transparent); }
.visibility-outside { padding-left: 5px; }
.visibility-outside .frame-label { color: var(--muted); }
.visibility-outside p { margin: 22px 0 0; font-family: var(--serif); font-size: clamp(2rem, 3.25vw, 3.7rem); line-height: 1.04; letter-spacing: -.04em; }
.visibility-note { position: absolute; left: 38px; right: 38px; bottom: 26px; padding-top: 17px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; text-align: center; }
.visibility-note em { color: var(--green); font-family: var(--serif); font-size: 1.25em; font-style: italic; }

.difference { position: relative; overflow: hidden; background: var(--green); color: var(--white); }
.difference::before { content: ""; position: absolute; width: min(76vw, 980px); aspect-ratio: 1; left: 50%; top: 58%; transform: translate(-50%, -50%); border-radius: 50%; background: radial-gradient(circle, rgba(140, 237, 184, .06), transparent 67%); }
.difference-heading { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; text-align: center; }
.difference h2 { max-width: none; color: var(--white); font-size: clamp(3.7rem, 7vw, 8.4rem); }
.difference h2 span { color: var(--mint); }
.difference-heading > p:last-child { max-width: 49rem; margin: 28px auto 0; color: rgba(251, 250, 241, .73); font-size: clamp(1.05rem, 1.35vw, 1.42rem); }
.circle-stage { position: relative; z-index: 2; width: min(100%, 980px); display: flex; flex-direction: column; align-items: center; margin: 76px auto 0; }
.shared-circle { position: relative; width: min(62vw, 660px); aspect-ratio: 1; border-radius: 50%; background: var(--mint); color: var(--green-night); box-shadow: 0 38px 90px rgba(0, 28, 21, .27); }
.shared-circle::before { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(0, 80, 59, .16); border-radius: 50%; pointer-events: none; }
.shared-label { position: absolute; z-index: 3; top: 6.3%; left: 50%; width: 76%; transform: translateX(-50%); text-align: center; }
.shared-label small, .responsibility-circle small { display: block; font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.shared-label small { color: rgba(0, 60, 45, .64); }
.shared-label strong { display: block; max-width: 24ch; margin: 10px auto 0; font-family: var(--serif); font-size: clamp(1.28rem, 2vw, 1.8rem); font-weight: 400; line-height: 1.05; letter-spacing: -.025em; }
.responsibility-circle { position: absolute; z-index: 4; left: 50%; top: 50%; width: 56%; aspect-ratio: 1; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: clamp(32px, 4vw, 54px); border: 1px solid rgba(255, 255, 255, .22); border-radius: 50%; background: var(--green-deep); color: var(--white); text-align: center; box-shadow: 0 20px 54px rgba(0, 28, 21, .25); }
.responsibility-circle small { color: var(--mint); }
.responsibility-circle strong { display: block; max-width: 14ch; margin-top: 14px; font-family: var(--serif); font-size: clamp(1.65rem, 2.7vw, 2.25rem); font-weight: 400; line-height: 1.04; letter-spacing: -.035em; }
.responsibility-circle > span { display: block; margin-top: 18px; color: rgba(251, 250, 241, .56); font-size: 9px; font-weight: 700; line-height: 1.4; letter-spacing: .07em; text-transform: uppercase; }
.shared-context { position: absolute; z-index: 3; left: 50%; bottom: 7.4%; width: 72%; transform: translateX(-50%); color: rgba(0, 60, 45, .68); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-align: center; text-transform: uppercase; }
.circle-bridge { position: relative; z-index: 5; display: flex; align-items: center; gap: 13px; margin-top: -25px; padding: 12px 18px; border: 1px solid rgba(255, 255, 255, .2); border-radius: 999px; background: rgba(0, 45, 34, .92); box-shadow: 0 14px 36px rgba(0, 28, 21, .18); backdrop-filter: blur(10px); }
.circle-bridge > span { position: relative; width: 34px; height: 34px; flex: 0 0 auto; border: 1px solid var(--mint); border-radius: 50%; }
.circle-bridge > span::after { content: ""; position: absolute; inset: 8px; border-radius: 50%; background: var(--mint); }
.circle-bridge p { margin: 0; color: rgba(255, 255, 255, .78); font-size: 10px; line-height: 1.35; }
.core-definition { position: relative; z-index: 2; margin: 64px auto 0; text-align: center; }
.core-definition p { margin: 0; font-family: var(--serif); font-size: clamp(2rem, 3.9vw, 4.65rem); line-height: 1.05; letter-spacing: -.04em; }
.core-definition strong { color: var(--mint); font-weight: 400; }
.core-definition cite { display: block; margin-top: 26px; color: rgba(251, 250, 241, .54); font-family: var(--sans); font-size: 10px; font-style: normal; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }

.psychology { background: var(--cream); }
.psychology-grid { display: grid; grid-template-columns: minmax(0, .98fr) minmax(440px, 1.02fr); gap: clamp(60px, 8vw, 118px); align-items: center; }
.psychology h2 { max-width: 9.4ch; }
.psychology .lead { max-width: 40rem; margin: 30px 0 0; }
.value-quote { max-width: 35rem; margin: 38px 0 0; padding: 24px 0 0 24px; border-top: 1px solid var(--line); border-left: 2px solid var(--mint); color: var(--green); font-family: var(--serif); font-size: clamp(1.65rem, 2.55vw, 2.85rem); line-height: 1.1; letter-spacing: -.035em; }
.perception-flow { display: flex; flex-direction: column; align-items: stretch; }
.perception-flow article { display: grid; grid-template-columns: 58px 1fr; gap: 20px; align-items: start; padding: 27px 28px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255, 255, 255, .44); }
.perception-flow article.flow-result { border-color: transparent; background: var(--green); color: white; box-shadow: var(--shadow); }
.flow-number { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: var(--mint-soft); color: var(--green); font-size: 10px; font-weight: 800; }
.flow-result .flow-number { background: var(--mint); color: var(--green-night); }
.perception-flow small { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.flow-result small { color: var(--mint); }
.perception-flow h3 { margin: 7px 0 6px; color: var(--green); font-family: var(--serif); font-size: 1.75rem; font-weight: 400; line-height: 1.05; letter-spacing: -.03em; }
.flow-result h3 { color: white; }
.perception-flow p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.flow-result p { color: rgba(255, 255, 255, .68); }
.flow-arrow { align-self: center; width: 34px; height: 34px; display: grid; place-items: center; margin: 5px 0; border-radius: 50%; background: var(--mint); color: var(--green); font-size: 15px; font-weight: 800; }

.product { background: var(--green-night); color: var(--white); }
.product-heading { max-width: 860px; text-align: center; margin: 0 auto; }
.product-heading h2 { color: white; }
.product-heading > p:last-child { max-width: 46rem; margin: 28px auto 0; color: rgba(251, 250, 241, .7); font-size: clamp(1.05rem, 1.32vw, 1.38rem); }
.product-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 66px; }
.product-steps article { position: relative; min-height: 270px; padding: 27px 23px; border: 1px solid rgba(255, 255, 255, .17); border-radius: 22px; background: rgba(255, 255, 255, .06); }
.product-steps article::after { content: "→"; position: absolute; z-index: 2; right: -18px; top: 43px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--mint); color: var(--green-night); font-weight: 800; }
.product-steps article:last-child::after { display: none; }
.product-steps article > span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: rgba(140, 237, 184, .15); color: var(--mint); font-size: 11px; font-weight: 800; }
.product-steps h3 { margin: 52px 0 12px; color: white; font-family: var(--serif); font-size: clamp(1.5rem, 2vw, 2rem); font-weight: 400; line-height: 1.04; letter-spacing: -.035em; }
.product-steps p { margin: 0; color: rgba(251, 250, 241, .62); font-size: 13px; line-height: 1.55; }
.product-proof { display: grid; grid-template-columns: minmax(420px, .92fr) minmax(0, 1.08fr); gap: clamp(56px, 8vw, 112px); align-items: center; margin-top: 110px; }
.plaque-figure { position: relative; margin: 0; padding: 44px; }
.plaque-glow { position: absolute; inset: 8% 2%; border-radius: 50%; background: rgba(140, 237, 184, .19); filter: blur(35px); }
.plaque-figure img { position: relative; z-index: 2; width: 100%; border-radius: 20px; box-shadow: 0 30px 80px rgba(0, 17, 13, .38); transform: rotate(-1.2deg); }
.plaque-figure figcaption { position: relative; z-index: 2; margin-top: 22px; color: rgba(251, 250, 241, .52); font-size: 10px; letter-spacing: .12em; text-align: center; text-transform: uppercase; }
.product-proof-copy h3 { margin: 0; color: white; font-family: var(--serif); font-size: clamp(2.7rem, 4.6vw, 5.2rem); font-weight: 400; line-height: .99; letter-spacing: -.047em; }
.product-proof-copy h3 span { color: var(--mint); }
.product-proof-copy > p:not(.kicker) { max-width: 40rem; margin: 26px 0 0; color: rgba(251, 250, 241, .7); font-size: 1.05rem; line-height: 1.66; }
.deliverables { margin: 30px 0 0; padding: 0; list-style: none; }
.deliverables li { display: grid; grid-template-columns: 38px 1fr; gap: 14px; align-items: center; padding: 14px 0; border-top: 1px solid rgba(255, 255, 255, .13); color: rgba(251, 250, 241, .82); font-size: 13px; }
.deliverables span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: rgba(140, 237, 184, .13); color: var(--mint); font-size: 9px; font-weight: 800; }

.mangrove { background: var(--cream-soft); }
.mangrove-grid { display: grid; grid-template-columns: minmax(420px, .88fr) minmax(0, 1.12fr); gap: clamp(60px, 8vw, 118px); align-items: center; }
.mangrove-image { position: relative; min-height: 690px; margin: 0; overflow: hidden; border-radius: 30px; box-shadow: var(--shadow); }
.mangrove-image img { width: 100%; height: 100%; min-height: 690px; object-fit: cover; }
.mangrove-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0, 45, 34, .78)); }
.mangrove-image figcaption { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 22px; color: white; font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 2rem); line-height: 1.08; }
.mangrove h2 { max-width: 10ch; }
.mangrove .lead { max-width: 41rem; margin: 30px 0 20px; }
.mangrove-stat { display: flex; align-items: center; gap: 22px; margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--line); }
.mangrove-stat strong { color: var(--green); font-family: var(--serif); font-size: clamp(4rem, 6vw, 7rem); font-weight: 400; line-height: .75; letter-spacing: -.07em; }
.mangrove-stat strong span { color: var(--muted); font-size: .38em; letter-spacing: -.03em; }
.mangrove-stat p { max-width: 15rem; margin: 0; color: var(--muted); font-size: 11px; line-height: 1.45; }
.goals-block { margin-top: 92px; padding-top: 42px; border-top: 1px solid var(--line); }
.goals-heading { display: grid; grid-template-columns: .72fr 1.28fr; gap: 50px; align-items: start; }
.goals-heading > p:last-child { max-width: 44rem; margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.65; }
.goal-grid { display: grid; grid-template-columns: repeat(11, 1fr); gap: 9px; margin-top: 34px; }
.goal-grid img { width: 100%; aspect-ratio: 1; object-fit: contain; border-radius: 3px; box-shadow: 0 5px 14px rgba(0, 55, 40, .08); }

.cases { position: relative; overflow: hidden; background: var(--cream); }
.cases::after { content: ""; position: absolute; width: 440px; aspect-ratio: 1; left: -220px; top: 80px; border-radius: 50%; background: rgba(140, 237, 184, .14); }
.cases-heading { position: relative; z-index: 2; max-width: 900px; }
.cases-heading h2 span { color: var(--muted); }
.cases-heading > p:last-child { max-width: 46rem; margin: 28px 0 0; color: var(--muted); font-size: clamp(1.04rem, 1.3vw, 1.36rem); line-height: 1.65; }
.case-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 58px; }
.case-card { display: flex; flex-direction: column; min-height: 520px; padding: 29px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255, 255, 255, .52); box-shadow: 0 10px 34px rgba(0, 55, 40, .05); }
.case-logo { height: 70px; display: flex; align-items: center; margin-bottom: 28px; }
.case-logo img { max-width: 180px; max-height: 64px; width: auto; height: auto; object-fit: contain; object-position: left center; }
.case-logo-eldon img { width: 62px; }
.case-logo-burd img { max-width: 118px; }
.case-card > h3 { margin: 0 0 24px; color: var(--green); font-family: var(--serif); font-size: clamp(2rem, 2.7vw, 3rem); font-weight: 400; line-height: 1.02; letter-spacing: -.04em; }
.case-layer { padding: 18px 0; border-top: 1px solid var(--line); }
.case-layer small { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.case-layer p { margin: 9px 0 0; color: var(--muted); font-size: 13px; line-height: 1.58; }
.case-layer-shared { margin-top: auto; padding: 19px; border: 0; border-radius: 16px; background: var(--mint-soft); }
.case-layer-shared small { color: var(--green); }
.case-layer-shared p { color: var(--green); }

.closing { position: relative; overflow: hidden; background: var(--green-deep); color: white; }
.closing-ring { position: absolute; border: 1px solid rgba(140, 237, 184, .17); border-radius: 50%; }
.closing-ring-one { width: min(61vw, 790px); aspect-ratio: 1; right: -19%; bottom: -66%; }
.closing-ring-two { width: min(25vw, 310px); aspect-ratio: 1; right: 12%; bottom: -18%; background: rgba(140, 237, 184, .05); }
.closing-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(64px, 10vw, 140px); align-items: center; }
.closing h2 { color: white; font-size: clamp(3.9rem, 7.4vw, 8.6rem); }
.closing h2 span { color: var(--mint); }
.closing-copy > p:not(.kicker) { max-width: 46rem; margin: 30px 0 0; color: rgba(251, 250, 241, .7); font-size: clamp(1.06rem, 1.4vw, 1.48rem); line-height: 1.63; }
.closing-copy .button { margin-top: 36px; }
.contact-card { padding: 34px; border: 1px solid rgba(255, 255, 255, .2); border-radius: 26px; background: rgba(255, 255, 255, .07); backdrop-filter: blur(12px); box-shadow: 0 24px 60px rgba(0, 28, 21, .18); }
.contact-card > small { color: var(--mint); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.contact-card h3 { margin: 20px 0 5px; color: white; font-family: var(--serif); font-size: 2.65rem; font-weight: 400; line-height: 1; letter-spacing: -.04em; }
.contact-card > p { margin: 0 0 25px; color: rgba(255, 255, 255, .58); font-size: 12px; }
.contact-card > a { display: block; width: fit-content; margin-top: 8px; color: white; font-size: 14px; text-decoration-color: rgba(140, 237, 184, .4); text-underline-offset: 4px; }
.contact-card > a:hover { color: var(--mint); }
.contact-note { display: block; margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .14); color: rgba(255, 255, 255, .52); font-family: var(--serif); font-size: 1.22rem; line-height: 1.35; }

.footer { padding: 28px 0 34px; border-top: 1px solid rgba(255, 255, 255, .1); background: var(--green-deep); color: rgba(255, 255, 255, .52); }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: end; }
.footer .brand { justify-self: start; }
.footer .brand-name { color: white; font-size: 22px; }
.footer p { margin: 0; font-size: 10px; letter-spacing: .08em; }
.footer p:nth-of-type(2) { justify-self: end; }

.reveal { opacity: 1; transform: none; }
.reveal-ready .reveal { opacity: 0; transform: translateY(26px); transition: opacity .78s cubic-bezier(.2, .75, .2, 1), transform .78s cubic-bezier(.2, .75, .2, 1); }
.reveal-ready .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .dilemma-grid, .psychology-grid, .mangrove-grid, .product-proof { grid-template-columns: 1fr; }
  .dilemma .story-copy, .psychology .story-copy, .mangrove .story-copy { max-width: 760px; }
  .visibility-frame { min-height: 520px; }
  .psychology-grid { gap: 70px; }
  .perception-flow { max-width: 720px; }
  .product-steps { grid-template-columns: repeat(2, 1fr); }
  .product-steps article:nth-child(2)::after { display: none; }
  .product-proof { margin-top: 84px; }
  .plaque-figure { max-width: 680px; }
  .mangrove-image { max-width: 760px; min-height: 560px; }
  .mangrove-image img { min-height: 560px; }
  .goal-grid { grid-template-columns: repeat(6, 1fr); }
  .case-grid { grid-template-columns: 1fr; }
  .case-card { min-height: 0; }
  .case-layer-shared { margin-top: 12px; }
}

@media (max-width: 760px) {
  .wrap, .hero-inner { width: min(calc(100% - 36px), var(--max)); }
  .section-space { padding: 84px 0; }
  .site-header { height: 72px; grid-template-columns: 1fr auto; padding: 0 18px; }
  .site-header > .brand { justify-self: start; }
  .header-back { display: none; }
  .brand-name { font-size: 24px; }
  .header-cta { font-size: 11px; padding: 9px 13px; }
  .hero { min-height: 100svh; align-items: end; }
  .hero-image { object-position: 61% center; }
  .hero-veil { background: linear-gradient(90deg, rgba(0, 40, 30, .94) 0%, rgba(0, 45, 34, .69) 100%), linear-gradient(180deg, transparent 10%, rgba(0, 45, 34, .82) 100%); }
  .hero-inner { padding: 132px 0 62px; }
  .hero h1 { font-size: clamp(3.25rem, 15vw, 5.7rem); }
  .hero-lead { font-size: 1rem; line-height: 1.6; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-ribbon { grid-template-columns: 1fr; padding: 0 18px; }
  .hero-ribbon div, .hero-ribbon div + div { padding: 13px 0; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .13); }
  .hero-ribbon div:last-child { border-bottom: 0; }
  .hero-ribbon small { display: inline; margin-right: 8px; }
  .hero-ribbon strong { display: inline; font-size: 1rem; }
  h2 { font-size: clamp(2.85rem, 13vw, 5.1rem); }
  .dilemma-grid { gap: 52px; }
  .visibility-frame { min-height: 0; grid-template-columns: 1fr; padding: 26px 24px 92px; }
  .visibility-inside { width: min(100%, 300px); min-height: 0; padding: 30px; }
  .visibility-boundary { height: 48px; }
  .visibility-boundary span { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--beige) 18%, var(--beige) 82%, transparent); }
  .visibility-outside { padding: 0 12px 74px; }
  .visibility-note { left: 24px; right: 24px; }
  .difference h2 { font-size: clamp(3.15rem, 14vw, 6rem); }
  .circle-stage { margin-top: 58px; }
  .shared-circle { width: min(100%, 520px); }
  .shared-circle::before { inset: 12px; }
  .shared-label { top: 6%; width: 78%; }
  .shared-label small, .responsibility-circle small { font-size: 8px; }
  .shared-label strong { margin-top: 6px; font-size: clamp(.95rem, 4vw, 1.25rem); line-height: 1.04; }
  .responsibility-circle { width: 56%; padding: clamp(22px, 7vw, 36px); }
  .responsibility-circle strong { margin-top: 8px; font-size: clamp(1.2rem, 5.6vw, 1.75rem); }
  .responsibility-circle > span { margin-top: 10px; font-size: 7px; line-height: 1.3; }
  .shared-context { bottom: 7%; font-size: 7px; line-height: 1.35; }
  .circle-bridge { width: calc(100% - 18px); justify-content: center; margin-top: -18px; padding: 10px 14px; }
  .circle-bridge > span { width: 30px; height: 30px; }
  .circle-bridge p { font-size: 9px; }
  .core-definition { margin-top: 48px; }
  .psychology-grid { gap: 54px; }
  .value-quote { padding-left: 18px; }
  .perception-flow article { grid-template-columns: 48px 1fr; padding: 22px 20px; }
  .flow-number { width: 40px; height: 40px; }
  .product-steps { grid-template-columns: 1fr; }
  .product-steps article { min-height: 0; }
  .product-steps article::after { display: none; }
  .product-steps h3 { margin-top: 32px; }
  .product-proof { gap: 46px; }
  .plaque-figure { padding: 18px 5px; }
  .product-proof-copy h3 { font-size: clamp(2.7rem, 12vw, 4.2rem); }
  .mangrove-grid { gap: 52px; }
  .mangrove-image, .mangrove-image img { min-height: 460px; }
  .goals-block { margin-top: 70px; }
  .goals-heading { grid-template-columns: 1fr; gap: 4px; }
  .goal-grid { grid-template-columns: repeat(4, 1fr); gap: 7px; }
  .cases-heading h2 { font-size: clamp(2.85rem, 13vw, 5rem); }
  .case-card { padding: 23px; }
  .closing-grid { grid-template-columns: 1fr; gap: 56px; }
  .closing h2 { font-size: clamp(3.15rem, 14vw, 5.7rem); }
  .contact-card { padding: 27px; }
  .footer-inner { grid-template-columns: 1fr; align-items: start; }
  .footer p:nth-of-type(2) { justify-self: start; }
}

@media (max-width: 430px) {
  .header-cta { max-width: 108px; line-height: 1.05; text-align: center; }
  .hero h1 { font-size: 3.08rem; }
  .hero-inner { padding-top: 116px; }
  .goal-grid { grid-template-columns: repeat(3, 1fr); }
}

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