:root {
--paper: #06080d;
--paper-2: #0b0e15;
--card: #101520;
--ink: #eaeff7;
--ink-2: #b9c2d2;
--mist: #8d97a9;
--mist-2: #7a8598;
--line: rgba(255, 255, 255, 0.10);
--line-soft: rgba(255, 255, 255, 0.055);
--hover: rgba(255, 255, 255, 0.04);
--chip: rgba(255, 255, 255, 0.06);
--pos: #35d39b;
--pos-soft: rgba(53, 211, 155, 0.14);
--neg: #ff6f61;
--neg-soft: rgba(255, 111, 97, 0.14);
--amber: #e5a94f;
--amber-soft: rgba(229, 169, 79, 0.14);
--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
--shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 10px 30px rgba(0, 0, 0, 0.5);
--shadow-lg: 0 2px 6px rgba(0, 0, 0, 0.5), 0 24px 60px rgba(0, 0, 0, 0.7);
--r-sm: 8px;
--r: 14px;
--r-lg: 20px;
--r-pill: 999px;
--pad: clamp(18px, 4vw, 44px);
--glass: rgba(16, 21, 32, 0.74);
--glass-blur: blur(18px) saturate(1.35);
--sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
--serif: 'Instrument Serif', 'Iowan Old Style', Georgia, serif;
--mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
color-scheme: dark;
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 118px; }
html.js-scroll { scroll-behavior: auto; }
@keyframes rise-in {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: none; }
}
@keyframes flash-up {
0% { background: rgba(53, 211, 155, 0.22); }
100% { background: transparent; }
}
@keyframes flash-down {
0% { background: rgba(255, 111, 97, 0.20); }
100% { background: transparent; }
}
@keyframes drift {
0% { transform: translate3d(-4%, -3%, 0) scale(1); }
50% { transform: translate3d(4%, 3%, 0) scale(1.08); }
100% { transform: translate3d(-4%, -3%, 0) scale(1); }
}
@keyframes sweep { to { transform: rotate(360deg); } }
@keyframes roll-up {
from { transform: translateY(0.9em); opacity: 0; }
to { transform: none; opacity: 1; }
}
@keyframes roll-down {
from { transform: translateY(-0.9em); opacity: 0; }
to { transform: none; opacity: 1; }
}
@keyframes view-in {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: none; }
}
[data-reveal] {
opacity: 0;
transform: translateY(20px);
transition: opacity 620ms cubic-bezier(.22, .68, .3, 1),
transform 620ms cubic-bezier(.22, .68, .3, 1);
transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }
html { background: var(--paper); }
#bg {
position: fixed;
inset: 0;
z-index: -1;
overflow: hidden;
pointer-events: none;
background: var(--paper);
--bg-dim: 0;
}
.bg-move {
position: absolute;
inset: -5%;
will-change: transform;
}
.bg-zoom {
position: absolute;
inset: 0;
background-position: center;
background-size: cover;
animation: bg-breathe 40s ease-in-out infinite alternate;
transition: filter 1400ms ease;
}
#bg.is-pulse .bg-zoom {
filter: brightness(1.32) saturate(1.15);
transition-duration: 260ms;
}
#bg video {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0;
transition: opacity 1600ms ease;
}
#bg video.is-on { opacity: 1; }
#bg.is-still .bg-zoom { animation: none; }
@keyframes bg-breathe {
from { transform: scale(1); }
to   { transform: scale(1.07); }
}
.bg-scrim {
position: absolute;
inset: 0;
background:
linear-gradient(180deg,
rgba(6, 8, 13, 0.80) 0%,
rgba(6, 8, 13, 0.34) 18%,
rgba(6, 8, 13, 0.22) 48%,
rgba(6, 8, 13, 0.40) 78%,
rgba(6, 8, 13, 0.72) 100%),
radial-gradient(120% 90% at 50% 42%, rgba(6, 8, 13, 0) 38%, rgba(6, 8, 13, 0.62) 100%);
}
.bg-dim {
position: absolute;
inset: 0;
background: var(--paper);
opacity: var(--bg-dim);
}
@media (max-width: 720px) {
.bg-scrim {
background:
linear-gradient(180deg,
rgba(6, 8, 13, 0.84) 0%,
rgba(6, 8, 13, 0.46) 18%,
rgba(6, 8, 13, 0.36) 48%,
rgba(6, 8, 13, 0.50) 78%,
rgba(6, 8, 13, 0.78) 100%),
radial-gradient(140% 90% at 50% 42%, rgba(6, 8, 13, 0) 30%, rgba(6, 8, 13, 0.6) 100%);
}
}
@media (prefers-reduced-motion: reduce) {
.bg-zoom { animation: none; }
#bg video { transition: none; }
}
body {
margin: 0;
background: transparent;
color: var(--ink);
font-family: var(--sans);
font-size: 15px;
line-height: 1.55;
letter-spacing: -0.011em;
-webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
button { cursor: pointer; }
::selection { background: var(--ink); color: var(--paper); }
:focus-visible {
outline: 2px solid var(--ink);
outline-offset: 2px;
border-radius: 4px;
}
.wrap { width: min(1340px, 100% - 2 * var(--pad)); margin-inline: auto; }
.display {
font-family: var(--serif);
font-weight: 400;
letter-spacing: -0.015em;
line-height: 1.02;
margin: 0;
}
.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.kicker {
display: inline-block;
font-size: 11px;
font-weight: 500;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--mist);
margin-bottom: 14px;
}
.btn {
display: inline-flex;
align-items: center;
gap: 7px;
border: 1px solid transparent;
border-radius: var(--r-pill);
padding: 9px 16px;
font-size: 13px;
font-weight: 500;
transition: background 120ms ease, border-color 120ms ease, color 120ms ease;
}
.btn-sm { padding: 6px 13px; font-size: 12.5px; }
.btn-ghost { border-color: var(--line); background: var(--card); }
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.24); }
.btn-solid { background: var(--ink); color: var(--paper); }
.btn-solid:hover { background: #ffffff; }
.site-header {
position: sticky;
top: 0;
z-index: 40;
background: rgba(6, 8, 13, 0.72);
backdrop-filter: saturate(1.7) blur(16px);
-webkit-backdrop-filter: saturate(1.7) blur(16px);
border-bottom: 1px solid transparent;
transition: border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}
.site-header.is-stuck {
border-bottom-color: var(--line-soft);
background: rgba(6, 8, 13, 0.88);
box-shadow: 0 1px 24px rgba(0, 0, 0, 0.55);
}
.scroll-progress {
position: absolute;
left: 0;
bottom: -1px;
height: 2px;
width: 100%;
transform: scaleX(var(--progress, 0));
transform-origin: 0 50%;
background: var(--ink);
opacity: 0.9;
will-change: transform;
}
.header-inner {
display: flex;
align-items: center;
gap: 20px;
height: 62px;
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); }
.brand .mark { width: 26px; height: 26px; }
.wordmark {
font-size: 16px;
font-weight: 600;
letter-spacing: 0.04em;
}
.wordmark span { font-weight: 400; color: var(--mist); }
.wordmark.small { font-size: 15px; }
.nav-links {
display: flex;
gap: 4px;
margin-inline: auto;
background: rgba(255, 255, 255, 0.04);
border-radius: var(--r-pill);
padding: 3px;
}
.nav-links a {
padding: 6px 14px;
border-radius: var(--r-pill);
font-size: 13px;
color: var(--mist);
transition: background 120ms ease, color 120ms ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.is-current { background: var(--card); color: var(--ink); box-shadow: var(--shadow-sm); }
.header-side { display: flex; align-items: center; gap: 10px; }
.live {
display: inline-flex;
align-items: center;
gap: 7px;
font-family: var(--mono);
font-size: 11.5px;
color: var(--mist);
border: 1px solid var(--line);
background: var(--card);
border-radius: var(--r-pill);
padding: 5px 11px 5px 9px;
white-space: nowrap;
}
.live .dot {
width: 6px; height: 6px; border-radius: 50%;
background: var(--pos);
box-shadow: 0 0 0 0 rgba(53, 211, 155, 0.45);
animation: pulse 2.4s ease-out infinite;
}
.live[data-state="stale"] .dot { background: var(--amber); animation: none; }
.live[data-state="down"] .dot { background: var(--neg); animation: none; }
@keyframes pulse {
0% { box-shadow: 0 0 0 0 rgba(53, 211, 155, 0.4); }
70% { box-shadow: 0 0 0 7px rgba(53, 211, 155, 0); }
100% { box-shadow: 0 0 0 0 rgba(53, 211, 155, 0); }
}
.hero {
position: relative;
isolation: isolate;
overflow: hidden;
padding-block: clamp(96px, 14vw, 190px) clamp(80px, 9vw, 140px);
}
.hero-inner { position: relative; text-align: center; }
.hero .lede { margin-inline: auto; max-width: 46ch; }
.hero-inner::before {
content: '';
position: absolute;
z-index: -1;
left: 50%;
top: 50%;
width: min(120%, 980px);
height: 140%;
transform: translate(-50%, -50%);
background: radial-gradient(closest-side, rgba(6, 8, 13, 0.62), rgba(6, 8, 13, 0.30) 55%, rgba(6, 8, 13, 0) 100%);
pointer-events: none;
}
.hero .lede { text-shadow: 0 1px 14px rgba(6, 8, 13, 0.85), 0 0 2px rgba(6, 8, 13, 0.6); }
.hero .display { text-shadow: 0 2px 28px rgba(6, 8, 13, 0.7); }
.hero-glow { display: none; }
.hero-glow-retired {
position: absolute;
inset: -30% -10%;
z-index: -1;
pointer-events: none;
background:
radial-gradient(42% 50% at 18% 40%, rgba(58, 120, 216, 0.15), transparent 70%),
radial-gradient(38% 44% at 72% 28%, rgba(112, 162, 232, 0.13), transparent 72%);
animation: drift 26s ease-in-out infinite;
will-change: transform;
}
.hero-scope {
position: absolute;
z-index: -1;
top: 50%;
right: clamp(0px, 3vw, 72px);
height: min(80%, 350px);
width: auto;
aspect-ratio: 1;
transform: translateY(-50%);
pointer-events: none;
--scope-period: 9s;
opacity: 0.85;
}
@media (max-width: 1040px) {
.hero-scope { display: none; }
}
.scope-grid { position: absolute; inset: 0; width: 100%; height: 100%; }
.scope-grid circle,
.scope-grid line { stroke: rgba(255, 255, 255, 0.11); fill: none; vector-effect: non-scaling-stroke; }
.scope-grid .tick { stroke: rgba(255, 255, 255, 0.2); }
.scope-sweep {
position: absolute;
inset: 0;
border-radius: 50%;
background: conic-gradient(from 0deg,
rgba(58, 120, 216, 0.34) 0deg,
rgba(58, 120, 216, 0.13) 12deg,
rgba(58, 120, 216, 0.05) 46deg,
rgba(58, 120, 216, 0) 104deg,
rgba(58, 120, 216, 0) 352deg,
rgba(120, 176, 244, 0.42) 359.4deg,
rgba(58, 120, 216, 0.34) 360deg);
animation: sweep var(--scope-period) linear infinite;
will-change: transform;
}
.scope-blips { position: absolute; inset: 0; }
.blip {
position: absolute;
left: calc(50% + var(--x));
top: calc(50% + var(--y));
width: 7px;
height: 7px;
border-radius: 50%;
background: #6aa8ff;
opacity: 0;
transform: translate(-50%, -50%);
animation: blip var(--scope-period) linear infinite;
animation-delay: var(--at);
}
.blip::after {
content: "";
position: absolute;
inset: -5px;
border-radius: 50%;
border: 1px solid rgba(106, 168, 255, 0.6);
animation: blip-ring var(--scope-period) linear infinite;
animation-delay: var(--at);
}
@keyframes blip {
0% { opacity: 1; }
6% { opacity: 0.9; }
46% { opacity: 0.16; }
100% { opacity: 0; }
}
@keyframes blip-ring {
0% { opacity: 0.85; transform: scale(0.5); }
14% { opacity: 0; transform: scale(1.9); }
100% { opacity: 0; transform: scale(1.9); }
}
.hero .display {
font-size: clamp(60px, 11vw, 132px);
font-style: italic;
margin-bottom: clamp(32px, 4.5vw, 56px);
}
.lede {
max-width: 56ch;
margin: 0;
font-size: clamp(15px, 1.5vw, 17px);
color: var(--ink-2);
line-height: 1.6;
}
.stats {
display: grid;
grid-template-columns: repeat(5, 1fr);
border: 1px solid var(--line);
border-radius: var(--r);
background: var(--glass);
backdrop-filter: var(--glass-blur);
-webkit-backdrop-filter: var(--glass-blur);
overflow: hidden;
margin-top: clamp(22px, 3vw, 34px);
box-shadow: var(--shadow-sm);
}
.stat {
position: relative;
padding: 18px 20px 16px;
border-left: 1px solid var(--line-soft);
min-width: 0;
transition: background 200ms ease;
}
.stat:first-child { border-left: 0; }
.stat:hover { background: rgba(255, 255, 255, 0.022); }
.stat::after {
content: "";
position: absolute;
left: 0; right: 0; bottom: 0;
height: 2px;
background: var(--ink);
transform: scaleX(0);
transform-origin: 0 50%;
transition: transform 320ms cubic-bezier(.22, .68, .3, 1);
}
.stat:hover::after { transform: scaleX(1); }
.stat-label {
font-size: 11px;
letter-spacing: 0.10em;
text-transform: uppercase;
color: var(--mist);
}
.stat-value {
font-family: var(--mono);
font-size: clamp(19px, 2vw, 25px);
font-weight: 500;
letter-spacing: -0.02em;
margin-top: 8px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.stat-note { font-size: 12px; color: var(--mist-2); margin-top: 3px; }
.board-wrap { padding-top: 34px; }
.toolbar {
display: flex;
align-items: center;
gap: 16px;
flex-wrap: wrap;
margin-bottom: 14px;
}
.pills { display: flex; gap: 4px; flex-wrap: wrap; }
.pill {
border: 1px solid transparent;
background: transparent;
border-radius: var(--r-pill);
padding: 7px 14px;
font-size: 13px;
color: var(--mist);
display: inline-flex;
align-items: center;
gap: 7px;
transition: background 120ms ease, color 120ms ease, border-color 120ms ease;
}
.pill:hover { color: var(--ink); background: var(--hover); }
.pill[aria-selected="true"] {
background: var(--ink);
color: var(--paper);
border-color: var(--ink);
}
.pill .count {
font-family: var(--mono);
font-size: 11px;
color: var(--mist-2);
}
.pill[aria-selected="true"] .count { color: rgba(6, 8, 13, 0.55); }
.toolbar-right { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.toggle { display: inline-flex; align-items: center; gap: 9px; cursor: pointer; user-select: none; }
.toggle input { position: absolute; opacity: 0; width: 0; height: 0; }
.toggle .track {
width: 34px; height: 20px;
border-radius: var(--r-pill);
background: rgba(255, 255, 255, 0.14);
position: relative;
transition: background 140ms ease;
flex: none;
}
.toggle .track i {
position: absolute; top: 2px; left: 2px;
width: 16px; height: 16px; border-radius: 50%;
background: #fff;
box-shadow: var(--shadow-sm);
transition: transform 140ms cubic-bezier(.2,.7,.3,1);
}
.toggle input:checked + .track { background: var(--ink); }
.toggle input:checked + .track i { transform: translateX(14px); }
.toggle input:focus-visible + .track { outline: 2px solid var(--ink); outline-offset: 2px; }
.toggle-label { font-size: 13px; color: var(--mist); white-space: nowrap; }
.toggle input:checked ~ .toggle-label { color: var(--ink); }
.search {
display: flex;
align-items: center;
gap: 8px;
border: 1px solid var(--line);
background: var(--card);
border-radius: var(--r-pill);
padding: 0 14px;
height: 36px;
width: 220px;
transition: border-color 120ms ease;
}
.search:focus-within { border-color: rgba(255, 255, 255, 0.32); }
.search svg { width: 14px; height: 14px; color: var(--mist-2); flex: none; }
.search input {
border: 0;
outline: 0;
background: transparent;
width: 100%;
font-size: 13.5px;
}
.search input::placeholder { color: var(--mist-2); }
.search input::-webkit-search-cancel-button { -webkit-appearance: none; }
.board {
border: 1px solid var(--line);
border-radius: var(--r);
background: rgba(16, 21, 32, 0.88);
backdrop-filter: blur(20px) saturate(1.3);
-webkit-backdrop-filter: blur(20px) saturate(1.3);
box-shadow: var(--shadow-sm);
}
.board-scroll { overflow: visible; }
.radar thead th:first-child { border-top-left-radius: var(--r); }
.radar thead th:last-child { border-top-right-radius: var(--r); }
.radar tbody tr:last-child td:first-child { border-bottom-left-radius: var(--r); }
.radar tbody tr:last-child td:last-child { border-bottom-right-radius: var(--r); }
.radar { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.radar thead th {
position: sticky;
top: 62px;
z-index: 2;
background: rgba(11, 14, 21, 0.92);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border-bottom: 1px solid var(--line);
padding: 11px;
font-size: 11px;
font-weight: 500;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--mist);
white-space: nowrap;
text-align: right;
user-select: none;
}
.radar thead th:first-child { text-align: left; padding-left: 18px; }
.radar thead th.left { text-align: left; }
.radar thead th.sortable { cursor: pointer; }
.radar thead th.sortable:hover { color: var(--ink); }
.radar thead th .arrow {
display: inline-block;
opacity: 0;
margin-left: 5px;
font-size: 9px;
transform: translateY(-2px);
transition: opacity 180ms ease, transform 180ms ease;
}
.radar thead th.sortable:hover .arrow { opacity: 0.35; transform: none; }
.radar thead th.is-sorted { color: var(--ink); }
.radar thead th.is-sorted .arrow { opacity: 1; transform: none; }
.radar tbody tr {
border-bottom: 1px solid var(--line-soft);
cursor: pointer;
transition: background 140ms ease, box-shadow 140ms ease;
}
.radar tbody tr:last-child { border-bottom: 0; }
.radar tbody tr:hover {
background: var(--hover);
box-shadow: inset 2px 0 0 var(--ink);
}
.radar tbody tr:hover .ticker-badge { transform: scale(1.06); }
.radar tbody tr.is-open { background: rgba(255, 255, 255, 0.05); box-shadow: inset 2px 0 0 var(--ink); }
.radar tbody tr.deal { animation: rise-in 480ms cubic-bezier(.22, .68, .3, 1) both; }
.radar td.tick-up { animation: flash-up 1100ms ease-out; }
.radar td.tick-down { animation: flash-down 1100ms ease-out; }
.roll { display: inline-block; overflow: hidden; vertical-align: bottom; }
.roll > span { display: block; }
.tick-up .roll > span { animation: roll-up 420ms cubic-bezier(.2, .8, .3, 1) both; }
.tick-down .roll > span { animation: roll-down 420ms cubic-bezier(.2, .8, .3, 1) both; }
.radar td {
padding: 10px 11px;
text-align: right;
white-space: nowrap;
font-family: var(--mono);
font-variant-numeric: tabular-nums;
font-size: 13px;
}
.radar td.left { text-align: left; font-family: var(--sans); }
.radar td:first-child { padding-left: 18px; }
.loading-row td {
text-align: center;
color: var(--mist-2);
padding: 44px 0;
font-family: var(--sans);
}
.market { display: flex; align-items: center; gap: 11px; }
.ticker-badge {
position: relative;
width: 30px; height: 30px;
border-radius: 8px;
background: var(--paper-2);
color: var(--ink-2);
display: grid;
place-items: center;
font-family: var(--mono);
font-size: 10.5px;
font-weight: 500;
letter-spacing: -0.03em;
flex: none;
overflow: hidden;
transition: transform 180ms cubic-bezier(.2, .7, .3, 1);
}
.ticker-badge i { font-style: normal; }
.ticker-badge.has-logo { background: #fff; color: #2a3346; box-shadow: inset 0 0 0 1px var(--line-soft); }
.ticker-logo {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: contain;
background: #fff;
}
.ticker-badge.is-large { width: 36px; height: 36px; border-radius: 10px; font-size: 11.5px; }
.market-name { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.market-name b { font-weight: 600; font-size: 13.5px; letter-spacing: -0.005em; }
.market-sub { font-size: 11px; color: var(--mist-2); display: flex; align-items: center; gap: 6px; }
.tag {
display: inline-block;
font-size: 10px;
letter-spacing: 0.05em;
text-transform: uppercase;
color: var(--mist);
background: var(--chip);
border-radius: 4px;
padding: 1px 5px;
}
.tag.new { color: var(--amber); background: var(--amber-soft); }
.pos { color: var(--pos); }
.neg { color: var(--neg); }
.flat { color: var(--mist-2); }
.range { display: flex; align-items: center; gap: 8px; }
.range-track {
position: relative;
width: 56px; height: 3px;
border-radius: 2px;
background: rgba(255, 255, 255, 0.10);
flex: none;
}
.range-dot {
position: absolute;
top: 50%;
width: 7px; height: 7px;
border-radius: 50%;
background: var(--ink);
transform: translate(-50%, -50%);
}
.range-pct { font-size: 11px; color: var(--mist-2); font-family: var(--mono); }
.spread { display: inline-flex; align-items: center; gap: 6px; justify-content: flex-end; }
.spread-strong { color: var(--amber); font-weight: 500; }
.trade-cell { text-align: left !important; font-family: var(--sans) !important; }
.trade {
display: inline-flex;
align-items: center;
gap: 5px;
font-size: 11px;
color: var(--mist);
border: 1px solid var(--line);
border-radius: var(--r-pill);
padding: 2px 8px;
white-space: nowrap;
}
.trade b { font-weight: 600; color: var(--ink-2); }
.trade .sep { color: var(--mist-2); }
.trade.none { color: var(--mist-2); border-style: dashed; }
.trade.is-lp {
border-color: rgba(255, 255, 255, 0.22);
background: var(--ink);
color: var(--paper);
}
.trade.is-lp b { color: var(--paper); }
.trade.is-lp .sep { color: rgba(6, 8, 13, 0.5); }
.ticker-badge.is-paired { box-shadow: 0 0 0 1.5px var(--ink); }
.ticker-badge.is-paired:not(.has-logo) { background: var(--ink); color: var(--paper); }
.sources {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 10px;
margin-top: 12px;
}
.source {
display: grid;
grid-template-columns: auto auto 1fr;
align-items: center;
gap: 8px;
border: 1px solid var(--line);
border-radius: var(--r-sm);
background: var(--card);
padding: 10px 14px;
font-size: 12.5px;
}
.source .dot {
width: 6px; height: 6px; border-radius: 50%;
background: var(--pos);
grid-row: span 2;
}
.source[data-state="stale"] .dot { background: var(--amber); }
.source[data-state="down"] .dot { background: var(--neg); }
.source-label {
font-size: 10.5px;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--mist);
}
.source-value { font-family: var(--mono); font-size: 12.5px; justify-self: start; }
.source-note {
grid-column: 2 / -1;
font-size: 11.5px;
color: var(--mist-2);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.board-foot {
display: flex;
align-items: center;
justify-content: space-between;
gap: 14px;
padding: 11px 18px;
border-top: 1px solid var(--line);
background: var(--paper);
font-size: 12px;
color: var(--mist);
font-family: var(--mono);
flex-wrap: wrap;
}
.board-foot-note { color: var(--mist-2); margin-left: auto; }
.board-sizes { display: inline-flex; align-items: center; gap: 4px; }
.board-sizes .k {
font-family: var(--sans);
font-size: 11px;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--mist-2);
margin-right: 4px;
}
.board-size {
border: 1px solid var(--line);
background: var(--card);
border-radius: var(--r-pill);
padding: 3px 11px;
font-family: var(--mono);
font-size: 11.5px;
color: var(--mist);
transition: background 140ms ease, color 140ms ease, border-color 140ms ease;
}
.board-size:hover { color: var(--ink); border-color: rgba(255, 255, 255, 0.24); }
.board-size.is-on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.empty {
padding: 56px 20px;
text-align: center;
color: var(--mist);
}
.empty b { display: block; font-family: var(--sans); font-size: 15px; color: var(--ink); margin-bottom: 4px; }
.section { padding-block: clamp(76px, 10vw, 136px); }
.section.tight { padding-block: clamp(54px, 7vw, 92px); }
.section-head { max-width: 62ch; margin: 0 auto 40px; text-align: center; }
.section-head .display { font-size: clamp(30px, 4vw, 46px); }
.section-lede { color: var(--mist); margin: 14px 0 0; font-size: 15.5px; }
.method-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1px;
background: var(--line);
border: 1px solid var(--line);
border-radius: var(--r);
overflow: hidden;
}
.method-card {
background: var(--glass);
backdrop-filter: var(--glass-blur);
-webkit-backdrop-filter: var(--glass-blur);
padding: 28px 26px 30px;
transition: background 240ms ease, transform 240ms cubic-bezier(.2, .7, .3, 1);
}
.method-card:hover { background: rgba(21, 27, 40, 0.82); transform: translateY(-3px); }
.method-card h3 {
font-family: var(--serif);
font-size: 27px;
font-weight: 400;
font-style: italic;
margin: 0 0 10px;
}
.method-card p { margin: 0; color: var(--ink-2); font-size: 14.5px; line-height: 1.62; }
.method-n {
font-family: var(--mono);
font-size: 11px;
color: var(--mist-2);
display: block;
margin-bottom: 14px;
}
.venue-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 12px;
}
.venue-card {
border: 1px solid var(--line);
border-radius: var(--r);
background: var(--card);
padding: 20px;
transition: transform 240ms cubic-bezier(.2, .7, .3, 1), box-shadow 240ms ease, border-color 240ms ease;
}
.venue-card:hover {
transform: translateY(-3px);
box-shadow: var(--shadow);
border-color: rgba(255, 255, 255, 0.18);
}
.venue-card h4 { margin: 0; font-size: 15px; font-weight: 600; }
.venue-kind { font-size: 11px; letter-spacing: 0.07em; text-transform: uppercase; color: var(--mist-2); margin-top: 3px; }
.venue-stat { margin-top: 16px; font-family: var(--mono); font-size: 20px; font-weight: 500; }
.venue-stat-label { font-size: 12px; color: var(--mist); margin-top: 2px; }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
list-style: none;
cursor: pointer;
padding: 20px 40px 20px 0;
font-size: 16px;
font-weight: 500;
position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
content: "";
position: absolute;
right: 8px; top: 50%;
width: 9px; height: 9px;
border-right: 1.5px solid var(--mist);
border-bottom: 1.5px solid var(--mist);
transform: translateY(-70%) rotate(45deg);
transition: transform 160ms ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq p { margin: 0 0 22px; color: var(--ink-2); max-width: 72ch; font-size: 14.5px; line-height: 1.65; }
.site-footer {
border-top: 1px solid var(--line);
background: var(--paper-2);
padding-block: 34px 44px;
margin-top: 40px;
}
.footer-inner {
display: flex;
gap: 32px;
justify-content: space-between;
align-items: flex-start;
flex-wrap: wrap;
}
.fine { max-width: 68ch; margin: 12px 0 0; font-size: 12.5px; color: var(--mist); line-height: 1.6; }
.footer-meta { display: flex; gap: 20px; font-size: 13px; color: var(--mist); }
.footer-meta a:hover { color: var(--ink); }
.page-head {
position: relative;
padding-block: clamp(72px, 10vw, 132px) clamp(20px, 3vw, 30px);
text-align: center;
}
.page-head .section-lede { margin-inline: auto; max-width: 62ch; }
.page-head::before {
content: '';
position: absolute;
z-index: -1;
left: 50%;
top: 50%;
width: min(120%, 980px);
height: 150%;
transform: translate(-50%, -50%);
background: radial-gradient(closest-side, rgba(6, 8, 13, 0.62), rgba(6, 8, 13, 0.30) 55%, rgba(6, 8, 13, 0) 100%);
pointer-events: none;
}
.page-head .section-lede, .page-head .kicker { text-shadow: 0 1px 14px rgba(6, 8, 13, 0.85), 0 0 2px rgba(6, 8, 13, 0.6); }
.page-head .page-title { text-shadow: 0 2px 28px rgba(6, 8, 13, 0.7); }
.page-title { font-size: clamp(38px, 6vw, 68px); font-style: italic; margin-bottom: 16px; }
.trade-grid {
display: grid;
grid-template-columns: minmax(0, 1.55fr) minmax(320px, 1fr);
gap: clamp(16px, 2vw, 26px);
align-items: start;
padding-bottom: clamp(60px, 8vw, 110px);
}
.trade-market,
.ticket {
border: 1px solid var(--line);
border-radius: var(--r);
background: var(--glass);
backdrop-filter: var(--glass-blur);
-webkit-backdrop-filter: var(--glass-blur);
box-shadow: var(--shadow-sm);
padding: clamp(18px, 2.2vw, 26px);
}
.tm-head { display: flex; align-items: center; gap: 14px; }
.tm-symbol { font-size: 22px; font-weight: 600; letter-spacing: -0.015em; }
.tm-pair { color: var(--mist-2); font-weight: 400; margin-left: 6px; }
.tm-meta { font-size: 12.5px; color: var(--mist); margin-top: 2px; }
.tm-price { margin-left: auto; text-align: right; }
.tm-price .v { font-family: var(--mono); font-size: 24px; font-weight: 500; letter-spacing: -0.02em; }
.tm-price .c { font-family: var(--mono); font-size: 12.5px; }
.tm-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1px;
background: var(--line);
border: 1px solid var(--line);
border-radius: var(--r-sm);
overflow: hidden;
margin-top: 22px;
}
.tm-stats > div { background: var(--card); padding: 12px 14px; }
.tm-stats .k { display: block; font-size: 11px; color: var(--mist); }
.tm-stats .v { display: block; font-family: var(--mono); font-size: 15px; font-weight: 500; margin-top: 3px; }
.tm-picker { margin-top: 24px; }
.tm-picker .k { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mist); }
.tm-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.tm-chip {
display: inline-flex;
align-items: baseline;
gap: 6px;
border: 1px solid var(--line);
background: var(--card);
border-radius: var(--r-pill);
padding: 5px 11px;
font-size: 12.5px;
font-weight: 500;
transition: background 140ms ease, border-color 140ms ease, color 140ms ease;
}
.tm-chip span { font-family: var(--mono); font-size: 10.5px; color: var(--mist-2); font-weight: 400; }
.tm-chip:hover { border-color: rgba(255, 255, 255, 0.24); }
.tm-chip.is-on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.tm-chip.is-on span { color: rgba(6, 8, 13, 0.55); }
.tk-sides { display: flex; gap: 4px; background: var(--chip); border-radius: var(--r-pill); padding: 3px; }
.tk-side {
flex: 1;
border: 0;
background: transparent;
border-radius: var(--r-pill);
padding: 8px;
font-size: 13.5px;
font-weight: 500;
color: var(--mist);
transition: background 160ms ease, color 160ms ease;
}
.tk-side.is-on { background: var(--card); color: var(--ink); box-shadow: var(--shadow-sm); }
.tk-field { display: block; margin-top: 18px; }
.tk-field .k { display: block; font-size: 12px; color: var(--mist); margin-bottom: 7px; }
.tk-field input {
width: 100%;
border: 1px solid var(--line);
background: var(--paper);
border-radius: var(--r-sm);
padding: 13px 14px;
font-family: var(--mono);
font-size: 20px;
outline: 0;
transition: border-color 140ms ease, background 140ms ease;
}
.tk-field input:focus { border-color: rgba(255, 255, 255, 0.32); background: var(--card); }
.tk-balance { font-size: 12px; color: var(--mist); margin-top: 8px; min-height: 17px; }
.tk-balance b { color: var(--ink-2); font-weight: 600; }
.tk-max {
border: 1px solid var(--line);
background: var(--card);
border-radius: var(--r-pill);
padding: 1px 8px;
font-size: 10.5px;
color: var(--mist);
margin-left: 6px;
}
.tk-max:hover { color: var(--ink); }
.tk-slip { display: flex; align-items: center; gap: 6px; margin-top: 18px; }
.tk-slip .k { font-size: 12px; color: var(--mist); margin-right: auto; }
.tk-pct {
border: 1px solid var(--line);
background: var(--card);
border-radius: var(--r-pill);
padding: 4px 11px;
font-family: var(--mono);
font-size: 11.5px;
color: var(--mist);
}
.tk-pct.is-on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.tk-out {
margin-top: 18px;
border-top: 1px solid var(--line-soft);
padding-top: 14px;
}
.tk-out > div { display: flex; justify-content: space-between; gap: 12px; padding: 5px 0; font-size: 12.5px; }
.tk-out .k { color: var(--mist); }
.tk-out .v { font-family: var(--mono); text-align: right; }
.tk-go { width: 100%; justify-content: center; margin-top: 18px; padding: 13px; font-size: 14px; }
.tk-go:disabled { opacity: 0.55; cursor: default; }
.y-legs {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
margin-top: 18px;
}
.y-leg {
border: 1px solid var(--line);
border-radius: var(--r);
background: var(--glass);
backdrop-filter: var(--glass-blur);
-webkit-backdrop-filter: var(--glass-blur);
padding: 14px 16px;
text-align: left;
}
.y-leg .k {
font-size: 11px;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--mist);
}
.y-leg p { margin: 8px 0 0; font-size: 13.5px; line-height: 1.55; color: var(--ink-2); }
.y-range { margin-top: 0; }
.y-band {
display: flex;
align-items: center;
gap: 10px;
margin-top: 12px;
font-family: var(--mono);
font-size: 12px;
color: var(--mist);
}
.y-band i {
position: relative;
flex: 1;
height: 6px;
border-radius: 3px;
background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.06));
}
.y-band i b {
position: absolute;
top: 50%;
width: 10px;
height: 10px;
margin: -5px 0 0 -5px;
border-radius: 50%;
background: var(--ink);
box-shadow: 0 0 0 3px var(--card);
}
.y-board { margin-bottom: 14px; }
.y-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.y-table th {
padding: 11px 12px;
border-bottom: 1px solid var(--line);
font-size: 11px;
font-weight: 500;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--mist);
text-align: left;
white-space: nowrap;
}
.y-table th.num, .y-table td.num { text-align: right; }
.y-table td { padding: 12px; border-top: 1px solid var(--line-soft); vertical-align: middle; }
.y-table tbody tr:first-child td { border-top: 0; }
.y-table td .ticker-badge { margin-right: 8px; vertical-align: middle; }
.y-acts { text-align: right; white-space: nowrap; }
.y-acts .btn { padding: 6px 12px; font-size: 12.5px; margin-left: 6px; }
.y-acts .btn:disabled { opacity: 0.4; cursor: default; }
#yieldPositionsWrap { padding-bottom: clamp(60px, 8vw, 110px); }
.tight-head { margin-bottom: 22px; }
.tight-head .display { font-size: clamp(22px, 2.6vw, 30px); }
.premarket-wrap { margin-top: clamp(40px, 5vw, 64px); }
.pm-undeployed { border: 1px solid var(--line); border-radius: var(--r); background: var(--glass); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); overflow: hidden; text-align: left; }
.pm-row { display: grid; grid-template-columns: 130px 1fr; gap: 20px; padding: 18px clamp(18px, 2.2vw, 26px); border-top: 1px solid var(--line-soft); }
.pm-row:first-child { border-top: 0; }
.pm-row .k { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mist); padding-top: 3px; }
.pm-row p { margin: 0; color: var(--ink-2); font-size: 14px; line-height: 1.6; }
.pm-row b { color: var(--ink); font-weight: 600; }
.pm-row code { font-family: var(--mono); font-size: 12.5px; color: var(--ink); }
.pm-stats { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--line); border-radius: var(--r); background: var(--glass); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); overflow: hidden; margin-bottom: 18px; }
.pm-stats .stat .k { display: block; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mist); }
.pm-stats .stat .v { display: block; font-size: clamp(17px, 1.8vw, 21px); font-weight: 500; margin-top: 8px; white-space: nowrap; }
.pm-grid { padding-top: 0; }
.pm-grid .l-board { overflow-x: auto; }
.pm-table { font-size: 12.5px; }
.pm-table th, .pm-table td { padding: 9px 8px; }
.pm-grid .pm-table td .l-name { max-width: 150px; }
.pm-table tbody tr.pm-pick { cursor: pointer; }
.pm-table tbody tr.pm-pick:hover td { background: rgba(255, 255, 255, 0.025); }
.pm-table tbody tr.is-on td { background: rgba(255, 255, 255, 0.05); }
.pm-new { border: 1px solid var(--line); border-radius: var(--r); background: var(--glass); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); padding: 16px 18px; margin-top: 14px; text-align: left; }
.pm-new > .k { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mist); }
.pm-new-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 12px; }
.pm-new .tk-field { margin-top: 12px; }
.pm-new .btn { margin-top: 14px; }
.launch-stats {
display: grid;
grid-template-columns: repeat(5, 1fr);
border: 1px solid var(--line);
border-radius: var(--r);
background: var(--glass);
backdrop-filter: var(--glass-blur);
-webkit-backdrop-filter: var(--glass-blur);
overflow: hidden;
box-shadow: var(--shadow-sm);
}
.launch-stats .stat .k {
display: block;
font-size: 11px;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--mist);
}
.launch-stats .stat .v {
display: block;
font-size: clamp(18px, 2vw, 23px);
font-weight: 500;
letter-spacing: -0.02em;
margin-top: 8px;
white-space: nowrap;
}
.launch-lookup {
display: grid;
grid-template-columns: 1fr auto;
gap: 10px;
align-items: end;
margin-top: 26px;
}
.launch-lookup .l-field { margin-top: 0; }
.launch-lookup .btn { height: 46px; }
.l-out { grid-column: 1 / -1; }
.l-out:empty { display: none; }
.l-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 10px;
margin-bottom: clamp(36px, 5vw, 60px);
}
.l-card {
border: 1px solid var(--line);
border-radius: var(--r);
background: var(--glass);
backdrop-filter: var(--glass-blur);
-webkit-backdrop-filter: var(--glass-blur);
padding: 14px 16px;
text-align: left;
transition: border-color 200ms ease, transform 200ms cubic-bezier(.2, .7, .3, 1);
}
.l-card:hover { border-color: rgba(255, 255, 255, 0.18); transform: translateY(-2px); }
.l-card.is-wide { margin-top: 12px; }
.l-top { display: flex; align-items: center; gap: 12px; }
.l-top > div { min-width: 0; }
.l-top b { font-size: 15px; font-weight: 600; }
.l-img {
width: 34px;
height: 34px;
border-radius: 50%;
flex: 0 0 34px;
object-fit: cover;
background: #fff;
}
.l-init {
display: inline-flex;
align-items: center;
justify-content: center;
font-family: var(--mono);
font-size: 10px;
color: var(--paper);
background: var(--ink);
}
.l-name {
font-size: 12px;
color: var(--mist);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 100%;
}
.l-age { margin-left: auto; font-size: 12px; color: var(--mist-2); }
.l-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 12px; }
.l-stats .k { display: block; font-size: 10.5px; color: var(--mist); }
.l-stats .v { display: block; font-size: 13.5px; font-weight: 500; margin-top: 2px; }
.l-card.is-wide .l-stats { grid-template-columns: repeat(4, 1fr); }
.g-chips { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 12px; }
.g-chip {
font-family: var(--mono);
font-size: 10.5px;
padding: 3px 8px;
border-radius: var(--r-pill);
border: 1px solid var(--line);
color: var(--mist-2);
white-space: nowrap;
}
.g-chip.is-ok { color: var(--pos); border-color: rgba(53, 211, 155, 0.35); background: var(--pos-soft); }
.l-table .g-chips { margin-top: 0; }
.l-board { margin-bottom: 14px; }
.l-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.l-table th {
padding: 11px 12px;
border-bottom: 1px solid var(--line);
font-size: 11px;
font-weight: 500;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--mist);
text-align: left;
white-space: nowrap;
}
.l-table th.num, .l-table td.num { text-align: right; }
.l-table td { padding: 10px 12px; border-top: 1px solid var(--line-soft); vertical-align: middle; }
.l-table td .l-name { max-width: 260px; }
.l-table tbody tr:first-child td { border-top: 0; }
.l-table tbody tr { animation: rowIn 420ms cubic-bezier(.2, .7, .3, 1) both; }
@keyframes rowIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
#view-launch { padding-bottom: clamp(60px, 8vw, 110px); }
.th-feed { display: grid; gap: 10px; padding-bottom: clamp(60px, 8vw, 110px); }
.thesis {
border: 1px solid var(--line);
border-radius: var(--r);
background: var(--glass);
backdrop-filter: var(--glass-blur);
-webkit-backdrop-filter: var(--glass-blur);
padding: 16px 18px;
text-align: left;
transition: border-color 200ms ease, transform 200ms cubic-bezier(.2, .7, .3, 1);
}
.thesis:hover { border-color: rgba(255, 255, 255, 0.18); transform: translateY(-2px); }
.th-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.th-head b { font-size: 15px; font-weight: 600; }
.th-side {
font-size: 10px;
letter-spacing: 0.08em;
text-transform: uppercase;
border-radius: 4px;
padding: 2px 7px;
background: var(--chip);
color: var(--mist);
}
.th-side.is-long { color: var(--pos); background: var(--pos-soft); }
.th-side.is-short { color: var(--neg); background: var(--neg-soft); }
.th-side.is-lp { color: var(--amber); background: var(--amber-soft); }
.th-size { font-family: var(--mono); font-size: 12.5px; color: var(--mist); }
.th-age { font-size: 11.5px; color: var(--mist-2); }
.th-pnl { margin-left: auto; font-family: var(--mono); font-size: 15px; font-weight: 500; text-align: right; }
.th-pnl i { display: block; font-style: normal; font-size: 11px; opacity: 0.75; }
.th-arg { margin: 11px 0 0; color: var(--ink-2); font-size: 14px; line-height: 1.6; }
.th-foot {
display: flex;
gap: 14px;
flex-wrap: wrap;
margin-top: 12px;
padding-top: 11px;
border-top: 1px solid var(--line-soft);
font-family: var(--mono);
font-size: 11.5px;
color: var(--mist-2);
}
.th-sig { margin-left: auto; color: var(--pos); }
.toasts {
position: fixed;
right: clamp(14px, 2vw, 26px);
bottom: clamp(14px, 2vw, 26px);
z-index: 80;
display: flex;
flex-direction: column;
gap: 8px;
width: min(360px, calc(100vw - 28px));
}
.toast {
border: 1px solid var(--line);
border-radius: var(--r-sm);
background: var(--card);
box-shadow: var(--shadow);
padding: 12px 14px;
font-size: 13px;
line-height: 1.5;
animation: rise-in 300ms cubic-bezier(.22, .68, .3, 1) both;
}
.toast.is-out { opacity: 0; transform: translateY(8px); transition: opacity 380ms ease, transform 380ms ease; }
.toast a { border-bottom: 1px solid var(--line); }
.toast a:hover { border-color: currentColor; }
.toast-good { border-left: 3px solid var(--pos); }
.toast-bad { border-left: 3px solid var(--neg); }
.toast-warn { border-left: 3px solid var(--amber); }
@media (max-width: 900px) {
.trade-grid { grid-template-columns: 1fr; }
.soon-row { grid-template-columns: 1fr; gap: 8px; }
}
#connectBtn.is-connected {
background: var(--card);
color: var(--ink);
border-color: var(--line);
font-family: var(--mono);
font-size: 11.5px;
}
.w-head {
display: flex;
align-items: flex-end;
justify-content: space-between;
gap: 20px;
flex-wrap: wrap;
margin-bottom: 14px;
}
.w-addr { font-size: 15px; font-weight: 600; word-break: break-all; }
.w-addr.mono { font-family: var(--mono); font-size: 13.5px; font-weight: 500; }
.w-meta { font-size: 12.5px; color: var(--mist); margin-top: 4px; }
.w-total { text-align: right; }
.w-total .k { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mist); }
.w-total .v { font-family: var(--mono); font-size: 24px; font-weight: 500; letter-spacing: -0.02em; }
.w-board { box-shadow: none; }
.w-board .radar thead th { position: static; }
.w-lighter { margin-top: 30px; }
.tag.short { color: var(--neg); background: var(--neg-soft); }
.tag.long { color: var(--pos); background: var(--pos-soft); }
.section-lede code {
font-family: var(--mono);
font-size: 0.9em;
background: var(--chip);
border-radius: 4px;
padding: 1px 5px;
}
.scrim {
position: fixed;
inset: 0;
z-index: 60;
background: rgba(0, 0, 0, 0.62);
backdrop-filter: blur(2px);
animation: fade 160ms ease;
}
@keyframes fade { from { opacity: 0; } }
.drawer {
position: fixed;
top: 0; right: 0; bottom: 0;
z-index: 61;
width: min(468px, 100%);
background: rgba(11, 14, 21, 0.86);
backdrop-filter: blur(24px) saturate(1.4);
-webkit-backdrop-filter: blur(24px) saturate(1.4);
border-left: 1px solid var(--line);
box-shadow: var(--shadow-lg);
overflow-y: auto;
animation: slide 220ms cubic-bezier(.2,.75,.3,1);
}
@keyframes slide { from { transform: translateX(24px); opacity: 0; } }
.drawer-close {
position: absolute;
top: 16px; right: 16px;
width: 30px; height: 30px;
display: grid; place-items: center;
border: 1px solid var(--line);
border-radius: 50%;
background: var(--card);
color: var(--mist);
}
.drawer-close:hover { color: var(--ink); border-color: rgba(255, 255, 255, 0.28); }
.drawer-close svg { width: 12px; height: 12px; }
.drawer-body { padding: 26px 26px 40px; }
.d-head { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.d-head .ticker-badge { width: 36px; height: 36px; font-size: 11.5px; }
.d-symbol { font-size: 21px; font-weight: 600; letter-spacing: -0.01em; }
.d-meta { font-size: 12px; color: var(--mist-2); }
.d-price { display: flex; align-items: baseline; gap: 12px; margin: 18px 0 6px; }
.d-price .big { font-family: var(--mono); font-size: 34px; font-weight: 500; letter-spacing: -0.03em; }
.d-price .chg { font-family: var(--mono); font-size: 14px; }
.d-range { margin: 16px 0 26px; }
.d-range .range-track { width: 100%; height: 4px; }
.d-range-ends { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 11.5px; color: var(--mist-2); margin-top: 8px; }
.d-section { margin-top: 26px; }
.d-section h3 {
font-size: 11px;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--mist);
font-weight: 500;
margin: 0 0 12px;
}
.d-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; }
.d-cell { background: var(--card); padding: 13px 14px; }
.d-cell .k { font-size: 11.5px; color: var(--mist); }
.d-cell .v { font-family: var(--mono); font-size: 15px; margin-top: 3px; font-weight: 500; }
.venue-row {
display: grid;
grid-template-columns: 88px 1fr 74px;
align-items: center;
gap: 12px;
padding: 9px 0;
border-bottom: 1px solid var(--line-soft);
}
.venue-row:last-child { border-bottom: 0; }
.venue-row .vname { font-size: 13px; display: flex; align-items: center; gap: 6px; }
.venue-row .vbar { height: 6px; border-radius: 3px; background: rgba(255, 255, 255, 0.07); position: relative; }
.venue-row .vbar i {
position: absolute; top: 0; bottom: 0;
border-radius: 3px;
background: var(--ink);
}
.venue-row .vbar i.is-neg { background: var(--neg); }
.venue-row .vrate { font-family: var(--mono); font-size: 12.5px; text-align: right; }
.venue-row .zero { position: absolute; top: -3px; bottom: -3px; width: 1px; background: rgba(255, 255, 255, 0.22); }
.leg {
font-size: 9.5px;
letter-spacing: 0.06em;
text-transform: uppercase;
border-radius: 3px;
padding: 1px 4px;
}
.leg.short { color: var(--neg); background: var(--neg-soft); }
.leg.long { color: var(--pos); background: var(--pos-soft); }
.calc {
border: 1px solid var(--line);
border-radius: var(--r-sm);
padding: 16px;
background: var(--paper);
}
.calc-input { display: flex; align-items: center; gap: 10px; }
.calc-input label { font-size: 12.5px; color: var(--mist); white-space: nowrap; }
.calc-input .field {
display: flex; align-items: center; gap: 6px;
background: var(--card);
border: 1px solid var(--line);
border-radius: var(--r-sm);
padding: 0 12px;
height: 34px;
flex: 1;
}
.calc-input .field span { color: var(--mist-2); font-family: var(--mono); font-size: 13px; }
.calc-input input {
border: 0; outline: 0; background: transparent; width: 100%;
font-family: var(--mono); font-size: 14px;
}
.calc-out { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 14px; }
.calc-out div { text-align: left; }
.calc-out .k { font-size: 11px; color: var(--mist); }
.calc-out .v { font-family: var(--mono); font-size: 15px; font-weight: 500; margin-top: 2px; }
.d-note { font-size: 12px; color: var(--mist-2); line-height: 1.6; margin-top: 14px; }
.d-note b { color: var(--ink-2); font-weight: 600; }
.d-note.neg b { color: var(--neg); }
.d-legs {
display: grid;
grid-template-columns: 1fr auto 1fr auto 1fr;
align-items: center;
gap: 8px;
border: 1px solid var(--line);
border-radius: var(--r-sm);
padding: 14px 12px;
background: var(--paper);
}
.d-leg { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.d-leg .k { font-size: 10.5px; letter-spacing: 0.04em; color: var(--mist); white-space: nowrap; }
.d-leg .v { font-family: var(--mono); font-size: 15px; font-weight: 500; }
.d-leg.is-total .v { font-size: 17px; }
.d-leg-op { font-family: var(--mono); color: var(--mist-2); font-size: 13px; }
.d-links { display: flex; align-items: center; gap: 14px; margin-top: 14px; font-size: 12.5px; }
.d-links a { color: var(--mist); border-bottom: 1px solid var(--line); }
.d-links a:hover { color: var(--ink); border-color: currentColor; }
.d-recheck {
margin-left: auto;
border: 1px solid var(--line);
background: var(--card);
border-radius: var(--r-pill);
padding: 4px 12px;
font-size: 12px;
color: var(--mist);
}
.d-recheck:hover:not(:disabled) { color: var(--ink); border-color: rgba(255, 255, 255, 0.26); }
.d-recheck:disabled { opacity: 0.55; cursor: default; }
@media (max-width: 1180px) {
.radar .col-fundingApr { display: none; }
}
@media (max-width: 1020px) {
.radar .col-oiUsd { display: none; }
.sources { grid-template-columns: 1fr; }
.stats { grid-template-columns: repeat(3, 1fr); }
.stat:nth-child(4) { border-left: 0; }
.stat:nth-child(n+4) { border-top: 1px solid var(--line-soft); }
.venue-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
.y-legs, .l-grid, .pm-new-grid { grid-template-columns: 1fr; }
.pm-stats { grid-template-columns: repeat(2, 1fr); }
.pm-row { grid-template-columns: 1fr; gap: 6px; }
.launch-stats { grid-template-columns: repeat(2, 1fr); }
.launch-lookup { grid-template-columns: 1fr; }
.y-board, .l-board { overflow-x: auto; }
.board { overflow: hidden; }
.board-scroll { overflow-x: auto; overflow-y: hidden; }
.radar thead th { position: static; backdrop-filter: none; -webkit-backdrop-filter: none; }
.nav-links { display: none; }
.method-grid { grid-template-columns: 1fr; }
.radar .col-trade { display: none; }
.toolbar-right { width: 100%; margin-left: 0; }
.search { width: 100%; }
}
@media (max-width: 640px) {
.stats { grid-template-columns: repeat(2, 1fr); }
.stat { border-left: 0; border-top: 1px solid var(--line-soft); }
.stat:nth-child(-n+2) { border-top: 0; }
.stat:nth-child(even) { border-left: 1px solid var(--line-soft); }
.stat:last-child:nth-child(odd) { grid-column: 1 / -1; }
.radar .col-poolTvl { display: none; }
.header-side .btn { display: none; }
.d-legs { grid-template-columns: 1fr auto 1fr; row-gap: 12px; }
.d-leg.is-total { grid-column: 1 / -1; border-top: 1px solid var(--line); padding-top: 10px; }
.d-leg-op:last-of-type { display: none; }
.hero .display { font-size: clamp(52px, 18vw, 84px); }
.calc-out { grid-template-columns: 1fr; }
.d-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
* { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
html { scroll-behavior: auto; }
[data-reveal] { opacity: 1; transform: none; }
.hero-glow { animation: none; }
}
