/* =========================================================
   WHOLESOME — styles
   Warm, white, friendly. Rounded, soft shadows, heart-pink + coral.
   ========================================================= */

:root {
  /* palette — pulled from the Wholesome heart logo: pink, coral-red, navy ink */
  --cream:      #fffaf7;
  --cream-2:    #fff1f3;
  --paper:      #ffffff;
  --ink:        #1d2440;   /* navy from the logo outline */
  --ink-soft:   #54597a;
  --muted:      #8b8fa8;
  --line:       #f0e6ea;

  --red:        #e35b54;   /* heart red — primary CTA */
  --red-2:      #cf463f;
  --red-ink:    #b23c36;
  --pink:       #ef8fb1;   /* logo circle */
  --pink-2:     #f7a9c4;
  --pink-soft:  #ffe1ec;
  --peach:      #ffd9c0;
  --coral:      #ff7a59;
  --lilac:      #e9e2ff;
  --sky:        #d4eeff;

  --shadow-sm:  0 2px 10px rgba(29,36,64,.06);
  --shadow:     0 14px 40px rgba(29,36,64,.10);
  --shadow-lg:  0 30px 70px rgba(29,36,64,.16);

  --r-sm: 12px;
  --r:    18px;
  --r-lg: 26px;
  --r-xl: 34px;

  --container: 1140px;
  --ease: cubic-bezier(.22,.61,.36,1);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

/* ---------- base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3, .brand__name { font-family: var(--font-display); line-height: 1.08; margin: 0; letter-spacing: -.01em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.muted { color: var(--muted); }
.small { font-size: .85rem; }

/* ---------- line icons ---------- */
.ico {
  width: 1.15em; height: 1.15em; flex: none;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  vertical-align: -.18em;
}
.btn .ico { width: 1.05em; height: 1.05em; vertical-align: -.12em; }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--red); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-body);
  font-weight: 700; font-size: .98rem;
  padding: .72em 1.3em; border-radius: 999px;
  background: var(--bg); color: var(--fg);
  border: none; cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
  white-space: nowrap;
}
.btn--lg { font-size: 1.06rem; padding: .85em 1.6em; }
.btn--primary { box-shadow: 0 10px 24px rgba(227,91,84,.30); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(227,91,84,.40); background: var(--red-2); }
.btn--primary:disabled { background: var(--line); color: var(--muted); box-shadow: none; cursor: default; transform: none; }
.btn--soft  { background: var(--paper); color: var(--ink); box-shadow: var(--shadow-sm); border: 1.5px solid var(--line); }
.btn--soft:hover  { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--soft:disabled { color: var(--muted); transform: none; box-shadow: var(--shadow-sm); cursor: default; }
.btn--white { background: #fff; color: var(--red-ink); box-shadow: var(--shadow); }
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--pink { background: #e85d9b; color: #fff; box-shadow: 0 10px 24px rgba(232,93,155,.32); }
.btn--pink:hover { transform: translateY(-2px); background: #d84d8b; box-shadow: 0 16px 30px rgba(232,93,155,.42); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--ghost:hover { background: var(--paper); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,252,246,.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  transition: box-shadow .25s var(--ease), background .25s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--line); }
.nav__inner { display: flex; align-items: center; gap: 18px; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: .55em; font-weight: 700; }
.brand__logo { width: 40px; height: 40px; border-radius: 50%; }
.brand__name { font-size: 1.4rem; font-weight: 700; letter-spacing: -.02em; }
.nav__links { display: flex; gap: 26px; margin-inline: auto; flex-wrap: nowrap; white-space: nowrap; }
.nav__links a { font-weight: 600; color: var(--ink-soft); font-size: .96rem; position: relative; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--red); border-radius: 2px; transition: width .2s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }

.nav__x { display: inline-grid; place-items: center; width: 40px; height: 40px; flex: none; border-radius: 50%; border: 1.5px solid var(--line); background: var(--paper); color: var(--ink); transition: transform .18s var(--ease), background .18s var(--ease), color .18s var(--ease), box-shadow .18s var(--ease); }
.nav__x:hover { background: var(--ink); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.nav__x .ico { width: 16px; height: 16px; fill: currentColor; stroke: none; }
.ca-pill { font-size: .82rem; padding: .5em .85em; gap: .45em; font-family: var(--font-body); font-weight: 600; }
.ca-pill__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(227,91,84,.16); }
.ca-pill__text { font-variant-numeric: tabular-nums; }

.nav__burger { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px;
  border: 1.5px solid var(--line); border-radius: 12px; background: var(--paper); cursor: pointer; align-items: center; justify-content: center; }
.nav__burger span { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s var(--ease); }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { position: relative; padding: 78px 0 56px; overflow: hidden; }
.hero__inner { position: relative; text-align: center; max-width: 820px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5em; font-weight: 600; font-size: .9rem; color: var(--red-ink);
  background: var(--pink-soft); padding: .4em 1em .4em .5em; border-radius: 999px; margin-bottom: 22px;
}
.eyebrow img { border-radius: 50%; }
.hero__title { font-size: clamp(2.7rem, 7vw, 5.1rem); font-weight: 600; letter-spacing: -.02em; }
.grad { background: linear-gradient(100deg, var(--red) 0%, #f0728a 50%, var(--pink) 110%); -webkit-background-clip: text; background-clip: text; color: transparent; font-style: italic; }
.hero__sub { font-size: clamp(1.05rem, 2.2vw, 1.28rem); color: var(--ink-soft); max-width: 640px; margin: 22px auto 0; }
.hero__sub strong { color: var(--red-ink); }
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.hero__trust { list-style: none; display: flex; gap: 14px; align-items: center; justify-content: center; flex-wrap: wrap;
  margin: 34px 0 0; padding: 0; color: var(--ink-soft); font-size: .95rem; }
.hero__trust strong { color: var(--ink); }
.hero__trust .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--line); display: inline-block; }

/* floating blobs */
.hero__blobs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(38px); opacity: .5; animation: float 9s ease-in-out infinite; }
.blob--pink  { width: 360px; height: 360px; background: var(--pink-soft); top: -80px; left: -90px; }
.blob--peach { width: 300px; height: 300px; background: var(--peach); top: 40px; right: -80px; animation-delay: -3s; }
.blob--lilac { width: 240px; height: 240px; background: var(--lilac); bottom: -120px; left: 40%; animation-delay: -6s; }
@keyframes float { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-26px) scale(1.06); } }

