/* =========================================================
   GROW15 — modern apothecary forest.
   Deep pine + spring green + warm cream + cocoa.
   Restrained, premium, bright where it counts.
   ========================================================= */

:root {
  /* ink / structure */
  --ink:        #0F1F16;   /* near-black green for text */
  --ink-2:      #1C2F22;
  --pine:       #143A26;   /* deep forest */
  --forest:     #2D5F3F;   /* mid green primary */
  --moss:       #4F7B5B;   /* sage-leaf */
  --sage:       #88AC85;
  --leaf:       #5BAA5C;   /* vibrant spring green — accent pop */
  --leaf-bright:#7BC97A;
  --mint:       #C7E3CC;
  --mint-bg:    #E8F0E2;   /* pale tinted background */

  /* paper / cream */
  --cream:      #F5EEDD;   /* warm paper */
  --paper:      #FAF5E8;
  --oat:        #E9DDBE;   /* warm pale tan card */
  --oat-d:      #C8B58E;

  /* browns */
  --caramel:    #8E5A2E;
  --bark:       #5A3A1E;
  --cocoa:      #3B2418;

  /* font stacks */
  --display: "Caprasimo", "Times New Roman", serif;
  --italic:  "Instrument Serif", "Times New Roman", serif;
  --sans:    "Bricolage Grotesque", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --hand:    "Caveat", "Bradley Hand", cursive;
  --mono:    "JetBrains Mono", ui-monospace, Menlo, monospace;

  --maxw: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 17.5px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  background-image:
    radial-gradient(at 88% -5%,  rgba(91,170,92,0.20) 0, transparent 38%),
    radial-gradient(at 6% 18%,   rgba(199,227,204,0.40) 0, transparent 42%),
    radial-gradient(at 50% 100%, rgba(45,95,63,0.10)   0, transparent 55%),
    radial-gradient(at 96% 70%,  rgba(142,90,46,0.07)  0, transparent 45%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
::selection { background: var(--leaf); color: var(--cream); }

.mono   { font-family: var(--mono); font-feature-settings: "tnum" 1, "lnum" 1; letter-spacing: -0.01em; }
.kicker { font-family: var(--sans); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--moss); font-weight: 700; }
.up     { color: var(--forest); }
.dn     { color: var(--caramel); }

/* --- Grain overlay --------------------------------------- */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.28;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.35  0 0 0 0 0.25  0 0 0 0 0.15  0 0 0 0.16 0'/></filter><rect width='240' height='240' filter='url(%23n)'/></svg>");
}

/* --- Background atmospheric blobs ------------------------ */
.bg-blob {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(60px);
}
.bg-blob--1 {
  width: 520px; height: 520px;
  right: -200px; top: 60px;
  background: radial-gradient(circle, rgba(91,170,92,0.30), rgba(91,170,92,0.05) 60%, transparent 75%);
  animation: floatY 18s ease-in-out infinite;
}
.bg-blob--2 {
  width: 440px; height: 440px;
  left: -160px; top: 720px;
  background: radial-gradient(circle, rgba(199,227,204,0.55), rgba(199,227,204,0.10) 55%, transparent 70%);
  animation: floatY 24s ease-in-out infinite reverse;
}
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-22px); } }

/* --- Topbar ---------------------------------------------- */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,238,221,0.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1.5px solid rgba(20,58,38,0.10);
}
.topbar__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__leaf { width: 30px; height: 30px; display: inline-block; }
.brand__leaf svg { width: 100%; height: 100%; }
.brand__word {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.005em;
  color: var(--pine);
}
.brand__word i {
  color: var(--caramel);
  font-family: var(--italic);
  font-style: italic;
  font-size: 1.05em;
  margin-left: 2px;
}

.topnav {
  display: flex; justify-content: center; gap: 22px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
}
.topnav a {
  color: var(--ink-2);
  position: relative;
  padding: 4px 2px;
  transition: color 0.2s;
}
.topnav a:hover { color: var(--pine); }
.topnav a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  height: 6px; width: 100%;
  background: var(--leaf-bright);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  z-index: -1;
  opacity: 0.55;
}
.topnav a:hover::after { transform: scaleX(1); }
@media (max-width: 880px) { .topnav { display: none; } }

