/* Quadpad. Pink and white, from the logo: four pink circles around a white square. A white page
 * with pink bands, a timeline instead of step cards, a 2x2 of legs instead of tabs, a stock ticker
 * that rolls, and reveals that arrive once as you scroll. */

:root {
  --pink: #fb5c97;
  --pink-2: #e94a86;
  --pink-3: #c9346c;
  --blush: #fff1f6;
  --blush-2: #ffe1ec;
  --white: #ffffff;
  --ink: #1b0b13;
  --ink-2: #6f505f;
  --ink-3: #a58a96;
  --line: #f3d4e0;
  --sol: #9b6bff;
  --rbh: #22b573;
  --bnb: #e8a900;
  --base: #2f6bff;
  --w-70: rgba(255, 255, 255, 0.78);
  --w-50: rgba(255, 255, 255, 0.55);
  --r: 28px;
  --r-sm: 18px;
  --pill: 999px;
  --display: "Manrope", "Inter", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, sans-serif;
  --mono: "DM Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --wrap: 1180px;
  --pad: clamp(18px, 4vw, 48px);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; background: var(--white); color: var(--ink); font: 400 16px/1.6 var(--body); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--pink); color: var(--white); }
.wrap { width: min(var(--wrap), 100% - 2 * var(--pad)); margin: 0 auto; }

