/* OnlyPools — stylesheet. Cream, blush, lavender, one hot pink. Everything rounded. uwu */
:root {
  --cream: #fff3f9;
  --cream-2: #ffe9f3;
  --paper: #ffffff;
  --ink: #3b2a4a;
  --mute: #8a7a99;
  --dim: #b9adc6;
  --line: rgba(59, 42, 74, 0.10);
  --line-2: rgba(59, 42, 74, 0.18);
  --blush: #ffb3dc;
  --pink: #ff7ec2;
  --hot: #ff4fa3;
  --lav: #d7c6ff;
  --sky: #9fd8ff;
  --mint: #b8f2d6;
  --peach: #ffc9a8;
  --up: #2fb57a;
  --down: #ff5c7a;
  --display: 'Fredoka', 'Nunito', system-ui, sans-serif;
  --body: 'Nunito', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  --r: 26px;
  --r-sm: 14px;
  --max: 1120px;
  --shadow: 0 10px 30px rgba(255, 79, 163, 0.12), 0 2px 6px rgba(59, 42, 74, 0.06);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  background-image:
    radial-gradient(circle at 12% 8%, rgba(215, 198, 255, .45), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(255, 179, 220, .45), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(159, 216, 255, .30), transparent 40%);
  background-attachment: fixed;
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><path d='M12 21C4 14 5 7 12 9c7-2 8 5 0 12z' fill='%23ff4fa3' stroke='%23fff' stroke-width='1.5'/></svg>") 12 12, auto;
}
a { color: inherit; text-decoration: none; }
b, strong { font-weight: 800; }
code { font-family: var(--mono); font-size: 0.86em; }
img, svg { max-width: 100%; }
button, input { font: inherit; color: inherit; }
h1, h2, h3 { font-family: var(--display); font-weight: 700; letter-spacing: -0.01em; margin: 0; line-height: 1.1; }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: 22px; }
p { margin: 0; }

.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 12px; border-radius: 8px; }
.skip:focus { left: 8px; z-index: 99; }

