/* ═══════ close.fun ═══════ */

@font-face {
  font-family: "Louize";
  src: url("fonts/louize-display-medium.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("fonts/inter.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --bg: #100f0f;
  --bg-soft: #161515;
  --card: #1e1d1d;
  --card-2: #262525;
  --border: #343232;
  --border-soft: #292828;
  --text: #ffffff;
  --muted: #9d9b9b;
  --gold-light: #ffffff;    /* monochrome accent to match the compass-wave logo */
  --gold: #f2f0ea;
  --gold-deep: #b9b6ae;
  --gold-ink: #0d0d0d;
  --gold-dim: rgba(255, 255, 255, 0.09);
  --up: #f2f0ea;
  --down: #6f6d6a;
  --lunch: #c9c9c0;
  --display: "Space Mono", "IBM Plex Mono", monospace;
  --font: "Inter", system-ui, sans-serif;
  --wordmark: "Space Mono", "IBM Plex Mono", monospace;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --radius: 4px;
  --gold-grad: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 52%, var(--gold-deep) 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text); font-family: var(--font); line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
button { font-family: var(--font); }
main.wrap { flex: 1; width: 100%; }
.footer { margin-top: auto; width: 100%; }

/* ── announcement bar: quiet, premium ── */
.announce {
  background: var(--gold);
  color: var(--gold-ink);
  text-align: center;
  padding: 0.55rem 1rem;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.marquee {
  background: #0b0a0b;
  height: 42px;
  display: flex;
  align-items: center;
  overflow: hidden;
  contain: paint;
  white-space: nowrap;
  border-bottom: 1px solid var(--border-soft);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.marquee-track {
  display: inline-flex; align-items: center;
  animation: marquee 60s linear infinite;
  will-change: transform;
  transform: translateZ(0);
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.mq {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin: 0 1.6rem;
}
.mq-logo {
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  overflow: hidden; flex-shrink: 0;
  font-family: var(--font); font-size: 0.55rem; font-weight: 600; color: var(--text);
}
.mq-logo img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.mq-sym { font-family: var(--font); font-size: 0.8rem; font-weight: 600; color: var(--text); letter-spacing: 0.01em; }
.mq-price { font-family: var(--mono); font-size: 0.74rem; color: var(--muted); font-variant-numeric: tabular-nums; }
.mq-chg { font-family: var(--mono); font-size: 0.7rem; font-weight: 600; font-variant-numeric: tabular-nums; }
.mq-chg.up { color: var(--gold); }
.mq-chg.down { color: #6e6c6e; }
.mq-brand {
  font-family: var(--mono); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #575557; margin: 0 1.6rem;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* stock logo chip */
.slogo {
  position: relative;
  display: inline-grid; place-items: center;
  width: 18px; height: 18px; border-radius: 50%;
  background: #24241f; border: 1px solid #3a3a34;
  overflow: hidden; flex-shrink: 0;
  font-family: var(--mono); font-size: 0.5rem; font-weight: 600; color: var(--muted);
}
.slogo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.slogo.lg { width: 26px; height: 26px; font-size: 0.55rem; }

/* ── nav ── */
.nav {
  position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  width: 100%;
  max-width: 1180px;
  margin: 0.9rem auto 0;
  padding: 0.85rem clamp(0.9rem, 3vw, 2rem);
  background: transparent;
}
.nav .nav-pill {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.logo {
  display: inline-block;
  font-family: var(--wordmark);
  font-weight: 600; font-size: 1.55rem; letter-spacing: -0.01em;
  color: var(--text); text-decoration: none; cursor: pointer;
  white-space: nowrap;
}
.logo-dot {
  background: linear-gradient(120deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.logo-sm { font-size: 1rem; }
.nav-pill {
  display: flex; gap: 0;
  background: transparent;
  border: 1px solid var(--border-soft);
  border-radius: 0;
  padding: 0;
}
.nav-pill a {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--muted); font-size: 0.78rem; font-weight: 500;
  font-family: var(--display);
  text-decoration: none; cursor: pointer;
  padding: 0.55rem 1.05rem; border-radius: 0;
  border-left: 1px solid var(--border-soft);
  transition: color 0.13s, background 0.13s;
}
.nav-pill a:first-child { border-left: none; }
.nav-pill a:hover { color: var(--text); background: #242322; }
.nav-pill a svg { opacity: 0.7; }
.nav-right { display: flex; gap: 0.55rem; align-items: center; }
.btn-getstarted {
  background: #ffffff; color: #131212;
  border: none; border-radius: 2px;
  font-family: var(--display); font-weight: 700; font-size: 0.8rem;
  padding: 0.52rem 1.15rem; cursor: pointer;
  transition: filter 0.13s, transform 0.12s;
}
.btn-getstarted:hover { filter: brightness(0.94); }
.btn-getstarted:active { transform: translateY(1px); }
.nav-burger {
  background: none; border: none; color: var(--text);
  display: grid; place-items: center;
  padding: 0.35rem; cursor: pointer; border-radius: 8px;
  transition: background 0.13s;
}
.nav-burger:hover { background: #1e1d1d; }

/* ── buttons: polished gold ── */
.btn {
  border: none; border-radius: 2px; cursor: pointer; font-weight: 700; font-family: var(--display);
  padding: 0.62rem 1.2rem; font-size: 0.88rem;
  transition: filter 0.15s, transform 0.12s, box-shadow 0.15s, border-color 0.15s, opacity 0.15s;
}
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 0.48rem 0.95rem; font-size: 0.8rem; }
.btn-lg { padding: 0.8rem 1.6rem; font-size: 0.95rem; }
.btn-block { width: 100%; }
.btn-accent {
  position: relative;
  overflow: hidden;
  background: var(--gold);
  color: var(--gold-ink);
  box-shadow:
    inset 0 -1px 0 rgba(0, 0, 0, 0.15),
    0 1px 0 rgba(0, 0, 0, 0.5),
    0 4px 18px rgba(204, 255, 0, 0.12);
}
.btn-accent::after {
  content: "";
  position: absolute; top: 0; bottom: 0; width: 45%;
  left: -60%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.btn-accent:hover::after { left: 120%; }
.btn-accent:hover {
  filter: brightness(1.05);
  box-shadow:
    inset 0 -1px 0 rgba(0, 0, 0, 0.15),
    0 1px 0 rgba(0, 0, 0, 0.5),
    0 6px 26px rgba(204, 255, 0, 0.28);
}
.btn-accent:disabled {
  background: var(--card-2); color: var(--muted);
  box-shadow: none; cursor: not-allowed;
}
.btn-accent:disabled::after { display: none; }
.btn-outline {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.btn-outline:hover { border-color: #55554d; background: rgba(255, 255, 255, 0.05); }

/* ── layout ── */
.wrap { max-width: 1180px; margin: 0 auto; padding: 1.1rem clamp(0.9rem, 3vw, 2rem) 4rem; }
.wrap-narrow { max-width: 940px; }
.page-title { font-family: var(--display); font-size: clamp(1.9rem, 4.4vw, 2.7rem); letter-spacing: -0.01em; font-weight: 600; }
.page-sub { color: var(--muted); margin: 0.4rem 0 1.4rem; max-width: 640px; }

/* ── hero: banner card with dot grid + skyline art ── */
.hero-banner {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: #1a1919;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 1.6rem 1.25rem 2rem;
  margin-bottom: 1.1rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font); font-size: 0.82rem; font-weight: 500;
  color: var(--text);
  background: #2a2828;
  border: none;
  border-radius: 12px;
  padding: 0.5rem 0.95rem;
  margin-bottom: 0.85rem;
}
.hero-banner h1 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  line-height: 1.2; letter-spacing: -0.02em; font-weight: 700;
}
.hero-banner h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-banner p {
  color: #b9b7b5; font-size: 0.9rem;
  max-width: 640px; margin: 0.45rem auto 0;
}
.hero-banner p a {
  color: var(--text); font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: #6a6866;
}
.hero-banner p a:hover { text-decoration-color: var(--text); }

/* the timer — the core of the whole site */
.hero-timer { margin-top: 0.9rem; }
.hero-timer-label {
  font-family: var(--mono); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.3em; color: var(--text);
}
.hero-timer-label b { color: var(--gold); font-weight: 700; }
.rh-logo {
  width: 12px; height: 12px;
  object-fit: contain;
  vertical-align: -2px;
  margin: 0 0.1rem;
  transform: scale(1.5);
  filter: hue-rotate(-45deg) brightness(1.3) saturate(1.5);
}
.hero-banner p a svg { margin-left: 0.2rem; vertical-align: 0; }

/* burger dropdown */
.nav-menu { position: relative; }
.nav-dropdown {
  position: absolute; right: 0; top: calc(100% + 10px);
  width: 210px;
  background: #1a1919;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 0.6rem;
  display: flex; flex-direction: column; gap: 0.25rem;
  z-index: 80;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.55);
}
.nav-dropdown[hidden] { display: none; }
.nav-dropdown a {
  color: var(--muted); font-size: 0.85rem; font-weight: 500;
  padding: 0.45rem 0.6rem; border-radius: 8px;
  cursor: pointer; text-decoration: none;
}
.nav-dropdown a:hover { color: var(--text); background: #242322; }
.nav-dropdown .btn { margin-bottom: 0.3rem; }
.hero-timer-digits {
  font-family: var(--mono);
  font-size: clamp(1.9rem, 3.8vw, 2.7rem);
  font-weight: 700;
  line-height: 1.15;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  color: var(--text);
  text-shadow: 0 0 30px rgba(155, 123, 255, 0.2);
}
.clock-tabs { display: flex; justify-content: center; gap: 0.28rem; flex-wrap: wrap; margin-top: 0.55rem; }
.clock-tab {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: rgba(16, 15, 15, 0.7); border: 1px solid var(--border); color: var(--muted);
  font-family: var(--mono); font-size: 0.62rem; font-weight: 600;
  padding: 0.26rem 0.52rem; border-radius: 6px; cursor: pointer;
  transition: all 0.12s;
}
.clock-tab:hover { color: var(--text); border-color: #55524f; }
.clock-tab.active { background: var(--gold); border-color: var(--gold); color: var(--gold-ink); }

/* nav timer chip */
.nav-timer {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--mono); font-size: 0.74rem; font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  white-space: nowrap;
}

.hero-ring {
  position: absolute;
  top: 50%;
  width: clamp(180px, 26vw, 300px);
  height: clamp(180px, 26vw, 300px);
  z-index: 1;
  pointer-events: none;
}
.hero-ring-l { left: 0; transform: translate(-46%, -50%); }
.hero-ring-r { right: 0; transform: translate(46%, -50%); }

/* exchange flag images */
.flag {
  width: 15px; height: 11px;
  object-fit: cover;
  border-radius: 2px;
  display: inline-block;
  vertical-align: -1px;
  margin-right: 0.32rem;
}
.clock-tab .flag { margin-right: 0; width: 13px; height: 10px; }
.picker-name .flag { margin-right: 0.35rem; }

/* ── status dots ── */
.dot { width: 7px; height: 7px; border-radius: 50%; background: #45453e; flex-shrink: 0; }
.dot.open { background: var(--gold); box-shadow: 0 0 7px rgba(255, 255, 255, 0.8); animation: pulse 2s infinite; }
.dot.closed { background: #45453e; }
.dot.lunch { background: var(--lunch); }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.45; } }

/* ── leaders strip ── */
.leaders-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.leader-row {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.65rem 0.85rem;
  cursor: pointer;
  transition: border-color 0.15s;
}
.leader-row:hover { border-color: var(--gold-deep); }
.leader-rank {
  font-family: var(--display); font-weight: 600; font-size: 0.85rem;
  color: var(--muted); width: 1.7rem; text-align: center; flex-shrink: 0;
}
.leader-rank.r1 { color: var(--gold); }
.leader-avatar {
  width: 38px; height: 38px; border-radius: 9px; flex-shrink: 0;
  display: grid; place-items: center;
  font-family: var(--mono); font-weight: 600; font-size: 0.7rem;
  color: rgba(255,255,255,0.9); text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.leader-name { font-weight: 700; font-size: 0.85rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.leader-ticker {
  font-family: var(--mono); font-size: 0.68rem; color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.leader-main { min-width: 4.5rem; flex: 1; overflow: hidden; }
.leader-stats { display: flex; gap: 0.6rem; flex-shrink: 0; }
.leader-stat { text-align: right; }
.leader-stat .k { font-size: 0.6rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.leader-stat .v { font-family: var(--mono); font-size: 0.75rem; font-weight: 600; }
.leader-stat .v.up { color: var(--up); }
.leader-stat .v.down { color: var(--down); }

/* ── trending row ── */
.trending-row { display: flex; align-items: center; gap: 0.8rem; margin: 0 0 1rem; overflow-x: auto; scrollbar-width: none; }
.trending-row::-webkit-scrollbar { display: none; }
.trending-label { font-size: 0.72rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.14em; white-space: nowrap; }
.trending-pills { display: flex; gap: 0.5rem; }
.trend-pill {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 999px; padding: 0.35rem 0.75rem 0.35rem 0.4rem;
  font-size: 0.78rem; white-space: nowrap; cursor: pointer;
  transition: border-color 0.15s;
}
.trend-pill:hover { border-color: var(--gold-deep); }
.trend-pill .pill-avatar { width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; }
.trend-pill .pill-name { font-weight: 600; }
.trend-pill .pill-chg { font-family: var(--mono); font-size: 0.7rem; font-weight: 600; }
.trend-pill .pill-chg.up { color: var(--up); }
.trend-pill .pill-chg.down { color: var(--down); }

/* ── exchange strip ── */
.ex-strip { margin-bottom: 1.1rem; overflow-x: auto; scrollbar-width: none; }
.ex-strip::-webkit-scrollbar { display: none; }
.ex-strip-inner { display: flex; gap: 0.6rem; min-width: max-content; }
.ex-chip {
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 9px; padding: 0.5rem 0.85rem;
  font-size: 0.78rem;
}
.ex-chip.is-open { border-color: rgba(255, 255, 255, 0.5); }
.ex-chip-name { font-weight: 700; }
.ex-chip-cd { font-family: var(--mono); font-size: 0.7rem; color: var(--muted); }
.ex-chip-cd b { color: var(--text); font-weight: 600; }

/* ── toolbar ── */
.toolbar { display: flex; align-items: center; gap: 0.7rem; flex-wrap: wrap; margin-bottom: 1rem; }
.search-box {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 9px; padding: 0 0.8rem;
  color: var(--muted);
  flex: 1 1 220px; min-width: 180px;
}
.search-box:focus-within { border-color: var(--gold-deep); }
.search-box input {
  background: none; border: none; outline: none;
  color: var(--text); font-family: var(--font); font-size: 0.85rem;
  padding: 0.6rem 0; width: 100%;
}
.search-box input::placeholder { color: var(--muted); }
.tab-group { display: flex; gap: 0.25rem; background: var(--card); border: 1px solid var(--border); border-radius: 9px; padding: 0.22rem; }
.tab {
  background: none; border: none; color: var(--muted);
  font-size: 0.78rem; font-weight: 600; padding: 0.4rem 0.75rem;
  border-radius: 6px; cursor: pointer; transition: color 0.12s, background 0.12s;
  white-space: nowrap;
}
.tab:hover { color: var(--text); }
.tab.active { background: var(--gold); color: var(--gold-ink); }

/* ── token grid ── */
.token-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(178px, 1fr));
  gap: 0.8rem;
}
.token-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.13s, border-color 0.15s, box-shadow 0.15s;
  display: flex; flex-direction: column;
  cursor: pointer;
}
.token-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold-deep);
  box-shadow: 0 4px 22px rgba(255, 255, 255, 0.1);
}
.token-img {
  aspect-ratio: 1 / 1;
  display: grid; place-items: center;
  font-family: var(--mono); font-weight: 600;
  font-size: 1.5rem; letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}
.token-body { padding: 0.65rem 0.7rem 0.7rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.token-title { display: flex; align-items: baseline; justify-content: space-between; gap: 0.4rem; }
.token-name { font-weight: 700; font-size: 0.85rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.token-ex-tag {
  font-family: var(--mono); font-size: 0.6rem; font-weight: 600;
  color: var(--muted); background: var(--bg-soft);
  border: 1px solid var(--border); border-radius: 5px;
  padding: 0.1rem 0.35rem; flex-shrink: 0;
}
.token-ticker { font-family: var(--mono); font-size: 0.68rem; color: var(--muted); margin-top: -0.35rem; }
.token-stats { display: flex; justify-content: space-between; gap: 0.3rem; }
.tstat .k { font-size: 0.58rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }
.tstat .v { font-family: var(--mono); font-size: 0.72rem; font-weight: 600; }
.tstat .v.up { color: var(--up); }
.tstat .v.down { color: var(--down); }
.quick-buys { display: flex; gap: 0.3rem; }
.qb {
  flex: 1; background: var(--card-2); border: 1px solid var(--border);
  color: var(--text); font-family: var(--mono); font-size: 0.66rem; font-weight: 600;
  border-radius: 6px; padding: 0.34rem 0; cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: border-color 0.12s, color 0.12s, background 0.12s;
}
.qb:hover { border-color: var(--gold); color: var(--gold-light); background: var(--gold-dim); }
.qb:disabled { color: var(--muted); cursor: not-allowed; opacity: 0.45; box-shadow: none; }
.qb:disabled:hover { border-color: var(--border); background: var(--card-2); color: var(--muted); }
.token-creator {
  font-family: var(--mono); font-size: 0.62rem; color: var(--muted);
  border-top: 1px solid var(--border-soft); padding-top: 0.45rem;
  margin-top: auto;
  display: flex; justify-content: space-between;
}
/* halted */
.token-card.halted .token-img,
.token-card.halted .token-body { filter: grayscale(1) opacity(0.35); }
.halt-overlay { position: absolute; inset: 0; display: none; place-items: center; padding: 0.5rem; text-align: center; pointer-events: none; }
.token-card.halted .halt-overlay { display: grid; }
.halt-box {
  background: rgba(8, 8, 7, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px; padding: 0.5rem 0.8rem;
  font-family: var(--mono);
}
.halt-title { color: var(--gold); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em; }
.halt-sub { color: var(--muted); font-size: 0.6rem; margin-top: 0.15rem; }
.grid-empty { text-align: center; color: var(--muted); font-size: 0.85rem; padding: 2.5rem 0; }

/* ═══════ TOKEN PAGE ═══════ */
.tp-back {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--muted); font-size: 0.82rem; font-weight: 600;
  text-decoration: none; margin-bottom: 0.9rem;
  cursor: pointer;
}
.tp-back:hover { color: var(--text); }
.tp-layout { display: grid; grid-template-columns: 1fr 340px; gap: 0.9rem; align-items: start; }
.tp-main, .tp-side { display: flex; flex-direction: column; gap: 0.9rem; min-width: 0; }
.tp-card { background: var(--card); border: 1px solid var(--border); border-radius: 4px; padding: 1rem 1.1rem; }
.tp-card-title { font-size: 0.7rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 0.7rem; }
.card-hint { font-size: 0.76rem; color: var(--muted); margin: -0.3rem 0 0.7rem; }

.tp-head { display: flex; align-items: center; gap: 0.9rem; flex-wrap: wrap; }
.tp-avatar {
  width: 64px; height: 64px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center;
  font-family: var(--mono); font-weight: 600; font-size: 1.05rem;
  color: rgba(255,255,255,0.9); text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.tp-title-block { flex: 1; min-width: 140px; }
.tp-name { font-family: var(--display); font-size: 1.45rem; font-weight: 600; line-height: 1.12; }
.tp-sub { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.25rem; flex-wrap: wrap; }
.tp-ticker { font-family: var(--mono); font-size: 0.78rem; color: var(--muted); display: inline-flex; align-items: center; gap: 0.35rem; }
.tp-status {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-family: var(--mono); font-size: 0.65rem; font-weight: 600;
  padding: 0.18rem 0.55rem; border-radius: 999px;
  border: 1px solid var(--border); background: var(--bg-soft);
}
.tp-status .dot { width: 6px; height: 6px; }
.tp-price-block { text-align: right; }
.tp-price { font-family: var(--mono); font-size: 1.35rem; font-weight: 600; }
.tp-chg { font-family: var(--mono); font-size: 0.8rem; font-weight: 600; }
.tp-chg.up { color: var(--up); }
.tp-chg.down { color: var(--down); }
.tp-statrow {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 0.5rem; margin-top: 0.95rem;
  border-top: 1px solid var(--border-soft); padding-top: 0.85rem;
}
.tp-stat .k { font-size: 0.6rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.tp-stat .v { font-family: var(--mono); font-size: 0.82rem; font-weight: 600; }

.tp-chart-wrap { position: relative; }
.tp-chart-canvas { width: 100%; height: 225px; display: block; }
.tp-chart-halt {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(8, 8, 7, 0.55); border-radius: 8px;
}
.tp-chart-halt[hidden] { display: none; }
.tp-chart-meta {
  display: flex; justify-content: space-between; margin-top: 0.5rem;
  font-family: var(--mono); font-size: 0.65rem; color: var(--muted);
}

.tp-table { width: 100%; border-collapse: collapse; font-family: var(--mono); font-size: 0.72rem; }
.tp-table th {
  text-align: left; color: var(--muted); font-weight: 500;
  font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.05em;
  padding: 0.3rem 0.4rem; border-bottom: 1px solid var(--border-soft);
}
.tp-table td { padding: 0.42rem 0.4rem; border-bottom: 1px solid var(--border-soft); }
.tp-table tr:last-child td { border-bottom: none; }
.tp-table .buy { color: var(--up); font-weight: 600; }
.tp-table .sell { color: var(--down); font-weight: 600; }
.tp-table .addr { color: var(--muted); }
.tp-table .r { text-align: right; }

.trade-tabs { display: flex; gap: 0.4rem; margin-bottom: 0.85rem; }
.trade-tab {
  flex: 1; padding: 0.55rem 0; border-radius: 8px;
  border: 1px solid var(--border); background: var(--card-2);
  color: var(--muted); font-weight: 700; font-size: 0.85rem; cursor: pointer;
  transition: all 0.13s;
}
.trade-tab.active-buy { background: var(--gold); border-color: var(--gold); color: var(--gold-ink); }
.trade-tab.active-sell { background: #34342e; border-color: #85857d; color: var(--text); }
.trade-amount {
  display: flex; align-items: center;
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 9px; padding: 0 0.8rem;
  margin-bottom: 0.55rem;
}
.trade-amount:focus-within { border-color: var(--gold-deep); }
.trade-amount span { color: var(--muted); font-family: var(--mono); font-size: 0.85rem; }
.trade-amount input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--text); font-family: var(--mono); font-size: 1rem;
  padding: 0.65rem 0.4rem; width: 100%;
}
.trade-chips { display: flex; gap: 0.35rem; margin-bottom: 0.75rem; }
.trade-chip {
  flex: 1; background: var(--card-2); border: 1px solid var(--border);
  color: var(--text); font-family: var(--mono); font-size: 0.7rem; font-weight: 600;
  border-radius: 6px; padding: 0.38rem 0; cursor: pointer;
  transition: all 0.12s;
}
.trade-chip:hover { border-color: var(--gold); color: var(--gold-light); background: var(--gold-dim); }
.trade-est {
  font-family: var(--mono); font-size: 0.72rem; color: var(--muted);
  margin-bottom: 0.75rem; display: flex; justify-content: space-between;
}
.trade-est b { color: var(--text); font-weight: 600; }
.trade-note { font-size: 0.68rem; color: var(--muted); text-align: center; margin-top: 0.6rem; font-family: var(--mono); }

.curve-bar { height: 9px; background: var(--card-2); border: 1px solid var(--border); border-radius: 999px; overflow: hidden; }
.curve-fill {
  height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-light));
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}
.curve-meta { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 0.68rem; color: var(--muted); margin-top: 0.5rem; }
.curve-meta b { color: var(--gold); }

.holder-row { display: flex; align-items: center; gap: 0.6rem; padding: 0.32rem 0; font-family: var(--mono); font-size: 0.72rem; }
.holder-rank { color: var(--muted); width: 1.4rem; }
.holder-addr { flex: 1; }
.holder-addr.dev { color: var(--gold); font-weight: 600; }
.holder-pct { color: var(--muted); }
.holder-bar { width: 70px; height: 5px; background: var(--card-2); border-radius: 99px; overflow: hidden; }
.holder-bar i { display: block; height: 100%; background: var(--gold-deep); border-radius: 99px; }

.thread-msg { padding: 0.55rem 0; border-bottom: 1px solid var(--border-soft); }
.thread-msg:last-child { border-bottom: none; }
.thread-meta { font-family: var(--mono); font-size: 0.64rem; color: var(--muted); margin-bottom: 0.2rem; }
.thread-meta b { color: var(--gold); font-weight: 600; }
.thread-text { font-size: 0.8rem; }

/* ═══════ LAUNCH PAGE ═══════ */
.launch-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; align-items: start; }
.launch-col { display: flex; flex-direction: column; gap: 0.9rem; min-width: 0; }
.launch-token-row { display: flex; gap: 0.9rem; margin-bottom: 0.9rem; }
.launch-token-fields { flex: 1; display: flex; flex-direction: column; gap: 0; }
.img-drop {
  width: 108px; height: 108px; flex-shrink: 0;
  border: 1px dashed var(--border);
  border-radius: 12px;
  display: grid; place-items: center;
  color: var(--muted); font-size: 0.7rem; font-weight: 600; text-align: center;
  cursor: pointer;
  background-size: cover; background-position: center;
  transition: border-color 0.15s, color 0.15s;
}
.img-drop:hover { border-color: var(--gold); color: var(--gold); }
.img-drop.has-img { border-style: solid; }
.img-drop.has-img span { display: none; }
.form-field { margin-bottom: 0.9rem; }
.form-field:last-child { margin-bottom: 0; }
.form-field label { display: block; font-size: 0.78rem; font-weight: 600; margin-bottom: 0.35rem; }
.label-hint { color: var(--muted); font-weight: 400; text-transform: none; letter-spacing: 0; }
.form-field input, .form-field textarea {
  width: 100%; background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text); font-family: var(--font);
  font-size: 0.88rem; padding: 0.6rem 0.8rem; outline: none;
  transition: border-color 0.15s; resize: vertical;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--gold-deep); }

.pair-picker { display: grid; grid-template-columns: repeat(auto-fill, minmax(128px, 1fr)); gap: 0.45rem; }
.pair-option {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 8px; padding: 0.5rem 0.6rem;
  cursor: pointer; user-select: none;
  transition: border-color 0.13s, background 0.13s;
}
.pair-option:hover { border-color: #55554d; }
.pair-option.selected { border-color: var(--gold); background: var(--gold-dim); }
.pair-top { display: flex; align-items: center; gap: 0.45rem; }
.pair-sym { font-family: var(--mono); font-weight: 700; font-size: 0.78rem; }
.pair-name { font-size: 0.62rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 0.2rem; }
.pair-ex { font-family: var(--mono); font-size: 0.58rem; color: var(--gold); margin-top: 0.1rem; }
.pair-ex.any { color: var(--muted); }

.exchange-picker { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
.exchange-picker.locked { opacity: 0.45; pointer-events: none; }
.picker-option {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 8px; padding: 0.55rem 0.65rem;
  cursor: pointer; user-select: none;
  transition: border-color 0.13s, background 0.13s;
}
.picker-option:hover { border-color: #55554d; }
.picker-option.selected { border-color: var(--gold); background: var(--gold-dim); }
.picker-name { display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 0.8rem; }
.picker-hours { font-family: var(--mono); font-size: 0.6rem; color: var(--muted); margin-top: 0.15rem; }

.hours-summary {
  background: var(--card); border: 1px dashed var(--border);
  border-radius: 10px; padding: 0.85rem 1rem;
  font-family: var(--mono); font-size: 0.74rem; color: var(--muted);
  line-height: 1.8;
}
.hours-summary .hl { color: var(--text); font-weight: 600; }
.hours-summary .ok { color: var(--gold); font-weight: 600; }
.hours-summary .no { color: var(--down); }
.hours-summary .mid { color: var(--lunch); }
.modal-note { text-align: center; font-size: 0.7rem; color: var(--muted); margin-top: 0.2rem; }

/* ═══════ LAUNCH PAGE v2 (pons style) ═══════ */
.launch2 {
  display: grid;
  grid-template-columns: minmax(0, 560px) 320px;
  gap: 1rem;
  justify-content: center;
  align-items: start;
  padding-top: 0.4rem;
}
.launch2-card { padding: 1.5rem 1.6rem 1.4rem; }
.launch2-title { font-family: var(--display); font-weight: 600; font-size: 1.7rem; margin-bottom: 1.1rem; }
.l2-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.l2-note { font-size: 0.74rem; color: var(--muted); margin-top: 0.45rem; }
.img-choose {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  border: 1px dashed var(--border);
  border-radius: 10px;
  padding: 0.9rem;
  color: var(--text); font-size: 0.88rem; font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s;
}
.img-choose:hover { border-color: #55524f; }
.img-choose-icon {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--card-2);
  display: grid; place-items: center;
  color: var(--muted);
  background-size: cover; background-position: center;
  flex-shrink: 0;
}
.img-choose-icon.has-img svg { display: none; }
.prefix-input {
  display: flex; align-items: center;
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 8px; padding-left: 0.8rem;
  transition: border-color 0.15s;
}
.prefix-input:focus-within { border-color: var(--gold-deep); }
.prefix-input span { color: var(--muted); font-size: 0.88rem; }
.prefix-input input { border: none !important; background: none !important; padding-left: 0.15rem !important; }
.pair-field { position: relative; }
.pair-select {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 8px; padding: 0.6rem 0.8rem;
  color: var(--text); font-family: var(--font); font-size: 0.88rem; font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s;
}
.pair-select:hover { border-color: #55524f; }
.pair-select-label { display: inline-flex; align-items: center; gap: 0.45rem; }
.pair-menu {
  position: absolute; left: 0; right: 0; top: calc(100% - 1.4rem);
  max-height: 260px; overflow-y: auto;
  background: #1f1e1e;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.35rem;
  z-index: 30;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.55);
}
.pair-menu[hidden] { display: none; }
.pair-item {
  display: flex; align-items: center; gap: 0.55rem;
  padding: 0.45rem 0.6rem; border-radius: 8px;
  cursor: pointer; font-size: 0.85rem;
}
.pair-item:hover { background: #2a2929; }
.pair-item .pi-name { color: var(--muted); font-size: 0.75rem; margin-left: auto; }
.devbuy-box {
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 10px; padding: 0.55rem 0.8rem;
  transition: border-color 0.15s;
}
.devbuy-box:focus-within { border-color: var(--gold-deep); }
.devbuy-box input {
  flex: 1; border: none !important; background: none !important;
  font-size: 1.3rem !important; font-weight: 600; padding: 0 !important;
  font-variant-numeric: tabular-nums;
}
.devbuy-note { display: flex; align-items: center; justify-content: space-between; }
.l2-advanced { margin: 0.4rem 0 0.9rem; }
.testmode-label {
  display: flex !important; align-items: center; gap: 0.5rem;
  font-size: 0.88rem; font-weight: 600; cursor: pointer;
}
.testmode-label input { accent-color: var(--gold); width: 15px; height: 15px; }
.net-select {
  width: 100%;
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text);
  font-family: var(--font); font-size: 0.88rem; font-weight: 500;
  padding: 0.6rem 0.8rem; outline: none; cursor: pointer;
}
.net-select:focus { border-color: var(--gold-deep); }
.net-select option { background: #1f1e1e; }
.test-tag { color: var(--lunch); border-color: rgba(201, 201, 192, 0.4); }
.l2-advanced summary {
  cursor: pointer; font-size: 0.88rem; font-weight: 600;
  color: var(--text); padding: 0.4rem 0;
  list-style-position: inside;
}
.l2-fee {
  font-size: 0.78rem; color: var(--muted);
  border-top: 1px solid var(--border-soft);
  padding-top: 0.8rem; margin-bottom: 0.7rem;
}
.launch2-preview { padding: 1.4rem; position: sticky; top: 1rem; }
.l2p-img {
  width: 64px; height: 64px; border-radius: 12px;
  background: var(--card-2);
  display: grid; place-items: center;
  color: var(--muted);
  background-size: cover; background-position: center;
  margin-bottom: 0.8rem;
}
.l2p-img.has-img svg { display: none; }
.l2p-name { font-family: var(--display); font-size: 1.3rem; font-weight: 600; }
.l2p-ticker { color: var(--muted); font-size: 0.85rem; margin-bottom: 0.9rem; }
.l2p-rows { border-top: 1px solid var(--border-soft); }
.l2p-rows > div {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.82rem;
}
.l2p-rows span { color: var(--muted); }
.l2p-rows b { font-weight: 600; }
@media (max-width: 900px) {
  .launch2 { grid-template-columns: 1fr; }
  .launch2-preview { position: static; }
}

/* ═══════ DOCS (gitbook style) ═══════ */
.docs-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
  padding-top: 1rem;
}
.docs-sidebar {
  position: sticky; top: 76px;
  border-right: 1px solid var(--border-soft);
  padding-right: 1.2rem;
  display: flex; flex-direction: column; gap: 0.8rem;
}
.docs-sidebar-title {
  font-family: var(--display); font-weight: 600; font-size: 0.95rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border-soft);
}
.docs-nav { display: flex; flex-direction: column; }
.docs-nav a {
  color: var(--muted); font-size: 0.83rem; font-weight: 500;
  text-decoration: none; cursor: pointer;
  padding: 0.42rem 0.6rem;
  border-left: 2px solid transparent;
  border-radius: 0 6px 6px 0;
  transition: color 0.13s, background 0.13s, border-color 0.13s;
}
.docs-nav a:hover { color: var(--text); background: rgba(255, 255, 255, 0.03); }
.docs-nav a.active {
  color: var(--gold);
  border-left-color: var(--gold);
  background: var(--gold-dim);
  font-weight: 600;
}
.docs-sidebar-foot { padding-top: 0.4rem; }
.docs-content { min-width: 0; max-width: 720px; padding-bottom: 3rem; }
.docs-breadcrumb {
  font-family: var(--mono); font-size: 0.68rem; color: var(--muted);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.doc-section { padding-bottom: 1.6rem; }
.doc-section + .doc-section { border-top: 1px solid var(--border-soft); padding-top: 1.6rem; }
.docs-content h1 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.7rem, 3.6vw, 2.3rem);
  letter-spacing: -0.01em;
  margin-bottom: 0.8rem;
}
.docs-content h2 {
  font-family: var(--display); font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}
.docs-content p { color: var(--muted); font-size: 0.92rem; line-height: 1.7; }
.docs-content p + p { margin-top: 0.8rem; }
.docs-content b { color: var(--text); font-weight: 600; }
.code {
  background: #0a0a09;
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 0.9rem 1rem;
  margin-top: 0.9rem;
  font-family: var(--mono);
  font-size: 0.74rem;
  line-height: 1.65;
  color: #d5d3cc;
  overflow-x: auto;
}
.code .k { color: var(--gold); font-weight: 600; }
.code .t { color: #c9c7c0; font-weight: 600; }
.code .f { color: var(--gold-light); font-weight: 600; }
.code .c { color: #5c5c54; }

/* ═══════ PONS-STYLE TOKEN PAGE ═══════ */
.tp-back {
  background: var(--card); border: 1px solid var(--border-soft);
  border-radius: 10px; padding: 0.45rem 0.85rem;
  font-size: 0.8rem;
}
.pons-about {
  display: flex; justify-content: space-between; gap: 1rem;
  flex-wrap: wrap; margin-bottom: 0.8rem;
  padding: 0.9rem 1.1rem;
}
.pa-left { flex: 1; min-width: 240px; }
.pa-left h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.pa-desc { color: var(--muted); font-size: 0.85rem; }
.pa-meta { color: var(--muted); font-size: 0.76rem; margin-top: 0.4rem; }
.pa-right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 0.4rem; }
.pair-badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: var(--card-2); border: 1px solid var(--border-soft);
  border-radius: 8px; padding: 0.22rem 0.6rem;
  font-size: 0.7rem; font-weight: 600; color: var(--muted);
}
.pair-badge b { color: var(--text); }
.pa-supply { font-size: 0.85rem; font-variant-numeric: tabular-nums; }
.pa-supply .k { font-size: 0.74rem; color: var(--muted); font-weight: 400; }
.pa-supply b { font-weight: 700; }
.pons-about { position: relative; }
.pa-mid {
  position: absolute;
  left: 50%; top: 0.9rem;
  transform: translateX(-50%);
  display: flex; gap: 0.4rem;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .pa-mid { position: static; transform: none; flex-wrap: wrap; align-self: flex-start; }
}
.chip {
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: var(--card-2); border: 1px solid var(--border-soft);
  border-radius: 9px; padding: 0.32rem 0.7rem;
  font-size: 0.75rem; font-weight: 500; color: var(--text);
  cursor: pointer; transition: background 0.13s;
}
.chip:hover { background: #2c2a2a; }
.chip.mono { font-family: var(--mono); font-size: 0.7rem; }

.pons-main { display: grid; grid-template-columns: 330px 1fr; gap: 0.9rem; align-items: start; margin-bottom: 0.9rem; }
.pt-token { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.7rem; }
.pt-token .tp-avatar { width: 44px; height: 44px; border-radius: 10px; font-size: 0.8rem; }
.pt-name { font-weight: 700; font-size: 1rem; }
.pt-sub { display: flex; align-items: center; gap: 0.45rem; font-family: var(--mono); font-size: 0.72rem; color: var(--muted); }

.swap-box {
  background: var(--card-2);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 0.6rem 0.85rem;
}
.sb-label { font-size: 0.72rem; color: var(--muted); margin-bottom: 0.1rem; }
.sb-amount {
  width: 100%;
  background: none; border: none; outline: none;
  color: var(--text);
  font-family: var(--font); font-size: 1.4rem; font-weight: 600;
  font-variant-numeric: tabular-nums;
  padding: 0;
}
.sb-amount.out { min-height: 1.8rem; }
.sb-usd { font-size: 0.72rem; color: var(--muted); margin-top: -0.15rem; }
.sb-row { display: flex; justify-content: space-between; align-items: center; margin-top: 0.5rem; }
.asset-chip {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: #2e2c2c; border-radius: 9px;
  padding: 0.3rem 0.65rem;
  font-size: 0.78rem; font-weight: 700;
}
.sb-avail { font-size: 0.7rem; color: var(--muted); display: inline-flex; align-items: center; gap: 0.35rem; }
.max-chip {
  background: var(--gold-dim); color: var(--gold);
  border: none; border-radius: 7px;
  font-size: 0.66rem; font-weight: 700;
  padding: 0.18rem 0.45rem; cursor: pointer;
}
.swap-divider {
  display: grid; place-items: center;
  width: 30px; height: 30px;
  margin: -0.55rem auto;
  position: relative; z-index: 2;
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 9px;
  color: var(--muted);
}
.pct-chips { display: flex; gap: 0.35rem; margin: 0.6rem 0; }
.pct-chip {
  flex: 1; background: var(--card-2); border: 1px solid var(--border-soft);
  color: var(--text); font-size: 0.72rem; font-weight: 600;
  border-radius: 9px; padding: 0.4rem 0; cursor: pointer;
  transition: background 0.12s;
}
.pct-chip:hover { background: #2c2a2a; }

.pc-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 0.5rem; padding-bottom: 0.6rem; margin-bottom: 0.6rem;
  border-bottom: 1px solid var(--border-soft);
}
.pc-stats .k { font-size: 0.68rem; color: var(--muted); }
.pc-stats .v { font-size: 0.85rem; font-weight: 600; font-variant-numeric: tabular-nums; }
.pc-topline { display: flex; justify-content: space-between; align-items: flex-start; gap: 0.6rem; flex-wrap: wrap; }
.pc-big { font-size: 1.55rem; font-weight: 700; font-variant-numeric: tabular-nums; line-height: 1.1; }
.pc-chg { font-size: 0.78rem; font-weight: 600; margin-top: 0.1rem; }
.pc-chg.up { color: var(--up); }
.pc-chg.down { color: var(--down); }
.pc-chg span { color: var(--muted); font-weight: 500; margin-left: 0.3rem; }
.pc-tfs { display: flex; gap: 0.25rem; }
.pc-tf {
  background: none; border: none; color: var(--muted);
  font-size: 0.72rem; font-weight: 600;
  padding: 0.3rem 0.55rem; border-radius: 7px; cursor: pointer;
}
.pc-tf.active { background: var(--card-2); color: var(--text); }

.pons-trades { padding: 1rem 1.2rem; }
.pt-tabs { display: flex; align-items: center; gap: 0.3rem; margin-bottom: 0.5rem; }
.pt-tab {
  background: none; border: none; color: var(--muted);
  font-size: 0.85rem; font-weight: 600;
  padding: 0.4rem 0.7rem; border-radius: 8px; cursor: pointer;
}
.pt-tab.active { background: var(--card-2); color: var(--text); }
.pt-count { margin-left: auto; font-size: 0.72rem; color: var(--muted); font-variant-numeric: tabular-nums; }
.trade-row {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.42rem 0.6rem;
  border-radius: 10px;
}
.trade-row:nth-child(odd) { background: rgba(255, 255, 255, 0.015); }
.trade-row:hover { background: var(--card-2); }
.tr-arrow { font-size: 0.9rem; font-weight: 700; width: 1.2rem; text-align: center; }
.tr-arrow.up { color: var(--up); }
.tr-arrow.down { color: #e2604f; }
.tr-main { flex: 1; min-width: 0; }
.tr-amt { font-size: 0.85rem; font-weight: 600; }
.tr-addr { font-family: var(--mono); font-size: 0.7rem; color: var(--muted); }
.tr-right { text-align: right; }
.tr-val { font-size: 0.82rem; font-weight: 600; font-variant-numeric: tabular-nums; }
.tr-sub { font-size: 0.68rem; color: var(--muted); }
.tr-ago { font-size: 0.72rem; color: var(--muted); width: 2.2rem; text-align: right; }
.pagination { display: flex; justify-content: center; align-items: center; gap: 0.3rem; margin-top: 0.8rem; }
.page-btn {
  background: var(--card-2); border: 1px solid var(--border-soft); color: var(--muted);
  font-size: 0.75rem; font-weight: 600;
  min-width: 30px; padding: 0.32rem 0.5rem; border-radius: 8px; cursor: pointer;
}
.page-btn.active { background: #f0efed; color: #131212; border-color: #f0efed; }
.page-btn.ghost { background: none; border: none; }

@media (max-width: 900px) {
  .pons-main { grid-template-columns: 1fr; }
  .pa-right { text-align: left; align-items: flex-start; }
}

/* ── footer ── */
.footer { border-top: 1px solid var(--border-soft); background: var(--bg-soft); padding: 1.4rem 1rem; }
.footer-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap;
}
.footer-note { color: var(--muted); font-size: 0.72rem; font-family: var(--mono); }
.footer-x {
  display: inline-flex; align-items: center; gap: 0.35rem;
  color: var(--text); text-decoration: none; font-weight: 600;
}
.footer-x:hover { color: var(--gold); }

/* ── responsive ── */
@media (max-width: 960px) {
  .tp-layout { grid-template-columns: 1fr; }
  .launch-grid { grid-template-columns: 1fr; }
  .docs-layout { grid-template-columns: 1fr; }
  .docs-sidebar {
    position: static; border-right: none; padding-right: 0;
    border-bottom: 1px solid var(--border-soft); padding-bottom: 1rem;
  }
  .docs-nav { flex-direction: row; flex-wrap: wrap; gap: 0.2rem; }
  .docs-nav a { border-left: none; border-radius: 6px; }
  .docs-nav a.active { border-left: none; }
  .docs-sidebar-foot { display: none; }
}
@media (max-width: 860px) {
  .nav-pill { display: none; }
}
@media (max-width: 480px) {
  .exchange-picker { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════ DUST-STYLE THEME OVERRIDES ═══════ */
/* centered column with dark gutters, like the reference */
html { background: #121008; }
body {
  max-width: 1180px; margin: 0 auto;
  border-left: 1px solid #232019; border-right: 1px solid #232019;
  min-height: 100vh;
}

/* full-height boxed header cells */
.nav.nav-cells-bar {
  display: flex; align-items: stretch;
  height: 56px; padding: 0; margin: 0;
  border-bottom: 1px solid var(--border-soft);
  max-width: none;
}
.nav-cells-bar .logo {
  display: flex; align-items: center;
  padding: 0 1.4rem; font-size: 1.15rem; font-weight: 700;
  border-right: 1px solid var(--border-soft);
}
.nav-spacer { flex: 1; }
.nav-cells { display: flex; align-items: stretch; }
.nav-cells .nav-cell {
  display: flex; align-items: center;
  padding: 0 1.5rem;
  border-left: 1px solid var(--border-soft);
  color: var(--muted); font-family: var(--display); font-size: 0.78rem; font-weight: 500;
  cursor: pointer; text-decoration: none;
  transition: color 0.13s, background 0.13s;
}
.nav-cells .nav-cell:hover { color: var(--text); background: #161514; }
.btn-getstarted.nav-cell {
  border-radius: 0; border-left: 1px solid var(--border-soft);
  height: auto; padding: 0 1.6rem;
}
.nav-cell-burger {
  display: flex; align-items: center;
  border-left: 1px solid var(--border-soft); padding: 0 0.7rem;
  position: relative;
}

/* hero: tall, centered, typewriter */
.hero-xxl {
  min-height: 470px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  border: none; border-bottom: 1px solid var(--border-soft);
  border-radius: 0; margin: 0 -1.5rem;
}
.hero-xxl h1 {
  font-size: clamp(2rem, 4.6vw, 3.3rem);
  font-weight: 700; line-height: 1.22; letter-spacing: -0.03em;
}
.hero-xxl p { font-size: 0.86rem; max-width: 560px; margin: 1rem auto 0; }
.hero-ctas { display: flex; gap: 0.8rem; justify-content: center; margin-top: 1.6rem; }
.btn-ghost {
  background: #171615; color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: #1f1e1d; }
.hero-chain {
  display: inline-flex; align-items: center; gap: 0.45rem;
  margin-top: 1.7rem;
  font-family: var(--display); font-size: 0.68rem; color: var(--muted);
  letter-spacing: 0.08em;
}

/* pixel checkerboard section dividers */
.pixel-divider {
  height: 46px; margin: 0 -1.5rem;
  background: url("assets/branding/divider.png") repeat-x bottom;
  background-size: auto 100%;
  opacity: 0.9;
}

/* section headings */
.sect-title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 2rem); letter-spacing: -0.02em;
  text-align: center; margin-top: 3.2rem;
}
.sect-sub { text-align: center; color: var(--muted); font-size: 0.82rem; margin: 0.5rem 0 2rem; }
.sect-left { text-align: left; }

/* numbered pixel steps with dotted connector */
.steps {
  position: relative;
  display: flex; gap: 1.6rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 3.2rem;
}
.steps::before {
  content: ""; position: absolute; left: 6%; right: 6%; top: 50%;
  border-top: 1px dashed #3a3836; z-index: 0;
}
.step {
  position: relative; z-index: 1;
  width: 168px; padding: 1.6rem 0.8rem 1.2rem;
  background: radial-gradient(120% 100% at 50% 0%, #171615 0%, #0c0b0b 100%);
  border: 1px solid #35322f; border-radius: 8px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.pixel-icon { width: 56px; height: 56px; image-rendering: pixelated; }
.step-label { font-family: var(--display); font-size: 0.76rem; font-weight: 700; margin-top: 0.9rem; }

/* white feature cards (inverted, Dust-style) */
.wsec { max-width: 860px; margin: 0 auto 3.4rem; }
.wcards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 0.9rem; }
.wcard {
  background: #f5f3ee; color: #121110;
  display: flex; gap: 0.8rem; align-items: flex-start;
  padding: 0.95rem 1rem; border-radius: 2px;
}
.wcard b { font-family: var(--display); font-size: 0.82rem; }
.wcard p { font-size: 0.72rem; color: #43413e; margin-top: 0.2rem; line-height: 1.45; }
.pixel-icon-sm { width: 34px; height: 34px; image-rendering: pixelated; filter: invert(1); margin-top: 0.1rem; }

/* footer, mono minimal */
.footer { border-top: 1px solid var(--border-soft); }
.footer-inner { font-family: var(--display); font-size: 0.7rem; }

/* ═══════ VARO-SYSTEM THEME ═══════ */
:root {
  --v-cream: #ece5d6;
  --v-panel: #0d0c0a;
  --v-line: rgba(255, 255, 255, 0.08);
  --v-up: #2ecc71;
  --v-down: #e74c3c;
  --display: "Roboto Serif", Georgia, serif;
  --font: "Outfit", "Inter", system-ui, sans-serif;
  --wordmark: "Bungee", monospace;
  --up: #2ecc71;
  --down: #e74c3c;
}
html { background: #000; }
body {
  max-width: none; margin: 0; border: none;
  background: #000 radial-gradient(60% 380px at 50% 0%, rgba(84, 60, 30, 0.25), transparent 70%);
  font-family: var(--font);
}
button { font-family: var(--font); }
.announce, .pixel-divider, .howsec, .wsec { display: none; }

/* nav */
.vnav {
  display: flex; align-items: center; gap: 1.6rem;
  padding: 0.65rem 1.4rem;
  border-bottom: 1px solid var(--v-line);
}
.vlogo {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--wordmark); font-size: 0.98rem; letter-spacing: 0.02em;
  color: #fff; text-decoration: none; cursor: pointer;
}
.vlogo img { width: 22px; height: 22px; image-rendering: pixelated; border-radius: 4px; }
.vnav-links { display: flex; gap: 1.15rem; }
.vnav-links a {
  color: rgba(255, 255, 255, 0.85); font-size: 0.83rem; font-weight: 500;
  cursor: pointer; text-decoration: none;
}
.vnav-links a:hover { color: #fff; }
.vnav-right { margin-left: auto; display: flex; align-items: center; gap: 0.9rem; }
.vnav-x { color: rgba(255,255,255,0.5); font-size: 0.75rem; text-decoration: none; }
.vnav-x:hover { color: #fff; }
.vbtn-outline {
  background: transparent; color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22); border-radius: 6px;
  font-size: 0.8rem; font-weight: 500; padding: 0.45rem 1rem; cursor: pointer;
}
.vbtn-outline:hover { border-color: rgba(255, 255, 255, 0.5); }
.vbtn-solid {
  background: #fff; color: #0c0b0a;
  border: none; border-radius: 6px;
  font-size: 0.8rem; font-weight: 600; padding: 0.5rem 1.05rem; cursor: pointer;
}
.vbtn-solid:hover { filter: brightness(0.93); }
.vbtn-solid:disabled { background: #2a2825; color: #777; cursor: not-allowed; }
.vbtn-block { width: 100%; padding: 0.7rem; font-size: 0.85rem; }

/* hero panel */
main.wrap { max-width: 1085px; margin: 0 auto; padding: 0 1rem; }
.vhero {
  margin-top: 1.6rem;
  background: #0d0c0a radial-gradient(75% 130% at 78% 0%, rgba(96, 66, 32, 0.5), transparent 62%);
  border: 1px solid var(--v-line); border-radius: 8px;
  overflow: hidden;
}
.vhero-strip {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--v-cream); color: #171410;
  font-size: 0.72rem; font-weight: 600;
  padding: 0.42rem 0.9rem;
}
.vhero-strip span:last-child { font-weight: 400; color: #4d463a; }
.vhero-body {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 1.4rem;
  padding: 2.2rem 1.8rem 1.9rem;
}
.vhero-icon { width: 44px; height: 44px; image-rendering: pixelated; border-radius: 6px; margin-bottom: 1.05rem; display: block; }
.vhero h1 {
  font-family: var(--display); font-weight: 500;
  font-size: 1.62rem; letter-spacing: 0.002em; color: #fff;
}
.vhero p { color: rgba(255, 255, 255, 0.62); font-size: 0.8rem; margin-top: 0.55rem; line-height: 1.55; }
.vhero-ctas { display: flex; gap: 0.55rem; flex-shrink: 0; }
.vtrend {
  display: flex; align-items: stretch;
  border-top: 1px solid var(--v-line);
  background: rgba(255, 255, 255, 0.015);
  min-height: 52px;
}
.vtrend-label {
  display: flex; align-items: center;
  padding: 0 1.3rem; color: rgba(255, 255, 255, 0.45); font-size: 0.76rem;
  flex-shrink: 0;
}
.vtrend-cells { display: flex; align-items: stretch; overflow: hidden; }
.vtrend-cell {
  display: flex; align-items: center; gap: 0.55rem;
  padding: 0 1.15rem; border-left: 1px solid var(--v-line);
  cursor: pointer; white-space: nowrap;
}
.vtrend-cell:hover { background: rgba(255, 255, 255, 0.03); }
.vtrend-ic { width: 26px; height: 26px; border-radius: 50%; background-size: cover; background-position: center; display: inline-flex; align-items: center; justify-content: center; font-size: 0.55rem; font-weight: 700; color: #fff; }
.vtrend-cell b { font-size: 0.78rem; font-weight: 600; }
.vtrend-cell .vt-sym { color: rgba(255, 255, 255, 0.4); font-size: 0.68rem; margin-left: 0.25rem; }
.vtrend-cell .vt-line { display: flex; flex-direction: column; line-height: 1.3; }
.vtrend-cell .vt-price { font-size: 0.72rem; color: rgba(255, 255, 255, 0.75); font-variant-numeric: tabular-nums; }

/* table section */
.vtable-sec { margin: 1.5rem 0 3rem; }
.vtable-bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.vtabs { display: flex; }
.vtabs .tab {
  background: transparent; border: 1px solid transparent; border-bottom: none;
  color: rgba(255, 255, 255, 0.5); font-size: 0.78rem; font-weight: 500;
  padding: 0.5rem 1rem; cursor: pointer; border-radius: 6px 6px 0 0;
  font-family: var(--font);
}
.vtabs .tab.active {
  background: rgba(255, 255, 255, 0.03); border-color: var(--v-line);
  color: #fff;
}
.vsearch { max-width: 220px; border-radius: 6px; }
.vtable-wrap {
  border: 1px solid var(--v-line); border-radius: 0 8px 8px 8px;
  background: rgba(255, 255, 255, 0.015); overflow: hidden;
}
.vtable { width: 100%; border-collapse: collapse; }
.vtable th {
  text-align: left; font-weight: 400; color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem; padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--v-line);
}
.vtable th:nth-child(n+4), .vtable td:nth-child(n+4) { text-align: right; }
.vtable td {
  padding: 0.62rem 1rem; font-size: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
  font-variant-numeric: tabular-nums;
}
.vtable tbody tr { cursor: pointer; }
.vtable tbody tr:hover { background: rgba(255, 255, 255, 0.03); }
.vtable tbody tr:last-child td { border-bottom: none; }
.vtok { display: flex; align-items: center; gap: 0.6rem; }
.vtok-ic { width: 26px; height: 26px; border-radius: 50%; background-size: cover; background-position: center; display: inline-flex; align-items: center; justify-content: center; font-size: 0.5rem; font-weight: 700; flex-shrink: 0; }
.vtok b { font-size: 0.8rem; display: block; line-height: 1.25; }
.vtok .vt-sym { color: rgba(255, 255, 255, 0.4); font-size: 0.68rem; }
.vcreator { display: inline-flex; align-items: center; gap: 0.45rem; color: rgba(255, 255, 255, 0.75); font-size: 0.76rem; }
.vcreator i { width: 18px; height: 18px; border-radius: 50%; display: inline-block; }
.vmuted { color: rgba(255, 255, 255, 0.45); font-size: 0.76rem; }
.vchg.up { color: var(--v-up); }
.vchg.down { color: var(--v-down); }

/* create page */
.vpage-title { font-family: var(--display); font-weight: 500; font-size: 1.55rem; margin: 1.6rem 0 1.1rem; }
.vpage-title span { color: rgba(255, 255, 255, 0.45); }
.vcreate { display: grid; grid-template-columns: 1fr 300px; gap: 1.6rem; align-items: start; margin-bottom: 3rem; }
@media (max-width: 860px) { .vcreate { grid-template-columns: 1fr; } }
.vform {
  background: var(--v-panel); border: 1px solid var(--v-line); border-radius: 8px;
  padding: 1.5rem 1.6rem;
}
.vsection { margin-bottom: 1.7rem; }
.vsection:last-child { margin-bottom: 0.2rem; }
.vsection-head { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; color: rgba(255, 255, 255, 0.9); }
.vsection-sub { font-size: 0.72rem; color: rgba(255, 255, 255, 0.42); margin: 0.25rem 0 0.8rem; }
.vform input[type="text"], .vform input[type="number"], .vform textarea {
  background: rgba(255, 255, 255, 0.025); border: 1px solid var(--v-line); border-radius: 6px;
  color: #fff; font-family: var(--font); font-size: 0.82rem;
  padding: 0.6rem 0.75rem; width: 100%;
}
.vform input:focus, .vform textarea:focus { outline: none; border-color: rgba(255, 255, 255, 0.3); }
.vf-sym { max-width: 150px; }
.vupload {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.3rem;
  border: 1px dashed rgba(255, 255, 255, 0.16); border-radius: 8px;
  padding: 1.5rem; margin: 0.8rem 0; cursor: pointer;
  color: rgba(255, 255, 255, 0.85); font-size: 0.78rem; font-weight: 600;
}
.vupload:hover { border-color: rgba(255, 255, 255, 0.4); }
.vupload-ic {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center;
}
.vupload-sub { color: rgba(255, 255, 255, 0.35); font-size: 0.68rem; font-weight: 400; }
.vside { position: sticky; top: 1rem; }
.vpreview { background: var(--v-panel); border: 1px solid var(--v-line); border-radius: 8px; margin-top: 0.6rem; }
.vpv-top { display: flex; gap: 0.7rem; align-items: center; padding: 0.9rem 1rem; border-bottom: 1px solid var(--v-line); }
.vpv-top .l2p-img { width: 34px; height: 34px; border-radius: 50%; background: #201d19; display: inline-flex; align-items: center; justify-content: center; background-size: cover; background-position: center; flex-shrink: 0; }
.vpv-top b { font-size: 0.82rem; }
.vpv-sym { color: rgba(255, 255, 255, 0.4); font-size: 0.7rem; }
.vpv-note { color: rgba(255, 255, 255, 0.38); font-size: 0.66rem; }
.vpv-rows div { display: flex; justify-content: space-between; padding: 0.5rem 1rem; border-bottom: 1px solid rgba(255, 255, 255, 0.05); font-size: 0.74rem; color: rgba(255, 255, 255, 0.5); }
.vpv-rows div:last-child { border-bottom: none; }
.vpv-rows b { color: #fff; font-weight: 500; }
.vget { list-style: none; margin: 0.6rem 0 1.2rem; }
.vget li { font-size: 0.76rem; color: rgba(255, 255, 255, 0.75); padding: 0.22rem 0 0.22rem 1rem; position: relative; }
.vget li::before { content: "\2022"; position: absolute; left: 0.2rem; color: rgba(255, 255, 255, 0.5); }
.vside .l2-fee { margin: 0 0 0.6rem; font-size: 0.68rem; color: rgba(255, 255, 255, 0.4); font-family: var(--font); }

/* headings elsewhere pick up the serif */
.sect-title, .page-title, .launch2-title, .docs-content h1, .docs-content h2, .pt-name { font-family: var(--display); font-weight: 500; letter-spacing: 0; }
.tp-card { border-radius: 8px; }
.btn { border-radius: 6px; font-family: var(--font); }

/* fixed bottom footer bar */
.vfooter {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  height: 42px; padding: 0 1.3rem;
  background: rgba(8, 7, 6, 0.92);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--v-line);
}
body { padding-bottom: 52px; }
.vfooter-brand {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--wordmark); font-size: 0.72rem; color: #fff;
}
.vfooter-brand img { width: 17px; height: 17px; image-rendering: pixelated; border-radius: 3px; }
.vfooter-tag {
  font-size: 0.74rem; color: var(--v-cream); font-weight: 500;
  letter-spacing: 0.02em;
}
.vfooter-tag em { font-style: normal; color: rgba(236, 229, 214, 0.55); }
.vfooter-right { display: inline-flex; align-items: center; gap: 1.1rem; }
.vfooter-right a {
  display: inline-flex; align-items: center; gap: 0.35rem;
  color: rgba(255, 255, 255, 0.5); font-size: 0.72rem; text-decoration: none;
}
.vfooter-right a:hover { color: #fff; }
@media (max-width: 720px) { .vfooter-tag { display: none; } }

/* ═══════ JADE IDENTITY (superseded by Meridian, below) ═══════ */
/* our own skin: jade on deep sea-black, Fraunces display, constructed mark */
:root {
  --o-jade: #2fd6a3;
  --o-jade-deep: #178f6b;
  --o-jade-ink: #04231a;
  --o-porcelain: #eaf6ef;
  --v-cream: #2fd6a3;
  --display: "Fraunces", Georgia, serif;
  --wordmark: "Fraunces", Georgia, serif;
  --gold: #2fd6a3;
  --gold-light: #7deec9;
  --gold-deep: #178f6b;
  --gold-ink: #04231a;
  --gold-dim: rgba(47, 214, 163, 0.12);
  --up: #2fd6a3;
  --v-up: #2fd6a3;
}
body {
  background: #000 radial-gradient(62% 400px at 50% 0%, rgba(16, 78, 58, 0.32), transparent 70%);
}
.vlogo {
  font-family: var(--wordmark);
  font-style: italic;
  font-weight: 600;
  font-size: 1.22rem;
  letter-spacing: 0;
  text-transform: none;
}
.vlogo img { width: 24px; height: 24px; image-rendering: auto; border-radius: 0; }
.vhero {
  background: #0a110e radial-gradient(80% 140% at 80% 0%, rgba(22, 104, 78, 0.5), transparent 64%);
}
.vhero-strip { background: var(--o-jade); color: var(--o-jade-ink); }
.vhero-strip span:last-child { color: rgba(4, 35, 26, 0.62); }
.vhero-icon { image-rendering: auto; border-radius: 0; }
.vbtn-solid { background: var(--o-porcelain); color: #06251c; }
.vbtn-outline { border-color: rgba(47, 214, 163, 0.35); }
.vbtn-outline:hover { border-color: var(--o-jade); }
.vnav-links a:hover, .vnav-x:hover { color: var(--o-jade); }
.vtabs .tab.active { color: var(--o-jade); }
.vchg.up { color: var(--o-jade); }
.vtrend-cell:hover, .vtable tbody tr:hover { background: rgba(47, 214, 163, 0.045); }
.vfooter-brand { font-family: var(--wordmark); font-style: italic; font-weight: 600; font-size: 0.85rem; }
.vfooter-brand img { image-rendering: auto; border-radius: 0; }
.vfooter-tag { color: var(--o-jade); }
.vfooter-tag em { color: rgba(47, 214, 163, 0.5); }
.vpage-title span { color: rgba(47, 214, 163, 0.6); }
.vform input:focus, .vform textarea:focus { border-color: rgba(47, 214, 163, 0.45); }
.vupload:hover { border-color: rgba(47, 214, 163, 0.5); }
.curve-fill { background: linear-gradient(90deg, var(--o-jade-deep), var(--o-jade)) !important; }

/* ═══════ MONO FINAL — the green is gone, black & white like the logo ═══════ */
:root {
  --v-cream: #f2f0ec;
  --gold: #f2f0ec;
  --gold-light: #ffffff;
  --gold-deep: #b7b5b0;
  --gold-ink: #101010;
  --gold-dim: rgba(255, 255, 255, 0.09);
}
body {
  background: #000 radial-gradient(62% 400px at 50% 0%, rgba(255, 255, 255, 0.05), transparent 70%);
}
.vhero {
  background: #0c0c0b radial-gradient(80% 140% at 80% 0%, rgba(255, 255, 255, 0.09), transparent 64%);
}
.vhero-strip { background: #f2f0ec; color: #121110; }
.vhero-strip span:last-child { color: rgba(18, 17, 16, 0.55); }
.vbtn-solid { background: #ffffff; color: #0c0b0a; }
.vbtn-outline { border-color: rgba(255, 255, 255, 0.24); }
.vbtn-outline:hover { border-color: rgba(255, 255, 255, 0.6); }
.vnav-links a:hover, .vnav-x:hover { color: #ffffff; }
.vtabs .tab.active { color: #ffffff; }
.vtrend-cell:hover, .vtable tbody tr:hover { background: rgba(255, 255, 255, 0.035); }
.vfooter-tag { color: #d9d7d3; }
.vfooter-tag em { color: rgba(217, 215, 211, 0.5); }
.vpage-title span { color: rgba(255, 255, 255, 0.45); }
.vform input:focus, .vform textarea:focus { border-color: rgba(255, 255, 255, 0.35); }
.vupload:hover { border-color: rgba(255, 255, 255, 0.45); }
.curve-fill { background: linear-gradient(90deg, #b7b5b0, #ffffff) !important; }
.vlogo { font-style: normal; }
.vlogo img, .vhero-icon, .vfooter-brand img { border-radius: 50%; }
.vfooter-brand { font-style: normal; }
/* data changes stay green/red — that part is market convention, not theme */

/* ═══════ DISTINCT PASS — step away from the reference ═══════ */
/* dark hairline strip instead of the cream bar */
.vhero-strip {
  background: #0b0b0a;
  color: #ffffff;
  border-bottom: 1px solid var(--v-line);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.vhero-strip span:last-child { color: rgba(255, 255, 255, 0.45); }
/* ghosted logo watermark — unmistakably ours */
.vhero-body { position: relative; }
.vhero-body::after {
  content: "";
  position: absolute; right: -40px; top: -60px;
  width: 380px; height: 380px;
  background: url("assets/branding/logo-white.png") no-repeat center / contain;
  opacity: 0.05;
  pointer-events: none;
}
.vhero-ctas { position: relative; z-index: 1; }
/* underline tabs instead of folder tabs */
.vtabs .tab {
  border: none; border-bottom: 2px solid transparent;
  border-radius: 0; background: transparent;
}
.vtabs .tab.active {
  background: transparent; border: none;
  border-bottom: 2px solid #ffffff; color: #ffffff;
}
.vtable-wrap { border-radius: 8px; }
/* serif italics accent in the headline */
.vhero h1 em { font-style: italic; color: rgba(255, 255, 255, 0.85); }

/* ═══════ TOKEN PAGE — match the current system ═══════ */
.pons-about, .pons-main .tp-card, .pons-trades {
  background: #0d0c0a;
  border: 1px solid var(--v-line);
  border-radius: 8px;
}
.pt-name { font-family: var(--display); font-weight: 500; font-size: 1.15rem; }
.pa-left h3 { font-family: var(--display); font-weight: 500; }
.tp-back {
  display: inline-block; margin: 1rem 0 0.8rem;
  color: rgba(255, 255, 255, 0.55); font-size: 0.78rem; cursor: pointer;
  background: none; border: none; text-decoration: none;
}
.tp-back:hover { color: #fff; }
.chip {
  border: 1px solid var(--v-line); border-radius: 6px;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.72rem;
}
.chip:hover { border-color: rgba(255, 255, 255, 0.35); }
.pair-badge {
  background: #f2f0ec; color: #121110;
  border-radius: 5px; font-size: 0.66rem; font-weight: 700;
  padding: 0.2rem 0.5rem;
}
.pc-stats .k { color: rgba(255, 255, 255, 0.42); font-size: 0.68rem; }
.pc-stats .v { font-variant-numeric: tabular-nums; }
.swap-box {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--v-line); border-radius: 8px;
}
.sb-amount { font-family: var(--font); font-variant-numeric: tabular-nums; }
.trade-row { border-bottom: 1px solid rgba(255, 255, 255, 0.045); }
.tr-arrow.up { color: var(--v-up); }
.tr-arrow.down { color: var(--v-down); }
.pt-tab {
  background: transparent; border: none; border-bottom: 2px solid transparent;
  color: rgba(255, 255, 255, 0.5); font-family: var(--font); font-size: 0.78rem;
  padding: 0.45rem 0.8rem; cursor: pointer;
}
.pt-tab.active { color: #fff; border-bottom-color: #fff; }
.tp-status { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.06em; color: rgba(255, 255, 255, 0.55); }
.curve-meta { font-size: 0.72rem; color: rgba(255, 255, 255, 0.5); }
.curve-bar { background: rgba(255, 255, 255, 0.07); border-radius: 99px; height: 5px; overflow: hidden; }

/* ═══════ TRENDING STRIP — ranked ticker rail ═══════ */
.vtrend-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.45); text-transform: uppercase;
  border-right: 1px solid var(--v-line);
}
.vt-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #ffffff; display: inline-block;
  animation: vtpulse 2.4s ease-in-out infinite;
}
@keyframes vtpulse { 0%, 100% { opacity: 0.25; } 50% { opacity: 1; } }
.vtrend-cell {
  gap: 0.6rem;
  transition: background 0.15s;
}
.vt-rank {
  font-family: var(--mono); font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.04em;
}
.vtrend-cell .vt-line { display: flex; flex-direction: column; line-height: 1.35; }
.vtrend-cell .vt-line b { font-size: 0.76rem; font-weight: 600; letter-spacing: -0.01em; }
.vtrend-cell .vt-price { font-size: 0.68rem; color: rgba(255, 255, 255, 0.45); font-variant-numeric: tabular-nums; }
.vt-pill {
  font-family: var(--mono); font-size: 0.64rem; font-weight: 600;
  padding: 0.16rem 0.4rem; border-radius: 4px;
  background: rgba(255, 255, 255, 0.06); color: rgba(255, 255, 255, 0.6);
  font-variant-numeric: tabular-nums;
}
.vt-pill.up { background: rgba(46, 204, 113, 0.14); color: var(--v-up); }
.vt-pill.down { background: rgba(231, 76, 60, 0.14); color: var(--v-down); }

/* ═══════ TRENDING — sparkline cards ═══════ */
.vtrend {
  display: block;
  padding: 0.9rem 1.1rem 1.05rem;
  border-top: 1px solid var(--v-line);
  background: rgba(255, 255, 255, 0.012);
}
.vtrend-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0 0 0.7rem 0; border-right: none;
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4); text-transform: uppercase;
}
.vtrend-cells {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem;
  overflow: visible;
}
@media (max-width: 720px) { .vtrend-cells { grid-template-columns: 1fr; } }
.vtcard {
  border: 1px solid var(--v-line); border-radius: 8px;
  background: rgba(255, 255, 255, 0.022);
  padding: 0.7rem 0.8rem 0.6rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}
.vtcard:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.045);
  transform: translateY(-1px);
}
.vtc-head { display: flex; align-items: center; gap: 0.5rem; }
.vtc-rank {
  font-family: var(--mono); font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.3);
}
.vtc-ic {
  width: 26px; height: 26px; border-radius: 50%;
  background-size: cover; background-position: center;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.52rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.vtc-id { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.vtc-id b { font-size: 0.78rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vtc-id span { font-size: 0.66rem; color: rgba(255, 255, 255, 0.42); }
.vtc-pair {
  margin-left: auto; flex-shrink: 0;
  font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
  border: 1px solid var(--v-line); border-radius: 4px;
  padding: 0.12rem 0.34rem;
}
.vtc-spark { display: block; width: 100%; height: 34px; margin: 0.55rem 0 0.4rem; }
.vtc-foot { display: flex; align-items: center; justify-content: space-between; }
.vtc-mc { font-size: 0.76rem; font-weight: 600; font-variant-numeric: tabular-nums; }
.vt-empty { color: rgba(255, 255, 255, 0.4); font-size: 0.78rem; padding: 0.2rem 0 0.4rem; }

/* ═══════ TOKEN PAGE — launchpad system ═══════ */
.tk-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1rem; margin: 0.4rem 0 1rem; flex-wrap: wrap;
}
.tk-id { display: flex; align-items: center; gap: 0.85rem; }
.tk-avatar {
  width: 54px; height: 54px; border-radius: 50%;
  background-size: cover; background-position: center;
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 0.8rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.tk-id h1 { font-family: var(--display); font-weight: 500; font-size: 1.5rem; line-height: 1.2; }
.tk-sub {
  display: flex; align-items: center; gap: 0.6rem; margin-top: 0.15rem;
  font-size: 0.78rem; color: rgba(255, 255, 255, 0.45);
}
.tk-pair {
  font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.06em;
  color: #121110; background: #f2f0ec; border-radius: 4px;
  padding: 0.14rem 0.4rem; text-transform: uppercase;
}
.tk-actions { display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; }
.tk-actions .chip {
  display: inline-flex; align-items: center;
  padding: 0.34rem 0.6rem; cursor: pointer;
  color: rgba(255, 255, 255, 0.75); text-decoration: none;
}

.tk-stats {
  display: grid; grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--v-line); border-radius: 8px;
  background: rgba(255, 255, 255, 0.015);
  margin-bottom: 0.9rem; overflow: hidden;
}
@media (max-width: 860px) { .tk-stats { grid-template-columns: repeat(3, 1fr); } }
.tk-stats > div {
  display: flex; flex-direction: column; gap: 0.22rem;
  padding: 0.7rem 0.9rem;
  border-right: 1px solid var(--v-line);
}
.tk-stats > div:last-child { border-right: none; }
.tk-stats .k { font-size: 0.64rem; color: rgba(255, 255, 255, 0.4); letter-spacing: 0.02em; }
.tk-stats .v { font-size: 0.88rem; font-weight: 600; font-variant-numeric: tabular-nums; }
.tk-stats .v.up { color: var(--v-up); }
.tk-stats .v.down { color: var(--v-down); }

.tk-main { display: grid; grid-template-columns: 1fr 296px; gap: 0.9rem; align-items: start; }
@media (max-width: 860px) { .tk-main { grid-template-columns: 1fr; } }
.tk-panel {
  border: 1px solid var(--v-line); border-radius: 8px;
  background: #0d0c0a;
}
.tk-panel-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.65rem 0.9rem; border-bottom: 1px solid var(--v-line);
}
.tk-panel-title { font-size: 0.76rem; font-weight: 600; color: rgba(255, 255, 255, 0.85); }
.tk-chart-panel .tp-chart-wrap { padding: 0.6rem 0.5rem 0; height: 300px; position: relative; }
.tk-chart-panel canvas { width: 100%; height: 100%; display: block; }
.tk-chart-foot {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.55rem 0.9rem 0.7rem;
  font-size: 0.68rem; color: rgba(255, 255, 255, 0.38);
}

.tk-trade { padding-bottom: 0.9rem; }
.tk-field { padding: 0.85rem 0.9rem 0; }
.tk-field label { display: block; font-size: 0.66rem; color: rgba(255, 255, 255, 0.42); margin-bottom: 0.35rem; }
.tk-input {
  display: flex; align-items: center; gap: 0.5rem;
  border: 1px solid var(--v-line); border-radius: 6px;
  background: rgba(255, 255, 255, 0.025);
  padding: 0.55rem 0.7rem;
}
.tk-input input {
  flex: 1; min-width: 0; background: none; border: none; outline: none;
  color: #fff; font-family: var(--font); font-size: 1.05rem; font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.tk-input input::-webkit-outer-spin-button, .tk-input input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.tk-unit { font-size: 0.7rem; color: rgba(255, 255, 255, 0.4); }
.tk-quick { display: flex; gap: 0.35rem; padding: 0.5rem 0.9rem 0; }
.tk-quick button {
  flex: 1; background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--v-line); border-radius: 5px;
  color: rgba(255, 255, 255, 0.7); font-family: var(--font); font-size: 0.7rem;
  padding: 0.32rem 0; cursor: pointer;
}
.tk-quick button:hover { border-color: rgba(255, 255, 255, 0.3); color: #fff; }
.tk-out {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 0.8rem 0.9rem 0.7rem;
  font-size: 0.7rem; color: rgba(255, 255, 255, 0.42);
}
.tk-out b { font-size: 1rem; color: #fff; font-variant-numeric: tabular-nums; }
.tk-trade .vbtn-block { width: calc(100% - 1.8rem); margin: 0 0.9rem; }
.tk-note { padding: 0.5rem 0.9rem 0; font-size: 0.66rem; color: rgba(255, 255, 255, 0.35); text-align: center; }
.tk-sell {
  display: block; width: calc(100% - 1.8rem); margin: 0.55rem 0.9rem 0;
  background: none; border: 1px solid var(--v-line); border-radius: 6px;
  color: rgba(255, 255, 255, 0.6); font-family: var(--font); font-size: 0.74rem;
  padding: 0.45rem; cursor: pointer;
}
.tk-sell:hover { color: #fff; border-color: rgba(255, 255, 255, 0.3); }
.tk-meta { margin: 0.9rem 0.9rem 0; border-top: 1px solid var(--v-line); padding-top: 0.7rem; }
.tk-meta div { display: flex; justify-content: space-between; padding: 0.22rem 0; font-size: 0.7rem; color: rgba(255, 255, 255, 0.42); }
.tk-meta b { color: #fff; font-weight: 500; }

.tk-tape { margin: 0.9rem 0 3rem; }
.tk-tabs { display: flex; gap: 0.3rem; }
.tk-tape .pt-count { font-family: var(--mono); font-size: 0.66rem; color: rgba(255, 255, 255, 0.35); }
.tk-tape #tradesList, .tk-tape #holdersList { padding: 0.2rem 0.9rem 0.7rem; }
.tk-empty { color: rgba(255, 255, 255, 0.35); font-size: 0.76rem; padding: 0.9rem 0; }
.tk-tape .trade-row {
  display: grid; grid-template-columns: 20px 1fr auto auto;
  gap: 0.7rem; align-items: center;
  padding: 0.5rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.76rem;
}
.tk-tape .trade-row:last-child { border-bottom: none; }
.tk-tape .tr-amt { font-variant-numeric: tabular-nums; }
.tk-tape .tr-addr { font-size: 0.66rem; color: rgba(255, 255, 255, 0.35); }
.tk-tape .tr-val { font-variant-numeric: tabular-nums; }
.tk-tape .tr-sub { font-size: 0.62rem; color: rgba(255, 255, 255, 0.32); text-align: right; }
.tk-tape .tr-ago { font-family: var(--mono); font-size: 0.64rem; color: rgba(255, 255, 255, 0.3); }
.tk-tape .holder-row {
  display: grid; grid-template-columns: 24px 1fr auto;
  gap: 0.7rem; align-items: center; padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05); font-size: 0.76rem;
}
.tk-tape .holder-rank { font-family: var(--mono); font-size: 0.64rem; color: rgba(255, 255, 255, 0.3); }
.tk-tape .holder-addr.dev { color: #fff; }
.tk-tape .holder-pct { font-variant-numeric: tabular-nums; color: rgba(255, 255, 255, 0.6); }

.vtc-fresh {
  height: 34px; margin: 0.55rem 0 0.4rem;
  display: flex; align-items: center;
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.28); text-transform: uppercase;
}

/* ═══════ WALLET MENU ═══════ */
.vnav-right { position: relative; }
.vbtn-outline.is-connected { font-family: var(--mono); letter-spacing: 0.02em; }
.vbtn-outline.is-connected::after {
  content: ""; display: inline-block; margin-left: 0.5rem;
  border: 4px solid transparent; border-top-color: currentColor;
  transform: translateY(2px);
}
.wmenu {
  position: absolute; top: calc(100% + 0.5rem); right: 0; z-index: 90;
  min-width: 214px; padding: 0.4rem;
  background: #0d0d0d; border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.6);
}
.wmenu-addr {
  padding: 0.55rem 0.6rem 0.6rem;
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 0.3rem;
}
.wmenu-item {
  display: block; width: 100%; text-align: left;
  padding: 0.55rem 0.6rem; border: 0; background: transparent; cursor: pointer;
  font-family: inherit; font-size: 0.83rem; color: rgba(255, 255, 255, 0.86);
  transition: background 0.12s ease, color 0.12s ease;
}
.wmenu-item:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
.wmenu-danger { color: rgba(255, 255, 255, 0.55); }
.wmenu-danger:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }

/* ═══════ MERIDIAN IDENTITY ═══════ */
/* our own skin: azure on cool midnight, Space Grotesk display, graticule motif.
   the accent is aliased onto the inherited --gold* tokens so every rule above
   that already points at them recolours without being touched. */
:root {
  --bg: #070b14;
  --bg-soft: #0b111e;
  --card: #111827;
  --card-2: #1a2334;
  --border: #253048;
  --border-soft: #1a2334;
  --text: #e8edf7;
  --muted: #8494b0;
  --radius: 12px;

  --azure: #6c8cff;
  --azure-light: #9db2ff;
  --azure-deep: #3f5fd9;
  --azure-ink: #050a16;

  --v-line: rgba(150, 175, 235, 0.13);
  --v-panel: #0c1220;
  --v-cream: #6c8cff;

  --gold: #6c8cff;
  --gold-light: #9db2ff;
  --gold-deep: #3f5fd9;
  --gold-ink: #050a16;
  --gold-dim: rgba(108, 140, 255, 0.13);

  --up: #3ddc97;
  --v-up: #3ddc97;
  --down: #ff6b87;
  --v-down: #ff6b87;

  --display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --wordmark: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font: "Manrope", "Inter", system-ui, sans-serif;
  --mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;
}

/* cool ground, lit from above rather than from the corner */
body {
  background: var(--bg) radial-gradient(70% 420px at 50% -60px, rgba(108, 140, 255, 0.13), transparent 72%);
  color: var(--text);
  border-left-color: #141c2e;
  border-right-color: #141c2e;
}

/* wordmark: tracked caps grotesk, not a lowercase serif italic */
.vnav { padding: 0.8rem 1.4rem; }
.vlogo {
  font-family: var(--wordmark); font-style: normal; font-weight: 700;
  font-size: 0.92rem; letter-spacing: 0.17em; text-transform: uppercase;
  color: var(--text); gap: 0.55rem;
}
.vlogo img { width: 21px; height: 21px; border-radius: 0; image-rendering: auto; }
.vnav-links a { color: var(--muted); font-weight: 600; }
.vnav-links a:hover, .vnav-x:hover { color: var(--azure-light); }
.vnav-x { color: var(--muted); }

.vbtn-solid {
  background: var(--azure); color: var(--azure-ink);
  border-radius: 8px; font-weight: 700;
}
.vbtn-solid:hover { background: var(--azure-light); filter: none; }
.vbtn-solid:disabled { background: #1b2438; color: #5b6880; }
.vbtn-outline {
  border-radius: 8px; border-color: rgba(108, 140, 255, 0.3); color: var(--text);
}
.vbtn-outline:hover { border-color: var(--azure); color: var(--azure-light); }

/* hero: cool sweep from the left, graticule instead of a ghosted logo */
.vhero {
  border-radius: 14px; border-color: var(--v-line);
  background: var(--v-panel) radial-gradient(90% 130% at 12% 0%, rgba(63, 95, 217, 0.3), transparent 60%);
}
.vhero-strip {
  background: rgba(108, 140, 255, 0.1);
  color: var(--azure-light);
  border-bottom: 1px solid rgba(108, 140, 255, 0.22);
  font-family: var(--mono); font-size: 0.64rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.5rem 1rem;
}
.vhero-strip span:last-child { color: rgba(157, 178, 255, 0.55); }
.vhero-body { padding: 2.4rem 1.9rem 2rem; }
.vhero-body::after {
  content: "";
  position: absolute; top: 0; bottom: 0; right: 0; left: auto; width: 48%;
  background:
    repeating-linear-gradient(90deg, rgba(108, 140, 255, 0.24) 0 1px, transparent 1px 38px),
    repeating-linear-gradient(0deg, rgba(108, 140, 255, 0.14) 0 1px, transparent 1px 38px);
  -webkit-mask-image: radial-gradient(62% 82% at 76% 42%, #000 0%, transparent 74%);
  mask-image: radial-gradient(62% 82% at 76% 42%, #000 0%, transparent 74%);
  opacity: 1;
}
/* the prime meridian itself */
.vhero-body::before {
  content: "";
  position: absolute; top: 0; bottom: 0; right: 24%; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(108, 140, 255, 0.6) 45%, transparent);
  pointer-events: none;
}
.vhero h1 {
  font-family: var(--display); font-weight: 600;
  font-size: 1.78rem; letter-spacing: -0.025em; color: var(--text);
}
.vhero h1 em { font-style: normal; color: var(--azure-light); }
.vhero-left p { color: var(--muted); }
.vhero-left p b { color: var(--text); }

/* segmented pill control instead of underlined tabs */
.vtabs {
  background: rgba(148, 175, 235, 0.05);
  border: 1px solid var(--v-line); border-radius: 999px;
  padding: 3px; gap: 2px;
}
.vtabs .tab {
  border: none; border-bottom: none; border-radius: 999px;
  padding: 0.42rem 0.95rem; color: var(--muted); font-weight: 600;
}
.vtabs .tab.active {
  background: rgba(108, 140, 255, 0.16); border: none; border-bottom: none;
  color: var(--azure-light);
}
.vsearch { border-radius: 999px; }
.vtable-wrap { border-radius: 12px; border-color: var(--v-line); }
.vtable thead th {
  font-family: var(--mono); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--muted);
}
.vtable tbody tr:hover { background: rgba(108, 140, 255, 0.06); }

/* trending: rounder cards, azure on hover */
.vtrend { background: rgba(108, 140, 255, 0.02); border-top-color: var(--v-line); }
.vt-dot { background: var(--azure); box-shadow: 0 0 0 3px rgba(108, 140, 255, 0.18); }
.vtcard {
  border-radius: 12px; border-color: var(--v-line);
  background: rgba(148, 175, 235, 0.035);
}
.vtcard:hover {
  border-color: rgba(108, 140, 255, 0.45);
  background: rgba(108, 140, 255, 0.07);
}
.vtc-pair {
  border-radius: 999px; border-color: rgba(108, 140, 255, 0.28);
  color: var(--azure-light);
}
.vt-pill.up { background: rgba(61, 220, 151, 0.14); color: var(--v-up); }
.vt-pill.down { background: rgba(255, 107, 135, 0.14); color: var(--v-down); }

/* pair identity reads as an azure chip, not a cream slab */
.pair-badge, .tk-pair {
  background: rgba(108, 140, 255, 0.14); color: var(--azure-light);
  border: 1px solid rgba(108, 140, 255, 0.34); border-radius: 999px;
  font-family: var(--mono); font-weight: 600; letter-spacing: 0.06em;
  padding: 0.16rem 0.5rem;
}

/* panels */
.tk-panel, .tk-stats, .vform, .swap-box,
.pons-about, .pons-main .tp-card, .pons-trades {
  border-radius: 12px; border-color: var(--v-line); background: var(--v-panel);
}
.tk-id h1, .pt-name, .pa-left h3, .vpage-title, .docs-sidebar-title {
  font-family: var(--display); font-weight: 600; letter-spacing: -0.015em;
}
.vpage-title span { color: var(--azure); }
.tk-input, .tk-quick button, .tk-sell { border-radius: 8px; }
.tk-quick button:hover { border-color: rgba(108, 140, 255, 0.45); color: var(--azure-light); }
.tk-sell:hover { border-color: rgba(108, 140, 255, 0.45); color: var(--azure-light); }
.chip { border-radius: 999px; }
.chip:hover { border-color: rgba(108, 140, 255, 0.5); color: var(--azure-light); }
.pt-tab.active { color: var(--azure-light); border-bottom-color: var(--azure); }
.curve-fill { background: linear-gradient(90deg, var(--azure-deep), var(--azure-light)) !important; }

/* forms */
.vsection-head { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em; }
.vform input[type="text"], .vform input[type="number"], .vform textarea { border-radius: 8px; }
.vform input:focus, .vform textarea:focus {
  border-color: rgba(108, 140, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(108, 140, 255, 0.12);
}
.vupload { border-radius: 10px; }
.vupload:hover { border-color: rgba(108, 140, 255, 0.5); }

/* docs + chrome */
.docs-nav a:hover { color: var(--text); background: rgba(108, 140, 255, 0.07); }
.mq-brand { color: rgba(108, 140, 255, 0.5); }
.wmenu {
  background: var(--v-panel); border-color: var(--v-line);
  border-radius: 12px; box-shadow: 0 18px 44px rgba(3, 6, 14, 0.72);
}
.wmenu-item:hover { background: rgba(108, 140, 255, 0.12); color: var(--azure-light); }
.vfooter-brand {
  font-family: var(--wordmark); font-style: normal; font-weight: 700;
  font-size: 0.72rem; letter-spacing: 0.17em; text-transform: uppercase;
}
.vfooter-brand img { border-radius: 0; }
.vfooter-tag { color: var(--muted); }
.vfooter-tag em { color: rgba(108, 140, 255, 0.7); font-style: normal; }

/* warm neutrals left over from the pre-Meridian palette — the sheet still
   carries a few hardcoded greys that read brown against the navy ground */
.asset-chip { background: #1b2438; }
.dot, .dot.closed { background: #38445e; }
.dot.open { box-shadow: 0 0 7px rgba(108, 140, 255, 0.75); }
.dot.lunch { background: #7d8aa6; }
.trade-tab.active-sell { background: #1b2438; border-color: #3b4a6b; }
.btn-outline:hover, .pair-option:hover, .picker-option:hover { border-color: #3b4a6b; }
.code { color: #c3cde3; }
.code .t { color: #d7deef; }
.code .c { color: #63708c; }
.wcard { background: #101728; color: var(--text); border: 1px solid var(--v-line); border-radius: 12px; }
.vpv-top .l2p-img { background: #162033; }

/* narrow screens: the tracked-out wordmark plus the handle overrun the bar */
@media (max-width: 720px) {
  .vnav { gap: 0.9rem; padding: 0.7rem 1rem; flex-wrap: wrap; }
  .vlogo { font-size: 0.82rem; letter-spacing: 0.11em; }
  .vnav-links { gap: 0.85rem; }
  .vnav-x { display: none; }
  .vnav-right { margin-left: auto; }
  /* the hero keeps copy and CTAs on one flex row; below this it has to stack
     or the second button runs off the edge */
  .vhero-body {
    flex-direction: column; align-items: stretch; gap: 1.2rem;
    padding: 1.6rem 1.2rem 1.5rem;
  }
  .vhero-ctas { display: flex; gap: 0.6rem; }
  .vhero-ctas button { flex: 1; }
  .vhero h1 { font-size: 1.45rem; }
  .vhero-body::before { right: 12%; }
}

/* a token with no pool yet: the chart panel carries a note instead of a canvas */
.tk-nopool {
  height: 300px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.5rem;
  padding: 1.5rem 2rem; text-align: center;
}
.tk-nopool-title {
  font-family: var(--display); font-weight: 600; font-size: 1.05rem;
  color: var(--text);
}
.tk-nopool-sub {
  font-size: 0.8rem; line-height: 1.55; color: var(--muted); max-width: 42ch;
}

/* status chip — marks listings that aren't ordinary launches */
.vtok-tag {
  display: inline-block; margin-left: 0.4rem;
  font-family: var(--mono); font-size: 0.55rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.1rem 0.34rem; border-radius: 999px;
  vertical-align: 0.06em;
}
.vtok-tag.is-native {
  color: var(--azure-light);
  background: rgba(108, 140, 255, 0.14);
  border: 1px solid rgba(108, 140, 255, 0.34);
}
.vtok-tag.is-test {
  color: #f0c04a;
  background: rgba(240, 192, 74, 0.12);
  border: 1px solid rgba(240, 192, 74, 0.36);
}
.tk-sub .vtok-tag { font-size: 0.6rem; margin-right: 0.2rem; }

/* ═══════ LAYOUT — fluid width and vertical rhythm ═══════ */
/* The inherited layout pinned the page to 1085px inside an 1180px frame, which
   left most of a modern display empty. Widths are fluid now, capped so the
   token table doesn't stretch into unreadable rows on an ultrawide. */
body {
  max-width: min(1560px, 100%);
  border-left-color: #141c2e;
  border-right-color: #141c2e;
}
main.wrap {
  max-width: min(1440px, 100%);
  margin: 0 auto;
  padding: 0 clamp(1rem, 2.6vw, 2.4rem);
}

/* the tabs are a pill control now, not folder tabs sitting on the table edge,
   so they need their own air */
.vtable-bar { margin-bottom: 0.9rem; flex-wrap: wrap; }
.vtable-sec { margin: 1.9rem 0 3rem; }

/* the hero motif is placed in percentages, so it tracks the container, but
   the graticule gets coarse on a very wide plate */
@media (min-width: 1500px) {
  .vhero h1 { font-size: 1.94rem; }
  .vhero-body { padding: 2.9rem 2.4rem 2.4rem; }
  .vhero-body::after { width: 44%; }
}

/* tablet: the trending rail drops to two up before it drops to one */
@media (max-width: 1080px) {
  .vtrend-cells { grid-template-columns: repeat(2, 1fr); }
  .vhero h1 { font-size: 1.62rem; }
}

/* the table is the first thing to overflow — let it scroll inside its own
   panel rather than pushing the page sideways */
@media (max-width: 900px) {
  .vtable-wrap { overflow-x: auto; }
  .vtable { min-width: 660px; }
  .vtable-bar { gap: 0.7rem; }
  .vsearch { max-width: none; flex: 1 1 180px; }
}

@media (max-width: 720px) {
  .vtabs { width: 100%; }
  .vtabs .tab { flex: 1 1 0; padding: 0.42rem 0.4rem; font-size: 0.72rem; }
  .vtable-sec { margin: 1.4rem 0 2.4rem; }
}

@media (max-width: 460px) {
  .vhero h1 { font-size: 1.28rem; }
  .vhero-strip { font-size: 0.58rem; letter-spacing: 0.1em; }
  .vhero-ctas { flex-direction: column; }
  .vtok-tag { font-size: 0.5rem; margin-left: 0.3rem; }
  .tk-stats { grid-template-columns: repeat(2, 1fr); }
}

/* a status chip should never break across lines */
.vtok-tag { white-space: nowrap; }

@media (max-width: 560px) {
  /* the strip has two competing lines; the count is the expendable one */
  .vhero-strip #annCount { display: none; }
  .vhero-strip { justify-content: flex-start; }
}
@media (max-width: 460px) {
  /* the trending card states its status on its own line, so the chip beside
     the ticker is redundant at this width and crowds the pair badge */
  .vtc-id .vtok-tag { display: none; }
}

/* ═══════ FULL-BLEED FIX ═══════ */
/* Capping the body re-introduced a fixed-width column, and because an earlier
   layer had already set `margin: 0` it sat hard against the left edge with the
   whole remainder as a black gutter on the right. The page is full-bleed; only
   the content inside it is centred. */
html { background: var(--bg); }
body {
  max-width: none;
  margin-inline: auto;
  border-left: none; border-right: none;
}
/* nav and footer stay edge to edge so their rules span the screen, but their
   contents line up with the centred column */
.vnav, .vfooter {
  padding-inline: calc(max(0px, (100% - 1440px) / 2) + clamp(1rem, 2.6vw, 2.4rem));
}