/* ── type ─────────────────────────────────────────────────────────── */
.display { font-family: var(--display); font-weight: 700; letter-spacing: -0.035em; line-height: 1.02; margin: 0; text-wrap: balance; }
.t-hero { font-size: clamp(42px, 6vw, 84px); line-height: 0.98; letter-spacing: -0.045em; }
.t-1 { font-size: clamp(32px, 4.4vw, 58px); }
.t-2 { font-size: clamp(26px, 2.8vw, 36px); letter-spacing: -0.025em; }
.t-3 { font-size: clamp(19px, 1.7vw, 23px); letter-spacing: -0.02em; }
.eyebrow { font: 600 13px/1 var(--body); letter-spacing: 0.08em; text-transform: uppercase; color: var(--pink-2); margin: 0 0 16px; }
.lead { font-size: clamp(16px, 1.25vw, 19px); color: var(--ink-2); max-width: 54ch; margin: 18px 0 0; }
.body { color: var(--ink-2); max-width: 60ch; }
.center { text-align: center; }
.center .lead, .center .body { margin-left: auto; margin-right: auto; }
.mono { font-family: var(--mono); font-size: 13px; }
.num { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.pink-word { color: var(--pink); }

/* ── nav ─────────────────────────────────────────────────────────── */
.nav { position: sticky; top: 0; z-index: 50; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; padding: 16px var(--pad); background: rgba(255,255,255,.72); backdrop-filter: blur(16px) saturate(1.3); -webkit-backdrop-filter: blur(16px) saturate(1.3); border-bottom: 1px solid transparent; transition: padding 0.35s var(--ease), border-color 0.35s; }
.nav.stuck { padding: 10px var(--pad); border-bottom-color: var(--line); }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand img { height: 26px; width: auto; }
.brand span { font-family: var(--display); font-weight: 800; letter-spacing: -0.03em; font-size: 21px; }
.nav-mid { display: inline-flex; gap: 4px; justify-self: center; }
.nav-mid a { padding: 9px 14px; border-radius: var(--pill); color: var(--ink-2); font-weight: 500; font-size: 15px; transition: color 0.2s, background 0.2s; }
.nav-mid a:hover { color: var(--ink); background: var(--blush); }
.nav-mid a[aria-current="page"] { color: var(--pink-2); }
.nav-end { justify-self: end; display: inline-flex; align-items: center; gap: 10px; }

/* ── pills ───────────────────────────────────────────────────────── */
.pill { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 22px; border-radius: var(--pill); font-weight: 600; font-size: 15px; line-height: 1; border: 1.5px solid transparent; transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s; white-space: nowrap; }
.pill:hover { transform: translateY(-1px); }
.pill .dot { width: 22px; height: 22px; border-radius: 50%; display: inline-grid; place-items: center; flex: none; }
.pill .dot img { height: 12px; width: auto; }
.pill-line { border-color: var(--line); color: var(--ink); background: var(--white); }
.pill-line:hover { border-color: var(--pink); color: var(--pink-2); }
.pill-pink { background: var(--pink); color: var(--white); box-shadow: 0 8px 24px rgba(251, 92, 151, 0.28); }
.pill-pink:hover { background: var(--pink-2); }
.pill-white { background: var(--white); color: var(--pink-2); }
.pill-white:hover { background: var(--blush); }
.pill.lg { padding: 18px 28px; font-size: 17px; }
.pill.wide { width: 100%; }
.pill[disabled] { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }

/* ── bands ───────────────────────────────────────────────────────── */
.band { padding: clamp(64px, 8vw, 120px) 0; }
.band.pink { background: var(--pink); color: var(--white); position: relative; overflow: hidden; }
.band.pink .eyebrow { color: var(--w-70); }
.band.pink .lead, .band.pink .body { color: var(--w-70); }
.band.pink .watermark { position: absolute; right: -6%; bottom: -18%; width: min(46vw, 560px); opacity: 0.16; pointer-events: none; }
.band.blush { background: var(--blush); }
.panel { background: var(--blush); border-radius: var(--r); padding: clamp(28px, 4vw, 56px); }

/* ── hero ────────────────────────────────────────────────────────── */
.hero { padding: clamp(36px, 6vw, 88px) 0 clamp(36px, 5vw, 64px); }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(28px, 5vw, 80px); align-items: center; }
.hero-copy .t-hero > span { display: block; }
.hero-copy .go { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-art { position: relative; aspect-ratio: 1; width: min(100%, 460px); justify-self: center; }
.hero-art .quad { position: absolute; inset: 0; }
/* the logo's four circles, each carrying the venue that lives there */
.hero-art .orb { position: absolute; width: 37%; aspect-ratio: 1; border-radius: 50%; background: var(--pink); display: grid; place-items: center; box-shadow: 0 18px 40px rgba(251,92,151,.25); }
.hero-art .orb.n { left: 31.5%; top: 0; }
.hero-art .orb.e { right: 0; top: 31.5%; }
.hero-art .orb.s { left: 31.5%; bottom: 0; }
.hero-art .orb.w { left: 0; top: 31.5%; }
.hero-art .core { position: absolute; left: 34%; top: 34%; width: 32%; aspect-ratio: 1; border-radius: 22%; background: var(--pink); display: grid; place-items: center; }
.hero-art .core b { display: grid; place-items: center; width: 68%; aspect-ratio: 1; border-radius: 18%; background: var(--white); color: var(--pink-2); font: 700 clamp(12px, 1.5vw, 18px)/1 var(--display); letter-spacing: -0.03em; text-align: center; }
.hero-art .label { position: absolute; font: 500 12px/1 var(--mono); color: var(--ink-3); letter-spacing: 0.04em; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-top: clamp(40px, 6vw, 80px); }
.stats .kv { padding: 22px 18px; border-left: 1px solid var(--line); }
.stats .kv:first-child { border-left: 0; }
.kv { display: grid; gap: 6px; }
.kv .k { color: var(--ink-2); font-size: 14px; }
.kv .v { font-family: var(--display); font-weight: 700; letter-spacing: -0.03em; font-size: 26px; line-height: 1.1; display: flex; align-items: baseline; gap: 8px; }
.kv .v small { font: 400 12px/1 var(--mono); color: var(--ink-3); }

/* ── timeline ────────────────────────────────────────────────────── */
.timeline { position: relative; margin-top: clamp(36px, 5vw, 64px); display: grid; gap: 0; }
.timeline::before { content: ""; position: absolute; left: 27px; top: 0; bottom: 0; width: 2px; background: var(--line); }
.timeline .track { position: absolute; left: 27px; top: 0; width: 2px; height: calc(var(--p, 0) * 100%); background: var(--pink); transition: height 0.25s linear; }
.tstep { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 22px; padding: 26px 0; }
.tstep .n { width: 56px; height: 56px; border-radius: 50%; background: var(--white); border: 2px solid var(--line); display: grid; place-items: center; font: 600 14px/1 var(--mono); color: var(--ink-3); transition: border-color 0.4s, color 0.4s, background 0.4s, transform 0.4s var(--ease); }
.tstep.on .n { border-color: var(--pink); color: var(--white); background: var(--pink); transform: scale(1.06); }
.tstep h3 { margin: 12px 0 8px; }
.tstep p { margin: 0; color: var(--ink-2); max-width: 62ch; }

/* ── legs 2x2 ────────────────────────────────────────────────────── */
.legs4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: clamp(36px, 5vw, 56px); }
.legcard { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(22px, 3vw, 34px); display: grid; gap: 14px; align-content: start; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s; }
.legcard:hover { transform: translateY(-3px); box-shadow: 0 22px 50px rgba(27,11,19,.08); border-color: var(--blush-2); }
.legcard .head { display: flex; align-items: center; gap: 12px; }
.legcard .head .chain { font: 500 12px/1 var(--mono); color: var(--ink-3); letter-spacing: 0.04em; }
.legcard .head h3 { margin: 4px 0 0; }
.legcard p { margin: 0; color: var(--ink-2); font-size: 15px; }
.legcard dl { margin: 6px 0 0; display: grid; gap: 8px; }
.legcard dl div { display: flex; justify-content: space-between; gap: 12px; font-size: 13.5px; border-top: 1px solid var(--line); padding-top: 8px; }
.legcard dt { color: var(--ink-2); } .legcard dd { margin: 0; font-family: var(--mono); font-size: 12.5px; text-align: right; color: var(--ink); }
.vlogo { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: var(--blush); flex: none; box-shadow: 0 0 0 3px var(--blush); }
.vlogo.sm { width: 26px; height: 26px; box-shadow: none; }