/* ---------- top bar: brand left, search dead centre, links + actions right ---------- */
.top {
  position: sticky; top: 0; z-index: 30;
  display: grid; grid-template-columns: 1fr minmax(0, 480px) 1fr; align-items: center; gap: 18px;
  padding: 12px 22px;
  background: rgba(255, 243, 249, 0.80);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand { grid-column: 1; justify-self: start; display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 700; font-size: 22px; }
.brand .mark, .foot-brand .mark { width: 34px; height: 34px; }
.brand-word span { color: var(--hot); }
.search {
  grid-column: 2; width: 100%;
  display: flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px;
  background: var(--paper); border: 1px solid var(--line-2);
  color: var(--dim); font-size: 14px; overflow: hidden; white-space: nowrap;
  box-shadow: 0 2px 10px rgba(255, 79, 163, .06);
}
.search-ico { font-size: 16px; color: var(--mute); }
.top-right { grid-column: 3; justify-self: end; display: flex; align-items: center; gap: 20px; }
.top-links { display: flex; gap: 20px; font-weight: 700; font-size: 15px; color: var(--mute); }
.top-links a:hover, .top-links a[aria-current="page"] { color: var(--hot); }
.top-actions { display: flex; gap: 8px; }
@media (max-width: 1100px) { .top-right { gap: 12px; } .top-links { gap: 14px; } }
@media (max-width: 900px) { .top { grid-template-columns: auto 1fr; gap: 10px; } .search, .top-links { display: none; } .top-right { grid-column: 2; } }

.search { position: relative; overflow: visible; }
.search-input { flex: 1; min-width: 0; border: 0; background: transparent; outline: none; font: inherit; font-weight: 700; color: var(--ink); }
.search-input::placeholder { color: var(--dim); font-weight: 600; }
.search-input::-webkit-search-cancel-button { -webkit-appearance: none; }
.search:focus-within { border-color: var(--hot); box-shadow: 0 0 0 3px rgba(255, 79, 163, .15); }
.search-kbd { font-family: var(--mono); font-size: 11px; color: var(--dim); border: 1px solid var(--line-2); border-radius: 6px; padding: 1px 6px; }
.search:focus-within .search-kbd { display: none; }
.search-results {
  position: absolute; left: 0; right: 0; top: calc(100% + 8px);
  background: var(--paper); border: 1px solid var(--line-2); border-radius: 18px; box-shadow: var(--shadow);
  padding: 6px; max-height: 420px; overflow: auto; white-space: normal; z-index: 40;
}
.sr-group { font-size: 11px; font-weight: 800; color: var(--dim); text-transform: uppercase; letter-spacing: .05em; padding: 8px 12px 4px; }
.sr-item {
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 10px; align-items: center;
  width: 100%; text-align: left; padding: 8px 10px; border: 0; border-radius: 12px; background: transparent; cursor: pointer; color: var(--ink);
}
.sr-item:hover, .sr-item[aria-selected="true"] { background: var(--cream); }
.sr-item .token-img { width: 34px; height: 34px; border-radius: 10px; }
.sr-item .avatar { width: 34px; height: 34px; border-width: 2px; }
.sr-main { display: flex; flex-direction: column; min-width: 0; line-height: 1.25; }
.sr-main b { font-family: var(--display); font-weight: 600; font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sr-main b small { font-family: var(--body); font-weight: 700; color: var(--mute); font-size: 12px; }
.sr-main > small { font-size: 12px; color: var(--mute); font-weight: 700; }
.sr-num { display: flex; flex-direction: column; align-items: flex-end; font-family: var(--mono); font-size: 12px; font-weight: 600; line-height: 1.25; }
.sr-num small { color: var(--mute); font-size: 11px; }
.sr-empty { padding: 12px 14px; font-size: 14px; color: var(--mute); font-weight: 700; }
.sr-empty a { color: var(--hot); }
.board-row.flash { animation: flash 1.8s ease-out; }
@keyframes flash { 0% { background: rgba(255, 79, 163, .22); } 100% { background: transparent; } }

.tag-opted { display: inline-block; vertical-align: middle; margin-left: 4px; padding: 2px 8px; border-radius: 999px; background: var(--mint); color: #1f6a47; font-family: var(--body); font-size: 10px; font-weight: 800; letter-spacing: .02em; white-space: nowrap; }
.tag-simps { display: inline-block; vertical-align: middle; margin-left: 4px; padding: 2px 8px; border-radius: 999px; background: var(--hot); color: #fff; font-family: var(--body); font-size: 10px; font-weight: 800; letter-spacing: .02em; white-space: nowrap; }
.sr-why { font-size: 10px; font-weight: 800; color: var(--hot); text-transform: uppercase; letter-spacing: .05em; }
.sr-launch { display: block; margin: 6px 4px 2px; padding: 10px 12px; border-radius: 12px; background: var(--cream); color: var(--hot); font-family: var(--display); font-weight: 600; font-size: 14px; text-align: center; }
.sr-launch:hover { background: var(--cream-2); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: 999px; border: 1px solid transparent;
  font-family: var(--display); font-weight: 600; font-size: 16px; line-height: 1;
  cursor: pointer; transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.98); }
.btn-hot { background: linear-gradient(135deg, var(--hot), var(--pink)); color: #fff; box-shadow: 0 8px 20px rgba(255, 79, 163, .30); }
.btn-hot:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(255, 79, 163, .38); }
.btn-ghost { background: var(--paper); border-color: var(--line-2); color: var(--ink); }
.btn-ghost:hover { border-color: var(--hot); color: var(--hot); }
.btn-sm { padding: 9px 14px; font-size: 14px; }
.btn-wide { width: 100%; padding: 16px 22px; font-size: 18px; }

.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--paper); border: 1px solid var(--line);
  font-size: 13px; font-weight: 800; color: var(--mute);
}
.pill-hot { background: var(--hot); border-color: var(--hot); color: #fff; }
.eyebrow { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }

/* ---------- hero ---------- */
.hero { position: relative; max-width: var(--max); margin: 0 auto; padding: 70px 22px 40px; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: visible; }
.blob { position: absolute; border-radius: 50%; filter: blur(50px); opacity: .55; animation: drift 14s ease-in-out infinite alternate; }
.b1 { width: 380px; height: 380px; background: var(--blush); left: -120px; top: -80px; }
.b2 { width: 320px; height: 320px; background: var(--lav); right: -60px; top: 40px; animation-delay: -5s; }
.b3 { width: 260px; height: 260px; background: var(--sky); right: 30%; bottom: -100px; animation-delay: -9s; }
@keyframes drift { from { transform: translate(0, 0) scale(1); } to { transform: translate(30px, 24px) scale(1.08); } }

.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } .hero-mascot { order: -1; } }
.lede { font-size: clamp(42px, 7vw, 84px); font-weight: 700; line-height: .98; }
.lede em { font-style: normal; color: var(--hot); position: relative; }
.lede em::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: .06em; height: .18em;
  background: var(--blush); border-radius: 999px; z-index: -1;
}
.sub { margin-top: 18px; font-size: 18px; color: var(--mute); max-width: 540px; }
.whisper { margin-top: 10px; font-style: italic; color: var(--dim); }
.cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, auto); gap: 8px 28px; margin-top: 34px; width: fit-content;
}
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats b { font-family: var(--display); font-size: 26px; font-weight: 700; }
.hero-stats span { font-size: 13px; color: var(--mute); font-weight: 700; text-transform: lowercase; }
@media (max-width: 520px) { .hero-stats { grid-template-columns: repeat(2, auto); } }

