/* ============================================================
   KickStopper — the world's first reverse crowdfunding platform
   ============================================================ */

:root {
  --stop: #d6304a;
  --stop-dark: #b01f37;
  --stop-soft: #fdeef1;
  --ink: #17181c;
  --ink-soft: #55565e;
  --ink-faint: #8b8c94;
  --line: #e8e8ec;
  --bg: #ffffff;
  --bg-warm: #f7f7f9;
  --bg-dark: #101118;
  --go: #0a8f5b;
  --gold: #b8860b;
  --radius: 12px;
  --shadow-card: 0 1px 2px rgba(16, 17, 24, .06), 0 8px 24px rgba(16, 17, 24, .07);
  --shadow-pop: 0 4px 12px rgba(16, 17, 24, .10), 0 24px 60px rgba(16, 17, 24, .18);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- top ticker ---------- */
.topbar {
  background: var(--bg-dark);
  color: #cfd0d8;
  font-size: 13px;
  padding: 8px 0;
  text-align: center;
  letter-spacing: .01em;
}
.topbar strong { color: #fff; }
.topbar .blink { color: #ff6b81; font-weight: 700; }

/* ---------- header ---------- */
header.site {
  border-bottom: 1px solid var(--line);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
  font-size: 21px;
  letter-spacing: -.03em;
  white-space: nowrap;
}
.logo .oct { flex: 0 0 auto; }
.logo span em { font-style: normal; color: var(--stop); }
.nav-links { display: flex; gap: 22px; font-size: 14.5px; font-weight: 600; color: var(--ink-soft); }
.nav-links a:hover { color: var(--ink); }
.nav-search { flex: 1; max-width: 340px; margin-left: auto; position: relative; }
.nav-search input {
  width: 100%; height: 38px; border: 1px solid var(--line); border-radius: 20px;
  padding: 0 16px 0 38px; font-family: var(--font); font-size: 14px; background: var(--bg-warm);
  outline: none;
}
.nav-search input:focus { border-color: var(--ink-faint); background: #fff; }
.nav-search svg { position: absolute; left: 13px; top: 10px; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .login { font-size: 14.5px; font-weight: 600; color: var(--ink-soft); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--stop); color: #fff; border: none; cursor: pointer;
  font-family: var(--font); font-weight: 700; font-size: 15px;
  padding: 11px 22px; border-radius: 8px; transition: background .15s, transform .1s;
}
.btn:hover { background: var(--stop-dark); }
.btn:active { transform: scale(.98); }
.btn.ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn.ghost:hover { background: var(--ink); color: #fff; }
.btn.big { padding: 15px 30px; font-size: 16.5px; border-radius: 10px; }
.btn.wide { width: 100%; }
.btn.dark { background: var(--ink); }
.btn.dark:hover { background: #000; }

/* ---------- hero ---------- */
.hero { padding: 72px 0 56px; text-align: center; }
.hero .kicker {
  display: inline-block; font-size: 13px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--stop); background: var(--stop-soft);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 68px); font-weight: 900; letter-spacing: -.035em;
  line-height: 1.04; max-width: 850px; margin: 0 auto 22px;
}
.hero h1 .strike { position: relative; white-space: nowrap; }
.hero h1 .strike::after {
  content: ""; position: absolute; left: -2%; right: -2%; top: 54%; height: .09em;
  background: var(--stop); border-radius: 4px; transform: rotate(-2deg);
}
.hero p.sub {
  font-size: 19px; color: var(--ink-soft); max-width: 640px; margin: 0 auto 34px;
}
.hero .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.stats {
  display: flex; justify-content: center; gap: 0; margin: 60px auto 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  max-width: 900px;
}
.stat { flex: 1; padding: 26px 12px; text-align: center; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat b { display: block; font-size: 30px; font-weight: 900; letter-spacing: -.02em; }
.stat span { font-size: 13.5px; color: var(--ink-faint); font-weight: 500; }
.stat b.zero { color: var(--go); }

/* ---------- section headings ---------- */
.section { padding: 64px 0; }
.section.warm { background: var(--bg-warm); }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 30px; gap: 20px; }
.sec-head h2 { font-size: 30px; font-weight: 900; letter-spacing: -.025em; }
.sec-head p { color: var(--ink-soft); margin-top: 6px; font-size: 15.5px; }
.sec-head .more { font-weight: 700; font-size: 14.5px; color: var(--stop); white-space: nowrap; }

/* ---------- featured card ---------- */
.featured {
  display: grid; grid-template-columns: 1.25fr 1fr; gap: 0; overflow: hidden;
  border-radius: 16px; box-shadow: var(--shadow-card); background: #fff; border: 1px solid var(--line);
}
.featured .media { position: relative; min-height: 340px; }
.featured .media svg.art { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.featured .body { padding: 36px 38px; display: flex; flex-direction: column; }
.featured h3 { font-size: 27px; font-weight: 900; letter-spacing: -.02em; margin: 10px 0 8px; }
.featured .body > p { color: var(--ink-soft); font-size: 15.5px; flex: 0 0 auto; }
.badge {
  display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
  font-size: 11.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--stop); background: var(--stop-soft); padding: 5px 11px; border-radius: 999px;
}
.badge.urgent { background: var(--stop); color: #fff; animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .72; } }

/* ---------- progress ---------- */
.progress { margin-top: auto; padding-top: 22px; }
.bar { height: 8px; background: #ececf1; border-radius: 6px; overflow: hidden; }
.bar i {
  display: block; height: 100%; background: linear-gradient(90deg, var(--stop), #ff5d76);
  border-radius: 6px; width: 0; transition: width 1.1s cubic-bezier(.2,.7,.3,1);
}
.prog-row { display: flex; gap: 26px; margin-top: 14px; }
.prog-row div b { display: block; font-size: 19px; font-weight: 800; letter-spacing: -.01em; }
.prog-row div span { font-size: 12.5px; color: var(--ink-faint); font-weight: 500; }
.prog-row .pct b { color: var(--stop); }

/* ---------- project cards ---------- */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: 0 1px 2px rgba(16,17,24,.04);
  transition: transform .18s, box-shadow .18s; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.card .thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--bg-warm); }
.card .thumb svg { width: 100%; height: 100%; }
.card .thumb .days {
  position: absolute; top: 12px; right: 12px; background: rgba(16,17,24,.82); color: #fff;
  font-size: 12px; font-weight: 700; padding: 5px 10px; border-radius: 6px; backdrop-filter: blur(4px);
}
.card .pad { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.card .cat { font-size: 11.5px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: var(--stop); margin-bottom: 8px; }
.card h3 { font-size: 19px; font-weight: 800; letter-spacing: -.015em; line-height: 1.25; margin-bottom: 7px; }
.card p.blurb { font-size: 14px; color: var(--ink-soft); margin-bottom: 16px; flex: 1; }
.card .byline { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--ink-faint); margin-bottom: 16px; }
.card .byline b { color: var(--ink-soft); font-weight: 600; }
.avatar {
  width: 28px; height: 28px; border-radius: 50%; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .02em;
}
.card .mini-prog .bar { height: 6px; }
.card .mini-row { display: flex; justify-content: space-between; font-size: 12.5px; margin-top: 9px; color: var(--ink-faint); font-weight: 500; }
.card .mini-row b { color: var(--stop); font-weight: 800; font-size: 13px; }
.card .mini-row .raised { color: var(--ink); font-weight: 700; }

.card.cta-card {
  border: 2px dashed var(--line); box-shadow: none; background: var(--bg-warm);
  align-items: center; justify-content: center; text-align: center; padding: 40px 28px; gap: 14px;
}
.card.cta-card:hover { transform: none; border-color: var(--stop); }
.card.cta-card h3 { font-size: 20px; }
.card.cta-card p { color: var(--ink-soft); font-size: 14px; }

/* ---------- graveyard ---------- */
.grave-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grave {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; overflow: hidden;
}
.grave .thumb { aspect-ratio: 16/9; border-radius: 8px; overflow: hidden; margin-bottom: 18px; filter: grayscale(1) opacity(.55); }
.grave h3 { font-size: 18px; font-weight: 800; }
.grave p { font-size: 13.5px; color: var(--ink-soft); margin: 6px 0 12px; }
.grave .final { font-size: 13px; font-weight: 700; color: var(--go); }
.stamp {
  position: absolute; top: 24px; right: -38px; transform: rotate(35deg);
  background: var(--stop); color: #fff; font-weight: 900; font-size: 13px;
  letter-spacing: .18em; padding: 7px 48px; text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(214,48,74,.4);
}

/* ---------- how strip ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step { text-align: left; padding: 30px 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.step .num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 17px; margin-bottom: 18px;
}
.step h3 { font-size: 18.5px; font-weight: 800; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- press ---------- */
.press { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.quote p { font-size: 16.5px; font-weight: 600; line-height: 1.45; letter-spacing: -.01em; }
.quote span { display: block; margin-top: 14px; font-size: 13px; color: var(--ink-faint); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }

/* ---------- newsletter ---------- */
.newsletter { background: var(--bg-dark); color: #fff; border-radius: 20px; padding: 56px 48px; text-align: center; }
.newsletter h2 { font-size: 30px; font-weight: 900; letter-spacing: -.025em; margin-bottom: 10px; }
.newsletter p { color: #b9bac4; max-width: 520px; margin: 0 auto 28px; font-size: 15.5px; }
.newsletter form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
.newsletter input {
  flex: 1; height: 50px; border-radius: 10px; border: 1px solid #34353f; background: #1a1b23;
  color: #fff; padding: 0 18px; font-family: var(--font); font-size: 15px; outline: none;
}
.newsletter input:focus { border-color: #5a5b66; }
.newsletter small { display: block; margin-top: 16px; color: #7a7b85; font-size: 12.5px; }

/* ---------- footer ---------- */
footer.site { background: var(--bg-dark); color: #a2a3ad; margin-top: 80px; padding: 60px 0 36px; font-size: 14px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.foot-grid h4 { color: #fff; font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.foot-grid ul { list-style: none; }
.foot-grid li { margin-bottom: 10px; }
.foot-grid a:hover { color: #fff; }
.foot-brand .logo { color: #fff; margin-bottom: 14px; }
.foot-brand p { max-width: 320px; font-size: 13.5px; line-height: 1.6; }
.foot-legal {
  border-top: 1px solid #26272f; padding-top: 26px; font-size: 12.5px; color: #6f707a;
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.disclaimer {
  background: #1a1b23; border: 1px solid #2c2d36; border-radius: 10px; padding: 16px 20px;
  font-size: 12.5px; color: #9a9ba5; margin-bottom: 30px; line-height: 1.6;
}
.disclaimer b { color: #d5d6dd; }

/* ============================================================
   CAMPAIGN PAGE
   ============================================================ */
.camp-head { padding: 40px 0 8px; text-align: center; }
.camp-head .cat { font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--stop); }
.camp-head h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 900; letter-spacing: -.03em; margin: 10px auto 12px; max-width: 900px; line-height: 1.1; }
.camp-head .tagline { font-size: 18px; color: var(--ink-soft); max-width: 720px; margin: 0 auto; }

.camp-hero { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; padding: 34px 0 30px; align-items: start; }
.camp-media { border-radius: 14px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-card); position: relative; }
.camp-media svg.art { width: 100%; height: auto; }
.play-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(to top, rgba(16,17,24,.35), rgba(16,17,24,0) 45%);
  cursor: pointer; transition: background .2s;
}
.play-overlay:hover { background: linear-gradient(to top, rgba(16,17,24,.5), rgba(16,17,24,.08)); }
.play-btn {
  width: 78px; height: 78px; border-radius: 50%; background: rgba(255,255,255,.94);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-pop);
  transition: transform .15s;
}
.play-overlay:hover .play-btn { transform: scale(1.08); }
.play-caption {
  position: absolute; bottom: 14px; left: 16px; color: #fff; font-size: 13px; font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
.creator-strip { display: flex; align-items: center; gap: 12px; margin-top: 18px; padding: 16px; background: var(--bg-warm); border-radius: 10px; }
.creator-strip .avatar { width: 44px; height: 44px; font-size: 15px; }
.creator-strip b { display: block; font-size: 15px; }
.creator-strip span { font-size: 13px; color: var(--ink-faint); }
.creator-strip .follow { margin-left: auto; font-size: 13.5px; font-weight: 700; color: var(--stop); white-space: nowrap; }

/* funding sidebar */
.fund-box { position: sticky; top: 88px; }
.fund-box .bar { height: 10px; margin-bottom: 20px; }
.fund-big b { display: block; font-size: 34px; font-weight: 900; letter-spacing: -.02em; color: var(--stop); }
.fund-big span { font-size: 14px; color: var(--ink-faint); }
.fund-row { margin-top: 20px; }
.fund-row b { display: block; font-size: 26px; font-weight: 800; letter-spacing: -.015em; }
.fund-row span { font-size: 13.5px; color: var(--ink-faint); }
.fund-actions { margin: 26px 0 14px; display: flex; flex-direction: column; gap: 10px; }
.all-or-nothing {
  font-size: 13px; color: var(--ink-soft); background: var(--stop-soft);
  border: 1px solid #f6ccd4; padding: 14px 16px; border-radius: 10px; line-height: 1.55;
}
.all-or-nothing b { color: var(--stop-dark); }
.deadline-chip {
  display: flex; align-items: center; gap: 8px; margin-top: 14px;
  font-size: 13px; color: var(--ink-faint); font-weight: 500;
}

/* tabs */
.tabs { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); position: sticky; top: 64px; background: #fff; z-index: 40; }
.tabs ul { display: flex; gap: 34px; list-style: none; }
.tabs a { display: block; padding: 16px 2px; font-size: 14.5px; font-weight: 700; color: var(--ink-faint); border-bottom: 3px solid transparent; margin-bottom: -1px; }
.tabs a.active, .tabs a:hover { color: var(--ink); border-color: var(--stop); }
.tabs .tab-count { font-size: 12px; background: var(--bg-warm); border-radius: 999px; padding: 2px 8px; margin-left: 4px; color: var(--ink-faint); }

/* campaign body */
.camp-body { display: grid; grid-template-columns: 1.6fr 1fr; gap: 56px; padding: 48px 0; align-items: start; }
.story h2 { font-size: 26px; font-weight: 900; letter-spacing: -.02em; margin: 46px 0 16px; }
.story h2:first-child { margin-top: 0; }
.story h3 { font-size: 19px; font-weight: 800; margin: 32px 0 12px; }
.story p { font-size: 16.5px; color: #33343c; margin-bottom: 18px; line-height: 1.7; }
.story ul, .story ol { margin: 0 0 18px 22px; font-size: 16.5px; color: #33343c; line-height: 1.7; }
.story li { margin-bottom: 8px; }
.story .shot { margin: 28px 0; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-card); }
.story .shot svg { width: 100%; height: auto; }
.story .caption { font-size: 13px; color: var(--ink-faint); text-align: center; margin: 10px 0 30px; font-style: italic; }
.story blockquote {
  border-left: 4px solid var(--stop); background: var(--stop-soft); padding: 18px 22px;
  border-radius: 0 10px 10px 0; margin: 26px 0; font-size: 17px; font-weight: 600; color: #4a2a31;
}
.story blockquote cite { display: block; font-size: 13px; font-weight: 700; color: var(--stop-dark); margin-top: 10px; font-style: normal; }
.callout {
  background: var(--bg-warm); border: 1px solid var(--line); border-radius: 12px; padding: 22px 26px; margin: 26px 0;
}
.callout h4 { font-size: 15px; font-weight: 800; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.callout p { font-size: 15px; margin-bottom: 0; }
.risk-box { border: 1.5px solid var(--stop); border-radius: 12px; padding: 26px; margin: 40px 0 0; }
.risk-box h3 { margin-top: 0; color: var(--stop-dark); }

/* milestone timeline */
.timeline { list-style: none; margin: 24px 0 8px !important; padding: 0; }
.timeline li {
  position: relative; padding: 0 0 22px 34px; margin: 0; border-left: 2px solid var(--line);
  margin-left: 9px !important; font-size: 15.5px;
}
.timeline li:last-child { border-color: transparent; padding-bottom: 0; }
.timeline li::before {
  content: ""; position: absolute; left: -10px; top: 2px; width: 18px; height: 18px;
  border-radius: 50%; background: var(--stop); border: 4px solid var(--stop-soft);
}
.timeline b { display: block; font-size: 15.5px; }
.timeline span { color: var(--ink-soft); font-size: 14.5px; }

/* rewards column */
.rewards h2 { font-size: 20px; font-weight: 900; margin-bottom: 6px; }
.rewards > p { font-size: 13.5px; color: var(--ink-faint); margin-bottom: 22px; }
.tier {
  border: 1px solid var(--line); border-radius: 12px; padding: 22px; margin-bottom: 18px;
  cursor: pointer; transition: border-color .15s, box-shadow .15s; background: #fff;
}
.tier:hover { border-color: var(--stop); box-shadow: var(--shadow-card); }
.tier .amt { font-size: 21px; font-weight: 900; letter-spacing: -.01em; }
.tier .amt small { font-size: 13px; color: var(--ink-faint); font-weight: 500; margin-left: 6px; }
.tier h4 { font-size: 15.5px; font-weight: 800; margin: 6px 0 8px; }
.tier p { font-size: 14px; color: var(--ink-soft); margin-bottom: 14px; }
.tier .meta { display: flex; gap: 16px; font-size: 12.5px; color: var(--ink-faint); font-weight: 600; }
.tier .meta .left { color: var(--stop); }
.tier.soldout { opacity: .55; cursor: not-allowed; position: relative; }
.tier.soldout:hover { border-color: var(--line); box-shadow: none; }
.tier .gone {
  display: inline-block; font-size: 11px; font-weight: 900; letter-spacing: .1em; color: #fff;
  background: var(--ink); padding: 3px 9px; border-radius: 5px; text-transform: uppercase; margin-bottom: 8px;
}

/* faq / updates / comments */
.sub-section { border-top: 1px solid var(--line); padding: 54px 0; }
.sub-section h2 { font-size: 26px; font-weight: 900; letter-spacing: -.02em; margin-bottom: 28px; }
.faq-item { border: 1px solid var(--line); border-radius: 10px; margin-bottom: 12px; overflow: hidden; }
.faq-item summary {
  padding: 18px 22px; font-weight: 700; font-size: 15.5px; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::after { content: "+"; font-size: 22px; font-weight: 400; color: var(--ink-faint); }
.faq-item[open] summary::after { content: "–"; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .a { padding: 0 22px 20px; font-size: 15px; color: var(--ink-soft); line-height: 1.65; }

.update { border: 1px solid var(--line); border-radius: 12px; padding: 26px; margin-bottom: 18px; }
.update .u-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.update .u-head .avatar { width: 38px; height: 38px; font-size: 13px; }
.update .u-head b { display: block; font-size: 14.5px; }
.update .u-head span { font-size: 12.5px; color: var(--ink-faint); }
.update h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.update p { font-size: 15px; color: #33343c; margin-bottom: 10px; line-height: 1.65; }
.update .u-num {
  margin-left: auto; font-size: 11.5px; font-weight: 800; color: var(--ink-faint);
  background: var(--bg-warm); padding: 4px 10px; border-radius: 999px; letter-spacing: .06em;
}

.comment { display: flex; gap: 14px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.comment:last-child { border-bottom: none; }
.comment .avatar { width: 40px; height: 40px; font-size: 13px; }
.comment .c-body b { font-size: 14.5px; }
.comment .c-body .when { font-size: 12.5px; color: var(--ink-faint); margin-left: 8px; font-weight: 500; }
.comment .c-body p { font-size: 15px; color: #33343c; margin-top: 5px; line-height: 1.6; }
.comment .c-body .creator-tag {
  font-size: 10.5px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase;
  background: var(--stop); color: #fff; border-radius: 4px; padding: 2px 7px; margin-left: 8px; vertical-align: 2px;
}

/* related */
.related { background: var(--bg-warm); }

/* ---------- modal ---------- */
.modal-veil {
  position: fixed; inset: 0; background: rgba(16,17,24,.55); z-index: 100;
  display: none; align-items: center; justify-content: center; padding: 24px;
  backdrop-filter: blur(3px);
}
.modal-veil.open { display: flex; }
.modal {
  background: #fff; border-radius: 16px; max-width: 480px; width: 100%; padding: 34px;
  box-shadow: var(--shadow-pop); position: relative; max-height: 90vh; overflow: auto;
}
.modal .x {
  position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%;
  border: none; background: var(--bg-warm); font-size: 17px; cursor: pointer; color: var(--ink-soft);
}
.modal h3 { font-size: 22px; font-weight: 900; letter-spacing: -.02em; margin-bottom: 6px; }
.modal .m-sub { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 22px; }
.modal .amount-row { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.modal .amount-row button {
  flex: 1; min-width: 70px; padding: 12px 0; border-radius: 8px; border: 1.5px solid var(--line);
  background: #fff; font-family: var(--font); font-weight: 800; font-size: 15px; cursor: pointer;
}
.modal .amount-row button.sel { border-color: var(--stop); background: var(--stop-soft); color: var(--stop-dark); }
.modal .fine { font-size: 12px; color: var(--ink-faint); margin-top: 14px; line-height: 1.55; }
.modal .success { text-align: center; padding: 18px 0 6px; display: none; }
.modal .success .big-emoji { font-size: 52px; margin-bottom: 12px; }
.modal .success h3 { margin-bottom: 8px; }
.modal .success p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- toast ---------- */
.toast {
  position: fixed; bottom: 24px; left: 24px; z-index: 90; background: var(--bg-dark); color: #fff;
  padding: 14px 20px; border-radius: 12px; font-size: 13.5px; box-shadow: var(--shadow-pop);
  display: flex; align-items: center; gap: 12px; max-width: 380px;
  transform: translateY(140%); transition: transform .45s cubic-bezier(.2,.9,.3,1); pointer-events: none;
}
.toast.show { transform: translateY(0); }
.toast b { color: #ff8ba0; }

/* ---------- how-it-works page ---------- */
.page-head { padding: 64px 0 20px; text-align: center; }
.page-head h1 { font-size: clamp(34px, 5vw, 54px); font-weight: 900; letter-spacing: -.03em; margin-bottom: 14px; }
.page-head p { font-size: 18px; color: var(--ink-soft); max-width: 640px; margin: 0 auto; }
.prose { max-width: 760px; margin: 0 auto; padding: 30px 24px 20px; }
.prose h2 { font-size: 26px; font-weight: 900; letter-spacing: -.02em; margin: 44px 0 14px; }
.prose p { font-size: 16.5px; color: #33343c; margin-bottom: 16px; line-height: 1.7; }
.prose ul, .prose ol { margin: 0 0 16px 22px; font-size: 16.5px; color: #33343c; line-height: 1.7; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .grid, .grave-grid, .steps, .press { grid-template-columns: repeat(2, 1fr); }
  .featured { grid-template-columns: 1fr; }
  .featured .media { min-height: 260px; position: relative; }
  .featured .media svg.art { position: relative; }
  .camp-hero, .camp-body { grid-template-columns: 1fr; }
  .fund-box { position: static; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-search { display: none; }
}
@media (max-width: 620px) {
  .grid, .grave-grid, .steps, .press { grid-template-columns: 1fr; }
  .stats { flex-direction: column; }
  .stat + .stat { border-left: none; border-top: 1px solid var(--line); }
  .newsletter form { flex-direction: column; }
  .foot-grid { grid-template-columns: 1fr; }
  .tabs ul { gap: 20px; overflow-x: auto; }
  .nav-cta .login { display: none; }
}