/* --- Buttons --------------------------------------------- */
.btn {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.005em;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn--solid {
  background: var(--pine);
  color: var(--cream);
  box-shadow: 0 4px 0 0 var(--ink);
}
.btn--solid:hover {
  background: var(--forest);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 0 var(--ink);
}
.btn--solid:active { transform: translateY(2px); box-shadow: 0 0 0 0 var(--ink); }
.btn--big { padding: 14px 26px; font-size: 16px; }
.btn--text { padding: 10px 6px; color: var(--pine); font-weight: 600; }
.btn--text:hover { color: var(--caramel); }

/* --- Ticker ---------------------------------------------- */
.ticker {
  border-top: 1.5px solid rgba(20,58,38,0.10);
  background: linear-gradient(180deg, rgba(91,170,92,0.10), rgba(91,170,92,0.0));
  overflow: hidden;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-2);
}
.ticker__rail {
  display: flex;
  gap: 40px;
  padding: 9px var(--gutter);
  white-space: nowrap;
  animation: tickerScroll 70s linear infinite;
  will-change: transform;
}
.ticker__item { display: inline-flex; align-items: center; gap: 8px; }
.ticker__item .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--forest);
  box-shadow: 0 0 0 0 rgba(45,95,63,0.7);
  animation: pulse 1.8s ease-out infinite;
}
.ticker__up { color: var(--forest); }
.ticker__dn { color: var(--caramel); }
.ticker__sep { opacity: 0.4; }
@keyframes tickerScroll { to { transform: translateX(-50%); } }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(45,95,63,0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(45,95,63,0); }
  100% { box-shadow: 0 0 0 0 rgba(45,95,63,0); }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(40px, 7vw, 100px) var(--gutter) clamp(60px, 9vw, 130px);
  z-index: 1;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--oat);
  color: var(--cocoa);
  border: 1.5px solid rgba(142,90,46,0.30);
}
.hero__eyeDot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--leaf);
  animation: pulse 1.8s ease-out infinite;
}

.hero__title {
  font-family: var(--display);
  font-size: clamp(56px, 11.5vw, 188px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin: 22px 0 0;
  color: var(--ink);
  position: relative;
}
.hero__line { display: block; }
.hero__line--1 {
  font-family: var(--italic);
  font-style: italic;
  color: var(--pine);
  font-weight: 400;
  font-size: 0.88em;
  letter-spacing: -0.015em;
}
.hero__line--2 { color: var(--ink); }

.hero__wordWrap { display: inline-block; position: relative; }
.hero__word {
  position: relative;
  background: linear-gradient(180deg, var(--leaf-bright) 0%, var(--pine) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-decoration: underline wavy var(--leaf);
  text-decoration-thickness: 6px;
  text-underline-offset: 8px;
  text-decoration-skip-ink: none;
}
.hero__dot {
  position: absolute;
  right: -0.18em;
  bottom: 0.02em;
  width: 0.32em;
  height: 0.32em;
  transform-origin: bottom center;
  animation: sway 4s ease-in-out infinite;
}
.hero__dot svg { width: 100%; height: 100%; }
@keyframes sway { 0%,100% { transform: rotate(-5deg); } 50% { transform: rotate(5deg); } }

.hero__handwritten {
  display: block;
  font-family: var(--hand);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 42px);
  color: var(--caramel);
  margin-top: 10px;
  transform: rotate(-1.5deg);
  letter-spacing: 0.01em;
}

.hero__deck {
  max-width: 680px;
  margin: 28px 0 0;
  font-family: var(--sans);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--ink-2);
  font-weight: 400;
}
.hero__deck em { font-style: italic; color: var(--pine); font-weight: 500; font-family: var(--italic); font-size: 1.1em; }
.hero__deck strong {
  font-weight: 700;
  color: var(--ink);
  background: linear-gradient(180deg, transparent 65%, var(--mint) 65%, var(--mint) 92%, transparent 92%);
  padding: 0 2px;
}