/* ── vault panel ─────────────────────────────────────────────────── */
.vault2 { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(24px, 4vw, 64px); align-items: center; }
.split { display: grid; grid-template-columns: 80fr 15fr 5fr; gap: 4px; height: 16px; border-radius: 8px; overflow: hidden; margin-top: 26px; }
.split i { display: block; transform-origin: left; transform: scaleX(0); transition: transform 1.1s var(--ease); }
.split.in i { transform: scaleX(1); }
.split i:nth-child(1) { background: var(--pink); } .split i:nth-child(2) { background: var(--pink-3); transition-delay: 0.25s; } .split i:nth-child(3) { background: var(--ink); transition-delay: 0.45s; }
.split-k { display: grid; grid-template-columns: 80fr 15fr 5fr; gap: 4px; margin-top: 8px; font: 400 12px/1.3 var(--mono); color: var(--ink-2); }
.split-k span:nth-child(3) { text-align: right; }
.stack { display: grid; gap: 12px; }
.card { background: var(--white); border-radius: var(--r); padding: clamp(22px, 3vw, 36px); border: 1px solid var(--line); }
.card h3 { margin: 0 0 12px; }
.card p { margin: 0; color: var(--ink-2); }
.grid2x { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.bignum { font-family: var(--display); font-weight: 800; letter-spacing: -0.04em; font-size: clamp(34px, 3.6vw, 48px); line-height: 1; color: var(--pink-2); }

/* ── stock ticker ────────────────────────────────────────────────── */
.ticker { overflow: hidden; margin-top: clamp(28px, 4vw, 44px); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.ticker .row { display: flex; gap: 10px; width: max-content; animation: roll 42s linear infinite; }
.ticker:hover .row { animation-play-state: paused; }
.ticker span { font: 500 15px/1 var(--mono); padding: 14px 18px; border-radius: 14px; background: var(--white); color: var(--ink); border: 1px solid var(--line); white-space: nowrap; }
.ticker.on-pink span { background: rgba(255,255,255,.14); color: var(--white); border-color: rgba(255,255,255,.22); }
@keyframes roll { to { transform: translateX(-50%); } }
.tickers { display: flex; flex-wrap: wrap; gap: 8px; }
.tickers span { font: 500 14px/1 var(--mono); padding: 12px 16px; border-radius: 12px; background: var(--white); border: 1px solid var(--line); }

/* ── coins ───────────────────────────────────────────────────────── */
.coins { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 12px; }
.coin { border-radius: var(--r-sm); background: var(--white); border: 1px solid var(--line); padding: 18px; display: flex; flex-direction: column; gap: 14px; color: inherit; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.coin:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(27,11,19,.08); }
.coin .top { display: flex; gap: 14px; align-items: center; }
.coin .logo { width: 52px; height: 52px; border-radius: 16px; background: var(--blush); flex: none; display: grid; place-items: center; font-family: var(--display); font-weight: 700; color: var(--pink-2); overflow: hidden; }
.coin .logo img { width: 100%; height: 100%; object-fit: cover; }
.coin .ttl { min-width: 0; }
.coin .ttl b { display: block; font-family: var(--display); font-weight: 700; letter-spacing: -0.02em; font-size: 19px; line-height: 1.1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.coin .ttl span { font: 400 12px/1 var(--mono); color: var(--ink-3); display: block; margin-top: 7px; }
.stock { margin-left: auto; flex: none; font: 500 12px/1 var(--mono); letter-spacing: 0.04em; padding: 8px 10px; border-radius: 10px; background: var(--pink); color: var(--white); }
.coin .hold { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.coin .hold .v { font-size: 19px; }
.srcbar { display: flex; gap: 2px; height: 6px; border-radius: 3px; overflow: hidden; background: var(--blush-2); }
.srcbar i { display: block; height: 100%; min-width: 2px; }
.legs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.leg { border-radius: 12px; background: var(--blush); padding: 10px; display: grid; gap: 6px; min-width: 0; }
.leg .c { font: 400 10px/1 var(--mono); letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); display: flex; align-items: center; gap: 6px; }
.leg .c img { width: 14px; height: 14px; border-radius: 50%; object-fit: cover; flex: none; }
.leg .s { font: 500 12px/1.2 var(--body); color: var(--ink); }
.leg.live { box-shadow: inset 0 0 0 1.5px var(--c); background: var(--white); }
.leg.pending .s { opacity: 0.6; }
.leg.failed .s, .leg.reclaimed .s { color: #b45309; }
.leg a { font: 400 10.5px/1 var(--mono); color: var(--ink-2); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: block; }
.coin .foot { display: flex; justify-content: space-between; align-items: center; gap: 10px; font: 400 11.5px/1 var(--mono); color: var(--ink-3); }
.legs.big { grid-template-columns: repeat(2, 1fr); gap: 10px; }
.legs.big .leg { padding: 14px; gap: 8px; }
.legs.big .leg .s { font-size: 13px; }
.legs.big .leg a { font-size: 12px; }
.note { font-size: 13px; color: var(--ink-3); margin: 12px 0 0; }
.note.err { color: #c2410c; }
.note a { color: var(--ink-2); text-decoration: underline; text-underline-offset: 3px; }

/* ── app ─────────────────────────────────────────────────────────── */
.appmain { background: var(--blush); padding: clamp(20px, 3vw, 40px) 0 clamp(80px, 9vw, 140px); }
.search { position: relative; margin: 0 0 16px; }
.search svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--ink-3); pointer-events: none; }
.search .field-in { padding-left: 44px; padding-right: 64px; }
.search-n { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); font: 400 12px/1 var(--mono); color: var(--ink-3); }
.app { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 14px; align-items: start; }
.card .sub { color: var(--ink-2); margin: 8px 0 22px; font-size: 15px; }
.field { display: grid; gap: 8px; margin-top: 16px; }
.field label { font-size: 13px; color: var(--ink-2); display: flex; justify-content: space-between; }
.field label small { font-family: var(--mono); font-size: 11px; color: var(--ink-3); }
.field-in { width: 100%; padding: 15px 18px; border-radius: 16px; background: var(--white); border: 1.5px solid var(--line); color: var(--ink); font: 400 16px/1.2 var(--body); outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.field-in::placeholder { color: var(--ink-3); }
.field-in:focus { border-color: var(--pink); box-shadow: 0 0 0 4px rgba(251,92,151,.14); }
textarea.field-in { min-height: 96px; resize: vertical; line-height: 1.45; }
select.field-in { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink-2) 50%), linear-gradient(135deg, var(--ink-2) 50%, transparent 50%); background-position: calc(100% - 22px) 55%, calc(100% - 16px) 55%; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field label.drop { display: flex; }
.drop { border: 1.5px dashed var(--blush-2); border-radius: 16px; padding: 16px; gap: 14px; align-items: center; cursor: pointer; transition: border-color 0.2s; background: var(--blush); }
.drop:hover, .drop.over { border-color: var(--pink); }
.drop img, .drop .ph { width: 64px; height: 64px; border-radius: 16px; object-fit: cover; background: var(--white); flex: none; display: grid; place-items: center; color: var(--pink-2); font-family: var(--display); font-weight: 700; }
.drop .t { font: 400 14px/1.4 var(--body); color: var(--ink-2); }
.drop .t b { display: block; color: var(--ink); font-weight: 600; margin-bottom: 3px; }
.drop input { display: none; }
.quote { margin-top: 22px; border-radius: 16px; background: var(--blush); padding: 16px 18px; display: grid; gap: 9px; }
.quote div { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; color: var(--ink-2); }
.quote div b { font-family: var(--mono); font-weight: 400; color: var(--ink); font-size: 13px; }
.quote div.total { border-top: 1px solid var(--blush-2); padding-top: 10px; color: var(--ink); font-weight: 600; }
.progress { display: grid; gap: 8px; margin-top: 18px; }
.progress .p { display: flex; gap: 12px; align-items: center; padding: 12px 14px; border-radius: 14px; background: var(--blush); font-size: 14px; color: var(--ink-2); }
.progress .p i { width: 10px; height: 10px; border-radius: 50%; background: var(--blush-2); flex: none; }
.progress .p.done i { background: var(--rbh); }
.progress .p.busy i { background: var(--pink); animation: blink 1s infinite; }
.progress .p.fail i { background: var(--bnb); }
.progress .p a { font-family: var(--mono); font-size: 12px; color: var(--ink); margin-left: auto; }
@keyframes blink { 50% { opacity: 0.25; } }
.sheet { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; background: rgba(27, 11, 19, 0.45); backdrop-filter: blur(8px); animation: fade 0.2s var(--ease); }
.sheet-card { width: min(440px, 100%); border-radius: var(--r); background: var(--white); padding: 26px; animation: rise 0.3s var(--ease); }
.sheet-card h3 { margin: 0 0 16px; font-family: var(--display); font-weight: 700; letter-spacing: -0.02em; font-size: 24px; display: flex; justify-content: space-between; align-items: center; }
.sheet-card h3 button { font-size: 13px; font-family: var(--body); letter-spacing: 0; color: var(--ink-2); font-weight: 500; }
.wallets { display: grid; gap: 8px; }
.wallet { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 16px; background: var(--blush); text-align: left; font-weight: 500; font-size: 15px; transition: background 0.2s; width: 100%; }
.wallet:hover { background: var(--blush-2); }
.wallet img, .wallet-fallback { width: 30px; height: 30px; border-radius: 9px; object-fit: contain; background: var(--white); display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 14px; color: var(--pink-2); }
.wallet small { margin-left: auto; color: var(--ink-3); font-weight: 500; }
@keyframes fade { from { opacity: 0; } }
@keyframes rise { from { transform: translateY(12px); opacity: 0; } }

/* coin page */
.coinpage { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 14px; align-items: start; }
.coinhead { display: flex; align-items: center; gap: 18px; }
.coinhead .logo { width: 76px; height: 76px; border-radius: 22px; background: var(--blush); overflow: hidden; flex: none; display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 22px; color: var(--pink-2); }
.coinhead .logo img { width: 100%; height: 100%; object-fit: cover; }
.coinhead h1 { margin: 0; }
.coinhead .sub { margin: 6px 0 0; color: var(--ink-2); display: flex; flex-wrap: wrap; gap: 8px 14px; align-items: center; font-size: 14px; }
.bigstats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }
.bigstats .kv { padding: 18px; border-radius: 16px; background: var(--blush); }
.bigstats .v { font-size: 26px; }
.rows { display: grid; gap: 8px; margin-top: 18px; }
.rows div { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; color: var(--ink-2); padding: 10px 0; border-top: 1px solid var(--line); }
.rows div b { font-family: var(--mono); font-weight: 400; color: var(--ink); font-size: 13px; text-align: right; }
.rows div:first-child { border-top: 0; }
.bysrc { display: grid; gap: 8px; margin-top: 14px; }
.bysrc div { display: grid; grid-template-columns: 90px 1fr auto; align-items: center; gap: 12px; font-size: 13px; color: var(--ink-2); }
.bysrc div i { height: 8px; border-radius: 4px; background: var(--c); display: block; min-width: 2px; }
.bysrc div b { font-family: var(--mono); font-weight: 400; color: var(--ink); font-size: 12.5px; }
.crumbs { font-size: 14px; color: var(--ink-2); margin: 0 0 22px; }
.crumbs a:hover { color: var(--pink-2); }

/* how / faq lists */
.list { display: grid; gap: 10px; }
.list .row { display: grid; grid-template-columns: 1fr 2fr; gap: 20px; padding: 22px 26px; border-radius: var(--r-sm); background: var(--white); border: 1px solid var(--line); }
.list .row h4 { margin: 0; font-family: var(--display); font-weight: 700; letter-spacing: -0.02em; font-size: 19px; line-height: 1.2; }
.list .row p { margin: 0; color: var(--ink-2); font-size: 15px; }
.band.pink .list .row { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.18); }
.band.pink .list .row p { color: var(--w-70); }
.grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.vcard { border-radius: var(--r-sm); padding: 22px; background: var(--white); border: 1px solid var(--line); display: grid; gap: 10px; align-content: start; }
.vcard .chain { font-size: 12px; color: var(--ink-3); font-family: var(--mono); }
.vcard .name { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 700; letter-spacing: -0.02em; font-size: 20px; }
.vcard p { margin: 0; color: var(--ink-2); font-size: 14.5px; }

