/* INFRA — monochrome, hairline, dense where it matters. One accent: the green of a settled payment. */
:root {
  color-scheme: dark;
  --bg: #000;
  --rail: #070707;
  --card: #0c0c0c;
  --card2: #121212;
  --card3: #191919;
  --line: rgba(255, 255, 255, .07);
  --line2: rgba(255, 255, 255, .12);
  --line3: rgba(255, 255, 255, .2);
  --t1: #f2f2f0;
  --t2: #a1a19d;
  --t3: #63635f;
  --live: #3fd67b;
  --warn: #f0a93b;
  --neg: #ff5d52;
  --sans: 'Geist', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  --rail-w: 264px;
  --r: 22px;
  --ease: cubic-bezier(.22, .8, .24, 1);
}
* { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; }
body { background: var(--bg); color: var(--t1); font: 15px/1.5 var(--sans); -webkit-font-smoothing: antialiased; font-feature-settings: 'ss01', 'cv11'; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex: none; }
img { display: block; }
.mono, code, kbd { font-family: var(--mono); font-feature-settings: 'zero'; }
.num { font-variant-numeric: tabular-nums; }
.dim { color: var(--t2); }
.faint { color: var(--t3); }
.k { font: 500 11px/1 var(--mono); letter-spacing: .06em; text-transform: uppercase; color: var(--t3); }
[hidden] { display: none !important; }
::selection { background: #f2f2f0; color: #000; }

/* ── shell ─────────────────────────────────────────────── */
.app { display: grid; grid-template-columns: var(--rail-w) minmax(0, 1fr); min-height: 100vh; }
.app.folded { --rail-w: 76px; }
.rail { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; background: var(--rail); border-right: 1px solid var(--line); padding: 18px 14px 14px; z-index: 40; }
.rail-top { display: flex; align-items: center; justify-content: space-between; padding: 0 6px 26px; }
.mark img { width: 30px; height: 30px; }
.fold, .icon-btn { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line2); background: none; color: var(--t2); }
.fold:hover, .icon-btn:hover { color: var(--t1); border-color: var(--line3); }
.fold svg, .icon-btn svg { width: 16px; height: 16px; }
.rail-nav { display: grid; gap: 2px; }
.rail-nav a { position: relative; display: flex; align-items: center; gap: 14px; padding: 11px 12px; border-radius: 12px; color: var(--t2); font-size: 17px; font-weight: 450; letter-spacing: -.01em; transition: color .15s, background .15s; }
.rail-nav a svg { width: 22px; height: 22px; }
.rail-nav a:hover { color: var(--t1); background: rgba(255, 255, 255, .03); }
.rail-nav a.on { color: var(--t1); font-weight: 560; }
.rail-nav a.on svg { stroke-width: 2.1; }
.rail-foot { margin-top: auto; }
.rail-card { display: flex; gap: 12px; align-items: center; padding: 12px; border-radius: 16px; border: 1px solid var(--line); }
.rail-card img { border-radius: 10px; }
.rail-card b { display: block; font-weight: 600; font-size: 14px; }
.rail-card small { color: var(--t3); font-size: 12.5px; }
.app.folded .rail-nav span, .app.folded .rail-card div, .app.folded .fold { display: none; }
.app.folded .rail-top, .app.folded .rail-nav a { justify-content: center; }
.app.folded .rail-card { justify-content: center; border: 0; }
.stage { min-width: 0; display: flex; flex-direction: column; }

.bar { position: sticky; top: 0; z-index: 30; display: flex; align-items: center; gap: 16px; padding: 12px 24px; background: rgba(0, 0, 0, .82); backdrop-filter: blur(16px) saturate(1.2); border-bottom: 1px solid var(--line); }
.search { position: relative; flex: 1; max-width: 560px; margin: 0 auto; display: flex; align-items: center; gap: 10px; height: 42px; padding: 0 14px; border-radius: 999px; background: var(--card); border: 1px solid var(--line2); color: var(--t3); }
.search:focus-within { border-color: var(--line3); }
.search svg { width: 17px; height: 17px; }
.search input { flex: 1; min-width: 0; border: 0; background: none; outline: none; color: var(--t1); }
.search input::placeholder { color: var(--t3); }
.search kbd { font-size: 11px; padding: 2px 7px; border-radius: 6px; border: 1px solid var(--line2); color: var(--t3); }
.search-pop { position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: var(--card); border: 1px solid var(--line2); border-radius: 18px; padding: 8px; box-shadow: 0 30px 60px rgba(0, 0, 0, .7); max-height: 70vh; overflow: auto; }
.search-pop .grp { padding: 8px 10px 4px; }
.hit { display: flex; align-items: center; gap: 12px; padding: 9px 10px; border-radius: 12px; color: var(--t1); }
.hit:hover, .hit.sel { background: var(--card3); }
.hit small { color: var(--t3); }
.hit .end { margin-left: auto; color: var(--t2); font: 13px var(--mono); }
.bar-actions { display: flex; align-items: center; gap: 8px; }
.only-m { display: none; }
.ca { display: flex; align-items: center; gap: 8px; height: 38px; padding: 0 6px 0 14px; border-radius: 999px; border: 1px solid var(--line2); font-size: 13px; }
.ca code { color: var(--t2); font-size: 12px; }
.ca button { border: 0; background: none; color: var(--t3); display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; }
.ca button:hover { color: var(--t1); background: var(--card3); }
.ca svg { width: 15px; height: 15px; }
.notice { padding: 9px 24px; text-align: center; font-size: 13px; color: #1b1406; background: var(--warn); font-weight: 520; }

/* buttons */
.pill { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 38px; padding: 0 18px; border-radius: 999px; font-weight: 560; font-size: 14px; letter-spacing: -.005em; border: 0; white-space: nowrap; transition: transform .12s var(--ease), background .15s, border-color .15s, opacity .15s; }
.pill:active { transform: scale(.975); }
.pill.solid { background: var(--t1); color: #000; }
.pill.solid:hover { background: #fff; }
.pill.line { background: transparent; color: var(--t1); box-shadow: inset 0 0 0 1px var(--line2); }
.pill.line:hover { box-shadow: inset 0 0 0 1px var(--line3); background: rgba(255, 255, 255, .03); }
.pill.lg { height: 48px; padding: 0 24px; font-size: 15.5px; }
.pill.block { width: 100%; }
.pill.neg { color: var(--neg); box-shadow: inset 0 0 0 1px rgba(255, 93, 82, .35); background: none; }
.pill:disabled { opacity: .45; cursor: not-allowed; }
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--live); }
.wallet { position: relative; }
.pop { position: absolute; right: 0; top: calc(100% + 8px); min-width: 200px; padding: 6px; border-radius: 16px; background: var(--card); border: 1px solid var(--line2); box-shadow: 0 30px 60px rgba(0, 0, 0, .7); display: grid; }
.pop button { text-align: left; border: 0; background: none; padding: 10px 12px; border-radius: 10px; font-size: 14px; }
.pop button:hover { background: var(--card3); }
.pop .neg { color: var(--neg); }

main { flex: 1; width: 100%; max-width: 1260px; margin: 0 auto; padding: 0 28px; outline: none; }
.page { padding: 40px 0 90px; animation: enter .35s var(--ease); }
@keyframes enter { from { opacity: 0; transform: translateY(6px); } }
.page-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 26px; }
.page-head h1 { font-size: 40px; font-weight: 600; letter-spacing: -.04em; line-height: 1.05; }
.page-head p { color: var(--t2); margin-top: 8px; max-width: 620px; }