/* hero photo gallery — real acts of kindness, scroll/swipe left & right */
.hero__gallery { position: relative; width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); margin-top: 56px; z-index: 1; }
.hero__photos {
  display: flex; gap: 22px; flex-wrap: nowrap; align-items: center;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: none; -webkit-overflow-scrolling: touch;
  padding: 34px max(24px, calc((100vw - 1180px) / 2)) 50px;
  scrollbar-width: none;
  cursor: grab;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.hero__photos::-webkit-scrollbar { display: none; }
.hero__photos.dragging { cursor: grabbing; scroll-snap-type: none; }
.hero__photos.dragging img { pointer-events: none; }
.kphoto {
  position: relative; flex: 0 0 auto; width: 256px; margin: 0; scroll-snap-align: center;
  background: #fff; padding: 9px; border-radius: 24px; box-shadow: var(--shadow);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.kphoto img { width: 100%; height: 312px; object-fit: cover; border-radius: 16px; display: block; user-select: none; -webkit-user-drag: none; }
.kphoto figcaption {
  position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%);
  background: rgba(255,255,255,.96); color: var(--red-ink); font-weight: 700; font-size: .82rem;
  padding: .38em .95em; border-radius: 999px; box-shadow: var(--shadow-sm); white-space: nowrap;
}
/* staggered polaroid angles */
.kphoto:nth-child(6n+1) { transform: rotate(-5deg) translateY(-14px); }
.kphoto:nth-child(6n+2) { transform: rotate(3deg)  translateY(18px); }
.kphoto:nth-child(6n+3) { transform: rotate(-3deg) translateY(-8px); }
.kphoto:nth-child(6n+4) { transform: rotate(4deg)  translateY(16px); }
.kphoto:nth-child(6n+5) { transform: rotate(-2deg) translateY(-16px); }
.kphoto:nth-child(6n)   { transform: rotate(3deg)  translateY(12px); }
.kphoto:hover { transform: rotate(0) translateY(-10px) scale(1.05); box-shadow: var(--shadow-lg); z-index: 3; }

.gal-arrow {
  position: absolute; top: calc(50% - 11px); z-index: 4;
  width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--line);
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px); color: var(--ink);
  display: grid; place-items: center; cursor: pointer; box-shadow: var(--shadow);
  transition: transform .18s var(--ease), background .18s var(--ease), color .18s var(--ease);
}
.gal-arrow:hover { background: var(--red); color: #fff; border-color: var(--red); transform: scale(1.08); }
.gal-arrow .ico { width: 24px; height: 24px; }
.gal-arrow--prev { left: max(14px, calc((100vw - 1180px) / 2 - 8px)); }
.gal-arrow--next { right: max(14px, calc((100vw - 1180px) / 2 - 8px)); }
.gal-arrow[disabled] { opacity: .28; pointer-events: none; }

/* ---------- marquee ---------- */
.marquee { background: var(--ink); color: var(--cream); overflow: hidden; padding: 15px 0; }
.marquee__track { display: flex; align-items: center; gap: 20px; white-space: nowrap; width: max-content; animation: scroll 28s linear infinite; font-family: var(--font-display); font-weight: 600; }
.m-item { display: inline-flex; align-items: center; gap: .5em; font-size: 1.02rem; opacity: .96; }
.m-item .ico { width: 18px; height: 18px; color: var(--pink-2); }
.m-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.35); flex: none; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- generic section ---------- */
.section { padding: 88px 0; }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.kicker { display: inline-block; text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 700; color: var(--red); margin-bottom: 14px; font-family: var(--font-body); }
.section__title { font-size: clamp(1.9rem, 4.2vw, 2.9rem); font-weight: 600; letter-spacing: -.02em; }
.section__lead { color: var(--ink-soft); font-size: 1.1rem; margin-top: 16px; }