.hero-mascot { position: relative; display: flex; flex-direction: column; align-items: center; }
.mascot { width: min(100%, 380px); filter: drop-shadow(0 18px 30px rgba(255, 79, 163, .18)); animation: bob 4s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.mascot .wave { animation: wave 3s ease-in-out infinite; }
@keyframes wave { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(-10px); } }
.mascot .heart { transform-origin: center; animation: pulse 1.6s ease-in-out infinite; }
.mascot .heart-2 { animation-delay: -.8s; }
@keyframes pulse { 0%, 100% { opacity: .9; } 50% { opacity: .4; } }
.mascot [data-eye] { transition: transform .08s linear; }
.mascot-tag {
  margin-top: 6px; padding: 6px 12px; border-radius: 999px;
  background: var(--paper); border: 1px solid var(--line); font-size: 13px; color: var(--mute); font-weight: 700;
}

/* ---------- sections ---------- */
.section { max-width: var(--max); margin: 0 auto; padding: 70px 22px; }
.section-soft { max-width: none; background: rgba(255, 255, 255, 0.55); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-soft > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.section-head { max-width: 680px; margin-bottom: 34px; }
.kicker { font-family: var(--display); font-weight: 600; color: var(--hot); font-size: 15px; margin-bottom: 8px; letter-spacing: .02em; }
.note { margin-top: 20px; font-size: 14px; color: var(--mute); }

.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow); }

/* ---------- creator cards ---------- */
.creators { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .creators { grid-template-columns: 1fr; } }
.creator {
  position: relative; overflow: hidden;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}
.creator:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(255, 79, 163, .18); }
.creator-banner { height: 92px; background: var(--banner, linear-gradient(120deg, var(--blush), var(--lav))); position: relative; }
.creator-banner::after {
  content: var(--stamp, ''); position: absolute; right: 14px; top: 12px;
  font-family: var(--display); font-weight: 700; font-size: 12px; color: #fff; opacity: .9;
  background: rgba(59, 42, 74, .28); padding: 4px 10px; border-radius: 999px;
}
.creator-body { padding: 0 20px 20px; }
.creator-id { display: flex; align-items: flex-end; gap: 12px; margin-top: -30px; }
.avatar {
  width: 68px; height: 68px; border-radius: 50%; border: 4px solid var(--paper);
  background: var(--av, var(--blush)); display: grid; place-items: center; flex: none;
  box-shadow: 0 4px 12px rgba(59, 42, 74, .12);
}
.avatar svg { width: 64%; height: 64%; }
.avatar-sm { width: 44px; height: 44px; border-width: 3px; }
.creator-name { font-family: var(--display); font-weight: 700; font-size: 22px; line-height: 1; display: flex; align-items: center; gap: 6px; }
.verified { color: var(--hot); font-size: 16px; }
.creator-handle { font-size: 14px; color: var(--mute); font-weight: 700; }
.creator-bio { margin-top: 12px; font-size: 15px; color: var(--mute); min-height: 44px; }

.creator-price { display: flex; align-items: baseline; gap: 8px; margin-top: 14px; }
.creator-price b { font-family: var(--display); font-size: 34px; font-weight: 700; color: var(--hot); }
.creator-price span { font-size: 13px; color: var(--mute); font-weight: 700; }
.creator-price .quote { margin-left: auto; font-family: var(--mono); font-size: 12px; padding: 4px 8px; border-radius: 8px; background: var(--cream-2); color: var(--ink); }