/* ── footer ──────────────────────────────────────────────────────── */
footer { background: var(--pink); color: var(--white); padding: clamp(48px, 6vw, 90px) 0 40px; position: relative; overflow: hidden; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; position: relative; }
.foot-grid h5 { margin: 0 0 12px; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--w-70); font-weight: 600; }
.foot-grid a, .foot-grid p { display: block; color: var(--w-70); font-size: 15px; margin: 0 0 8px; }
.foot-grid a:hover { color: var(--white); }
.foot-logo { margin-top: clamp(40px, 6vw, 80px); display: flex; align-items: center; justify-content: center; gap: 24px; }
.foot-logo img { height: clamp(48px, 8vw, 110px); }
.foot-logo span { font-family: var(--display); font-weight: 800; letter-spacing: -0.05em; font-size: clamp(56px, 11vw, 150px); line-height: 1; }

/* ── motion ──────────────────────────────────────────────────────── */
html.js .rv { opacity: 0; transform: translateY(26px); filter: blur(5px); }
html.js .rv.is-in { opacity: 1; transform: none; filter: blur(0); transition: opacity 0.9s var(--ease) var(--d, 0ms), transform 0.9s var(--ease) var(--d, 0ms), filter 0.9s var(--ease) var(--d, 0ms); }
html.js .hero-copy > * { animation: enter 0.8s var(--ease) both; }
html.js .hero-copy > :nth-child(2) { animation-delay: 0.1s; }
html.js .hero-copy > :nth-child(3) { animation-delay: 0.22s; }
html.js .hero-art .orb { animation: pop 0.9s var(--ease) both; }
html.js .hero-art .orb.n { animation-delay: 0.15s; } html.js .hero-art .orb.e { animation-delay: 0.3s; } html.js .hero-art .orb.s { animation-delay: 0.45s; } html.js .hero-art .orb.w { animation-delay: 0.6s; }
html.js .hero-art .core { animation: pop 0.8s var(--ease) 0.05s both; }
@keyframes enter { from { opacity: 0; transform: translateY(18px); filter: blur(6px); } }
@keyframes pop { from { opacity: 0; transform: scale(0.6); } }
@media (prefers-reduced-motion: reduce) { html.js .rv, html.js .hero-copy > *, html.js .hero-art .orb, html.js .hero-art .core { opacity: 1; transform: none; filter: none; animation: none; } .ticker .row { animation: none; } * { transition: none !important; } .split i { transform: none; } }