.hero__cta {
  display: flex; gap: 16px; align-items: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* =========================================================
   SECTION HEAD
   ========================================================= */
.section-head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(60px, 9vw, 110px) var(--gutter) clamp(24px, 4vw, 44px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
}
.section-head--center { text-align: center; justify-items: center; }
.section-label {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--caramel);
  font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
}
.section-label::before {
  content: "✦";
  color: var(--forest);
  font-size: 14px;
}
.section-label--light { color: var(--mint); }
.section-title {
  font-family: var(--display);
  font-size: clamp(40px, 6.5vw, 88px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin: 0;
  max-width: 16ch;
}
.section-title em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--caramel);
  font-weight: 400;
}
.section-title--light { color: var(--cream); }
.section-sub {
  font-family: var(--sans);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 60ch;
  margin: 6px 0 0;
}
.section-head--center .section-title { max-width: none; }

/* =========================================================
   FEELS
   ========================================================= */
.feels {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(50px, 7vw, 100px);
  position: relative;
  z-index: 1;
}
.feels__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 18px;
}
@media (max-width: 900px) { .feels__grid { grid-template-columns: 1fr; } }
.feel {
  position: relative;
  padding: 36px 30px 38px;
  border-radius: 28px;
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 0 var(--ink);
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
.feel::after {
  content: "";
  position: absolute;
  right: -80px; bottom: -80px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,170,92,0.16), transparent 60%);
  pointer-events: none;
}
.feel:hover { transform: translate(-2px, -2px); box-shadow: 10px 10px 0 0 var(--ink); }

.feel--money  { background: linear-gradient(160deg, var(--oat) 0%, var(--paper) 65%); }
.feel--planet { background: linear-gradient(160deg, var(--mint) 0%, var(--paper) 65%); }
.feel--grow   { background: linear-gradient(160deg, var(--mint-bg) 0%, var(--paper) 65%); }

.feel__badge {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--ink);
  font-size: 28px;
  margin-bottom: 18px;
  box-shadow: 3px 3px 0 0 var(--ink);
  transform: rotate(-4deg);
  position: relative;
  z-index: 1;
}
.feel--money  .feel__badge { background: var(--oat); }
.feel--planet .feel__badge { background: var(--mint); }
.feel--grow   .feel__badge { background: var(--mint-bg); }

.feel h3 {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin: 0 0 12px;
  color: var(--pine);
  position: relative; z-index: 1;
}
.feel--money h3 { color: var(--bark); }
.feel p {
  margin: 0 0 18px;
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--ink-2);
  position: relative; z-index: 1;
}
.feel p strong { color: var(--ink); font-weight: 700; }
.feel__hand {
  display: inline-block;
  font-family: var(--hand);
  font-weight: 600;
  font-size: 24px;
  color: var(--caramel);
  transform: rotate(-2deg);
  border-top: 1.5px dashed rgba(20,58,38,0.18);
  padding-top: 12px;
  width: 100%;
  position: relative; z-index: 1;
}
.feel__hand em { color: var(--forest); font-style: italic; }

/* =========================================================
   DASHBOARD MOCK (the little game)
   ========================================================= */
.dash {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(50px, 7vw, 100px);
  z-index: 1;
}

.dash__frame {
  margin-top: 18px;
  border-radius: 22px;
  border: 3px solid var(--ink);
  background: white;
  overflow: hidden;
  box-shadow: 12px 12px 0 0 var(--ink);
}

.dash__chrome {
  display: grid;
  grid-template-columns: 70px 1fr 140px;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: var(--oat);
  border-bottom: 3px solid var(--ink);
}
.dash__dots { display: flex; gap: 7px; }
.dash__dots span {
  width: 12px; height: 12px; border-radius: 50%;
  border: 1.5px solid var(--ink);
  background: var(--caramel);
}
.dash__dots span:nth-child(2) { background: var(--leaf); }
.dash__dots span:nth-child(3) { background: var(--forest); }
.dash__urlbar {
  text-align: center;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--cocoa);
  background: var(--cream);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1.5px solid rgba(20,58,38,0.20);
}
.dash__chromeRight {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  justify-self: end;
  color: var(--forest);
}
.dash__chromeRightDot { width: 8px; height: 8px; border-radius: 50%; background: var(--leaf); animation: pulse 1.8s ease-out infinite; }

.dash__layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 540px;
}
@media (max-width: 880px) { .dash__layout { grid-template-columns: 1fr; } }

