/* ═══════════════════════════════════════════════════════
   RRUMR — Landing Page
   Light, colour-blocked, playful editorial.
   Warm paper base · chunky borders · hard offset shadows
   Clash Display headlines · Inter body · Space Mono accents
   ═══════════════════════════════════════════════════════ */

:root {
  /* === paper + ink === */
  --paper:   #fdf4e3;   /* warm cream base */
  --paper-2: #f6ead2;   /* deeper cream */
  --ink:     #15120b;   /* near-black */
  --ink-soft:#3a352b;

  /* === playful brand colours === */
  --coral:  #ff5436;
  --pink:   #ff5c9d;
  --blue:   #2d5bff;
  --lime:   #c6f24e;
  --amber:  #ffc02e;
  --violet: #8b5cf6;
  --mint:   #38d9a9;

  --display: 'Clash Display', 'Inter', sans-serif;
  --mono: 'Space Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1180px;

  /* chunky hard shadow */
  --sh:    4px 4px 0 var(--ink);
  --sh-lg: 6px 6px 0 var(--ink);
  --bd: 2.5px solid var(--ink);
}

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

html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }

body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.55;
}

::selection { background: var(--amber); color: var(--ink); }

h1, h2, h3, .nav__brand, .footer__brand, .feat__no, .stat b, .manifesto__text {
  font-family: var(--display); font-weight: 600;
}
em { font-style: italic; font-weight: inherit; }
.hero__sub em, .why em, .features em, #points em, .cta em { color: var(--coral); }
#predict em { color: var(--blue); }
.manifesto em, .voices em { color: var(--coral); }

a { color: inherit; text-decoration: none; }
svg { display: block; }

/* ── shared ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono);
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink); font-weight: 700; margin-bottom: 20px;
  background: var(--lime); padding: 5px 12px; border: var(--bd); border-radius: 100px;
  box-shadow: 3px 3px 0 var(--ink);
}
#why .eyebrow      { background: var(--coral); color: #fff; }
.features .eyebrow { background: var(--violet); color: #fff; }
#points .eyebrow   { background: var(--ink); color: var(--amber); }
#predict .eyebrow  { background: var(--ink); color: #fff; }
.voices .eyebrow   { background: var(--pink); color: #fff; }

.section-head { max-width: 760px; margin: 0 auto 64px; }
.section-head h2 { font-size: clamp(2.1rem, 5.4vw, 3.8rem); line-height: 1.0; letter-spacing: -0.02em; }
.section-head p { margin-top: 22px; color: var(--ink-soft); font-size: 1.08rem; max-width: 56ch; }

section { padding: clamp(70px, 11vw, 130px) clamp(20px, 6vw, 80px); position: relative; }

/* ── buttons (chunky, hard shadow) ── */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 28px; border-radius: 12px; font-weight: 700; font-size: 1rem;
  border: var(--bd); box-shadow: var(--sh);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .2s;
}
.btn span { position: relative; z-index: 1; }
.btn:hover { transform: translate(-2px,-2px); box-shadow: var(--sh-lg); }
.btn:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--ink); }
.btn--coral { background: var(--coral); color: #fff; }
.btn--paper { background: var(--paper); color: var(--ink); }
.btn--ink   { background: var(--ink); color: var(--amber); }

/* ═══════════ NAV ═══════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px clamp(16px, 5vw, 40px);
  transition: padding .3s var(--ease), background .3s var(--ease), box-shadow .3s;
  border-bottom: 2.5px solid transparent;
}
.nav.scrolled {
  padding: 9px clamp(16px, 5vw, 40px);
  background: var(--paper); border-bottom-color: var(--ink);
}
.nav__brand { font-size: 1.55rem; letter-spacing: -0.03em; font-weight: 700; }
.nav__brand span { color: var(--coral); }
.nav__links { display: flex; gap: 26px; }
.nav__link {
  font-family: var(--mono);
  font-size: .76rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 700;
  color: var(--ink); transition: color .25s; position: relative;
}
.nav__link::after { content: ''; position: absolute; left: 0; bottom: -5px; width: 0; height: 3px; background: var(--coral); transition: width .3s var(--ease); }
.nav__link:hover::after { width: 100%; }
.nav__cta {
  padding: 9px 18px; border-radius: 100px; background: var(--amber); color: var(--ink);
  font-size: .82rem; font-weight: 700; white-space: nowrap;
  border: var(--bd); box-shadow: 3px 3px 0 var(--ink);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.nav__cta:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--ink); }
@media (max-width: 880px){ .nav__links{ display: none; } }

/* ═══════════ HERO ═══════════ */
.hero {
  min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  padding: 130px clamp(20px, 6vw, 60px) 110px; position: relative; overflow: hidden; isolation: isolate;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,84,54,.10), transparent 30%),
    radial-gradient(circle at 88% 22%, rgba(45,91,255,.10), transparent 32%),
    radial-gradient(circle at 50% 96%, rgba(198,242,78,.16), transparent 40%),
    var(--paper);
}
/* dotted texture */
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(var(--ink) 1px, transparent 1px);
  background-size: 26px 26px; opacity: .05;
}