/* ── primitives ────────────────────────────────────────── */
.card { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025); }
.card-head { display: flex; align-items: baseline; justify-content: space-between; gap: 6px 16px; flex-wrap: wrap; margin-bottom: 14px; }
.card-head b { font-weight: 560; font-size: 15px; }
.card-head a { color: var(--t3); font-size: 13.5px; }
.card-head a:hover { color: var(--t1); }
.corner { position: absolute; left: 18px; bottom: 16px; right: 18px; display: flex; justify-content: space-between; align-items: center; font-size: 14.5px; font-weight: 520; z-index: 3; pointer-events: none; }
.corner span { color: var(--t2); font-weight: 450; }
.corner a { pointer-events: auto; }
.av { position: relative; width: 34px; height: 34px; border-radius: 50%; flex: none; display: grid; place-items: center; overflow: hidden; background: var(--card3); color: var(--t2); font: 600 13px var(--sans); box-shadow: inset 0 0 0 1px var(--line2); }
.av img { width: 100%; height: 100%; object-fit: cover; }
.av.sm { width: 22px; height: 22px; font-size: 10px; }
.av.lg { width: 56px; height: 56px; font-size: 20px; }
.stack-av { display: flex; }
.stack-av .av { margin-left: -7px; box-shadow: 0 0 0 2px var(--card); }
.stack-av .av:first-child { margin-left: 0; }
.tick { display: inline-block; width: 14px; height: 14px; vertical-align: -2px; margin-left: 3px; }
.tag { display: inline-flex; align-items: center; gap: 6px; height: 24px; padding: 0 9px; border-radius: 999px; font: 500 11.5px var(--mono); color: var(--t2); background: var(--card3); white-space: nowrap; }
.tag.live { color: var(--live); background: rgba(63, 214, 123, .09); }
.tag.warn { color: var(--warn); background: rgba(240, 169, 59, .1); }
.tag.neg { color: var(--neg); background: rgba(255, 93, 82, .1); }
.tag i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.chip { display: inline-flex; align-items: center; gap: 7px; height: 32px; padding: 0 12px 0 6px; border-radius: 999px; background: var(--card2); border: 1px solid var(--line2); font-weight: 560; font-size: 14.5px; vertical-align: middle; }
.chip .pf { width: 20px; height: 20px; border-radius: 50%; background: conic-gradient(from 210deg, #fff 0 50%, #52d273 50% 100%); transform: rotate(-35deg); box-shadow: inset 0 0 0 1.5px rgba(0, 0, 0, .25); }
.tabs { display: inline-flex; gap: 2px; padding: 3px; border-radius: 999px; background: var(--card); border: 1px solid var(--line); }
.tabs button { height: 32px; padding: 0 14px; border-radius: 999px; border: 0; background: none; color: var(--t2); font-size: 13.5px; font-weight: 520; }
.tabs button.on { background: var(--card3); color: var(--t1); }
.bar-meter { height: 4px; border-radius: 4px; background: var(--card3); overflow: hidden; }
.bar-meter i { display: block; height: 100%; background: var(--t1); border-radius: 4px; }
.empty { color: var(--t3); text-align: center; padding: 30px 12px; font-size: 14px; }
.fine { color: var(--t3); font-size: 12.5px; line-height: 1.55; }
.stack { display: grid; gap: 14px; }
.row { display: flex; gap: 10px; align-items: center; }
.grow { flex: 1; min-width: 0; }
.ell { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
input.field, textarea.field, select.field { width: 100%; height: 46px; padding: 0 14px; border-radius: 14px; background: var(--card2); border: 1px solid var(--line2); outline: none; font-size: 15px; transition: border-color .15s; }
textarea.field { height: auto; padding: 12px 14px; resize: vertical; min-height: 84px; line-height: 1.5; }
.field:focus { border-color: var(--line3); background: var(--card3); }
label.lab { display: grid; gap: 8px; font-size: 13px; color: var(--t2); font-weight: 500; }
label.lab .opt { color: var(--t3); font-weight: 400; }
.affix { display: flex; align-items: stretch; }
.affix > span { display: grid; place-items: center; padding: 0 13px; background: var(--card3); border: 1px solid var(--line2); color: var(--t3); font: 500 14px var(--mono); }
.affix > span:first-child { border-right: 0; border-radius: 14px 0 0 14px; }
.affix > span:last-child { border-left: 0; border-radius: 0 14px 14px 0; }
.affix .field { border-radius: 0; }
.affix .field:first-child { border-radius: 14px 0 0 14px; }
.affix .field:last-child { border-radius: 0 14px 14px 0; }

/* ── home ──────────────────────────────────────────────── */
.hero { text-align: center; padding: 64px 0 46px; }
.hero h1 { font-size: clamp(46px, 6.4vw, 84px); font-weight: 560; letter-spacing: -.052em; line-height: .98; }
.hero h1 .x { display: inline-block; font-weight: 700; letter-spacing: -.06em; }
.hero p.lede { max-width: 600px; margin: 22px auto 0; color: var(--t2); font-size: 18.5px; line-height: 1.55; }
.hero .cta { display: flex; gap: 10px; justify-content: center; margin-top: 30px; }
.hero .live-line { display: inline-flex; align-items: center; gap: 10px; height: 34px; padding: 0 14px 0 8px; border-radius: 999px; border: 1px solid var(--line2); color: var(--t2); font-size: 13.5px; margin-bottom: 26px; }
.hero .live-line b { color: var(--t1); font-weight: 560; }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--live); box-shadow: 0 0 0 0 rgba(63, 214, 123, .6); animation: pulse 2.2s infinite; margin-left: 4px; }
@keyframes pulse { 70% { box-shadow: 0 0 0 7px rgba(63, 214, 123, 0); } 100% { box-shadow: 0 0 0 0 rgba(63, 214, 123, 0); } }

.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.b-explore { grid-column: span 7; height: 330px; padding: 0; overflow: hidden; }
.b-pay { grid-column: span 5; height: 330px; padding: 0; overflow: hidden; }
.b-fees { grid-column: span 4; min-height: 300px; display: flex; flex-direction: column; }
.b-route { grid-column: span 4; min-height: 300px; }
.b-receipt { grid-column: span 4; min-height: 300px; }

/* token mosaic: columns drift in opposite directions */
.mosaic { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 10px; mask-image: linear-gradient(to bottom, #000 62%, transparent 94%); }
.mcol { display: flex; flex-direction: column; gap: 10px; animation: drift 38s linear infinite; }
.mcol:nth-child(2n) { animation-direction: reverse; animation-duration: 46s; }
.mosaic:hover .mcol { animation-play-state: paused; }
@keyframes drift { to { transform: translateY(-50%); } }
.tile { position: relative; border-radius: 16px; overflow: hidden; background: var(--card3); flex: none; box-shadow: inset 0 0 0 1px var(--line); }
.tile img { width: 100%; height: 100%; object-fit: cover; }
.tile .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 10px 9px; background: linear-gradient(transparent, rgba(0, 0, 0, .86)); font-size: 12px; line-height: 1.35; }
.tile .cap b { display: block; font-weight: 600; font-size: 12.5px; }
.tile .cap span { color: rgba(255, 255, 255, .72); font: 11px var(--mono); }
.tile .who { position: absolute; left: 8px; top: 8px; display: flex; align-items: center; gap: 5px; height: 22px; padding: 0 8px 0 2px; border-radius: 999px; background: rgba(0, 0, 0, .7); backdrop-filter: blur(6px); font-size: 10.5px; font-weight: 560; }
.tile .who .av { width: 18px; height: 18px; font-size: 8px; }

/* payments ticker */
.ticker { position: absolute; inset: 0; padding: 14px 16px; overflow: hidden; mask-image: linear-gradient(to bottom, transparent, #000 10%, #000 70%, transparent 92%); }
.ticker-in { display: grid; gap: 10px; animation: rise 30s linear infinite; }
.ticker:hover .ticker-in { animation-play-state: paused; }
@keyframes rise { to { transform: translateY(-50%); } }
.slip { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: 18px; background: var(--card2); border: 1px solid var(--line); }
.slip .amt { font-size: 22px; font-weight: 600; letter-spacing: -.03em; line-height: 1.1; }
.slip small { color: var(--t2); font-size: 13px; }
.slip small b { color: var(--t1); font-weight: 560; }
.slip .route { margin-left: auto; display: flex; align-items: center; gap: 8px; color: var(--t3); }
.slip .when { width: 34px; text-align: right; color: var(--t3); font: 12px var(--mono); }
.rail-badge { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: var(--card3); font: 700 11px var(--mono); color: var(--t1); box-shadow: inset 0 0 0 1px var(--line2); }
.rail-badge.xm { background: #f2f2f0; color: #000; }

/* odometer */
.odo { display: flex; align-items: flex-end; font-size: 44px; font-weight: 600; letter-spacing: -.045em; line-height: 1; height: 48px; overflow: hidden; margin-top: 4px; }
.odo .d { display: inline-block; height: 48px; overflow: hidden; }
.odo .d span { display: block; height: 48px; line-height: 48px; transition: transform 1.1s var(--ease); }
.odo .s { display: inline-block; line-height: 48px; }
.spark { margin-top: auto; width: 100%; height: 88px; }
.spark path.l { fill: none; stroke: var(--t1); stroke-width: 1.6; }
.spark path.a { fill: url(#sparkfill); stroke: none; }
.kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
.kpis div { padding: 12px; border-radius: 14px; background: var(--card2); display: grid; gap: 4px; }
.kpis b { font-size: 17px; font-weight: 600; letter-spacing: -.02em; }

.route-q { display: flex; align-items: center; gap: 10px; height: 46px; padding: 0 14px; border-radius: 14px; border: 1px solid var(--line3); background: var(--card2); margin: 6px 0 12px; }
.route-q svg { width: 16px; height: 16px; color: var(--t3); }
.route-q input { flex: 1; border: 0; background: none; outline: none; }
.acct { display: flex; align-items: center; gap: 12px; padding: 9px 4px; border-top: 1px solid var(--line); }
.acct:first-of-type { border-top: 0; }
.acct b { font-weight: 560; font-size: 14.5px; }
.acct small { display: block; color: var(--t3); font-size: 12.5px; }
.acct .end { margin-left: auto; text-align: right; font: 500 13.5px var(--mono); }
.acct .end small { font-family: var(--sans); }

.receipt { font: 12.5px/1.75 var(--mono); color: var(--t2); }
.receipt .rhead { display: flex; justify-content: space-between; color: var(--t1); font-weight: 600; font-size: 13px; }
.receipt .r { display: grid; grid-template-columns: 1fr auto; gap: 12px; }
.receipt .r span:last-child { color: var(--t1); text-align: right; }
.receipt hr { border: 0; border-top: 1px dashed var(--line3); margin: 8px 0; }
.receipt .tot span { color: var(--t1); font-weight: 600; }
.receipt a { color: var(--t1); text-decoration: underline; text-decoration-color: var(--line3); text-underline-offset: 3px; }

/* sections */
.section { margin-top: 64px; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.section-head h2 { font-size: 28px; font-weight: 580; letter-spacing: -.035em; }
.section-head p { color: var(--t2); margin-top: 4px; }

/* token table */
.ttable { width: 100%; border-collapse: separate; border-spacing: 0; }
.ttable th { text-align: left; font: 500 11px var(--mono); text-transform: uppercase; letter-spacing: .06em; color: var(--t3); padding: 0 14px 12px; }
.ttable td { padding: 14px; border-top: 1px solid var(--line); vertical-align: middle; font-size: 14.5px; }
.ttable tbody tr { cursor: pointer; transition: background .12s; }
.ttable tbody tr:hover td { background: rgba(255, 255, 255, .02); }
.ttable .r { text-align: right; }
.tok { display: flex; align-items: center; gap: 12px; min-width: 0; }
.tok-img { width: 42px; height: 42px; border-radius: 12px; overflow: hidden; flex: none; background: var(--card3); box-shadow: inset 0 0 0 1px var(--line); }
.tok-img img { width: 100%; height: 100%; object-fit: cover; }
.tok b { font-weight: 580; display: block; }
.tok small { color: var(--t3); font: 12px var(--mono); }
.curve { display: grid; gap: 6px; width: 120px; margin-left: auto; }
.curve span { font: 11.5px var(--mono); color: var(--t3); text-align: right; }

.builders { display: grid; grid-template-columns: 1fr 1.1fr; gap: 14px; }
.builders .copy { padding: 30px; display: flex; flex-direction: column; gap: 16px; }
.builders h3 { font-size: 26px; font-weight: 580; letter-spacing: -.035em; line-height: 1.15; }
.builders ul { list-style: none; padding: 0; display: grid; gap: 10px; color: var(--t2); }
.builders li { display: flex; gap: 10px; }
.builders li::before { content: ''; flex: none; width: 6px; height: 6px; margin-top: 9px; border-radius: 1px; background: var(--t1); }
pre.code { margin: 0; padding: 22px 24px; border-radius: var(--r); background: #050505; border: 1px solid var(--line); overflow: auto; font: 13px/1.7 var(--mono); color: #cfcfca; }
pre.code .c { color: #5f5f5b; }
pre.code .s { color: #d7c9a6; }
pre.code .kw { color: #f2f2f0; font-weight: 600; }
pre.code .n { color: #9ec3a8; }

/* explore grid */
.grid-tokens { display: grid; grid-template-columns: repeat(auto-fill, minmax(236px, 1fr)); gap: 14px; }
.tcard { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: border-color .15s, transform .2s var(--ease); display: flex; flex-direction: column; }
.tcard:hover { border-color: var(--line3); transform: translateY(-2px); }
.tcard .art { aspect-ratio: 1; background: var(--card3); position: relative; }
.tcard .art img { width: 100%; height: 100%; object-fit: cover; }
.tcard .art .tag { position: absolute; top: 10px; right: 10px; background: rgba(0, 0, 0, .72); backdrop-filter: blur(6px); color: var(--t1); }
.tcard .body { padding: 14px 16px 16px; display: grid; gap: 10px; }
.tcard .name { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.tcard .name b { font-weight: 600; font-size: 16px; }
.tcard .name span { font: 12px var(--mono); color: var(--t3); }
.tcard .stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.tcard .stats div { display: grid; gap: 2px; }
.tcard .stats b { font: 600 14px var(--mono); }
.tcard .to { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--t2); }
.toolbar { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 18px; }
.toolbar .search-in { flex: 1; min-width: 200px; max-width: 360px; }

/* token page */
.tok-hero { display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center; }
.tok-hero .tok-img { width: 104px; height: 104px; border-radius: 24px; }
.tok-hero h1 { font-size: 36px; font-weight: 600; letter-spacing: -.04em; line-height: 1.1; }
.tok-hero .sub { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-top: 8px; color: var(--t2); }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 22px 0 14px; }
.stat { padding: 18px; border-radius: 18px; background: var(--card); border: 1px solid var(--line); display: grid; gap: 6px; }
.stat b { font-size: 24px; font-weight: 600; letter-spacing: -.035em; }
.split2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.share { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; padding: 12px 0; border-top: 1px solid var(--line); }
.share:first-of-type { border-top: 0; }
.share .bar-meter { margin-top: 8px; }
.share .end { text-align: right; font: 500 14px var(--mono); }
.share .end small { display: block; color: var(--t3); font: 12px var(--sans); }
.feeline { font: 12.5px/1.6 var(--mono); padding: 12px 14px; border-radius: 14px; background: var(--card2); border: 1px dashed var(--line3); color: var(--t1); word-break: break-word; }

/* payments page */
.plist { display: grid; }
.prow { display: grid; grid-template-columns: auto 1fr auto auto auto; gap: 14px; align-items: center; padding: 13px 4px; border-top: 1px solid var(--line); }
.prow:first-child { border-top: 0; }
.prow .who b { font-weight: 560; }
.prow .who small { display: block; color: var(--t3); font-size: 12.5px; }
.prow .amt { font: 600 16px var(--mono); text-align: right; }
.prow .t { font: 12px var(--mono); color: var(--t3); width: 64px; text-align: right; }

/* analytics */
.kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 14px; }
.chart { width: 100%; height: auto; display: block; }
.chart .grid line { stroke: var(--line); }
.chart .bar { fill: var(--t1); }
.chart .bar.dim { fill: var(--card3); }
.chart .ln { fill: none; stroke: var(--live); stroke-width: 1.8; }
.chart text { fill: var(--t3); font: 10.5px var(--mono); }
.legend { display: flex; gap: 16px; font-size: 12.5px; color: var(--t2); }
.legend i { display: inline-block; width: 10px; height: 10px; border-radius: 3px; margin-right: 6px; vertical-align: -1px; }
.split-bar { display: flex; height: 10px; border-radius: 10px; overflow: hidden; background: var(--card3); margin: 10px 0; }
.split-bar i { display: block; height: 100%; }
.rank { display: grid; grid-template-columns: 22px auto 1fr auto; gap: 12px; align-items: center; padding: 10px 0; border-top: 1px solid var(--line); font-size: 14px; }
.rank:first-of-type { border-top: 0; }
.rank .n { font: 12px var(--mono); color: var(--t3); }
.rank .v { font: 500 13.5px var(--mono); }

/* launch */
.launch { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, 1fr); gap: 18px; align-items: start; }
.step { display: grid; gap: 14px; padding: 22px 0; border-top: 1px solid var(--line); }
.step:first-child { border-top: 0; padding-top: 4px; }
.step h3 { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 580; }
.step h3 i { font: normal 500 11px var(--mono); width: 22px; height: 22px; border-radius: 7px; display: grid; place-items: center; background: var(--card3); color: var(--t2); }
.step p.hint { color: var(--t3); font-size: 13.5px; margin-top: -8px; }
.two-col { display: grid; grid-template-columns: 1.5fr 1fr; gap: 12px; }
.drop { position: relative; display: flex; align-items: center; gap: 16px; padding: 14px; border-radius: 18px; border: 1px dashed var(--line3); cursor: pointer; transition: border-color .15s, background .15s; }
.drop:hover { border-color: rgba(255, 255, 255, .35); background: rgba(255, 255, 255, .015); }
.drop input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.drop .ph { width: 72px; height: 72px; border-radius: 16px; background: var(--card3); display: grid; place-items: center; overflow: hidden; color: var(--t3); }
.drop .ph img { width: 100%; height: 100%; object-fit: cover; }
.drop b { display: block; font-weight: 560; }
.drop small { color: var(--t3); }
.recips { display: grid; gap: 8px; }
.rline { display: grid; grid-template-columns: 38px minmax(0, 1fr) 118px 38px; gap: 8px; align-items: center; }
.rline .whoin { position: relative; }
.rline .whoin .field { padding-right: 110px; }
.rline .whoin small { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); font-size: 12px; color: var(--t3); max-width: 96px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; pointer-events: none; }
.rline .whoin small.ok { color: var(--t2); }
.rline .whoin small.bad { color: var(--neg); }
.rline .x { height: 46px; border-radius: 14px; border: 1px solid var(--line2); background: none; color: var(--t3); }
.rline .x:hover:not(:disabled) { color: var(--neg); border-color: rgba(255, 93, 82, .35); }
.rtools { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.rtools .sum { margin-left: auto; font: 600 14px var(--mono); }
.rtools .sum.ok { color: var(--live); }
.rtools .sum.bad { color: var(--neg); }
.preview { position: sticky; top: 84px; display: grid; gap: 14px; }
.pv-token { display: grid; grid-template-columns: 76px 1fr; gap: 14px; align-items: center; }
.pv-token .tok-img { width: 76px; height: 76px; border-radius: 18px; display: grid; place-items: center; color: var(--t3); }
.pv-token b { font-size: 24px; font-weight: 600; letter-spacing: -.035em; display: block; line-height: 1.15; }
.pv-token small { color: var(--t3); }
dl.kv { display: grid; }
dl.kv div { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-top: 1px solid var(--line); font-size: 14px; }
dl.kv div:first-child { border-top: 0; }
dl.kv dt { color: var(--t3); }
dl.kv dd { text-align: right; }
.est { padding: 16px; border-radius: 16px; background: var(--card2); display: grid; gap: 8px; }
.est input[type=range] { width: 100%; accent-color: var(--t1); }
.est .big { font-size: 24px; font-weight: 600; letter-spacing: -.03em; }
.est .line { display: flex; justify-content: space-between; font-size: 13.5px; color: var(--t2); }
.est .line b { color: var(--t1); font: 500 13.5px var(--mono); }

/* get paid / account */
.lookup-hero { text-align: center; padding: 30px 0 34px; }
.lookup-hero h1 { font-size: clamp(38px, 5vw, 60px); font-weight: 560; letter-spacing: -.048em; line-height: 1.02; }
.lookup-hero p { color: var(--t2); margin: 14px auto 0; max-width: 560px; }
.lookup { display: flex; gap: 8px; max-width: 520px; margin: 26px auto 0; padding: 6px 6px 6px 18px; border-radius: 999px; border: 1px solid var(--line3); background: var(--card); align-items: center; }
.lookup span { color: var(--t3); font: 600 16px var(--mono); }
.lookup input { flex: 1; border: 0; background: none; outline: none; font-size: 16px; min-width: 0; }
.acct-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 14px; align-items: start; }
.bal { font-size: 52px; font-weight: 600; letter-spacing: -.05em; line-height: 1; }
.mini3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mini3 div { padding: 12px; border-radius: 14px; background: var(--card2); display: grid; gap: 4px; }
.mini3 b { font: 600 16px var(--mono); }
.railopt { display: flex; gap: 12px; align-items: center; padding: 14px; border-radius: 16px; border: 1px solid var(--line2); cursor: pointer; transition: border-color .15s, background .15s; }
.railopt.on { border-color: var(--t1); background: rgba(255, 255, 255, .025); }
.railopt input { accent-color: var(--t1); }
.railopt b { font-weight: 560; }
.railopt small { display: block; color: var(--t3); }
.railopt.disabled { opacity: .5; cursor: not-allowed; }

/* developers + docs */
.dev-hero { display: grid; grid-template-columns: 1fr 1.1fr; gap: 26px; align-items: center; padding: 26px 0 10px; }
.dev-hero h1 { font-size: clamp(38px, 4.6vw, 58px); font-weight: 560; letter-spacing: -.048em; line-height: 1.02; }
.dev-hero p { color: var(--t2); margin-top: 16px; font-size: 17px; }
.feat { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 18px; }
.feat .card h4 { font-size: 15.5px; font-weight: 580; margin-bottom: 6px; }
.feat .card p { color: var(--t2); font-size: 14px; }
.feat .card .k { display: block; margin-bottom: 14px; }
.docs { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 42px; align-items: start; }
.toc { position: sticky; top: 90px; display: grid; gap: 2px; }
.toc .k { padding: 14px 10px 6px; }
.toc a { padding: 7px 10px; border-radius: 10px; color: var(--t2); font-size: 14px; }
.toc a:hover { color: var(--t1); }
.toc a.on { color: var(--t1); background: var(--card2); }
.doc { max-width: 760px; }
.doc section { padding: 4px 0 8px; scroll-margin-top: 90px; }
.doc h1 { font-size: 40px; font-weight: 600; letter-spacing: -.04em; margin-bottom: 10px; }
.doc h2 { font-size: 26px; font-weight: 580; letter-spacing: -.03em; margin: 26px 0 10px; padding-top: 18px; border-top: 1px solid var(--line); }
.doc section:first-child h2 { border-top: 0; margin-top: 0; }
.doc h3 { font-size: 17px; font-weight: 580; margin: 22px 0 8px; }
.doc p, .doc li { color: var(--t2); font-size: 15.5px; line-height: 1.7; }
.doc p + p { margin-top: 12px; }
.doc ul, .doc ol { padding-left: 20px; display: grid; gap: 6px; margin: 10px 0; }
.doc b, .doc strong { color: var(--t1); font-weight: 580; }
.doc code { font-size: 13px; padding: 1.5px 6px; border-radius: 6px; background: var(--card2); color: var(--t1); border: 1px solid var(--line); }
.doc pre.code { margin: 14px 0; }
.doc pre.code code { background: none; border: 0; padding: 0; color: inherit; }
.doc .callout { margin: 16px 0; padding: 14px 16px; border-radius: 14px; border: 1px solid var(--line2); background: var(--card); color: var(--t2); font-size: 14.5px; }
.doc .callout b { color: var(--t1); }
.dtable { width: 100%; border-collapse: collapse; margin: 12px 0; font-size: 14px; }
.dtable th { text-align: left; font: 500 11px var(--mono); text-transform: uppercase; letter-spacing: .06em; color: var(--t3); padding: 8px 10px; border-bottom: 1px solid var(--line2); }
.dtable td { padding: 10px; border-bottom: 1px solid var(--line); color: var(--t2); vertical-align: top; }
.dtable td:first-child { color: var(--t1); white-space: nowrap; }
.steps-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 16px 0; }
.steps-flow div { padding: 14px; border-radius: 14px; background: var(--card); border: 1px solid var(--line); font-size: 13.5px; color: var(--t2); }
.steps-flow b { display: block; color: var(--t1); font-weight: 580; margin-bottom: 4px; }
.steps-flow .k { display: block; margin-bottom: 10px; }

/* dashboard */
.proj { display: grid; gap: 16px; }
.proj-top { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.proj-top h3 { font-size: 20px; font-weight: 600; letter-spacing: -.02em; }
.secret { display: grid; gap: 8px; padding: 16px; border-radius: 16px; background: var(--card2); border: 1px solid var(--line3); }
.copyable { display: block; font: 13px var(--mono); padding: 10px 12px; border-radius: 10px; background: #050505; border: 1px solid var(--line); word-break: break-all; cursor: copy; color: var(--t1); }
.copyable:hover { border-color: var(--line3); }
details.fold-list { border-top: 1px solid var(--line); padding-top: 12px; }
details.fold-list summary { cursor: pointer; list-style: none; font-size: 14px; color: var(--t2); display: flex; justify-content: space-between; }
details.fold-list summary::after { content: '+'; color: var(--t3); }
details.fold-list[open] summary::after { content: '–'; }
.mtable { width: 100%; border-collapse: collapse; font-size: 13px; margin-top: 10px; }
.mtable th, .mtable td { padding: 8px 6px; border-top: 1px solid var(--line); text-align: left; }
.mtable th { font: 500 10.5px var(--mono); text-transform: uppercase; color: var(--t3); }

/* sheet (modal) + toast */
.sheet { border: 1px solid var(--line2); border-radius: 24px; background: var(--card); color: var(--t1); padding: 0; width: min(560px, calc(100vw - 28px)); box-shadow: 0 40px 100px rgba(0, 0, 0, .8); }
.sheet::backdrop { background: rgba(0, 0, 0, .7); backdrop-filter: blur(3px); }
.sheet-in { padding: 22px; display: grid; gap: 16px; }
.sheet header { display: flex; justify-content: space-between; align-items: center; font-size: 18px; font-weight: 600; }
#toast { position: fixed; left: 50%; bottom: 26px; transform: translate(-50%, 16px); opacity: 0; transition: .25s var(--ease); z-index: 100; background: var(--t1); color: #000; padding: 11px 18px; border-radius: 999px; font-weight: 560; font-size: 14px; pointer-events: none; max-width: calc(100vw - 32px); }
#toast.show { opacity: 1; transform: translate(-50%, 0); }
#toast.err { background: var(--neg); color: #fff; }

/* footer */
.foot { border-top: 1px solid var(--line); padding: 28px; display: grid; gap: 12px; }
.foot-brand { display: flex; gap: 10px; align-items: center; font-size: 14px; }
.foot-brand span { color: var(--t3); }
.foot nav { display: flex; gap: 18px; flex-wrap: wrap; font-size: 13.5px; color: var(--t2); }
.foot nav a:hover { color: var(--t1); }

/* ── ops console (shares this sheet) ───────────────────── */
.top { position: sticky; top: 0; z-index: 30; display: flex; align-items: center; gap: 16px; padding: 14px 24px; background: rgba(0, 0, 0, .82); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.brand img { width: 28px; height: 28px; }
.top-actions { margin-left: auto; display: flex; gap: 8px; }
.btn { display: inline-flex; align-items: center; justify-content: center; height: 36px; padding: 0 16px; border-radius: 999px; border: 0; background: var(--t1); color: #000; font-weight: 560; font-size: 13.5px; }
.btn.ghost { background: none; color: var(--t1); box-shadow: inset 0 0 0 1px var(--line2); }
.btn.danger { background: none; color: var(--neg); box-shadow: inset 0 0 0 1px rgba(255, 93, 82, .35); }
.btn.sm { height: 32px; padding: 0 12px; font-size: 13px; }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.row2 label, .stack > label { display: grid; gap: 6px; font-size: 13px; color: var(--t2); }
.ops input:not([type=radio]):not([type=checkbox]) { width: 100%; height: 40px; padding: 0 12px; border-radius: 12px; background: var(--card2); border: 1px solid var(--line2); outline: none; }
.feed { display: grid; }
.pay { display: flex; align-items: center; gap: 12px; padding: 10px 2px; border-top: 1px solid var(--line); }
.pay:first-child { border-top: 0; }
.pay .who { flex: 1; min-width: 0; }
.pay .who b { display: block; font-weight: 560; }
.pay .who small { color: var(--t3); }
.amt { font: 600 15px var(--mono); }

@media (max-width: 1180px) {
  .b-explore, .b-pay { grid-column: span 12; }
  .b-fees, .b-route, .b-receipt { grid-column: span 6; }
  .b-receipt { grid-column: span 12; }
  .ca { display: none; }
  .feat { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .app, .app.folded { grid-template-columns: 1fr; }
  .rail { position: fixed; inset: 0 auto 0 0; width: 280px; transform: translateX(-102%); transition: transform .28s var(--ease); }
  .app.open .rail { transform: none; box-shadow: 0 0 0 100vmax rgba(0, 0, 0, .6); }
  .fold { display: none; }
  .only-m { display: grid; }
  .launch, .acct-grid, .builders, .dev-hero, .split2, .two, .docs { grid-template-columns: 1fr; }
  .toc { position: static; display: flex; flex-wrap: wrap; }
  .toc .k { width: 100%; }
  .preview { position: static; }
  .stat-row, .kpi-row { grid-template-columns: 1fr 1fr; }
  .tok-hero { grid-template-columns: auto 1fr; }
  .tok-hero .acts { grid-column: 1 / -1; }
  .steps-flow { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  main { padding: 0 16px; }
  .bar { padding: 10px 14px; gap: 8px; }
  .search kbd { display: none; }
  .bar-actions .pill.solid { display: none; }
  .b-fees, .b-route { grid-column: span 12; }
  .hero { padding-top: 40px; }
  .hero .cta { flex-direction: column; }
  .mosaic { grid-template-columns: repeat(3, 1fr); }
  .mosaic .mcol:nth-child(4) { display: none; }
  .ttable .hide-s { display: none; }
  .two-col, .row2, .mini3, .feat { grid-template-columns: 1fr; }
  .rline { grid-template-columns: 34px minmax(0, 1fr) 96px 34px; }
  .prow { grid-template-columns: auto 1fr auto; }
  .prow .hide-s { display: none; }
  .page-head h1 { font-size: 32px; }
  .slip .route { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .mcol, .ticker-in, .pulse { animation: none; }
  .page { animation: none; }
}

/* ── overflow guards: grid tracks may shrink below content; wide tables scroll inside their card ── */
.bento { grid-template-columns: repeat(12, minmax(0, 1fr)); }
.card, .stat, .tcard { min-width: 0; }
#ltable, .table-scroll { overflow-x: auto; }
pre.code { max-width: 100%; }
.receipt .r span:first-child { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
@media (max-width: 960px) {
  .launch, .acct-grid, .builders, .dev-hero, .split2, .two, .docs { grid-template-columns: minmax(0, 1fr); }
  .stat-row, .kpi-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .hero h1 { font-size: clamp(36px, 10.4vw, 46px); }
  .hero p.lede { font-size: 16.5px; }
  .hide-xs { display: none; }
  .search { height: 38px; }
  .kpis, .mini3, .stat-row, .kpi-row { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .b-explore, .b-pay { height: 300px; }
  .ttable th, .ttable td { padding: 12px 10px; }
  .doc h1 { font-size: 32px; }
}
.search { min-width: 0; }
@media (max-width: 640px) { .bar-actions .pill { height: 36px; padding: 0 14px; } }
.doc { min-width: 0; }
.doc code { word-break: break-word; }
@media (max-width: 960px) {
  .dtable { display: block; overflow-x: auto; }
  .steps-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .toc { position: static; }
}

/* ── dashboard: send payouts ───────────────────────────── */
.send { display: grid; gap: 14px; padding: 18px; border-radius: 18px; background: var(--card2); border: 1px solid var(--line); }
.send-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; flex-wrap: wrap; }
.send-head > div:first-child { display: grid; gap: 4px; max-width: 460px; }
.send-head b { font-weight: 580; font-size: 16px; }
.send .field { background: var(--card); }
.send-one { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, .7fr) minmax(0, 1.4fr); gap: 10px; }
.csv-drop { display: grid; gap: 4px; place-items: center; text-align: center; padding: 26px 16px; border-radius: 16px; border: 1px dashed var(--line3); cursor: pointer; transition: background .15s; }
.csv-drop:hover { background: var(--card3); }
.csv-drop input { display: none; }
.sp { display: grid; gap: 12px; padding-top: 4px; border-top: 1px solid var(--line); }
.sp-sum { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; }
.sp-sum div { display: grid; gap: 4px; padding: 10px 12px; border-radius: 12px; background: var(--card); }
.sp-sum b { font: 600 15px var(--mono); }
.sp-sum small { font-size: 11px; }
.sp-table { max-height: 340px; overflow: auto; }
.sp-table .mtable { margin-top: 0; }
.sp-table th { position: sticky; top: 0; background: var(--card2); }
.mtable tr.bad td { background: rgba(255, 93, 82, .06); }
.neg-t { color: var(--neg); }

/* ── public payout page ────────────────────────────────── */
.proof { display: grid; gap: 22px; padding: 30px; border-radius: 26px; border: 1px solid var(--line2); background: radial-gradient(120% 90% at 100% 0%, rgba(255, 255, 255, .06), transparent 60%), var(--card); }
.proof-id { display: flex; gap: 16px; align-items: center; }
.proof-id h1 { font-size: 34px; font-weight: 600; letter-spacing: -.04em; line-height: 1.05; margin-top: 6px; }
.proof-id p { color: var(--t2); margin-top: 6px; }
.proof-id a { color: var(--t1); }
.proof-total .odo { font-size: 64px; height: 70px; }
.proof-total .odo .d, .proof-total .odo .d span, .proof-total .odo .s { height: 70px; line-height: 70px; }
.proof-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.proof-stats div { display: grid; gap: 6px; padding: 14px; border-radius: 16px; background: var(--card2); border: 1px solid var(--line); }
.proof-stats b { font: 600 18px var(--mono); }
.pay .tag { margin-right: 4px; }
.cta-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.cta-row b { font-size: 17px; font-weight: 580; }
@media (max-width: 760px) {
  .send-one { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .send-one .so-n { grid-column: 1 / -1; }
  .sp-sum { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof { padding: 20px; }
  .proof-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof-total .odo { font-size: 44px; height: 48px; }
  .proof-total .odo .d, .proof-total .odo .d span, .proof-total .odo .s { height: 48px; line-height: 48px; }
  .proof-feed .pay .tag { display: none; }
}
@media (min-width: 761px) { .proof-feed .m-status { display: none; } }
.nowrap { white-space: nowrap; }
.odo .d span.strip { height: auto !important; }
.odo { font-variant-numeric: tabular-nums; }
.odo .d { text-align: center; }

/* ── home: three ways in ───────────────────────────────── */
.hero .x-inline { color: var(--t1); font-weight: 650; }
.ways { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.way { display: flex; flex-direction: column; gap: 10px; padding: 24px; transition: border-color .15s, transform .2s var(--ease); }
.way:hover { border-color: var(--line3); transform: translateY(-2px); }
.way h3 { font-size: 21px; font-weight: 600; letter-spacing: -.03em; }
.way p { color: var(--t2); font-size: 14.5px; line-height: 1.55; }
.way .chip { height: 24px; font-size: 13px; padding: 0 9px 0 4px; gap: 5px; }
.way .chip .pf { width: 15px; height: 15px; }
.way .art { margin-top: auto; padding: 14px; border-radius: 14px; background: var(--card2); border: 1px solid var(--line); font: 500 12.5px/1.6 var(--mono); color: var(--t1); }
.art-desc { display: grid; gap: 4px; }
.art-desc .faint { font-size: 10.5px; text-transform: uppercase; letter-spacing: .08em; }
.art-list { display: grid; gap: 2px; }
.art-list span { color: var(--t2); }
.art-list b { margin-top: 8px; padding-top: 8px; border-top: 1px dashed var(--line2); font-weight: 600; }
.art-code .s { color: var(--t1); }
.art-code .n { color: var(--live); }
.art-code { color: var(--t2); }
.rail-flow { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin: 18px 0 14px; padding: 14px 18px; border-radius: 999px; border: 1px solid var(--line); font-size: 13.5px; color: var(--t3); }
.rail-flow b { color: var(--t1); font-weight: 560; }
.rail-flow i { width: 22px; height: 1px; background: var(--line3); }
@media (max-width: 960px) {
  .ways { grid-template-columns: minmax(0, 1fr); }
  .rail-flow { border-radius: 18px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .rail-flow i { display: none; }
}