/* left rail */
.dash__rail {
  padding: 22px 18px;
  background: var(--cream);
  border-right: 2px solid rgba(20,58,38,0.10);
  display: flex; flex-direction: column; gap: 22px;
}
@media (max-width: 880px) { .dash__rail { border-right: none; border-bottom: 2px solid rgba(20,58,38,0.10); } }
.dash__user { display: flex; align-items: center; gap: 12px; }
.dash__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  display: grid; place-items: center;
  font-family: var(--display);
  font-size: 20px;
  color: var(--ink);
}
.dash__userName { font-family: var(--sans); font-weight: 700; font-size: 15px; }
.dash__userSub  { font-family: var(--sans); font-size: 12px; color: var(--ink-2); opacity: 0.7; }
.dash__nav { display: flex; flex-direction: column; gap: 4px; }
.dash__navItem {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 14px;
  color: var(--ink-2);
  cursor: default;
}
.dash__navItem--active {
  background: var(--mint);
  color: var(--pine);
  font-weight: 600;
  border: 1.5px solid var(--forest);
}
.dash__stat {
  padding: 14px 12px;
  border-radius: 14px;
  background: white;
  border: 1.5px solid var(--ink);
  box-shadow: 3px 3px 0 0 var(--ink);
}
.dash__stat--co2 { background: var(--mint-bg); }
.dash__statLabel { font-family: var(--sans); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-2); opacity: 0.7; font-weight: 700; }
.dash__statVal {
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
  margin: 4px 0;
  color: var(--pine);
}
.dash__stat--co2 .dash__statVal { color: var(--forest); }
.dash__statVal small { font-size: 0.6em; color: var(--cocoa); }
.dash__statDelta { font-family: var(--sans); font-size: 12px; color: var(--ink-2); }

/* main */
.dash__main { padding: 22px clamp(16px, 2vw, 28px); }
.dash__greeting { display: flex; justify-content: space-between; align-items: end; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.dash__greeting h3 {
  font-family: var(--display);
  font-size: clamp(20px, 1.8vw, 26px);
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.dash__greeting h3 span { font-family: var(--sans); font-size: 0.7em; font-weight: 400; color: var(--ink-2); display: block; margin-top: 2px; }
.dash__greeting h3 em { color: var(--forest); font-style: normal; font-weight: 700; }
.dash__weather { display: flex; gap: 8px; flex-wrap: wrap; }
.dash__weatherChip {
  font-family: var(--sans); font-size: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--oat);
  border: 1.5px solid rgba(142,90,46,0.3);
  color: var(--cocoa);
}

.dash__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}
@media (max-width: 760px) { .dash__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .dash__grid { grid-template-columns: 1fr; } }

.tree-card {
  position: relative;
  padding: 14px;
  border-radius: 16px;
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 0 var(--ink);
  display: flex; flex-direction: column; gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
.tree-card:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 0 var(--ink); }
.tree-card--carbon  { background: linear-gradient(170deg, var(--mint-bg), var(--paper) 70%); }
.tree-card--harvest { background: linear-gradient(170deg, var(--oat), var(--paper) 70%); }
.tree-card__head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 6px;
}
.tree-card__name {
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.tree-card__sub {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  color: var(--ink-2);
  opacity: 0.75;
  margin-top: 2px;
}
.tree-card__tag {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  padding: 3px 7px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  background: var(--cream);
  white-space: nowrap;
}
.tree-card__tag--carbon  { background: var(--forest); color: var(--cream); border-color: var(--pine); }
.tree-card__tag--harvest { background: var(--caramel); color: var(--cream); border-color: var(--cocoa); }

.tree-card__art {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 12px;
  background:
    radial-gradient(at 50% 90%, var(--sage), transparent 55%),
    linear-gradient(180deg, var(--mint) 0%, var(--cream) 75%);
  border: 1.5px solid rgba(20,58,38,0.10);
  display: grid; place-items: center;
  overflow: hidden;
}
.tree-card__art img { width: 86%; height: 86%; object-fit: contain; filter: drop-shadow(2px 3px 0 rgba(20,58,38,0.18)); }
.tree-card__art svg { width: 70%; height: 70%; }
.tree-card__sparkles {
  position: absolute; inset: 0;
  pointer-events: none;
}
.tree-card__sparkles span {
  position: absolute;
  font-size: 12px;
  animation: sparkle 2.4s ease-in-out infinite;
  filter: drop-shadow(0 0 4px rgba(91,170,92,0.6));
  color: var(--forest);
}
.tree-card__sparkles span:nth-child(1) { top: 14%; left: 18%; animation-delay: 0s; }
.tree-card__sparkles span:nth-child(2) { top: 24%; right: 16%; animation-delay: 0.8s; }
.tree-card__sparkles span:nth-child(3) { top: 8%; right: 32%; animation-delay: 1.5s; }
@keyframes sparkle {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0.6); }
  50%      { opacity: 1; transform: translateY(-6px) scale(1); }
}
.tree-card__growth {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-2);
}
.tree-card__growthBar {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: rgba(20,58,38,0.08);
  overflow: hidden;
  position: relative;
}
.tree-card__growthFill {
  position: absolute; top: 0; left: 0; bottom: 0;
  background: linear-gradient(90deg, var(--leaf-bright), var(--forest));
  width: var(--g, 30%);
  border-radius: 999px;
  animation: fillIn 1.4s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes fillIn { from { width: 0; } to { width: var(--g); } }
.tree-card__foot {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--mono);
  font-size: 13px;
}
.tree-card__price { color: var(--pine); font-weight: 500; }
.tree-card__price small { font-size: 0.7em; opacity: 0.7; }
.tree-card__div {
  color: var(--forest);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
}
.tree-card__div--harvest { color: var(--caramel); }