/* draggable stickers */
.stickers { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.sticker {
  position: absolute; pointer-events: auto; cursor: grab; user-select: none;
  font-family: var(--mono); font-weight: 700; font-size: .82rem;
  padding: 9px 15px; border: var(--bd); border-radius: 100px; box-shadow: var(--sh);
  white-space: nowrap; touch-action: none;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.sticker:active { cursor: grabbing; }
.sticker.dragging { transition: none; box-shadow: var(--sh-lg); z-index: 50; }
.sticker--a { top: 17%; left:  calc(50% - 560px); background: var(--coral); color:#fff; transform: rotate(-8deg); }
.sticker--b { top: 26%; right: calc(50% - 540px); background: var(--lime);  color:var(--ink); transform: rotate(7deg); }
.sticker--c { top: 60%; left:  calc(50% - 570px); background: var(--amber); color:var(--ink); transform: rotate(6deg); }
.sticker--d { top: 70%; right: calc(50% - 560px); background: var(--blue);  color:#fff; transform: rotate(-6deg); }
.sticker--e { top: 44%; left:  calc(50% - 580px); background: var(--pink);  color:#fff; transform: rotate(-4deg); }
.sticker--f { top: 50%; right: calc(50% - 550px); background: var(--violet);color:#fff; transform: rotate(9deg); }
.drag-hint {
  position: absolute; top: 10%; left: calc(50% - 555px); transform: rotate(-6deg);
  font-family: var(--mono); font-size: .68rem; font-weight: 700;
  color: var(--ink-soft); white-space: nowrap; pointer-events: none;
  animation: hint-bob 2.4s ease-in-out infinite;
  opacity: .6;
}
@keyframes hint-bob { 0%,100% { transform: rotate(-6deg) translateY(0); } 50% { transform: rotate(-6deg) translateY(-4px); } }
@media (max-width: 760px){
  .stickers { display: none; }
}

.hero__inner { position: relative; z-index: 1; max-width: 880px; display: flex; flex-direction: column; align-items: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 16px; border-radius: 100px;
  background: #fff; border: var(--bd); box-shadow: 3px 3px 0 var(--ink);
  font-family: var(--mono); font-size: .76rem; font-weight: 700; color: var(--ink); margin-bottom: 28px;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100%{ opacity:1; } 50%{ opacity:.3; } }

.hero__title { font-size: clamp(2.9rem, 10vw, 7.8rem); line-height: .92; letter-spacing: -0.035em; font-weight: 700; }
.hero__title .line { display: block; }
.mark {
  color: var(--ink); background: none; padding: 0 .08em;
  position: relative; white-space: nowrap; isolation: isolate;
}
.mark::before {
  content: ''; position: absolute; left: -2%; right: -2%; bottom: 6%; top: 18%;
  z-index: -1; border-radius: 6px;
}
.mark--amber { color: var(--ink); }
.mark--amber::before { background: var(--amber); transform: rotate(-1.5deg); }
.mark--coral { color: #fff; }
.mark--coral::before { background: var(--coral); transform: rotate(1.5deg); }

.hero__sub { margin: 30px auto 0; max-width: 600px; font-size: clamp(1.04rem, 2.2vw, 1.26rem); color: var(--ink-soft); line-height: 1.6; }
.hero__sub strong { color: var(--ink); font-weight: 700; }

.hero__actions { margin-top: 38px; display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero__meta { margin-top: 40px; display: flex; align-items: center; gap: 14px; color: var(--ink-soft); font-size: .9rem; justify-content: center; flex-wrap: wrap; font-weight: 500; }
.hero__avatars { display: flex; }
.hero__avatars span {
  width: 34px; height: 34px; border-radius: 50%; background: #fff; border: 2px solid var(--ink);
  margin-left: -10px; display: flex; align-items: center; justify-content: center;
  font-size: .76rem; font-weight: 700; color: var(--ink);
}
.hero__avatars span:nth-child(1){ background: var(--coral); color:#fff; }
.hero__avatars span:nth-child(2){ background: var(--amber); }
.hero__avatars span:nth-child(3){ background: var(--lime); }
.hero__avatars span:nth-child(4){ background: var(--blue); color:#fff; }
.hero__avatars span:first-child { margin-left: 0; }
.hero__avatars .more { background: var(--ink); color: var(--paper); font-family: var(--mono); }

.hero__scroll { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 12px; font-family: var(--mono); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); z-index: 2; font-weight: 700; }
.hero__scroll span { width: 36px; height: 3px; background: rgba(21,18,11,.2); position: relative; overflow: hidden; border-radius: 3px; }
.hero__scroll span::after { content: ''; position: absolute; inset: 0; width: 45%; background: var(--coral); border-radius: 3px; animation: scoot 1.6s var(--ease) infinite; }
@keyframes scoot { 0%{ transform: translateX(-110%); } 100%{ transform: translateX(240%); } }
@media (max-width: 600px){ .hero__scroll{ display: none; } }
@media (max-width: 480px){
  .hero { padding: 100px 20px 80px; }
  .hero__title { font-size: clamp(2.6rem, 14vw, 4rem); }
  .hero__badge { font-size: .7rem; padding: 6px 12px; }
  .hero__actions { flex-direction: row; gap: 10px; }
  .hero__actions .btn { flex: 1; min-width: 0; font-size: .9rem; padding: 13px 12px; }
  .hero__sub { font-size: .98rem; margin-top: 20px; }
  .hero__meta { margin-top: 28px; font-size: .82rem; }
}

/* ═══════════ MARQUEE (ink bar) ═══════════ */
.marquee { padding: 26px 0; background: var(--ink); overflow: hidden; display: flex; flex-direction: column; gap: 10px; border-block: 2.5px solid var(--ink); }
.marquee__row { overflow: hidden; }
.marquee__track { display: flex; align-items: center; gap: 26px; white-space: nowrap; width: max-content; animation: scroll-x 34s linear infinite; will-change: transform; backface-visibility: hidden; transform: translateZ(0); }
.marquee__track--alt { animation-duration: 28s; }
.marquee__row--rev .marquee__track { animation-direction: reverse; }
.marquee__track span { font-family: var(--display); font-size: clamp(1.4rem, 3vw, 2.3rem); font-weight: 600; letter-spacing: -0.02em; color: var(--paper); }
.marquee__track span.o { color: transparent; -webkit-text-stroke: 1px var(--paper-2); }
.marquee__track i { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.marquee__track i:nth-of-type(4n+1){ background: var(--coral); }
.marquee__track i:nth-of-type(4n+2){ background: var(--amber); }
.marquee__track i:nth-of-type(4n+3){ background: var(--lime); }
.marquee__track i:nth-of-type(4n){   background: var(--blue); }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ═══════════ MANIFESTO (lime block) ═══════════ */
.manifesto { background: var(--lime); padding-block: clamp(80px, 14vw, 170px); border-bottom: 2.5px solid var(--ink); }
.manifesto__text { max-width: 1080px; margin: 0 auto; font-size: clamp(1.8rem, 5.6vw, 4.4rem); line-height: 1.06; letter-spacing: -0.02em; color: var(--ink); font-weight: 600; }
.manifesto__text span { display: block; }
.manifesto__text span:nth-child(2) { color: rgba(21,18,11,.45); }
.manifesto__text span:nth-child(3) { color: var(--coral); }
.manifesto em { color: var(--ink); text-decoration: underline; text-decoration-thickness: 4px; text-underline-offset: 4px; }
.manifesto__text span:nth-child(3) em { color: var(--coral); }

/* ═══════════ WHY / CARDS ═══════════ */
.why { background: var(--paper); }
.cards { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: #fff; border: var(--bd); border-radius: 18px; padding: 26px 24px;
  box-shadow: var(--sh); transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  display: flex; flex-direction: column; gap: 14px; min-height: 170px;
}
.card:hover { box-shadow: var(--sh-lg); }
.card__tag {
  align-self: flex-start; font-family: var(--mono); font-weight: 700; font-size: .76rem;
  padding: 5px 12px; border: var(--bd); border-radius: 100px; background: var(--paper-2);
  text-transform: uppercase; letter-spacing: .04em;
}
.card p { color: var(--ink-soft); font-size: 1rem; line-height: 1.5; }
.card:nth-child(1) .card__tag { background: var(--pink); color:#fff; }
.card:nth-child(2) .card__tag { background: var(--amber); }
.card:nth-child(3) .card__tag { background: var(--blue); color:#fff; }
.card:nth-child(4) .card__tag { background: var(--violet); color:#fff; }
.card:nth-child(5) .card__tag { background: var(--mint); }
.card--win {
  grid-column: span 1; background: var(--ink); color: var(--paper);
  box-shadow: 6px 6px 0 var(--coral);
}
.card--win .card__tag { background: var(--coral); color: #fff; border-color: var(--coral); font-size: .9rem; }
.card--win p { color: var(--paper); font-size: 1.04rem; }
.card--win em { color: var(--amber); }
@media (max-width: 860px){ .cards{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .cards{ grid-template-columns: 1fr; } }

/* ═══════════ FEATURES (colour-blocked bento) ═══════════ */
.features { background: var(--paper-2); border-block: 2.5px solid var(--ink); }
.feats { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.feat {
  grid-column: span 2; border: var(--bd); border-radius: 20px;
  padding: 30px 28px; position: relative; overflow: hidden; min-height: 230px;
  display: flex; flex-direction: column; box-shadow: var(--sh);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.feat--lg { grid-column: span 3; }
.feat:hover { box-shadow: var(--sh-lg); }
.feat--coral  { background: var(--coral);  color:#fff; }
.feat--blue   { background: var(--blue);   color:#fff; }
.feat--amber  { background: var(--amber);  color:var(--ink); }
.feat--lime   { background: var(--lime);   color:var(--ink); }
.feat--violet { background: var(--violet); color:#fff; }
.feat__no {
  font-family: var(--mono); font-weight: 700;
  font-size: 1.7rem; line-height: 1; margin-bottom: auto;
  width: 54px; height: 54px; display: flex; align-items: center; justify-content: center;
  background: var(--ink); color: var(--paper); border-radius: 14px;
}
.feat h3 { font-size: clamp(1.45rem, 2.2vw, 1.85rem); letter-spacing: -0.02em; margin-top: 24px; font-weight: 600; line-height: 1.2; }
.feat h3 em { font-style: italic; }
@media (max-width: 900px){ .feats{ grid-template-columns: 1fr; } .feat, .feat--lg{ grid-column: 1 / -1; min-height: 0; } .feat__no{ margin-bottom: 18px; } }

/* ═══════════ SPLIT SECTIONS ═══════════ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: start; border-bottom: 2.5px solid var(--ink); }
.split__copy { padding-top: clamp(8px, 3vw, 40px); }
.split__copy { max-width: 520px; margin: 0 auto; width: 100%; }
.split--amber { background: var(--amber); }
.split--blue  { background: var(--blue); color: #fff; }
.split--blue .split__copy > p { color: rgba(255,255,255,.85); }
.split--rev .split__copy { order: 2; }
.split__copy h2 { font-size: clamp(2rem, 4.8vw, 3.4rem); line-height: 1.0; letter-spacing: -0.02em; }
.split__copy > p { margin-top: 22px; color: var(--ink-soft); font-size: 1.06rem; max-width: 440px; line-height: 1.6; }
.split__copy strong { color: inherit; font-weight: 700; }
.split--blue em { color: var(--amber); }
.ticks { list-style: none; margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.ticks li { position: relative; padding-left: 32px; font-size: 1rem; font-weight: 500; }
.ticks li::before { content: '→'; position: absolute; left: 0; top: 0; font-weight: 700; color: var(--ink); }
.split--blue .ticks li::before { color: var(--amber); }
.split .btn { margin-top: 30px; }
.split__art { position: relative; }
@media (max-width: 820px){ .split{ grid-template-columns: 1fr; gap: 40px; } .split--rev .split__copy{ order: 0; } .split__copy{ max-width: 100%; padding-top: 0; } }

/* rewards card */
.rewards { background: #fff; border: var(--bd); border-radius: 20px; padding: 26px; box-shadow: var(--sh-lg); color: var(--ink); }
.rewards__head { display: flex; align-items: baseline; justify-content: space-between; }
.rewards__label { font-family: var(--mono); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.rewards__bal { font-family: var(--display); font-size: 2.9rem; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; color: var(--coral); }
.rewards__bar { height: 12px; border-radius: 100px; background: var(--paper-2); overflow: hidden; margin: 16px 0 9px; border: 2px solid var(--ink); }
.rewards__bar span { display: block; height: 100%; background: var(--coral); }
.rewards__next { font-size: .84rem; color: var(--ink-soft); margin-bottom: 20px; }
.rewards__next b { color: var(--ink); }
.rewards__log { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.rewards__log li { display: flex; align-items: center; gap: 14px; padding: 11px; border-radius: 12px; background: var(--paper); border: 2px solid var(--ink); }
.rewards__amt { font-family: var(--mono); font-size: 1rem; font-weight: 700; color: var(--coral); font-variant-numeric: tabular-nums; min-width: 44px; }
.rewards__txt { line-height: 1.3; }
.rewards__txt b { font-size: .92rem; display: block; font-weight: 700; }
.rewards__txt i { font-size: .76rem; color: var(--ink-soft); font-style: normal; }

/* prediction markets */
.market { background: #fff; border: var(--bd); border-radius: 18px; padding: 22px; box-shadow: var(--sh-lg); color: var(--ink); }
.market--sm { margin-top: 18px; margin-left: clamp(0px, 6vw, 50px); box-shadow: var(--sh); }
.market__q { font-weight: 700; font-size: 1.02rem; margin-bottom: 16px; line-height: 1.4; }
.market__bar { height: 12px; border-radius: 100px; background: var(--paper-2); overflow: hidden; border: 2px solid var(--ink); }
.market__bar span { display: block; height: 100%; background: var(--blue); }
.market__row { display: flex; justify-content: space-between; margin-top: 13px; font-size: .9rem; font-family: var(--mono); font-weight: 700; }
.market__row b.yes { color: var(--blue); }
.market__row b:not(.yes) { color: var(--ink-soft); }
.market__foot { display: flex; justify-content: space-between; margin-top: 14px; font-size: .74rem; color: var(--ink-soft); font-family: var(--mono); }

/* prediction mini-game */
.tg { background: #fff; border: var(--bd); border-radius: 20px; padding: 24px; box-shadow: var(--sh-lg); color: var(--ink); }
.tg__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.tg__tag { font-family: var(--mono); font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; background: var(--ink); color: var(--amber); padding: 5px 11px; border-radius: 100px; }
.tg__score { display: flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: .74rem; font-weight: 700; }
.tg__pts b { color: var(--coral); font-variant-numeric: tabular-nums; }
.tg__streak { background: var(--paper-2); border: 2px solid var(--ink); border-radius: 100px; padding: 2px 9px; white-space: nowrap; }
.tg__title { font-family: var(--display); font-size: 1.55rem; line-height: 1.04; letter-spacing: -0.01em; margin-bottom: 18px; color: var(--ink); }
.tg__q { font-weight: 700; font-size: 1.08rem; line-height: 1.45; margin-bottom: 18px; min-height: 3.1em; }
.tg__bar { height: 12px; border-radius: 100px; background: var(--paper-2); overflow: hidden; border: 2px solid var(--ink); }
.tg__bar span { display: block; height: 100%; width: 0; background: var(--blue); transition: width .8s var(--ease); }
.tg__pcts { display: flex; justify-content: space-between; margin-top: 12px; font-size: .9rem; font-family: var(--mono); font-weight: 700; }
.tg__pcts b.yes { color: var(--blue); }
.tg__pcts b:not(.yes) { color: var(--ink-soft); }
.tg__verdict { margin-top: 16px; font-family: var(--mono); font-weight: 700; font-size: .86rem; line-height: 1.5; padding: 12px 14px; border-radius: 12px; border: 2.5px solid var(--ink); }
.tg__verdict.good { background: var(--lime); color: var(--ink); }
.tg__verdict.bold { background: var(--amber); color: var(--ink); }
.tg__actions { display: flex; gap: 12px; margin-top: 18px; }
.tg__btn { flex: 1; padding: 15px; border: var(--bd); border-radius: 12px; font-family: inherit; font-weight: 700; font-size: 1.02rem; cursor: pointer; box-shadow: var(--sh); transition: transform .15s var(--ease), box-shadow .15s var(--ease), opacity .2s; }
.tg__btn:hover:not(:disabled) { transform: translate(-2px,-2px); box-shadow: var(--sh-lg); }
.tg__btn:active:not(:disabled) { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--ink); }
.tg__btn--yes { background: var(--blue); color: #fff; }
.tg__btn--no  { background: var(--paper); color: var(--ink); }
.tg__btn.picked { outline: 3px solid var(--ink); outline-offset: 3px; }
.tg__btn.dim { opacity: .4; }
.tg__btn:disabled { cursor: default; }
.tg__next { margin-top: 16px; width: 100%; padding: 13px; background: var(--ink); color: var(--amber); border: var(--bd); border-radius: 12px; font-family: var(--mono); font-weight: 700; font-size: .9rem; cursor: pointer; box-shadow: var(--sh); transition: transform .15s var(--ease), box-shadow .15s var(--ease); }
.tg__next:hover { transform: translate(-2px,-2px); box-shadow: var(--sh-lg); }
.tg__next:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--ink); }
.tg__hint { margin-top: 16px; font-family: var(--mono); font-size: .72rem; color: var(--ink-soft); text-align: center; }

/* ═══════════ VOICES ═══════════ */
.voices { background: var(--paper); }
.voices .section-head { text-align: center; margin-left: auto; margin-right: auto; }
.voices .section-head .eyebrow { justify-content: center; }
.voices__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.voice {
  border: var(--bd); border-radius: 18px; padding: 28px;
  display: flex; flex-direction: column; gap: 22px; box-shadow: var(--sh);
  transition: box-shadow .2s var(--ease);
}
.voice:hover { box-shadow: var(--sh-lg); }
.voice--pink  { background: var(--pink);  color:#fff; }
.voice--lime  { background: var(--lime);  color:var(--ink); }
.voice--blue  { background: var(--blue);  color:#fff; }
.voice--amber { background: var(--amber); color:var(--ink); }
.voice blockquote { font-size: 1.18rem; line-height: 1.42; letter-spacing: -0.01em; font-weight: 600; }
.voice figcaption { display: flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: .8rem; font-weight: 700; margin-top: auto; }
.ava {
  width: 32px; height: 32px; border-radius: 50%; background: #fff; border: 2px solid var(--ink);
  display: flex; align-items: center; justify-content: center; font-size: .76rem; font-weight: 700; color: var(--ink); flex-shrink: 0;
}
@media (max-width: 820px){ .voices__grid{ grid-template-columns: 1fr; } }

/* founding perks (reuses voice cards, 4-up) */
.perks-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
.perk-val {
  font-family: var(--display); font-weight: 700; display: block;
  font-size: clamp(2.6rem, 4vw, 3.2rem); line-height: .9;
  letter-spacing: -0.03em; margin-bottom: 14px;
}
@media (max-width: 980px){ .perks-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .perks-grid{ grid-template-columns: 1fr; } }

/* ═══════════ STATS ═══════════ */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  max-width: 100%; margin: 0; padding: 0; border-block: 2.5px solid var(--ink);
}
.stat { padding: clamp(40px,7vw,70px) 28px; border-right: 2.5px solid var(--ink); text-align: center; }
.stat:last-child { border-right: none; }
.stat--violet { background: var(--violet); color:#fff; }
.stat--amber  { background: var(--amber);  color:var(--ink); }
.stat--coral  { background: var(--coral);  color:#fff; }
.stat--blue   { background: var(--blue);   color:#fff; }
.stat b { font-size: clamp(2.6rem, 6vw, 4.4rem); letter-spacing: -0.03em; display: block; font-variant-numeric: tabular-nums; line-height: 1; }
.stat span { font-family: var(--mono); font-size: .82rem; font-weight: 700; margin-top: 12px; display: block; opacity: .9; }
@media (max-width: 720px){ .stats{ grid-template-columns: 1fr 1fr; } .stat:nth-child(2){ border-right: none; } .stat:nth-child(1),.stat:nth-child(2){ border-bottom: 2.5px solid var(--ink); } .stat:last-child{ grid-column: 1 / -1; border-right: none; } }
@media (max-width: 440px){ .stats{ grid-template-columns: 1fr; } .stat, .stat:nth-child(2){ border-right: none; border-bottom: 2.5px solid var(--ink); } .stat:last-child{ grid-column: 1; border-bottom: none; } }

/* ═══════════ CTA (violet block) ═══════════ */
.cta { background: var(--violet); padding: 0; text-align: center; position: relative; overflow: hidden; border-bottom: 2.5px solid var(--ink); }
.cta::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(#fff 1.5px, transparent 1.5px); background-size: 30px 30px; opacity: .1;
}
.cta__content { position: relative; z-index: 1; max-width: 740px; margin: 0 auto; padding: clamp(80px,13vw,150px) clamp(20px,6vw,80px); }
.cta h2 { font-size: clamp(2.5rem, 6.5vw, 4.8rem); line-height: 1; letter-spacing: -0.03em; color: #fff; }
.cta em { color: var(--amber); }
.cta__content > p { margin-top: 18px; color: rgba(255,255,255,.85); font-size: 1.1rem; }
.cta__form {
  margin: 36px auto 0; display: flex; gap: 10px; max-width: 480px;
  position: relative; z-index: 1;
}
.cta__form input {
  flex: 1; min-width: 0; background: #fff; border: var(--bd); box-shadow: var(--sh);
  border-radius: 12px; outline: none; color: var(--ink); font-size: 1rem; padding: 16px 18px; font-family: inherit;
}
.cta__form input::placeholder { color: rgba(21,18,11,.4); }
.cta__form button {
  border: var(--bd); cursor: pointer; padding: 16px 26px; border-radius: 12px;
  background: var(--amber); color: var(--ink); box-shadow: var(--sh);
  font-weight: 700; font-size: .98rem; font-family: inherit; white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.cta__form button:hover { transform: translate(-2px,-2px); box-shadow: var(--sh-lg); }
.cta__form button:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--ink); }
.cta__note { margin-top: 20px; color: rgba(255,255,255,.8); font-family: var(--mono); font-size: .84rem; font-weight: 700; position: relative; z-index: 1; }
.cta__note.ok { color: var(--amber); }
@media (max-width: 520px){ .cta__form{ flex-direction: column; } .cta__form button{ width: 100%; } }

/* ═══════════ FOOTER (ink) ═══════════ */
.footer { padding: 70px clamp(20px,6vw,80px) 38px; background: var(--ink); color: var(--paper); }
.footer__top { max-width: var(--maxw); margin: 0 auto; display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 38px; }
.footer__brand { font-size: 2.1rem; letter-spacing: -0.03em; font-weight: 700; }
.footer__brand span { color: var(--amber); }
.footer__tag { color: rgba(253,244,227,.6); margin-top: 6px; font-size: .92rem; }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; align-items: flex-start; font-family: var(--mono); }
.footer__links a { color: rgba(253,244,227,.7); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; transition: color .25s; }
.footer__links a:hover { color: var(--amber); }
.footer__base { max-width: var(--maxw); margin: 0 auto; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px; border-top: 1px solid rgba(253,244,227,.15); color: rgba(253,244,227,.5); font-family: var(--mono); font-size: .76rem; }
.footer__base a { color: rgba(253,244,227,.5); transition: color .25s; }
.footer__base a:hover { color: var(--amber); }
@media (max-width: 600px){
  .footer__top { flex-direction: column; gap: 28px; }
  .footer__links { gap: 16px; }
  .footer__base { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* ═══════════ REVEAL ═══════════ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation: none !important; }
}