/* ---------- how it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 38px 28px 30px; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step__num { position: absolute; top: -16px; left: 28px; width: 36px; height: 36px; border-radius: 50%; background: var(--ink); color: var(--cream); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; }
.step__icon { width: 60px; height: 60px; border-radius: 18px; background: var(--pink-soft); color: var(--red); display: grid; place-items: center; margin-bottom: 16px; }
.step__icon .ico { width: 30px; height: 30px; }
.step h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--ink-soft); }

/* ---------- proof wall ---------- */
.proof { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.proof__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.vcard {
  position: relative; aspect-ratio: 9 / 16; border: none; cursor: pointer; padding: 0;
  border-radius: var(--r-lg); overflow: hidden; text-align: left;
  background: linear-gradient(150deg, var(--c1, #9be7c4), var(--c2, #3ecf8e));
  box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  color: #fff; font-family: inherit;
}
.vcard__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.vcard__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 5; background: #000; cursor: default; }
.vcard.is-playing::after, .vcard.is-playing .vcard__play, .vcard.is-playing .vcard__badge, .vcard.is-playing .vcard__meta { opacity: 0; pointer-events: none; }
.vcard::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.55) 100%); }
.vcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.vcard__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 2;
  width: 66px; height: 66px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--red-2);
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.25); transition: transform .25s var(--ease); }
.vcard__play .ico { width: 24px; height: 24px; fill: currentColor; stroke: none; margin-left: 2px; }
.vcard:hover .vcard__play { transform: translate(-50%,-50%) scale(1.1); }
.vcard__badge { position: absolute; top: 14px; left: 14px; z-index: 2; background: rgba(255,255,255,.95); color: var(--red-ink);
  font-family: var(--font-display); font-weight: 700; font-size: .82rem; padding: .35em .8em; border-radius: 999px; }
.vcard__meta { position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 2; display: flex; flex-direction: column; gap: 2px; }
.vcard__meta strong { font-family: var(--font-display); font-weight: 700; font-size: 1.04rem; line-height: 1.2; }
.vcard__meta em { font-style: normal; opacity: .9; font-size: .9rem; }
.vcard__soon { position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); z-index: 2;
  background: rgba(255,255,255,.96); color: var(--red-ink); font-family: var(--font-display); font-weight: 700;
  font-size: .85rem; padding: .42em 1em; border-radius: 999px; box-shadow: var(--shadow-sm); letter-spacing: .01em; white-space: nowrap; }