.dash__feed {
  border-radius: 16px;
  background: var(--cream);
  border: 2px solid var(--ink);
  padding: 14px 16px;
  box-shadow: 4px 4px 0 0 var(--ink);
}
.dash__feedHead { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 8px; border-bottom: 1.5px dashed rgba(20,58,38,0.18); }
.dash__feedHead h4 {
  margin: 0;
  font-family: var(--display);
  font-size: 19px;
  color: var(--ink);
  font-weight: 400;
}
.dash__feedAll {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--caramel);
  font-weight: 600;
  cursor: pointer;
}
.dash__feedList { list-style: none; padding: 0; margin: 0; }
.dash__feedItem {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(20,58,38,0.12);
  align-items: center;
  font-size: 13.5px;
}
.dash__feedItem:last-child { border-bottom: none; }
.dash__feedDot { width: 10px; height: 10px; border-radius: 50%; margin-top: 4px; }
.dash__feedDot--green { background: var(--forest); }
.dash__feedDot--blue  { background: var(--moss); }
.dash__feedDot--gold  { background: var(--caramel); }
.dash__feedDot--peach { background: var(--bark); }
.dash__feedText { color: var(--ink-2); line-height: 1.4; }
.dash__feedText strong { color: var(--pine); font-weight: 700; }
.dash__feedAmt { font-size: 13px; font-weight: 600; }

.dash__caption {
  margin: 18px 0 0;
  text-align: center;
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--ink-2);
  opacity: 0.75;
}
.dash__caption em { color: var(--caramel); font-family: var(--italic); font-style: italic; font-size: 1.05em; }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.how {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(50px, 7vw, 100px);
  position: relative;
  z-index: 1;
}
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  padding: 30px 28px 32px;
  border-radius: 24px;
  border: 2.5px solid var(--ink);
  box-shadow: 6px 6px 0 0 var(--ink);
  display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
.step::before {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,170,92,0.18), transparent 70%);
  pointer-events: none;
}
.step:hover { transform: translate(-2px, -2px); box-shadow: 10px 10px 0 0 var(--ink); }
.step--plant { background: var(--mint-bg); }
.step--grow  { background: var(--mint); }
.step--reap  { background: var(--oat); }

.step__big { display: flex; align-items: center; gap: 14px; position: relative; z-index: 1; }
.step__num {
  width: 56px; height: 56px;
  background: var(--cream);
  border: 2.5px solid var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--display);
  font-size: 30px;
  line-height: 1;
  color: var(--pine);
  box-shadow: 3px 3px 0 0 var(--ink);
  transform: rotate(-4deg);
}
.step--grow .step__num { color: var(--forest); }
.step--reap .step__num { color: var(--caramel); }
.step__title {
  font-family: var(--display);
  font-size: clamp(32px, 3.6vw, 48px);
  letter-spacing: -0.022em;
  color: var(--ink);
  line-height: 0.95;
}
.step__copy {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  position: relative; z-index: 1;
}
.step__copy strong { color: var(--ink); font-weight: 700; }
.step__hand {
  font-family: var(--hand);
  font-weight: 600;
  font-size: 22px;
  color: var(--caramel);
  transform: rotate(-1deg);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1.5px dashed rgba(20,58,38,0.20);
  align-self: stretch;
  position: relative; z-index: 1;
}

