:root {
color-scheme: dark;
--paper: #0c0c0b;
--paper-2: #151514;
--card: #121211;
--ink: #f2efe6;
--ink-2: #b8b5ab;
--ink-3: #807e75;
--line: #242420;
--line-2: #35352f;
--ore: #e2b65b;
--ore-2: #f3d58a;
--ore-soft: rgba(226, 182, 91, 0.14);
--ore-glow: rgba(226, 182, 91, 0.55);
--up: #5cc79c;
--up-soft: rgba(92, 199, 156, 0.12);
--down: #e5745f;
--down-soft: rgba(229, 116, 95, 0.12);
--sans: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
--serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
--mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
--pad: clamp(20px, 5vw, 64px);
--wide: 1200px;
--radius: 14px;
--radius-sm: 9px;
--shadow: 0 1px 2px rgba(0, 0, 0, 0.5), 0 14px 36px -16px rgba(0, 0, 0, 0.8);
--ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}
*,
*::before,
*::after { box-sizing: border-box; }
html {
-webkit-text-size-adjust: 100%;
scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
html { scroll-behavior: auto; }
*, *::before, *::after {
animation-duration: 0.001ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.001ms !important;
}
}
body {
margin: 0;
position: relative;
z-index: 0;
isolation: isolate;
background: var(--paper);
color: var(--ink);
font-family: var(--sans);
font-size: 16px;
line-height: 1.55;
font-feature-settings: 'ss01' 1;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
[hidden] { display: none !important; }
a { color: inherit; }
::selection { background: var(--ore); color: #0c0c0b; }
:focus-visible {
outline: 2px solid var(--ore);
outline-offset: 3px;
border-radius: 4px;
}
.lantern {
position: fixed;
left: 0;
top: 0;
width: 1100px;
height: 1100px;
margin: -550px 0 0 -550px;
border-radius: 50%;
pointer-events: none;
z-index: -1;
background: radial-gradient(circle, rgba(226, 182, 91, 0.075), rgba(226, 182, 91, 0.02) 40%, transparent 65%);
transform: translate3d(var(--lx, -2000px), var(--ly, -2000px), 0);
will-change: transform;
}
body::before {
content: '';
position: fixed;
inset: 0;
z-index: 999;
pointer-events: none;
opacity: 0.055;
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
background-size: 180px 180px;
}
h1, h2, h3, h4 {
margin: 0;
font-weight: 500;
letter-spacing: -0.022em;
line-height: 1.08;
}
h1 { font-size: clamp(38px, 6.4vw, 78px); }
h2 { font-size: clamp(28px, 3.9vw, 46px); line-height: 1.12; }
h3 { font-size: 19px; letter-spacing: -0.012em; line-height: 1.3; }
p { margin: 0; }
em, .serif {
font-family: var(--serif);
font-style: italic;
font-weight: 400;
letter-spacing: -0.01em;
}
.eyebrow {
font-family: var(--mono);
font-size: 11px;
font-weight: 500;
letter-spacing: 0.16em;
text-transform: uppercase;
color: var(--ink-3);
}
.lede {
font-size: clamp(16px, 1.5vw, 18px);
color: var(--ink-2);
line-height: 1.6;
max-width: 62ch;
}
.num {
font-family: var(--mono);
font-variant-numeric: tabular-nums;
letter-spacing: -0.02em;
}
.muted { color: var(--ink-2); }
.dim { color: var(--ink-3); }
.up { color: var(--up); }
.down { color: var(--down); }
.wrap {
width: 100%;
max-width: var(--wide);
margin-inline: auto;
padding-inline: var(--pad);
}
.sec {
padding-block: clamp(56px, 8vw, 104px);
}
.sec-head {
display: grid;
grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
gap: clamp(24px, 4vw, 56px);
align-items: end;
margin-bottom: clamp(32px, 4vw, 52px);
}
.sec-head .eyebrow { margin-bottom: 18px; display: block; }
.sec-head .eyebrow::after {
content: '';
display: block;
width: 0;
height: 1px;
margin-top: 10px;
background: linear-gradient(90deg, var(--ore), var(--ore-2));
box-shadow: 0 0 8px var(--ore-glow);
transition: width 0.9s var(--ease) 0.25s;
}
.reveal.is-in .eyebrow::after { width: 36px; }
@media (max-width: 860px) {
.sec-head { grid-template-columns: 1fr; align-items: start; gap: 18px; }
}
.header {
position: sticky;
top: 0;
z-index: 60;
background: color-mix(in srgb, var(--paper) 78%, transparent);
backdrop-filter: saturate(1.4) blur(14px);
-webkit-backdrop-filter: saturate(1.4) blur(14px);
border-bottom: 1px solid transparent;
transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.header-in {
height: 66px;
display: flex;
align-items: center;
gap: 26px;
}
.brand {
display: inline-flex;
align-items: center;
gap: 9px;
text-decoration: none;
font-size: 16.5px;
letter-spacing: -0.03em;
font-weight: 500;
flex: none;
}
.brand:hover .mark { transform: translateX(2px); }
.mark {
height: 15px;
width: auto;
flex: none;
display: block;
transition: transform 0.4s var(--ease);
}
.nav {
display: flex;
align-items: center;
gap: 4px;
margin-inline-start: 8px;
}
.nav a {
text-decoration: none;
color: var(--ink-2);
font-size: 14px;
padding: 7px 11px;
border-radius: 8px;
transition: color 0.16s, background 0.16s;
}
.nav a:hover { color: var(--ink); background: var(--paper-2); }
.nav a[aria-current='page'] { color: var(--ink); }
.header-end {
margin-inline-start: auto;
display: flex;
align-items: center;
gap: 9px;
}
.menu-btn {
display: none;
width: 38px;
height: 34px;
align-items: center;
justify-content: center;
background: none;
border: 1px solid var(--line-2);
border-radius: 8px;
cursor: pointer;
color: var(--ink);
}
@media (max-width: 900px) {
.nav { display: none; }
.menu-btn { display: inline-flex; }
.header-end .btn--ghost { display: none; }
}
.drawer {
display: none;
border-bottom: 1px solid var(--line);
background: var(--paper);
}
.drawer.is-open { display: block; }
.drawer nav {
display: grid;
padding-block: 10px 18px;
}
.drawer a {
text-decoration: none;
color: var(--ink);
padding: 11px 2px;
border-bottom: 1px solid var(--line);
font-size: 16px;
}
.btn {
--btn-bg: var(--ink);
--btn-fg: #0c0c0b;
display: inline-flex;
position: relative;
will-change: transform;
align-items: center;
justify-content: center;
gap: 8px;
height: 40px;
padding-inline: 17px;
border: 1px solid var(--btn-bg);
border-radius: 999px;
background: var(--btn-bg);
color: var(--btn-fg);
font: inherit;
font-size: 14px;
font-weight: 500;
letter-spacing: -0.008em;
text-decoration: none;
cursor: pointer;
white-space: nowrap;
transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s, color 0.18s, border-color 0.18s, opacity 0.18s;
}
.btn:hover { box-shadow: 0 0 0 1px var(--ore-2) inset, 0 8px 24px -10px var(--ore-glow); }
.btn:active { transform: translateY(0) !important; }
.btn--ghost {
--btn-bg: transparent;
--btn-fg: var(--ink);
border-color: var(--line-2);
}
.btn--ghost:hover { background: var(--card); border-color: var(--ore); box-shadow: 0 8px 24px -12px var(--ore-glow); }
.btn--lg { height: 48px; padding-inline: 24px; font-size: 15px; }
.btn[disabled] { opacity: 0.45; pointer-events: none; }
.hero {
position: relative;
overflow: hidden;
padding-block: clamp(48px, 7vw, 92px) clamp(40px, 5vw, 68px);
}
.hero::before,
.hero::after {
content: '';
position: absolute;
pointer-events: none;
border-radius: 50%;
filter: blur(40px);
}
.hero::before {
right: -8%;
top: -25%;
width: 58%;
height: 115%;
background: radial-gradient(closest-side, rgba(226, 182, 91, 0.17), rgba(226, 182, 91, 0.05) 55%, transparent 100%);
animation: drift 24s ease-in-out infinite alternate;
}
.hero::after {
left: -14%;
bottom: -45%;
width: 55%;
height: 100%;
background: radial-gradient(closest-side, rgba(200, 150, 70, 0.11), rgba(200, 150, 70, 0.03) 55%, transparent 100%);
animation: drift2 31s ease-in-out infinite alternate;
}
@keyframes drift {
from { transform: translate3d(0, 0, 0) scale(1); }
to { transform: translate3d(-5%, 6%, 0) scale(1.1); }
}
@keyframes drift2 {
from { transform: translate3d(0, 0, 0) scale(1); }
to { transform: translate3d(7%, -5%, 0) scale(1.12); }
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid {
display: grid;
grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
gap: clamp(32px, 5vw, 72px);
align-items: center;
}
@media (max-width: 980px) {
.hero-grid { grid-template-columns: 1fr; gap: 36px; }
}
.hero h1 { margin-bottom: 22px; }
.hero h1 .line { display: block; }
.hero-sub {
font-size: clamp(16px, 1.6vw, 19px);
color: var(--ink-2);
max-width: 46ch;
line-height: 1.55;
}
.hero-cta {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-top: 30px;
}
.lede-link {
color: var(--ink);
text-decoration: none;
white-space: nowrap;
border-bottom: 1px solid var(--line-2);
transition: border-color 0.16s, color 0.16s;
}
.lede-link:hover { border-bottom-color: var(--ore); color: var(--ore-2); }
.panel {
position: relative;
background: var(--card);
border: 1px solid var(--line);
border-radius: var(--radius);
box-shadow: var(--shadow);
}
.panel::after,
.card::after,
.stat::after,
.coin::after {
content: '';
position: absolute;
inset: 0;
border-radius: inherit;
pointer-events: none;
opacity: 0;
background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), rgba(226, 182, 91, 0.10), transparent 62%);
transition: opacity 0.35s var(--ease);
}
.panel:hover::after,
.card:hover::after,
.stat:hover::after,
.coin:hover::after { opacity: 1; }
.card, .stat, .coin { position: relative; }
.panel > *, .card > *, .stat > *, .coin > * { position: relative; z-index: 1; }
.pos-card { overflow: hidden; }
.pos-card::before {
content: '';
position: absolute;
left: 0;
right: 0;
top: 0;
height: 2px;
z-index: 2;
background: linear-gradient(90deg, transparent, var(--ore) 30%, var(--ore-2) 50%, var(--ore) 70%, transparent);
background-size: 200% 100%;
animation: sheen 6s linear infinite;
}
@keyframes sheen {
from { background-position: 200% 0; }
to { background-position: -200% 0; }
}
.pos-top {
display: flex;
align-items: center;
gap: 12px;
padding: 15px 18px;
border-bottom: 1px solid var(--line);
}
.pos-logo {
width: 34px;
height: 34px;
border-radius: 8px;
border: 1px solid var(--line);
background: #fff;
object-fit: contain;
padding: 4px;
flex: none;
}
.pos-id { min-width: 0; flex: 1; }
.pos-id .sym {
font-family: var(--mono);
font-size: 14px;
font-weight: 500;
letter-spacing: 0.01em;
}
.pos-id .co {
font-size: 12px;
color: var(--ink-3);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.live-dot {
display: inline-flex;
align-items: center;
gap: 6px;
font-family: var(--mono);
font-size: 10.5px;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--ore);
}
.live-dot::before {
content: '';
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--ore);
box-shadow: 0 0 10px var(--ore-glow);
animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; transform: scale(1); }
50% { opacity: 0.35; transform: scale(0.8); }
}
.pos-price {
display: flex;
align-items: baseline;
gap: 10px;
padding: 18px 18px 6px;
}
.pos-price .big {
font-family: var(--mono);
font-size: clamp(28px, 3.4vw, 36px);
font-weight: 500;
letter-spacing: -0.035em;
font-variant-numeric: tabular-nums;
}
.pos-price .chg {
font-family: var(--mono);
font-size: 14px;
font-variant-numeric: tabular-nums;
}
.spark-wrap { padding: 4px 18px 14px; }
.spark { display: block; width: 100%; height: 66px; overflow: visible; }
.spark path.line {
fill: none;
stroke: var(--ink);
stroke-width: 1.5;
stroke-linecap: round;
stroke-linejoin: round;
vector-effect: non-scaling-stroke;
}
.spark path.area { stroke: none; fill: var(--ink); opacity: 0.06; }
.spark.mini path.line { stroke: var(--ink-2); stroke-width: 1.3; }
.pos-card .spark path.line {
stroke: var(--ore-2);
stroke-width: 1.7;
filter: drop-shadow(0 0 5px var(--ore-glow));
}
.pos-card .spark path.area { fill: var(--ore); opacity: 0.14; }
.spark .draw {
stroke-dasharray: var(--len);
stroke-dashoffset: var(--len);
animation: draw 1.5s var(--ease) forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }
.pos-ladder {
border-top: 1px solid var(--line);
padding: 6px 18px;
display: grid;
}
.rung {
display: flex;
justify-content: space-between;
align-items: center;
gap: 12px;
padding: 9px 0;
font-size: 13px;
color: var(--ink-2);
border-bottom: 1px solid var(--line);
}
.rung:last-child { border-bottom: 0; }
.rung b {
font-family: var(--mono);
font-weight: 500;
color: var(--ink);
font-variant-numeric: tabular-nums;
font-size: 13px;
}
.pos-foot {
border-top: 1px solid var(--line);
padding: 11px 18px;
display: flex;
justify-content: space-between;
gap: 12px;
font-size: 11.5px;
color: var(--ink-3);
}
.pos-foot .num { font-size: 11.5px; }
.flash-up { animation: flashUp 1.1s var(--ease); }
.flash-down { animation: flashDown 1.1s var(--ease); }
@keyframes flashUp {
0% { background: var(--up-soft); }
100% { background: transparent; }
}
@keyframes flashDown {
0% { background: var(--down-soft); }
100% { background: transparent; }
}
.cards {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 1px;
background: var(--line);
border: 1px solid var(--line);
border-radius: var(--radius);
overflow: hidden;
}
@media (max-width: 1040px) { .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .cards { grid-template-columns: 1fr; } }
.card {
background: var(--card);
padding: clamp(20px, 2.4vw, 28px);
display: flex;
flex-direction: column;
gap: 9px;
min-height: 190px;
transition: background 0.2s;
}
.card:hover { background: #161615; box-shadow: inset 0 0 0 1px rgba(226, 182, 91, 0.22); }
.card:hover .eyebrow { color: var(--ore); }
.card .eyebrow { margin-bottom: 6px; transition: color 0.25s; }
.card p { color: var(--ink-2); font-size: 14.5px; line-height: 1.55; }
.stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 0;
}
.stat {
background: var(--paper);
padding: clamp(22px, 2.8vw, 34px) clamp(18px, 2.4vw, 28px);
}
.stat .v {
font-family: var(--mono);
font-size: clamp(30px, 3.6vw, 42px);
font-weight: 500;
letter-spacing: -0.045em;
font-variant-numeric: tabular-nums;
display: block;
line-height: 1;
}
.stat .k {
margin-top: 10px;
font-size: 13px;
color: var(--ink-2);
display: block;
max-width: 24ch;
}
.board {
border: 1px solid var(--line);
border-radius: var(--radius);
background: var(--card);
overflow: hidden;
}
.board-foot {
border-top: 1px solid var(--line);
padding: 11px 16px;
display: flex;
justify-content: space-between;
gap: 12px;
flex-wrap: wrap;
font-size: 11.5px;
color: var(--ink-3);
}
.board-foot .num { font-size: 11.5px; }
table.markets {
width: 100%;
border-collapse: collapse;
font-size: 14px;
}
table.markets th {
text-align: right;
font-family: var(--mono);
font-size: 10.5px;
font-weight: 500;
letter-spacing: 0.13em;
text-transform: uppercase;
color: var(--ink-3);
padding: 11px 14px;
border-bottom: 1px solid var(--line);
background: var(--card);
white-space: nowrap;
}
table.markets th:first-child { text-align: left; }
table.markets td {
padding: 11px 14px;
border-bottom: 1px solid var(--line);
text-align: right;
vertical-align: middle;
white-space: nowrap;
}
table.markets tbody tr:last-child td { border-bottom: 0; }
table.markets tbody tr.row-in {
animation: rowIn 0.55s var(--ease) both;
}
@keyframes rowIn {
from { opacity: 0; transform: translateY(6px); }
to { opacity: 1; transform: none; }
}
table.markets tbody tr:hover .spark.mini path.line { stroke: var(--ore-2); }
table.markets tbody tr {
cursor: pointer;
transition: background 0.16s;
}
table.markets tbody tr:hover,
table.markets tbody tr:focus-within { background: rgba(226, 182, 91, 0.045); }
td.go {
width: 40px;
color: var(--ink-3);
font-family: var(--mono);
padding-inline-end: 18px;
}
td.go a {
color: inherit;
text-decoration: none;
display: inline-block;
transition: transform 0.2s var(--ease), color 0.2s;
}
tr:hover td.go a { color: var(--ore); transform: translateX(3px); }
td.asset { text-align: left; }
.asset-cell {
display: flex;
align-items: center;
gap: 11px;
min-width: 0;
}
.asset-cell img {
width: 27px;
height: 27px;
border-radius: 7px;
border: 1px solid var(--line);
background: #fff;
object-fit: contain;
padding: 3px;
flex: none;
}
.asset-cell .fallback {
width: 27px;
height: 27px;
border-radius: 7px;
border: 1px solid var(--line);
display: grid;
place-items: center;
font-family: var(--mono);
font-size: 10px;
color: var(--ink-3);
flex: none;
}
.asset-cell .n { min-width: 0; }
.asset-cell .sym { font-family: var(--mono); font-size: 13px; letter-spacing: 0.01em; }
.asset-cell .co { font-size: 11.5px; color: var(--ink-3); overflow: hidden; text-overflow: ellipsis; }
td .mini { width: 78px; height: 26px; display: block; margin-inline-start: auto; }
@media (max-width: 1080px) {
.board-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.markets { min-width: 760px; }
}
.hide-sm { }
@media (max-width: 620px) { .hide-sm { display: none; } }
.cta {
text-align: center;
padding-block: clamp(64px, 9vw, 118px);
position: relative;
overflow: hidden;
}
.cta::before {
content: '';
position: absolute;
left: 50%;
bottom: -40%;
width: 70%;
height: 100%;
transform: translateX(-50%);
background: radial-gradient(50% 50% at 50% 60%, rgba(226, 182, 91, 0.16), transparent 70%);
filter: blur(12px);
pointer-events: none;
animation: breathe 6s ease-in-out infinite alternate;
}
.cta > * { position: relative; }
.cta h2 { max-width: 17ch; margin-inline: auto; }
.cta .lede { margin: 20px auto 0; text-align: center; }
.cta .hero-cta { justify-content: center; }
.footer {
padding-block: 26px 34px;
}
.foot-row {
display: flex;
align-items: center;
gap: 16px 28px;
flex-wrap: wrap;
}
.foot-row .brand { font-size: 15px; }
.foot-links {
display: flex;
gap: 4px;
flex-wrap: wrap;
}
.foot-links a {
font-size: 13.5px;
color: var(--ink-2);
text-decoration: none;
padding: 5px 9px;
border-radius: 7px;
}
.foot-links a:hover { color: var(--ink); background: var(--paper-2); }
.foot-disclaimer {
margin-inline-start: auto;
font-size: 12.5px;
color: var(--ink-3);
}
@media (max-width: 760px) {
.foot-disclaimer { margin-inline-start: 0; flex-basis: 100%; }
}
.field { display: grid; gap: 7px; }
.field label { font-size: 13px; color: var(--ink-2); }
.field .hint { font-size: 12px; color: var(--ink-3); }
input[type='text'],
input[type='url'],
textarea,
select {
font: inherit;
font-size: 14.5px;
color: var(--ink);
background: var(--card);
border: 1px solid var(--line-2);
border-radius: var(--radius-sm);
padding: 10px 12px;
width: 100%;
transition: border-color 0.16s, box-shadow 0.16s;
}
input:focus, textarea:focus, select:focus {
outline: none;
border-color: var(--ore);
box-shadow: 0 0 0 3px var(--ore-soft);
}
textarea { resize: vertical; min-height: 84px; line-height: 1.5; }
input::placeholder, textarea::placeholder { color: var(--ink-3); }
.choice {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 8px;
}
.choice button {
font: inherit;
font-size: 14px;
padding: 11px;
border: 1px solid var(--line-2);
border-radius: var(--radius-sm);
background: var(--card);
cursor: pointer;
color: var(--ink-2);
transition: all 0.16s;
}
.choice button[aria-pressed='true'] {
border-color: var(--ore);
color: var(--ink);
background: var(--paper);
box-shadow: 0 0 0 3px var(--ore-soft);
}
.choice button[aria-pressed='true'][data-side='long'] { border-color: var(--up); color: var(--up); background: var(--up-soft); box-shadow: none; }
.choice button[aria-pressed='true'][data-side='short'] { border-color: var(--down); color: var(--down); background: var(--down-soft); box-shadow: none; }
input[type='range'] {
-webkit-appearance: none;
appearance: none;
width: 100%;
height: 26px;
background: none;
cursor: pointer;
}
input[type='range']::-webkit-slider-runnable-track {
height: 3px;
background: var(--line-2);
border-radius: 999px;
}
input[type='range']::-webkit-slider-thumb {
-webkit-appearance: none;
width: 17px;
height: 17px;
margin-top: -7px;
border-radius: 50%;
background: var(--ore);
border: 3px solid var(--card);
box-shadow: 0 0 0 1px var(--ore);
}
input[type='range']::-moz-range-track { height: 3px; background: var(--line-2); border-radius: 999px; }
input[type='range']::-moz-range-thumb { width: 15px; height: 15px; border-radius: 50%; background: var(--ore); border: 3px solid var(--card); }
.market-picker {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(112px, 1fr));
gap: 8px;
padding: 3px;
}
.market-opt {
display: flex;
align-items: center;
gap: 8px;
padding: 9px 10px;
border: 1px solid var(--line);
border-radius: var(--radius-sm);
background: var(--card);
cursor: pointer;
font: inherit;
text-align: left;
transition: all 0.16s;
min-width: 0;
}
.market-opt img { width: 20px; height: 20px; object-fit: contain; flex: none; }
.market-opt .sym { font-family: var(--mono); font-size: 12.5px; }
.market-opt .px { font-family: var(--mono); font-size: 10.5px; color: var(--ink-3); }
.market-opt:hover { border-color: var(--line-2); }
.market-opt[aria-pressed='true'] { border-color: var(--ore); box-shadow: 0 0 0 3px var(--ore-soft); }
.market-opt[disabled] { opacity: 0.4; cursor: not-allowed; }
.notice {
border: 1px solid var(--line-2);
border-radius: var(--radius-sm);
padding: 12px 14px;
font-size: 13.5px;
color: var(--ink-2);
background: var(--paper-2);
line-height: 1.5;
}
.notice--bad { border-color: color-mix(in srgb, var(--down) 40%, transparent); background: var(--down-soft); color: var(--down); }
.notice--good { border-color: color-mix(in srgb, var(--up) 34%, transparent); background: var(--up-soft); color: var(--up); }
.coin-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 14px;
}
.coin {
background: var(--card);
border: 1px solid var(--line);
border-radius: var(--radius);
padding: 17px;
display: grid;
gap: 12px;
transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.coin:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.coin-top { display: flex; align-items: center; gap: 11px; }
.coin-avatar {
width: 40px;
height: 40px;
border-radius: 10px;
border: 1px solid var(--line);
background: var(--paper-2);
display: grid;
place-items: center;
font-family: var(--mono);
font-size: 13px;
color: var(--ink-2);
flex: none;
object-fit: cover;
overflow: hidden;
}
.coin-side {
display: inline-flex;
align-items: center;
gap: 5px;
font-family: var(--mono);
font-size: 11px;
padding: 3px 9px;
border-radius: 999px;
}
.side-long { background: var(--up-soft); color: var(--up); }
.side-short { background: var(--down-soft); color: var(--down); }
.coin-bar { height: 4px; border-radius: 999px; background: var(--paper-2); overflow: hidden; }
.coin-bar i {
display: block;
height: 100%;
background: linear-gradient(90deg, var(--ore), var(--ore-2));
box-shadow: 0 0 10px var(--ore-glow);
border-radius: 999px;
transition: width 0.6s var(--ease);
}
.empty {
border: 1px dashed var(--line-2);
border-radius: var(--radius);
padding: clamp(34px, 5vw, 58px);
text-align: center;
color: var(--ink-2);
}
.coin-head {
display: flex;
align-items: center;
gap: 16px;
flex-wrap: wrap;
margin-bottom: 22px;
}
.coin-avatar--lg { width: 56px; height: 56px; border-radius: 14px; font-size: 16px; }
.coin-avatar img { width: 100%; height: 100%; object-fit: cover; }
.coin-meta {
display: flex;
align-items: center;
gap: 8px;
flex-wrap: wrap;
margin-top: 6px;
font-size: 13.5px;
color: var(--ink-2);
}
.coin-meta .dot { color: var(--line-2); }
.coin-meta .num { font-size: 13px; }
.coin-kpis {
display: flex;
gap: 26px;
margin-inline-start: auto;
}
.coin-kpis > div { display: grid; gap: 2px; }
.coin-kpis .k { font-size: 11.5px; color: var(--ink-3); }
.coin-kpis b { font-size: 18px; font-weight: 500; letter-spacing: -0.03em; }
@media (max-width: 760px) {
.coin-kpis { margin-inline-start: 0; flex-basis: 100%; gap: 20px; }
}
.coin-grid2 {
display: grid;
grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
gap: clamp(16px, 2.5vw, 28px);
align-items: start;
}
@media (max-width: 900px) {
.coin-grid2 { grid-template-columns: 1fr; }
#tradeCol { position: static !important; }
}
.row-between { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.quote { display: grid; gap: 7px; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--paper); }
.quote b { font-weight: 500; font-size: 13.5px; }
.chip {
font: inherit;
font-size: 11.5px;
font-family: var(--mono);
padding: 2px 8px;
border: 1px solid var(--line-2);
background: var(--card);
border-radius: 999px;
cursor: pointer;
color: var(--ink-2);
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.trades { display: grid; }
.trade-row {
display: grid;
grid-template-columns: 1fr auto auto auto;
gap: 12px;
padding: 8px 0;
border-bottom: 1px solid var(--line);
font-size: 12.5px;
align-items: center;
}
.trade-row:last-child { border-bottom: 0; }
.trade-row a { color: var(--ink-2); text-decoration: none; }
.trade-row a:hover { color: var(--ink); }
.trade-row .num { font-size: 12.5px; }
.doc {
display: grid;
grid-template-columns: 210px minmax(0, 1fr);
gap: clamp(28px, 5vw, 64px);
align-items: start;
}
@media (max-width: 900px) { .doc { grid-template-columns: 1fr; } }
.doc-nav { position: sticky; top: 90px; display: grid; gap: 2px; }
@media (max-width: 900px) { .doc-nav { position: static; } }
.doc-nav a {
font-size: 13.5px;
color: var(--ink-2);
text-decoration: none;
padding: 6px 10px;
border-radius: 7px;
border-left: 2px solid transparent;
}
.doc-nav a:hover { color: var(--ink); background: var(--paper-2); }
.doc-nav a.is-active { color: var(--ink); border-left-color: var(--ore); background: var(--paper-2); }
.doc-body { max-width: 68ch; }
.doc-body section { padding-bottom: 42px; }
.doc-body h2 { font-size: clamp(24px, 2.6vw, 32px); margin-bottom: 14px; }
.doc-body h3 { margin: 26px 0 8px; }
.doc-body p { color: var(--ink-2); margin-bottom: 13px; line-height: 1.65; }
.doc-body ul { color: var(--ink-2); padding-left: 18px; margin: 0 0 14px; line-height: 1.65; }
.doc-body li { margin-bottom: 7px; }
.doc-body code {
font-family: var(--mono);
font-size: 0.88em;
background: var(--paper-2);
border: 1px solid var(--line);
border-radius: 5px;
padding: 1px 5px;
}
.doc-body strong { color: var(--ink); font-weight: 500; }
table.spec {
width: 100%;
border-collapse: collapse;
font-size: 14px;
margin: 6px 0 18px;
border: 1px solid var(--line);
border-radius: var(--radius-sm);
overflow: hidden;
}
table.spec th, table.spec td { padding: 9px 12px; border-bottom: 1px solid var(--line); text-align: left; }
table.spec th { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; background: var(--card); }
table.spec td:last-child { font-family: var(--mono); font-variant-numeric: tabular-nums; white-space: nowrap; }
table.spec tr:last-child td { border-bottom: 0; }
.reveal {
opacity: 0;
transform: translateY(14px);
transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d='1'] { transition-delay: 0.07s; }
.reveal[data-d='2'] { transition-delay: 0.14s; }
.reveal[data-d='3'] { transition-delay: 0.21s; }
.reveal[data-d='4'] { transition-delay: 0.28s; }
.progress {
position: fixed;
top: 0;
left: 0;
height: 2px;
width: 100%;
transform: scaleX(0);
transform-origin: 0 50%;
background: linear-gradient(90deg, var(--ore), var(--ore-2));
box-shadow: 0 0 8px var(--ore-glow);
z-index: 100;
pointer-events: none;
}
.skip {
position: absolute;
left: -9999px;
top: 0;
background: var(--ink);
color: var(--paper);
padding: 10px 16px;
z-index: 200;
border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }
.spinner {
width: 15px;
height: 15px;
border: 2px solid var(--line-2);
border-top-color: var(--ink);
border-radius: 50%;
animation: spin 0.7s linear infinite;
display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }
.skeleton {
background: linear-gradient(90deg, var(--paper-2) 25%, #1c1c1a 50%, var(--paper-2) 75%);
background-size: 200% 100%;
animation: shimmer 1.4s linear infinite;
border-radius: 5px;
color: transparent;
}
@keyframes shimmer {
from { background-position: 200% 0; }
to { background-position: -200% 0; }
}
