/* The landing. Structure after usual.money: black and bone slabs that start
 * with a rounded lip over the one before, centred display type in two or three
 * short lines with the stock icons set into the headline, one pill button,
 * stacked solid rounded cards with label-over-value pairs, one gradient wash.
 * The desk itself lives at /app in its own stylesheet. */
@font-face { font-family: "Uxum Grotesque"; font-weight: 400; font-style: normal; font-display: swap; src: url("https://framerusercontent.com/assets/pexfO5izGLBcHiyniDYIZUv6ls0.woff2") format("woff2"); }
@font-face { font-family: "Uxum Grotesque"; font-weight: 500; font-style: normal; font-display: swap; src: url("https://framerusercontent.com/assets/ci6qYgtb6YEPPF81fGDWEKf7bw.woff2") format("woff2"); }
@font-face { font-family: "Uxum Grotesque"; font-weight: 700; font-style: normal; font-display: swap; src: url("https://framerusercontent.com/assets/p3seIywnIAnIXHuYThOPrNgZfo.woff2") format("woff2"); }
:root {
  --black: #080808;
  --bone: #f6f5f2;
  --card: #111112;
  --card-2: #171718;
  --ink: #f4f3f0;
  --ink-2: #a3a3a0;
  --mute: #6f6f6c;
  --on-bone: #0d0d0d;
  --on-bone-2: #5c5c58;
  --acc: #f95e9d;
  --up: #63d99a;
  --down: #ff6b78;
  --display: "Uxum Grotesque", "Inter Tight", ui-sans-serif, system-ui, sans-serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
  --lip: 32px;
  --max: 1120px;
  --g: 20px;
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { color-scheme: dark; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body { margin: 0; background: var(--black); color: var(--ink); font: 400 16px/1.55 var(--sans); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
p, h1, h2, h3 { margin: 0; }
img, svg { display: block; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--g); }
.m { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.up { color: var(--up); } .down { color: var(--down); }

/* nav */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 30; height: 68px; display: flex; align-items: center; background: linear-gradient(var(--black), rgba(8, 8, 8, .7)); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.nav .wrap { width: 100%; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.brand { display: flex; align-items: center; gap: 9px; font-family: var(--display); font-weight: 700; font-size: 19px; letter-spacing: -0.02em; }
.brand .mark { width: 20px; height: 20px; border-radius: 6px; background: linear-gradient(135deg, #f95e9d, #e0186a); position: relative; box-shadow: 0 4px 14px rgba(249, 94, 157, .3); }
.brand .mark::after { content: ""; position: absolute; inset: 6px; background: var(--black); border-radius: 2px; }
.nav .links { display: flex; gap: 26px; font-size: 15px; color: var(--ink-2); }
.nav .links a:hover { color: var(--ink); }
.nav .right { justify-self: end; }
@media (max-width: 720px) { .nav .links { display: none; } .nav .wrap { grid-template-columns: 1fr auto; } .tabs button { padding: 0 14px; font-size: 14px; } .bigcard { padding: 22px; border-radius: 22px; } .kv { gap: 14px 24px; } }

/* pills */
.pill { display: inline-flex; align-items: center; gap: 10px; height: 44px; padding: 0 20px 0 8px; border-radius: 999px; background: linear-gradient(135deg, #ff77b0, #e0186a); color: #fff; font-weight: 500; font-size: 15px; transition: transform .15s ease, box-shadow .15s; box-shadow: 0 8px 28px rgba(249, 94, 157, .28); }
.pill:hover { transform: translateY(-1px); box-shadow: 0 12px 34px rgba(249, 94, 157, .4); }
.pill .o { width: 28px; height: 28px; border-radius: 50%; background: rgba(0, 0, 0, .35); display: grid; place-items: center; }
.pill .o::after { content: ""; width: 9px; height: 9px; border-radius: 2px; background: #fff; }
.pill.ghost { background: transparent; color: var(--ink); border: 1px solid rgba(255, 255, 255, .18); padding: 0 18px; box-shadow: none; }
.pill.ghost:hover { background: rgba(255, 255, 255, .06); box-shadow: none; }
.pill.sm { height: 38px; font-size: 14px; padding: 0 16px 0 6px; }
.pill.sm .o { width: 24px; height: 24px; }
.pill.bone { background: linear-gradient(135deg, #ff77b0, #e0186a); color: #fff; }

/* wallet chip (nav, dark) */
.wchip { display: inline-flex; align-items: center; gap: 8px; height: 38px; padding: 0 12px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, .18); font-family: var(--mono); font-size: 12px; }
.wchip .id { width: 10px; height: 10px; border-radius: 3px; background: var(--ink); }
.wchip .bal { color: var(--ink-2); padding-left: 8px; border-left: 1px solid rgba(255, 255, 255, .15); }
.wchip.is-wrong { color: var(--down); border-color: rgba(255, 107, 120, .5); }

/* slabs */
.slab { position: relative; padding: 96px 0 104px; }
.slab.bone.why { padding-bottom: 64px; }
.slab.bone { background: var(--bone); color: var(--on-bone); border-radius: var(--lip) var(--lip) 0 0; margin-top: calc(-1 * var(--lip)); background-image: linear-gradient(rgba(0, 0, 0, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, .03) 1px, transparent 1px); background-size: 48px 48px; background-position: center top; }
.slab.black { background: var(--black); color: var(--ink); border-radius: var(--lip) var(--lip) 0 0; margin-top: calc(-1 * var(--lip)); }
.slab.black + .slab.black { border-radius: 0; margin-top: 0; padding-top: 0; }
.slab .head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.eyebrow { display: block; font-size: 14px; font-weight: 500; color: var(--acc); margin-bottom: 14px; }
h2.d { font-family: var(--display); font-weight: 700; font-size: clamp(34px, 5vw, 56px); line-height: 1.02; letter-spacing: -0.035em; }
.slab .head p { margin: 18px auto 0; max-width: 56ch; font-size: 16.5px; line-height: 1.55; color: var(--ink-2); }
.slab.bone .head p { color: var(--on-bone-2); }

/* hero */
.hero { padding: 150px 0 60px; text-align: center; position: relative; }
.hero h1 { font-family: var(--display); font-weight: 700; font-size: clamp(42px, 7.2vw, 88px); line-height: 1; letter-spacing: -0.04em; max-width: 13ch; margin: 0 auto; }
.hero h1 .coins { display: inline-flex; vertical-align: -0.08em; margin: 0 .06em; }
.hero h1 .coins img { width: .82em; height: .82em; border-radius: 50%; border: 2px solid var(--black); margin-left: -.28em; box-shadow: 0 6px 20px rgba(0, 0, 0, .5); background: #fff; }
.hero h1 .coins img:first-child { margin-left: 0; }
.hero .sub { margin: 26px auto 0; max-width: 54ch; font-size: 17px; line-height: 1.55; color: var(--ink-2); }
.hero .cta { margin-top: 30px; display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }

/* the coin */
.ca { margin: 22px auto 0; display: inline-flex; align-items: center; gap: 12px; height: 40px; padding: 0 6px 0 14px; border-radius: 999px; background: var(--card); font-size: 13px; max-width: 100%; }
.ca .t { color: var(--acc); font-weight: 500; }
.ca .a { color: var(--ink-2); font-size: 12.5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 46vw; }
.ca .a:hover { color: var(--ink); }
.ca .cp { height: 28px; padding: 0 12px; border-radius: 999px; background: var(--card-2); font-size: 12.5px; font-weight: 500; }
.ca .cp:hover { background: var(--card-3, #1e1e20); }

/* stat card: label over value */
.stats { text-align: left; margin: 64px auto 0; max-width: 880px; background: var(--card); border-radius: 24px; padding: 8px; display: grid; grid-template-columns: repeat(4, 1fr); }
.stats > div { padding: 20px 22px; border-radius: 18px; }
.stats .k { font-size: 13px; color: var(--ink-2); display: flex; align-items: center; gap: 8px; }
.stats .k i { width: 8px; height: 8px; border-radius: 50%; background: var(--mute); }
.stats .k i.live { background: var(--acc); box-shadow: 0 0 0 4px rgba(249, 94, 157, .18); }
.stats > div:first-child .v { color: var(--acc); }
.stats .v { margin-top: 8px; font-family: var(--display); font-weight: 500; font-size: 28px; letter-spacing: -0.02em; line-height: 1; }
.stats .v small { font-size: 13px; color: var(--mute); margin-left: 6px; font-family: var(--sans); font-weight: 400; }
@media (max-width: 860px) { .stats { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .stats { grid-template-columns: 1fr; } }

/* token row */
.tokens { margin-top: 56px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; opacity: .55; filter: grayscale(1); transition: opacity .3s, filter .3s; }
.tokens:hover { opacity: 1; filter: none; }
.tokens a { display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 12px; color: var(--ink-2); }
.tokens img { width: 22px; height: 22px; border-radius: 50%; background: #fff; }

/* tabs pill + step card */
.tabs { display: flex; gap: 4px; margin: 0 auto 22px; padding: 6px; background: var(--card); border-radius: 999px; width: fit-content; max-width: 100%; overflow-x: auto; scrollbar-width: none; }
.tabs::-webkit-scrollbar { display: none; }
.tabs button { height: 44px; padding: 0 20px; border-radius: 999px; font-weight: 500; font-size: 15px; color: var(--ink-2); white-space: nowrap; }
.tabs button small { display: block; font-size: 11px; color: var(--mute); font-weight: 400; margin-top: -2px; }
.tabs button.is-on { background: var(--card-2); color: var(--ink); box-shadow: inset 0 0 0 1px rgba(249, 94, 157, .35); }
.bigcard { background: var(--card); border-radius: 28px; padding: 34px; max-width: 880px; margin: 0 auto; }
.bigcard h3 { font-family: var(--display); font-weight: 700; font-size: 28px; letter-spacing: -0.025em; }
.bigcard > p { margin-top: 12px; color: var(--ink-2); max-width: 62ch; }
.kv { display: flex; flex-wrap: wrap; gap: 18px 40px; margin-top: 24px; }
.kv div { min-width: 120px; }
.kv .k { font-size: 13px; color: var(--ink-2); }
.kv .v { margin-top: 4px; font-family: var(--display); font-weight: 500; font-size: 22px; letter-spacing: -0.02em; }
.kv .v.m { font-family: var(--mono); font-size: 16px; font-weight: 400; }
.wash { margin-top: 26px; border-radius: 22px; padding: 28px; background: radial-gradient(120% 140% at 50% 120%, rgba(249, 94, 157, .55), rgba(249, 94, 157, .12) 45%, rgba(0, 0, 0, 0) 75%), #0c0c0d; border: 1px solid rgba(255, 255, 255, .05); }
.wash h4 { margin: 0; font-family: var(--display); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; }
.wash p { margin-top: 8px; color: var(--ink-2); max-width: 60ch; }
.wash .rows { margin-top: 18px; font-family: var(--mono); font-size: 12.5px; display: grid; gap: 8px; }
.wash .rows div { display: grid; grid-template-columns: 150px 1fr; gap: 12px; }
.wash .rows span:first-child { color: var(--ink-2); }
.wash .rows span:last-child { word-break: break-all; }
.wash .ok { color: var(--up); }
.tri { display: inline-grid; grid-template-columns: repeat(3, 1fr); gap: 4px; width: 120px; height: 8px; vertical-align: middle; }
.tri i { display: block; border-radius: 4px; background: rgba(255, 255, 255, .1); position: relative; overflow: hidden; }
.tri i::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: var(--p, 0%); background: var(--ink-2); border-radius: 4px; }
.tri i.long::after { background: var(--up); } .tri i.short::after { background: var(--down); }
pre.state { margin: 18px 0 0; font: 12.5px/1.55 var(--mono); color: var(--ink-2); white-space: pre-wrap; word-break: break-word; background: #0c0c0d; border-radius: 16px; padding: 18px; max-height: 300px; overflow: auto; }
pre.state .k { color: var(--mute); } pre.state .s { color: #ffb3d1; } pre.state .n { color: var(--ink); }

/* three cards */
.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 1040px; margin: 14px auto 0; }
.three > div { background: var(--card); border-radius: 24px; padding: 28px; }
.three h3 { font-family: var(--display); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; }
.three p { margin-top: 10px; color: var(--ink-2); font-size: 15px; }
.three .kv { margin-top: 20px; gap: 14px 28px; }
.three .kv .v { font-size: 20px; }
.glyph { width: 44px; height: 44px; border-radius: 12px; background: var(--card-2); display: grid; place-items: center; margin-bottom: 18px; }
.glyph svg { width: 22px; height: 22px; stroke: var(--acc); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 860px) { .three { grid-template-columns: 1fr; } }

/* bone: priced off the tape */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; max-width: 1040px; margin: 0 auto; }
.split h2 { text-align: left; }
.split .copy p { margin-top: 16px; color: var(--on-bone-2); max-width: 46ch; font-size: 16.5px; }
.split .copy .cta { margin-top: 26px; }
.list { background: #fff; border-radius: 24px; padding: 8px; box-shadow: 0 30px 80px rgba(0, 0, 0, .08); }
.list .row { display: grid; grid-template-columns: 34px 1fr auto auto auto; gap: 14px; align-items: center; padding: 12px 14px; border-radius: 14px; font-size: 15px; color: var(--on-bone); }
.list .row:hover { background: #f3f2ee; }
.list .row img { width: 30px; height: 30px; border-radius: 50%; }
.list .row b { font-family: var(--display); font-weight: 500; font-size: 17px; letter-spacing: -0.01em; }
.list .row .m { font-size: 13.5px; color: var(--on-bone); }
.list .row .lev { font-family: var(--mono); font-size: 12px; color: #b0125a; background: rgba(249, 94, 157, .14); padding: 3px 8px; border-radius: 999px; }
.list .more { text-align: center; padding: 10px; font-size: 13px; color: var(--on-bone-2); }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split h2 { text-align: center; } .split .copy { text-align: center; } .split .copy p { margin-inline: auto; } }

/* embedded widget (white card in a black slab) */
.widget { max-width: 520px; margin: 0 auto; background: #fff; color: var(--on-bone); border-radius: 30px; padding: 24px; box-shadow: 0 40px 120px rgba(0, 0, 0, .6); }
.widget .top { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--on-bone-2); }
.widget .top b { font-family: var(--mono); font-size: 12px; background: #f0efeb; padding: 4px 9px; border-radius: 999px; color: var(--on-bone); font-weight: 400; }
.widget .name { margin-top: 16px; font-family: var(--display); font-weight: 700; font-size: 26px; letter-spacing: -0.025em; }
.widget .said { margin-top: 4px; color: var(--on-bone-2); font-size: 14px; }
.widget .said b { font-weight: 500; color: var(--on-bone); }
.widget .bars { margin-top: 20px; display: grid; gap: 10px; }
.widget .bar { display: grid; grid-template-columns: 52px 1fr 52px; gap: 12px; align-items: center; font-family: var(--mono); font-size: 12.5px; }
.widget .bar .t { height: 10px; border-radius: 5px; background: #efeeea; overflow: hidden; }
.widget .bar .t i { display: block; height: 100%; width: var(--w, 0%); border-radius: 5px; background: #c9c8c2; }
.widget .bar.long .t i { background: #2fbf7a; } .widget .bar.short .t i { background: #f0475a; }
.widget .top b { color: #b0125a; background: rgba(249, 94, 157, .14); }
.widget .bar .r { text-align: right; }
.widget .kv { margin-top: 20px; padding-top: 18px; border-top: 1px solid #ecebe6; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.widget .kv .k { color: var(--on-bone-2); }
.widget .kv .v { font-size: 18px; color: var(--on-bone); }
.widget .kv .v.m { font-size: 13px; word-break: break-all; }
@media (max-width: 600px) { .widget .kv { grid-template-columns: 1fr 1fr; } .widget { padding: 20px; border-radius: 24px; } }
.widget .kv a { color: var(--acc); }
.widget .none { margin-top: 14px; color: var(--on-bone-2); font-size: 14.5px; }
.widget .go { margin-top: 22px; display: flex; justify-content: center; }

/* faq */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { background: var(--card); border-radius: 18px; padding: 20px 22px; margin-top: 10px; }
.faq summary { cursor: pointer; list-style: none; font-family: var(--display); font-weight: 500; font-size: 18px; letter-spacing: -0.01em; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--mute); font-family: var(--sans); font-size: 22px; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq p { margin-top: 12px; color: var(--ink-2); font-size: 15.5px; max-width: 66ch; }

footer { padding: 30px 0 48px; color: var(--mute); font-size: 13.5px; }
footer .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
footer a { color: var(--ink-2); } footer a:hover { color: var(--ink); }
footer .fl { display: flex; gap: 18px; }

/* toast + sheet, shared with the app's wallet.js */
.toast { position: fixed; left: 50%; bottom: 20px; transform: translateX(-50%) translateY(12px); opacity: 0; background: var(--ink); color: var(--black); padding: 11px 16px; border-radius: 999px; font-size: 14px; z-index: 60; pointer-events: none; transition: opacity .2s, transform .2s; }
.toast.is-on { opacity: 1; transform: translateX(-50%); }
.toast.is-bad { background: var(--down); color: #1a0508; }
.sheet-wrap { position: fixed; inset: 0; z-index: 50; background: rgba(0, 0, 0, .6); display: flex; align-items: center; justify-content: center; padding: 16px; }
.sheet { width: 100%; max-width: 400px; background: var(--card); border-radius: 22px; padding: 22px; }
.sheet h3 { font-family: var(--display); font-weight: 700; font-size: 20px; margin-bottom: 8px; }
.wals { display: grid; gap: 6px; margin-top: 10px; }
.wal { display: flex; align-items: center; gap: 10px; height: 48px; padding: 0 14px; border-radius: 14px; background: var(--card-2); text-align: left; font-size: 15px; }
.wal img, .wal .wal-ico { width: 22px; height: 22px; border-radius: 6px; background: rgba(255, 255, 255, .1); }
.wal small { margin-left: auto; color: var(--mute); font-size: 12px; }
.sheet .acct { display: flex; align-items: center; gap: 10px; padding: 12px; border-radius: 14px; background: var(--card-2); margin-top: 6px; }
.sheet .acct .id { width: 22px; height: 22px; border-radius: 6px; background: var(--ink); flex: none; }
.sheet .acct .a { font-family: var(--mono); font-size: 12px; word-break: break-all; }
.sheet .acct .b { font-family: var(--mono); font-size: 11.5px; color: var(--mute); margin-top: 2px; }
.note { font-size: 13px; color: var(--mute); margin-top: 10px; }
.btn { display: inline-flex; align-items: center; height: 36px; padding: 0 14px; border-radius: 999px; background: var(--card-2); font-size: 14px; }
.btn.sm { height: 32px; }

/* motion */
.has-motion [data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; transition-delay: calc(var(--i, 0) * 70ms); }
.has-motion [data-reveal].is-in { opacity: 1; transform: none; }