/* ── responsive ──────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .grid4 { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav-mid { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { width: min(100%, 320px); }
  .stats { grid-template-columns: 1fr 1fr; }
  .stats .kv:nth-child(3) { border-left: 0; }
  .stats .kv:nth-child(n+3) { border-top: 1px solid var(--line); }
  .legs4 { grid-template-columns: 1fr; }
  .vault2 { grid-template-columns: 1fr; }
  .app { grid-template-columns: 1fr; }
  .coinpage { grid-template-columns: 1fr; }
  .bigstats { grid-template-columns: 1fr; }
  .list .row { grid-template-columns: 1fr; gap: 10px; }
  .grid2x { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid4 { grid-template-columns: 1fr; }
  .legs { grid-template-columns: repeat(2, 1fr); }
  .two { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .brand span { display: none; }
  .tstep { grid-template-columns: 44px 1fr; gap: 14px; }
  .tstep .n { width: 44px; height: 44px; }
  .timeline::before, .timeline .track { left: 21px; }
}
.vlogo[src$=".svg"] { padding: 6px; } .vlogo.sm[src$=".svg"] { padding: 3px; } .leg .c img[src$=".svg"] { padding: 2px; background: var(--ink); }

/* ── logos (venues in the hero, stock tiles) ─────────────────────── */
.hero-art .orb b { width: 64%; aspect-ratio: 1; border-radius: 50%; background: var(--white); display: grid; place-items: center; box-shadow: inset 0 0 0 1px rgba(27,11,19,.04); }
.hero-art .orb b img { width: 60%; height: 60%; border-radius: 0; background: none; box-shadow: none; object-fit: contain; }
.hero-art .orb b img[src$=".svg"] { padding: 0; }
.hero-art .core b { display: grid; place-items: center; gap: 6px; grid-template-rows: auto auto; width: 78%; aspect-ratio: 1; border-radius: 18%; padding: 6%; }
.hero-art .core b img { width: 52%; aspect-ratio: 1; border-radius: 22%; object-fit: cover; }
.hero-art .core b span { font: 700 clamp(11px, 1.3vw, 15px)/1 var(--display); letter-spacing: -0.02em; }
.ticker span, .tickers span { display: inline-flex; align-items: center; gap: 10px; }
.ticker span img, .tickers span img { width: 24px; height: 24px; border-radius: 7px; object-fit: cover; flex: none; }
.stock { display: inline-flex; align-items: center; gap: 7px; }
.stock img { width: 18px; height: 18px; border-radius: 5px; object-fit: cover; flex: none; }
.stockgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)); gap: 8px; }
.sopt { display: grid; justify-items: center; gap: 7px; padding: 12px 8px 10px; border-radius: 14px; border: 1.5px solid var(--line); background: var(--white); cursor: pointer; transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease); }
.sopt:hover { border-color: var(--blush-2); transform: translateY(-1px); }
.sopt input { position: absolute; opacity: 0; width: 0; height: 0; }
.sopt img { width: 40px; height: 40px; border-radius: 12px; object-fit: cover; }
.sopt span { font: 500 12px/1 var(--mono); }
.sopt:has(input:checked) { border-color: var(--pink); background: var(--blush); box-shadow: 0 0 0 3px rgba(251,92,151,.16); }
.sopt:has(input:focus-visible) { outline: 2px solid var(--pink); outline-offset: 2px; }
.vlogo { background: var(--white); border: 1px solid var(--line); box-shadow: none; padding: 6px; object-fit: contain; }
.leg .c img { object-fit: contain; background: var(--white); }
.field label.sopt { display: grid; justify-content: center; justify-items: center; font-size: 12px; }