.creator-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 14px; }
.creator-stats div { background: var(--cream); border-radius: var(--r-sm); padding: 8px 10px; }
.creator-stats b { display: block; font-family: var(--display); font-size: 18px; font-weight: 700; }
.creator-stats span { font-size: 11px; color: var(--mute); font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }

/* locked content tiles: the joke is nothing is behind them */
.locked { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 14px; }
.tile {
  position: relative; aspect-ratio: 1; border-radius: 12px; overflow: hidden;
  background: var(--tile, linear-gradient(135deg, var(--blush), var(--lav)));
}
.tile::before {
  content: ''; position: absolute; inset: -20%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.7), transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(255,255,255,.4), transparent 45%);
  filter: blur(10px);
}
.tile svg { position: absolute; left: 50%; top: 50%; width: 22px; height: 22px; transform: translate(-50%, -50%); color: rgba(255,255,255,.95); filter: drop-shadow(0 2px 4px rgba(59,42,74,.25)); }
.tile-label { position: absolute; left: 6px; bottom: 5px; font-size: 10px; font-weight: 800; color: #fff; text-shadow: 0 1px 3px rgba(59,42,74,.4); }

.creator .btn-wide { margin-top: 14px; }
.creator-fine { margin-top: 8px; font-size: 12px; color: var(--dim); text-align: center; }

/* ---------- feed ---------- */
.feed-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; align-items: start; }
@media (max-width: 860px) { .feed-wrap { grid-template-columns: 1fr; } }
.feed { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.feed li {
  display: flex; align-items: center; gap: 12px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 10px 14px;
  animation: slide .35s ease both;
}
@keyframes slide { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.feed .avatar { width: 34px; height: 34px; border-width: 2px; }
.feed-text { flex: 1; font-size: 15px; }
.feed-text b { color: var(--hot); }
.feed-time { font-size: 12px; color: var(--dim); font-weight: 700; font-family: var(--mono); }

/* ---------- how ---------- */
.how { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 860px) { .how { grid-template-columns: 1fr; } }
.how-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; box-shadow: var(--shadow); }
.how-ico { font-family: var(--display); font-size: 30px; color: var(--hot); margin-bottom: 8px; }
.how-card p { margin-top: 8px; color: var(--mute); font-size: 15px; }

/* ---------- checkout ---------- */
.checkout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 860px) { .checkout { grid-template-columns: 1fr; } }
.checkout-perks { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; font-weight: 700; color: var(--ink); }
.form { padding: 22px; }
.form-head { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; border-bottom: 1px dashed var(--line-2); margin-bottom: 16px; }
.form-title { font-family: var(--display); font-weight: 700; font-size: 18px; }
.form-sub { font-size: 13px; color: var(--mute); font-weight: 700; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field > span { font-size: 13px; font-weight: 800; color: var(--mute); text-transform: uppercase; letter-spacing: .04em; }
.field input {
  padding: 13px 14px; border-radius: 14px; border: 1.5px solid var(--line-2); background: var(--cream);
  font-size: 16px; font-weight: 700; outline: none; transition: border-color .12s;
}
.field input:focus { border-color: var(--hot); background: #fff; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px 8px 8px; border-radius: 999px; border: 1.5px solid var(--line-2); background: var(--cream);
  font-weight: 800; font-size: 14px; cursor: pointer; transition: all .12s;
}
.chip .avatar { width: 26px; height: 26px; border-width: 2px; }
.chip small { color: var(--mute); font-weight: 700; }
.chip[aria-pressed="true"] { border-color: var(--hot); background: #fff; box-shadow: 0 0 0 3px rgba(255, 79, 163, .15); }
.receipt { background: var(--cream); border-radius: 16px; padding: 12px 14px; margin: 6px 0 14px; }
.receipt-row { display: flex; justify-content: space-between; font-size: 14px; padding: 5px 0; color: var(--mute); }
.receipt-row b { color: var(--ink); font-family: var(--mono); font-weight: 600; font-size: 13px; }
.receipt-total { border-top: 1px dashed var(--line-2); margin-top: 4px; padding-top: 9px; }
.receipt-total b { color: var(--hot); font-family: var(--display); font-size: 18px; font-weight: 700; }
.form-fine { margin-top: 10px; font-size: 12px; color: var(--dim); text-align: center; }

/* ---------- faq ---------- */
.faq { display: flex; flex-direction: column; gap: 10px; max-width: 760px; }
details { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 0 20px; }
summary { cursor: pointer; padding: 16px 0; font-family: var(--display); font-weight: 600; font-size: 18px; list-style: none; display: flex; justify-content: space-between; align-items: center; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '♡'; color: var(--hot); transition: transform .2s; }
details[open] summary::after { transform: rotate(180deg); }
details p { padding: 0 0 18px; color: var(--mute); }

/* ---------- footer ---------- */
.foot { border-top: 1px solid var(--line); padding: 36px 22px 50px; }
.foot-in { max-width: var(--max); margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; gap: 16px 30px; }
.foot-brand { display: flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 700; font-size: 18px; }
.foot-note { flex: 1; font-size: 13px; color: var(--mute); min-width: 260px; }
.foot-links { display: flex; gap: 18px; font-weight: 800; font-size: 14px; color: var(--mute); }
.foot-links a:hover { color: var(--hot); }

/* ---------- toast + hearts ---------- */
.toast {
  position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 20px);
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 999px;
  font-weight: 700; font-size: 14px; opacity: 0; pointer-events: none; transition: all .2s; z-index: 50;
}
.toast.on { opacity: 1; transform: translate(-50%, 0); }
.hearts { position: fixed; inset: 0; pointer-events: none; z-index: 40; overflow: hidden; }
.hearts span {
  position: absolute; font-size: 18px; color: var(--hot); animation: floatup 1.1s ease-out forwards; will-change: transform, opacity;
}
@keyframes floatup { from { opacity: 1; transform: translate(-50%, 0) scale(.6); } to { opacity: 0; transform: translate(-50%, -90px) scale(1.3) rotate(var(--rot, 0deg)); } }

/* ---------- hero with the feed blended in on the left ---------- */
.hero-3 { padding-top: 40px; }
.hero-3 .lede { font-size: clamp(40px, 4.6vw, 68px); }
.hero-3 .sub { font-size: 17px; }
.hero-grid-3 { grid-template-columns: 300px minmax(0, 1fr) .8fr; gap: 36px; align-items: center; }
@media (max-width: 1100px) { .hero-grid-3 { grid-template-columns: minmax(0, 1fr) .8fr; } .hero-feed { grid-column: 1 / -1; order: 3; } }
@media (max-width: 860px) { .hero-grid-3 { grid-template-columns: 1fr; } }
.hero-feed { position: relative; min-width: 0; }
.hero-feed-head { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800; color: var(--mute); text-transform: lowercase; letter-spacing: .02em; margin-bottom: 10px; padding-left: 4px; }
.hero-feed-head .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--hot); box-shadow: 0 0 0 0 rgba(255,79,163,.5); animation: ping 1.8s ease-out infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(255,79,163,.5); } 100% { box-shadow: 0 0 0 10px rgba(255,79,163,0); } }
.feed-soft { max-height: 420px; overflow: hidden; gap: 6px;
  -webkit-mask-image: linear-gradient(to bottom, #000 0, #000 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0, #000 70%, transparent 100%); }
.feed-soft li { background: rgba(255,255,255,.55); border-color: rgba(59,42,74,.06); padding: 8px 12px; box-shadow: none; backdrop-filter: blur(6px); }
.feed-soft .feed-text { font-size: 13px; }
.feed-soft .feed-time { font-size: 11px; }
.feed-soft .avatar { width: 28px; height: 28px; }
.feed-soft li:nth-child(n+5) { opacity: .7; }
.feed-soft li:nth-child(n+7) { opacity: .45; }
@media (max-width: 1100px) { .feed-soft { max-height: 240px; } }

/* ---------- just launched strip ---------- */
.fresh-wrap { max-width: var(--max); margin: 0 auto; padding: 10px 22px 0; }
.fresh-head { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800; color: var(--mute); text-transform: lowercase; letter-spacing: .02em; margin-bottom: 10px; padding-left: 4px; }
.fresh-head .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--hot); animation: ping 1.8s ease-out infinite; }
.fresh { display: flex; gap: 10px; padding-top: 8px; margin-top: -8px; }
.fresh > .fresh-card { flex: 1 1 0; min-width: 0; }
.fresh-card {
  position: relative; display: flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 8px; border-radius: 16px; background: var(--paper); border: 1px solid var(--line);
  box-shadow: var(--shadow); transition: transform .12s, box-shadow .12s;
}
.fresh-card:hover { transform: translateY(-2px); }
.fresh-card.is-new { animation: popin .5s cubic-bezier(.2, 1.4, .4, 1) both; }
@keyframes popin { from { opacity: 0; transform: translateX(-16px) scale(.94); } to { opacity: 1; transform: none; } }
.fresh-card .token-img { width: 36px; height: 36px; border-radius: 11px; }
.fresh-main { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.fresh-main b { font-family: var(--display); font-weight: 600; font-size: 15px; }
.fresh-main small { font-size: 11px; color: var(--mute); font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 120px; }
.fresh-meta { margin-left: auto; display: flex; flex-direction: column; align-items: center; gap: 2px; }
.fresh-meta .avatar { width: 22px; height: 22px; border-width: 2px; }
.fresh-meta small { font-family: var(--mono); font-size: 10px; color: var(--mute); font-weight: 600; }
.fresh-simps { position: absolute; top: -6px; right: -4px; width: 20px; height: 20px; border-radius: 50%; background: var(--hot); color: #fff; font-size: 11px; display: grid; place-items: center; box-shadow: 0 2px 6px rgba(255,79,163,.35); }

/* ---------- board tabs ---------- */
.board-tabs { display: inline-flex; gap: 4px; padding: 4px; border-radius: 999px; background: var(--paper); border: 1px solid var(--line); margin-bottom: 10px; }
.board-tabs button { padding: 7px 14px; border-radius: 999px; border: 0; background: transparent; font-family: var(--display); font-weight: 600; font-size: 14px; color: var(--mute); cursor: pointer; transition: all .12s; }
.board-tabs button:hover { color: var(--hot); }
.board-tabs button[aria-selected="true"] { background: var(--hot); color: #fff; box-shadow: 0 4px 12px rgba(255,79,163,.3); }
.board-empty { padding: 28px; text-align: center; color: var(--mute); font-weight: 700; }
.board-more { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-top: 18px; }
.board-more small { font-size: 12px; color: var(--mute); font-weight: 700; }
.board-empty a { color: var(--hot); }

/* ---------- token cards ---------- */
.tokens-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.tokens-head .chips .chip .avatar { width: 22px; height: 22px; border-width: 2px; }
.filters { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.filters-label { font-size: 12px; font-weight: 800; color: var(--mute); text-transform: uppercase; letter-spacing: .06em; margin-right: 2px; }
.fchip {
  display: inline-flex; align-items: center; gap: 7px; padding: 9px 14px; border-radius: 999px;
  border: 1.5px solid var(--line-2); background: var(--paper); font-family: var(--display); font-weight: 600; font-size: 14px; color: var(--ink);
  cursor: pointer; transition: all .12s;
}
.fchip:hover { border-color: var(--pink); }
.fchip[aria-pressed="true"], .fchip.is-on { border-color: var(--hot); background: var(--hot); color: #fff; box-shadow: 0 6px 16px rgba(255,79,163,.28); }
.fchip-ico { font-size: 13px; line-height: 1; display: inline-flex; }
.fchip-ico .avatar { width: 20px; height: 20px; border-width: 2px; margin: -3px 0; }
.fchip-caret { font-size: 11px; opacity: .7; margin-left: 2px; }
.fsel { position: relative; }
.fmenu {
  position: absolute; right: 0; top: calc(100% + 8px); min-width: 250px; z-index: 20;
  background: var(--paper); border: 1px solid var(--line-2); border-radius: 18px; box-shadow: var(--shadow); padding: 6px;
}
@media (max-width: 860px) { .fmenu { right: auto; left: 0; } }
.fmenu-item {
  display: flex; align-items: center; gap: 10px; width: 100%; text-align: left;
  padding: 8px 10px; border: 0; border-radius: 12px; background: transparent; cursor: pointer; color: var(--ink);
}
.fmenu-item:hover { background: var(--cream); }
.fmenu-item[aria-pressed="true"] { background: var(--cream-2); }
.fmenu-item[aria-pressed="true"]::after { content: '✓'; margin-left: auto; color: var(--hot); font-weight: 900; }
.fmenu-item .avatar { width: 30px; height: 30px; border-width: 2px; }
.fmenu-all { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--cream-2); color: var(--hot); font-weight: 900; }
.fmenu-item > span:last-of-type { display: flex; flex-direction: column; line-height: 1.2; }
.fmenu-item b { font-family: var(--display); font-weight: 600; font-size: 15px; }
.fmenu-item small { font-size: 12px; color: var(--mute); font-weight: 700; }
.tag-grad { display: inline-block; vertical-align: middle; margin-right: 4px; padding: 2px 8px; border-radius: 999px; background: var(--lav); color: var(--ink); font-family: var(--body); font-size: 10px; font-weight: 800; letter-spacing: .02em; white-space: nowrap; }
.tgrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
@media (max-width: 860px) { .tgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .tgrid { grid-template-columns: 1fr; } }
.tcard {
  position: relative; display: flex; flex-direction: column; gap: 10px;
  padding: 16px; border-radius: 22px; background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .15s ease; min-width: 0;
}
.tcard:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(255, 79, 163, .16); }
.tcard-rank { position: absolute; top: 12px; right: 14px; font-family: var(--display); font-weight: 700; font-size: 13px; color: var(--dim); }
.tgrid .tcard:first-child .tcard-rank { color: var(--hot); }
.tcard-id { display: flex; align-items: center; gap: 12px; min-width: 0; padding-right: 30px; }
.token-img { width: 38px; height: 38px; border-radius: 12px; flex: none; display: grid; place-items: center; color: #fff; font-family: var(--display); font-weight: 700; text-shadow: 0 1px 2px rgba(59,42,74,.3); }
.token-img-lg { width: 52px; height: 52px; border-radius: 16px; font-size: 20px; }
.tcard-name { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.tcard-name b { font-family: var(--display); font-weight: 600; font-size: 17px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tcard-name small { font-size: 12px; color: var(--mute); font-weight: 800; }
.tcard-pair { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--mute); font-weight: 700; }
.tcard-pair .avatar { width: 22px; height: 22px; border-width: 2px; }
.tcard-pair code { font-size: 11px; background: var(--cream-2); padding: 2px 6px; border-radius: 6px; color: var(--ink); }
.tcard-hang { position: absolute; top: -12px; left: 14px; display: flex; gap: 6px; z-index: 2; }
.tcard:has(.tcard-hang) { padding-top: 24px; }   /* tags sit in their own strip above the logo */
.tcard-hang .tag-simps, .tcard-hang .tag-grad {
  margin: 0; padding: 4px 10px; font-size: 10px; border-radius: 8px 8px 10px 10px;
  box-shadow: 0 3px 8px rgba(59, 42, 74, .14); border: 2px solid var(--paper);
}
.tcard-hang .tag-grad { background: var(--lav); }
.tcard-hang .tag-simps { background: var(--hot); }
.tgrid { padding-top: 6px; }
.tcard-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.tcard-stats > div { background: var(--cream); border-radius: 12px; padding: 8px 10px; display: flex; flex-direction: column; min-width: 0; line-height: 1.2; }
.tcard-stats span { font-size: 10px; font-weight: 800; color: var(--mute); text-transform: uppercase; letter-spacing: .05em; }
.tcard-stats b { font-family: var(--mono); font-weight: 600; font-size: 13px; margin-top: 2px; white-space: nowrap; }
.tcard-stats small { font-size: 10px; color: var(--mute); font-weight: 700; }
.tcard-stats .up { color: var(--up); }
.tcard-stats .down { color: var(--down); }
.tcard-curve { display: flex; flex-direction: column; gap: 4px; }
.tcard-curve .curve-bar { width: 100%; }
.tcard-curve small { font-size: 11px; color: var(--mute); font-weight: 700; }
.curve-bar { display: block; height: 8px; border-radius: 999px; background: var(--cream-2); border: 1px solid var(--line); overflow: hidden; }
.curve-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--pink), var(--hot)); border-radius: 999px; }
.tcard.flash { animation: flash 1.8s ease-out; }
@keyframes flash { 0% { background: rgba(255, 79, 163, .22); } 100% { background: var(--paper); } }

/* ---------- docs page ---------- */
.docs { max-width: var(--max); margin: 0 auto; padding: 44px 22px 80px; }
.docs h1 { font-size: clamp(32px, 5vw, 52px); }
.docs-section { margin-top: 44px; }
.docs-section h2 { font-size: 26px; margin-bottom: 16px; }
.docs-prose { max-width: 720px; display: flex; flex-direction: column; gap: 12px; color: var(--mute); }
.docs-prose p { font-size: 17px; }
.note a { color: var(--hot); font-weight: 800; }

@media (prefers-reduced-motion: reduce) {
  .blob, .mascot, .mascot .wave, .mascot .heart, .feed li { animation: none; }
  .hearts { display: none; }
}