/* =========================================================
   DIVIDENDS
   ========================================================= */
.dividends {
  position: relative;
  margin: clamp(40px, 5vw, 80px) 0 0;
  padding: clamp(60px, 9vw, 110px) 0;
  background:
    radial-gradient(at 80% 20%, rgba(123,201,122,0.25), transparent 50%),
    radial-gradient(at 10% 90%, rgba(91,170,92,0.20), transparent 50%),
    var(--pine);
  color: var(--cream);
  overflow: hidden;
}
.dividends::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0;
  height: 18px;
  background: repeating-linear-gradient(135deg, var(--leaf-bright) 0 10px, var(--pine) 10px 20px);
  border-bottom: 2px solid var(--ink);
  opacity: 0.8;
}
.dividends__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
@media (max-width: 900px) { .dividends__inner { grid-template-columns: 1fr; } }
.dividends__lede {
  margin: 18px 0 24px;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  color: rgba(245,238,221,0.92);
  max-width: 50ch;
}
.dividends__lede strong { color: var(--leaf-bright); }
.dividends__list { list-style: none; padding: 0; margin: 0; border-top: 1.5px dashed rgba(245,238,221,0.25); }
.dividends__list li {
  display: grid; grid-template-columns: 160px 1fr; gap: 16px;
  padding: 12px 0;
  border-bottom: 1.5px dashed rgba(245,238,221,0.25);
  font-family: var(--sans);
}
.dividends__k {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--leaf-bright);
  font-weight: 700;
}
.dividends__v { font-size: 16px; color: var(--cream); }
.dividends__close {
  margin: 22px 0 0;
  font-family: var(--italic);
  font-style: italic;
  font-size: 22px;
  color: var(--mint);
  max-width: 36ch;
}
.dividends__close em { color: var(--leaf-bright); }

.dividends__viz { display: grid; place-items: center; }
.leaf-drop {
  position: relative;
  width: 320px; height: 380px;
}
.leaf-drop__tree {
  width: 100%;
  display: grid; place-items: center;
}
.leaf-drop__tree svg { width: 220px; height: auto; filter: drop-shadow(4px 6px 0 rgba(0,0,0,0.18)); }
.leaf-drop__coins {
  position: absolute;
  left: 50%;
  top: 110px;
  transform: translateX(-50%);
  width: 220px; height: 200px;
  pointer-events: none;
}
.coin {
  position: absolute;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--leaf-bright);
  border: 2px solid var(--ink);
  color: var(--ink);
  display: grid; place-items: center;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 400;
  animation: drop 3s ease-in calc(var(--i) * 0.55s) infinite;
  opacity: 0;
}
.coin:nth-child(1) { left: 20%; }
.coin:nth-child(2) { left: 40%; background: var(--mint); }
.coin:nth-child(3) { left: 55%; }
.coin:nth-child(4) { left: 70%; background: var(--mint); }
.coin:nth-child(5) { left: 30%; }
@keyframes drop {
  0%   { transform: translateY(-20px) rotate(0); opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; transform: translateY(160px) rotate(380deg); }
  100% { transform: translateY(170px) rotate(390deg); opacity: 0; }
}
.leaf-drop__pile {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 14px 18px;
  background: var(--cream);
  color: var(--ink);
  border: 2.5px solid var(--ink);
  border-radius: 18px;
  box-shadow: 4px 4px 0 0 var(--ink);
  min-width: 220px;
  text-align: center;
}
.leaf-drop__pile .kicker { font-size: 10.5px; color: var(--caramel); }
.leaf-drop__pile strong {
  font-family: var(--display);
  font-size: 28px;
  color: var(--forest);
  font-weight: 400;
  line-height: 1;
}
.leaf-drop__pile span:last-child { font-family: var(--sans); font-size: 12.5px; color: var(--ink-2); }