/* ── the app's coin board ────────────────────────────────────────── */
.board-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.board-head > div { display: flex; align-items: baseline; gap: 10px; }
.board-head b.display { font-size: clamp(30px, 3vw, 40px); font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.board-head .k { color: var(--ink-2); font-size: 14px; }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--pink); align-self: center; box-shadow: 0 0 0 0 rgba(251,92,151,.5); animation: pulse 2.2s ease-out infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(251,92,151,.55); } 70% { box-shadow: 0 0 0 10px rgba(251,92,151,0); } 100% { box-shadow: 0 0 0 0 rgba(251,92,151,0); } }
.field-in.mini { width: auto; min-width: 150px; padding: 10px 14px; border-radius: 12px; font-size: 14px; }
.stockfilter { display: flex; gap: 6px; overflow-x: auto; margin: 16px 0 12px; padding-bottom: 4px; scrollbar-width: none; }
.stockfilter::-webkit-scrollbar { display: none; }
.stockfilter:empty { display: none; }
.chip { display: inline-flex; align-items: center; gap: 7px; padding: 8px 12px; border-radius: var(--pill); border: 1.5px solid var(--line); font: 500 13px/1 var(--mono); white-space: nowrap; transition: border-color 0.2s, background 0.2s, color 0.2s; }
.chip img { width: 18px; height: 18px; border-radius: 5px; }
.chip small { font-size: 11px; color: var(--ink-3); }
.chip:hover { border-color: var(--pink); }
.chip.on { background: var(--ink); color: var(--white); border-color: var(--ink); }
.chip.on small { color: var(--w-70); }
.crows { display: grid; gap: 6px; margin-top: 4px; }
.crow { display: grid; grid-template-columns: 44px minmax(0, 1.4fr) auto minmax(0, 1fr) auto 18px; align-items: center; gap: 14px; padding: 12px 14px; border-radius: 16px; background: var(--blush); color: inherit; transition: background 0.2s, transform 0.2s var(--ease); }
.crow:hover { background: var(--blush-2); transform: translateX(2px); }
.crow .logo { width: 44px; height: 44px; border-radius: 13px; background: var(--white); overflow: hidden; display: grid; place-items: center; font: 700 14px/1 var(--display); color: var(--pink-2); }
.crow .logo img { width: 100%; height: 100%; object-fit: cover; }
.crow .who { min-width: 0; display: grid; gap: 3px; }
.crow .who b { font: 700 15px/1.15 var(--display); letter-spacing: -0.02em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.crow .who span { font: 400 11.5px/1 var(--mono); color: var(--ink-3); }
.crow .holds { display: grid; gap: 3px; min-width: 0; }
.crow .holds b { font: 600 14px/1 var(--mono); }
.crow .holds span { font: 400 11px/1 var(--mono); color: var(--ink-3); }
.crow .dots { display: inline-flex; gap: 4px; }
.ld { width: 22px; height: 22px; border-radius: 50%; background: var(--white); display: grid; place-items: center; opacity: 0.35; box-shadow: inset 0 0 0 1px var(--line); }
.ld img { width: 13px; height: 13px; border-radius: 50%; object-fit: contain; }
.ld.live { opacity: 1; box-shadow: inset 0 0 0 1.5px var(--c); }
.ld.failed, .ld.reclaimed { opacity: 0.6; box-shadow: inset 0 0 0 1.5px #b45309; }
.crow .chev { color: var(--ink-3); font-size: 14px; text-align: right; }
.nocoins { border: 1.5px dashed var(--blush-2); border-radius: 16px; padding: 26px; text-align: center; display: grid; gap: 14px; justify-items: center; }
.nocoins p { margin: 0; color: var(--ink-2); }
@media (max-width: 560px) {
  .crow { grid-template-columns: 40px minmax(0, 1fr) auto; }
  .crow .holds, .crow .chev { display: none; }
  .crow .dots { grid-column: 2 / -1; }
}
/* the card is one link, but the leg links inside it must stay their own */
.coin { position: relative; }
.coin .cover { position: absolute; inset: 0; border-radius: inherit; z-index: 0; }
.coin .leg a, .coin .stock { position: relative; z-index: 1; }
.coin .leg a:hover { color: var(--pink-2); }

/* ── the token's contract address, under the hero buttons ────────── */
.ca { margin-top: 22px; display: inline-flex; align-items: center; gap: 12px; max-width: 100%; padding: 8px 8px 8px 16px; border-radius: var(--pill); background: var(--blush); border: 1.5px solid var(--line); color: var(--ink); transition: border-color 0.2s; }
.ca:hover { border-color: var(--pink); }
.ca-k { font: 600 12px/1 var(--body); letter-spacing: 0.06em; color: var(--pink-2); white-space: nowrap; }
.ca-v { font: 400 14px/1 var(--mono); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
.ca-b { font: 600 12px/1 var(--body); padding: 9px 13px; border-radius: var(--pill); background: var(--pink); color: var(--white); white-space: nowrap; }
html.js .hero-copy > :nth-child(4) { animation-delay: 0.34s; }
@media (max-width: 560px) { .ca-k { display: none; } }
.xlink { width: 44px; height: 44px; padding: 0; }