.vcard--soon::before { content: ""; position: absolute; inset: 0; z-index: 1; background: rgba(29,36,64,.14); }
.proof__note { text-align: center; margin-top: 36px; color: var(--ink-soft); font-size: 1.05rem; }
.proof__note a { color: var(--red-ink); font-weight: 700; }

/* ---------- stats ---------- */
.stats { background: var(--ink); color: var(--cream); padding: 56px 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat__num { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); color: #fff; font-variant-numeric: tabular-nums; }
.stat__label { color: #b9c8c0; font-size: .98rem; }

/* ---------- bounties (pump.fun-style cards) ---------- */
.bounties { background: linear-gradient(180deg, var(--paper) 0%, var(--cream-2) 100%); }

/* treasury progress — GoFundMe vibe */
.treasury { max-width: 760px; margin: 0 auto 44px; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 22px 26px; box-shadow: var(--shadow-sm); }
.treasury__row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.treasury__label { display: inline-flex; align-items: center; gap: .5em; font-weight: 700; }
.treasury__label .ico { color: var(--red); width: 20px; height: 20px; }
.treasury__amt { color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.treasury__amt strong { color: var(--red-ink); font-family: var(--font-display); font-size: 1.15rem; }
.treasury__bar { height: 12px; border-radius: 999px; background: var(--pink-soft); margin: 14px 0 10px; overflow: hidden; }
.treasury__bar span { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--red), var(--pink)); }
.treasury__note { color: var(--muted); font-size: .9rem; }

.bgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bcard { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease); }
.bcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--pink-2); }
.bcard__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.bcard__emoji { width: 54px; height: 54px; display: grid; place-items: center; background: var(--cream-2); border-radius: var(--r); color: var(--red); }
.bcard__emoji .ico { width: 26px; height: 26px; }
.bcard__status { display: inline-flex; align-items: center; gap: .45em; font-size: .76rem; font-weight: 700; padding: .35em .8em; border-radius: 999px; white-space: nowrap; letter-spacing: .01em; }
.sdot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.is-open    { background: var(--pink-soft); color: var(--red-ink); }
.is-claimed { background: var(--peach); color: #a4522a; }
.is-done    { background: #eaf3ee; color: #3c8a5f; }
.bcard__title { font-size: 1.28rem; font-weight: 600; line-height: 1.2; margin-bottom: 8px; }
.bcard__desc { color: var(--ink-soft); font-size: .95rem; margin-bottom: 16px; }
.bcard__deliverables { margin-bottom: 18px; }
.bcard__dlabel { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; color: var(--muted); margin-bottom: 8px; }
.bcard__deliverables ul { list-style: none; margin: 12px 0 0; padding: 14px 16px; display: flex; flex-direction: column; gap: 8px;
  background: var(--cream); border: 1px dashed var(--line); border-radius: var(--r); }
.bcard__deliverables li { position: relative; padding-left: 26px; font-size: .92rem; color: var(--ink); }
.bcard__deliverables li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--pink-soft); color: var(--red-ink); font-size: .72rem; font-weight: 800; display: grid; place-items: center; }
.bcard__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; }
.bcard__reward { display: flex; flex-direction: column; line-height: 1.1; }
.bcard__reward span { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 700; }
.bcard__reward strong { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--red-ink); }
.bcard__claim { padding: .62em 1.15em; font-size: .92rem; }
.bounties__cta { text-align: center; margin-top: 44px; display: flex; flex-direction: column; align-items: center; gap: 12px; }

/* featured bounties */
.bounty-solo { max-width: 600px; margin-inline: auto; }
.bounty-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 940px; margin-inline: auto; }
.bounty-feature { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px; box-shadow: var(--shadow); }
.bounty-feature__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.bounty-feature__head .bcard__emoji { width: 60px; height: 60px; }
.bounty-feature__head .bcard__emoji .ico { width: 28px; height: 28px; }
.bounty-feature__title { font-size: clamp(1.6rem, 3.5vw, 2.1rem); font-weight: 600; line-height: 1.15; margin-bottom: 10px; }
.bounty-feature__desc { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 22px;
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.7em; }
.bounty-feature__deliv { margin-bottom: 24px; }
.bounty-feature__deliv ul { gap: 10px; }
.bounty-feature__deliv li { font-size: 1rem; }
.bounty-feature__btn { width: 100%; margin-top: auto; }
.bounty-solo__note { text-align: center; margin-top: 30px; font-size: .95rem; }
.bounty-solo__note a { color: var(--red-ink); font-weight: 700; }