/* =========================================================
   THE MATH
   ========================================================= */
.math {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(50px, 7vw, 100px);
  position: relative;
  z-index: 1;
}
.math__panel {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  padding: 36px;
  border-radius: 24px;
  background:
    radial-gradient(at top right, rgba(199,227,204,0.40), transparent 60%),
    var(--paper);
  border: 2.5px solid var(--ink);
  box-shadow: 8px 8px 0 0 var(--ink);
}
@media (max-width: 900px) { .math__panel { grid-template-columns: 1fr; padding: 24px; } }
.math__inputs { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
@media (max-width: 700px) { .math__inputs { grid-template-columns: 1fr; } }
.math__input label {
  display: block;
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--caramel);
  font-weight: 700;
  margin-bottom: 6px;
}
.math__big {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  color: var(--pine);
  letter-spacing: -0.02em;
  font-weight: 400;
}
.math__hint { margin-top: 6px; font-family: var(--sans); font-size: 12.5px; color: var(--ink-2); opacity: 0.75; }
.math__out {
  border-left: 2.5px dashed rgba(20,58,38,0.2);
  padding-left: 28px;
  display: flex; flex-direction: column; justify-content: center;
}
@media (max-width: 900px) { .math__out { border-left: none; border-top: 2.5px dashed rgba(20,58,38,0.2); padding: 22px 0 0; } }
.math__outLabel {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--caramel);
  font-weight: 700;
}
.math__outNum {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 84px);
  line-height: 1;
  color: var(--forest);
  letter-spacing: -0.025em;
  font-weight: 400;
  margin-top: 2px;
}
.math__outDelta { font-size: 16px; color: var(--forest); margin-top: 6px; font-weight: 600; }
.math__disclaimer { margin-top: 12px; font-family: var(--italic); font-style: italic; font-size: 13.5px; color: var(--ink-2); opacity: 0.75; max-width: 34ch; }

.math__compare { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.math__bar {
  display: grid;
  grid-template-columns: 280px 1fr 150px;
  align-items: center;
  gap: 18px;
}
@media (max-width: 720px) { .math__bar { grid-template-columns: 1fr; gap: 4px; } }
.math__barLabel { font-family: var(--sans); font-size: 14px; color: var(--ink-2); }
.math__barLabel strong { color: var(--pine); }
.math__barFill {
  height: 18px;
  border-radius: 999px;
  width: var(--w, 0);
  border: 2px solid var(--ink);
  transition: width 1.4s cubic-bezier(0.16,1,0.3,1);
}
.math__barFill--cash  { background: repeating-linear-gradient(135deg, #E4DFCB 0 8px, #D4CCAE 8px 16px); }
.math__barFill--bonds { background: repeating-linear-gradient(135deg, var(--oat) 0 8px, var(--oat-d) 8px 16px); }
.math__barFill--spx   { background: repeating-linear-gradient(135deg, var(--caramel) 0 8px, var(--bark) 8px 16px); }
.math__barFill--brand {
  background:
    repeating-linear-gradient(135deg, transparent 0 10px, rgba(20,58,38,0.10) 10px 20px),
    linear-gradient(90deg, var(--leaf-bright), var(--pine));
}
.math__bar--us .math__barLabel { color: var(--pine); font-weight: 700; }
.math__barVal { font-size: 15px; color: var(--ink); text-align: right; }

/* =========================================================
   STORY
   ========================================================= */
.story {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(50px, 7vw, 90px);
  position: relative;
  z-index: 1;
}
.story__cols {
  margin-top: 22px;
  column-count: 2;
  column-gap: 44px;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
}
@media (max-width: 720px) { .story__cols { column-count: 1; } }
.story__p { margin: 0 0 16px; break-inside: avoid; }
.story__p em { color: var(--pine); font-style: italic; font-family: var(--italic); font-size: 1.06em; }
.dropcap {
  float: left;
  font-family: var(--display);
  font-size: 82px;
  line-height: 0.85;
  padding: 4px 8px 0 0;
  color: var(--forest);
}

.signatures {
  margin-top: 30px;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 22px;
  border-top: 1.5px dashed rgba(20,58,38,0.20);
}
.sig { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.sig__hand {
  font-family: var(--hand);
  font-weight: 700;
  font-size: 36px;
  color: var(--pine);
  transform: rotate(-2deg);
}
.sig__role {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--caramel);
  font-weight: 700;
}

/* =========================================================
   WAITLIST
   ========================================================= */
.waitlist {
  position: relative;
  margin-top: clamp(30px, 5vw, 70px);
  padding: clamp(60px, 9vw, 120px) var(--gutter);
  background:
    radial-gradient(at 88% 22%, rgba(91,170,92,0.30), transparent 50%),
    radial-gradient(at 12% 78%, rgba(20,58,38,0.30),  transparent 55%),
    var(--forest);
  border-top: 2.5px solid var(--ink);
  border-bottom: 2.5px solid var(--ink);
  color: var(--cream);
  overflow: hidden;
}
.waitlist__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
@media (max-width: 900px) { .waitlist__inner { grid-template-columns: 1fr; } }
.waitlist__copy .kicker { color: var(--leaf-bright); }
.waitlist__h {
  margin: 12px 0 14px;
  font-family: var(--display);
  font-size: clamp(46px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.028em;
  color: var(--cream);
}
.waitlist__copy p {
  font-family: var(--sans);
  font-size: 17px;
  color: var(--mint);
  margin: 0;
  max-width: 44ch;
}

.waitlist__form { font-family: var(--sans); }
.waitlist__label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--leaf-bright);
  margin-bottom: 10px;
  font-weight: 700;
}
.waitlist__row {
  display: flex; gap: 8px;
  background: var(--cream);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  padding: 6px;
  box-shadow: 5px 5px 0 0 var(--ink);
}
.waitlist__row:focus-within { box-shadow: 7px 7px 0 0 var(--ink); }
.waitlist__row input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--ink);
  font-size: 16px;
  padding: 12px 18px;
}
.waitlist__row input::placeholder { color: rgba(20,58,38,0.4); }
.waitlist__row .btn--solid {
  background: var(--leaf-bright);
  color: var(--ink);
}
.waitlist__row .btn--solid:hover { background: var(--leaf); }
.waitlist__hint {
  margin-top: 12px;
  font-size: 13px;
  color: var(--mint);
  font-family: var(--italic);
  font-style: italic;
}
.waitlist__hint--ok { color: var(--leaf-bright); font-weight: 600; font-style: normal; font-family: var(--sans); }
.waitlist__hint--err { color: #F2D7B5; font-weight: 600; font-style: normal; font-family: var(--sans); }

/* =========================================================
   FOOTER
   ========================================================= */
.foot {
  background: var(--ink);
  color: var(--mint);
  padding: clamp(50px, 7vw, 90px) var(--gutter) 32px;
}
.foot__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 760px) { .foot__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .foot__inner { grid-template-columns: 1fr; } }
.foot__brand { color: var(--cream); }
.foot__brand .brand__leaf { width: 36px; height: 36px; }
.foot__word { display: block; margin-top: 8px; font-family: var(--display); font-size: 28px; color: var(--cream); }
.foot__word i { color: var(--leaf-bright); font-family: var(--italic); font-style: italic; }
.foot__tag {
  margin-top: 8px;
  font-family: var(--italic);
  font-style: italic;
  font-size: 16px;
  color: var(--mint);
  max-width: 32ch;
}
.foot__nav h4 {
  margin: 0 0 14px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--leaf-bright);
  font-weight: 700;
}
.foot__nav a {
  display: block;
  font-family: var(--sans);
  font-size: 14.5px;
  padding: 4px 0;
  color: rgba(199,227,204,0.75);
  transition: color 0.2s;
}
.foot__nav a:hover { color: var(--leaf-bright); }
.foot__legal {
  max-width: var(--maxw);
  margin: 50px auto 0;
  padding-top: 22px;
  border-top: 1.5px dashed rgba(199,227,204,0.18);
  display: flex; justify-content: space-between; gap: 20px;
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(199,227,204,0.5);
  flex-wrap: wrap;
}
.foot__disclaim { font-style: italic; font-family: var(--italic); max-width: 50ch; font-size: 13px; }

/* =========================================================
   REVEAL
   ========================================================= */
.reveal { transform: translateY(14px); transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.in { transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { transform: none; }
}