/* bounties as a horizontal carousel (smaller cards) */
.bounty-carousel { position: relative; max-width: 1180px; margin: 0 auto; padding: 0 64px; }
.bounty-carousel .gal-arrow { top: calc(50% - 26px); }
.bounty-carousel .gal-arrow--prev { left: 4px; right: auto; }
.bounty-carousel .gal-arrow--next { right: 4px; left: auto; }
.bounty-track {
  display: flex; gap: 22px; flex-wrap: nowrap; align-items: stretch;
  justify-content: safe center;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
  padding: 8px 12px 20px;
  scrollbar-width: none; cursor: grab;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.bounty-track::-webkit-scrollbar { display: none; }
.bounty-track.dragging { cursor: grabbing; scroll-snap-type: none; }
.bounty-track .bounty-feature { flex: 0 0 min(330px, 82vw); scroll-snap-align: center; padding: 26px; }
.bounty-track .bounty-feature__title { font-size: 1.42rem; }
.bounty-track .bounty-feature__desc { font-size: .97rem; margin-bottom: 18px; }
.bounty-track .bounty-feature__deliv { margin-bottom: 20px; }
.bounty-track .bounty-feature__deliv li { font-size: .92rem; }

/* collapsible deliverables — clear dropdown button */
summary.bcard__dlabel { cursor: pointer; list-style: none; display: inline-flex; align-items: center; gap: 7px; width: fit-content;
  background: var(--pink-soft); color: var(--red-ink); font-family: var(--font-body); font-weight: 700;
  font-size: .8rem; letter-spacing: .01em; text-transform: none; padding: .5em 1em; border-radius: 999px;
  margin-bottom: 0; user-select: none; transition: background .15s var(--ease), color .15s var(--ease); }
summary.bcard__dlabel:hover { background: var(--pink-2); color: #fff; }
summary.bcard__dlabel::-webkit-details-marker { display: none; }
summary.bcard__dlabel::after { content: "▾"; font-size: .8rem; transition: transform .2s var(--ease); }
.bcard__deliverables[open] summary.bcard__dlabel::after { transform: rotate(180deg); }

/* ---------- kindness map / globe (live MapLibre, rounded container) ---------- */
.map-sec { background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%); overflow: hidden; }
.globe-stage { position: relative; width: 100%; max-width: 1040px; margin: 0 auto; aspect-ratio: 16 / 10;
  border-radius: var(--r-lg); overflow: hidden; background: #1b0b22; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
#bountyGlobe { position: absolute; inset: 0; width: 100%; height: 100%; }
.globe-loading { position: absolute; inset: 0; z-index: 1; display: grid; place-items: center;
  color: #ffd0e6; font-weight: 600; font-size: .92rem; pointer-events: none; }
.globe-note { text-align: center; margin-top: 22px; font-size: .92rem; }

/* glossy red/white teardrop pins */
.mpin { display: flex; flex-direction: column; align-items: center; cursor: pointer; }
.mpin__label { margin-bottom: 7px; white-space: nowrap; background: rgba(22,9,18,.85); color: #fff;
  border-radius: 999px; padding: .3em .75em; font-family: var(--font-body); font-size: .72rem; font-weight: 600;
  line-height: 1.25; box-shadow: var(--shadow); opacity: 0; transform: translateY(4px);
  transition: opacity .15s var(--ease), transform .15s var(--ease); }
.mpin__label strong { display: block; color: #ffc6dd; font-family: var(--font-display); font-size: .82rem; }
.mpin.is-on .mpin__label { opacity: 1; transform: none; }
.mpin__drop { position: relative; width: 26px; height: 26px; transition: transform .15s var(--ease); }
.mpin.is-on .mpin__drop { transform: scale(1.14); }
.mpin__drop::before { content: ""; position: absolute; inset: 0; border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg); border: 2px solid #fff;
  background: radial-gradient(circle at 62% 30%, #ff8a8a 0%, #ec2b3b 46%, #9c1024 100%);
  box-shadow: inset -2px -2px 5px #9c1024, 0 4px 7px rgba(0,0,0,.45); }
.mpin__dot { position: absolute; inset: 0; margin: auto; width: 10px; height: 10px; z-index: 1;
  background: #fff; border-radius: 50%; box-shadow: inset 0 1px 2px rgba(0,0,0,.35); }
.mpin__shadow { width: 18px; height: 6px; margin-top: 2px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(0,0,0,.5), transparent); }

/* maplibre chrome tweaks */
.globe-stage .maplibregl-ctrl-bottom-right,
.globe-stage .maplibregl-ctrl-bottom-left { opacity: .85; }

/* pin click → proof card (maplibre popup) */
.globe-popup .maplibregl-popup-content { padding: 0; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); background: #fff; }
.globe-popup .maplibregl-popup-close-button { font-size: 20px; line-height: 1; color: #fff; right: 6px; top: 4px; z-index: 3; text-shadow: 0 1px 4px rgba(0,0,0,.6); background: none; }
.globe-popup .maplibregl-popup-tip { display: none; }
.gcard { width: 210px; }
.gcard__media { display: block; width: 100%; max-height: 250px; object-fit: cover; background: #1b0b22; }
.gcard__body { padding: 12px 14px; }
.gcard__body strong { display: block; font-family: var(--font-display); color: var(--ink); font-size: 1.02rem; line-height: 1.2; }
.gcard__body span { color: var(--muted); font-size: .8rem; }

/* ---------- token / flywheel ---------- */
.token { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.token__inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.flywheel { list-style: none; padding: 0; margin: 26px 0 32px; display: flex; flex-direction: column; gap: 14px; }
.flywheel li { display: flex; align-items: center; gap: 14px; font-weight: 600; color: var(--ink-soft); }
.flywheel li span { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--pink-soft); color: var(--red-ink); font-family: var(--font-display); font-weight: 700; display: grid; place-items: center; }
.token__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: stretch; }
.ca-box { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; position: relative;
  background: var(--paper); border: 1.5px dashed var(--line); border-radius: var(--r); padding: .65em 3.2em .65em 1em; cursor: pointer; text-align: left; transition: border-color .2s var(--ease), box-shadow .2s var(--ease); font-family: var(--font-body); }
.ca-box:hover { border-color: var(--pink); box-shadow: var(--shadow-sm); }
.ca-box__label { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 700; }
.ca-box__value { font-weight: 700; font-size: .95rem; color: var(--ink); max-width: 230px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-variant-numeric: tabular-nums; }
.ca-box__copy { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); background: var(--pink-soft); color: var(--red-ink); font-weight: 700; font-size: .78rem; padding: .35em .7em; border-radius: 999px; }
.ca-box.copied .ca-box__copy { background: var(--red); color: #fff; }

.token__card { display: grid; place-items: center; }
.ring { position: relative; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle at 50% 40%, var(--pink-soft), #fff); border: 2px dashed var(--pink); display: grid; place-items: center; animation: spin 26s linear infinite; }
.ring__emoji { animation: spin-rev 26s linear infinite; display: grid; place-items: center; }
.ring__emoji img { width: 120px; height: 120px; border-radius: 50%; }
.ring__dot { position: absolute; width: 52px; height: 52px; border-radius: 50%; background: #fff; display: grid; place-items: center; color: var(--red); box-shadow: var(--shadow); animation: spin-rev 26s linear infinite; }
.ring__dot .ico { width: 24px; height: 24px; }
.ring__dot--1 { top: -18px; left: 50%; transform: translateX(-50%); }
.ring__dot--2 { right: -18px; top: 50%; transform: translateY(-50%); }
.ring__dot--3 { bottom: -18px; left: 50%; transform: translateX(-50%); }
.ring__dot--4 { left: -18px; top: 50%; transform: translateY(-50%); }
.token__cardcap { margin-top: 22px; font-family: var(--font-display); font-style: italic; font-weight: 600; color: var(--red-ink); font-size: 1.25rem; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spin-rev { to { transform: rotate(-360deg); } }

/* ---------- finale ---------- */
.finale { padding: 96px 0; }
.finale__inner { background: linear-gradient(135deg, var(--red) 0%, #f0728a 55%, var(--pink) 100%); color: #fff; border-radius: var(--r-xl); padding: 70px 40px; text-align: center; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.finale__inner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 0%, rgba(255,255,255,.22), transparent 42%), radial-gradient(circle at 90% 100%, rgba(255,255,255,.16), transparent 42%); }
.finale h2 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 600; position: relative; }
.finale p { margin: 16px auto 0; max-width: 520px; opacity: .96; position: relative; font-size: 1.1rem; }
.finale__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 32px; position: relative; }
.finale .btn--soft { background: rgba(255,255,255,.18); color: #fff; border-color: rgba(255,255,255,.34); backdrop-filter: blur(4px); }
.finale .btn--soft:hover { background: rgba(255,255,255,.28); }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: var(--cream); padding: 48px 0; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; }
.footer .brand__name { color: #fff; }
.footer .brand__logo { width: 34px; height: 34px; }
.footer__links { display: flex; gap: 26px; align-items: center; }
.footer__links a { display: inline-flex; align-items: center; gap: .45em; color: #b9c8c0; font-weight: 600; }
.footer__links a:hover { color: #fff; }
.ico-x { width: .95em; height: .95em; fill: currentColor; stroke: none; }
.footer__note { color: #8a988f; font-size: .9rem; width: 100%; margin-top: 8px; }
.footer__note .ico { color: var(--pink-2); width: 1em; height: 1em; vertical-align: -.18em; }
.warn { display: inline-flex; align-items: center; gap: .45em; }
.warn .ico { color: var(--coral); width: 1.1em; height: 1.1em; flex: none; }

/* ---------- lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 22px; }
.lightbox.is-open { display: flex; }
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(10,18,14,.72); backdrop-filter: blur(6px); animation: fade .25s var(--ease); }
.lightbox__panel { position: relative; z-index: 2; width: min(720px, 100%); background: var(--paper); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); animation: pop .3s var(--ease); }
.lightbox__close { position: absolute; top: 12px; right: 12px; z-index: 5; width: 40px; height: 40px; border-radius: 50%; border: none; background: rgba(255,255,255,.9); cursor: pointer; font-size: 1rem; box-shadow: var(--shadow-sm); }
.lightbox__media { aspect-ratio: 16 / 9; background: var(--ink); display: grid; place-items: center; }
.lightbox__media video, .lightbox__media iframe { width: 100%; height: 100%; border: none; object-fit: contain; background: #000; }
.lightbox__placeholder { color: var(--cream); text-align: center; padding: 30px; font-family: var(--font-display); }
.lightbox__placeholder .big { font-size: 3rem; }
.lb-ico { width: 46px; height: 46px; color: var(--pink-2); margin: 0 auto 4px; }
.lightbox__caption { padding: 18px 22px; font-weight: 600; }
.lightbox__caption span { display: block; color: var(--muted); font-weight: 500; font-size: .9rem; }
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: scale(.94) translateY(10px); } }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 940px) {
  .steps { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .bgrid { grid-template-columns: repeat(2, 1fr); }
  .proof__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .kphoto { width: 240px; } .kphoto img { height: 300px; }
  .token__inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .token__inner .kicker, .token__inner .flywheel { text-align: left; }
  .flywheel { max-width: 420px; margin-inline: auto; }
  .token__actions { justify-content: center; }
  .token__card { order: -1; }
}

@media (max-width: 720px) {
  .nav__links { display: none; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line); padding: 8px 22px 16px; box-shadow: var(--shadow); }
  .nav.is-open .nav__links { display: flex; }
  .nav__links a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav__links a::after { display: none; }
  .nav__burger { display: flex; }
  .ca-pill { display: none; }
  .hide-sm { display: none; }
  .brand__name { font-size: 1.25rem; }
  .gal-arrow { display: none; }
  .bounty-carousel { padding: 0; }
  .bounty-track { padding-inline: 16px; }
  .kphoto { width: 220px; } .kphoto img { height: 280px; }
  .bgrid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .bounty-grid { grid-template-columns: 1fr; max-width: 480px; }
  .treasury__row { flex-direction: column; gap: 4px; }
}

@media (max-width: 460px) {
  .proof__grid { grid-template-columns: 1fr; }
  .hero__trust { font-size: .85rem; }
  .finale__inner { padding: 50px 24px; }
  .hero__photos { gap: 12px; margin-top: 40px; }
  .kphoto { width: 44%; max-width: 150px; } .kphoto img { height: 150px; }
  .kphoto:nth-child(even) { margin-top: 0; }
}

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