/* TWITCH PAD
 *
 * Taken from the banner: acid green on near-black, with a faint pixel grid and
 * hard edges. The wordmark is pixel art, so the interface avoids soft shadows
 * and large radii — everything is flat, square-ish and slightly technical.
 *
 * Green is the only colour, and it means "live" or "money". Nothing decorative
 * gets it, so it keeps its meaning.
 */

:root {
  --bg: #070807;
  --raised: #0d0f0d;
  --hover: #131613;
  --line: #1e231e;
  --line-soft: #161a16;

  --text: #f0f3f0;
  --dim: #8b948b;
  --faint: #545c54;

  --green: #ffffff;
  --green-dim: #9ecb27;
  --green-glow: rgba(255, 255, 255, 0.14);

  --r: 4px;
  color-scheme: dark;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--text);
  font: 15px/1.6 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;

  /* The banner's faint pixel grid, rebuilt in CSS so it scales and costs
     nothing to load. */
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 34px 34px;
}

img { max-width: 100%; display: block; }
[hidden] { display: none !important; }

.wrap { width: 100%; max-width: 1120px; margin: 0 auto; padding-inline: 20px; }
.accent { color: var(--green); }

/* ------------------------------------------------------------------ header */

.top {
  position: sticky;
  top: 0;
  z-index: 40;
  padding-top: env(safe-area-inset-top, 0px);
  background: rgba(7, 8, 7, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}

.top-inner {
  display: flex;
  align-items: center;
  gap: 26px;
  height: 58px;
}

.brand { display: flex; align-items: center; gap: 9px; text-decoration: none; color: inherit; flex: none; }
.brand-mark { width: 28px; height: 28px; image-rendering: pixelated; }

.brand-name {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.06em;
}

.brand-accent { color: var(--green); }

/* The links sit centred in the header, with the brand pinned left and the
   actions right. `margin-right: auto` used to shove them against the brand. */
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0 auto;
}

.nav a {
  color: var(--dim);
  text-decoration: none;
  font-size: 13.5px;
  transition: color 0.15s;
}

.nav a:hover { color: var(--text); }

.top-actions { display: flex; align-items: center; gap: 10px; flex: none; }

/* -------------------------------------------------------------------- btns */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--r);
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  font-family: inherit;
}

.btn-primary { background: var(--green); color: #0a0a0a; }
.btn-primary:hover { background: var(--green-dim); }

.btn-ghost { border-color: var(--line); color: var(--text); background: transparent; }
.btn-ghost:hover { border-color: var(--dim); }

.btn-block { width: 100%; padding: 13px 18px; font-size: 14px; }

/* ------------------------------------------------------------------ wallet */

.wallet { position: relative; }

.wallet-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-color: var(--line);
  color: var(--text);
  background: transparent;
  font-family: inherit;
}

.wallet-btn:hover:not(:disabled) { border-color: var(--dim); }
.wallet-btn:disabled { opacity: 0.5; cursor: default; }
.wallet-btn.connected { border-color: rgba(255, 255, 255, 0.35); }

.wallet-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 7px var(--green);
  flex: none;
}

.wallet-chev { font-size: 9px; color: var(--faint); }

.wallet-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 60;
  min-width: 250px;
  background: var(--raised);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 13px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.wm-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 700;
  margin-bottom: 6px;
}

.wm-address {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  color: var(--dim);
  word-break: break-all;
  line-height: 1.5;
  margin-bottom: 11px;
}

.wm-balance {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 10px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 11px;
}

.wm-balance-value {
  font-size: 20px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--green);
  letter-spacing: -0.02em;
}

.wm-balance-unit {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--faint);
}

.wm-disconnect {
  width: 100%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  border-radius: var(--r);
  padding: 9px;
  font: 700 12.5px/1 inherit;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.wm-disconnect:hover { border-color: #f4574e; color: #f4574e; }

/* -------------------------------------------------------------------- hero */

.hero {
  border-bottom: 1px solid var(--line-soft);
  background: radial-gradient(800px 340px at 18% -80px, var(--green-glow), transparent 70%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 48px;
  align-items: start;
  padding: 60px 20px 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 13px;
  margin-bottom: 22px;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@media (prefers-reduced-motion: reduce) { .live-dot { animation: none; } }

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.sub { margin: 0 0 28px; max-width: 480px; color: var(--dim); font-size: 16px; }

.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 38px; }

.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stats > div { display: flex; flex-direction: column; }

.hs-value {
  font-size: 24px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.hs-label {
  margin-top: 3px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 700;
}

/* ------------------------------------------------------------- launch card */

.launch-card {
  background: var(--raised);
  border: 1px solid var(--line);
  border-radius: var(--r);
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line-soft);
}

.card-title { font-weight: 700; font-size: 14px; }

.tag {
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 3px 9px;
}

.launch-form { padding: 18px; display: grid; gap: 15px; }

.field { display: block; }

.field-label {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 700;
  margin-bottom: 7px;
}

.input-row {
  display: flex;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding-left: 11px;
  transition: border-color 0.15s;
}

.input-row:focus-within { border-color: var(--green); }

.prefix {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  color: var(--faint);
  flex: none;
}

.input-row input {
  flex: 1;
  min-width: 0;
  background: none;
  border: 0;
  outline: none;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  padding: 11px 11px 11px 6px;
}

.input-row input::placeholder { color: var(--faint); }

.field-note { display: block; margin-top: 6px; font-size: 11px; color: var(--faint); }
.field-note.ok { color: var(--green); }
.field-note.error { color: #f4574e; }

.field-grid { display: grid; grid-template-columns: 1fr 120px; gap: 12px; }

.upload {
  border: 1px dashed var(--line);
  border-radius: var(--r);
  padding: 20px 14px;
  text-align: center;
  font-size: 12.5px;
  color: var(--faint);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.upload:hover { border-color: var(--dim); color: var(--dim); }
.upload.has-file { border-color: var(--green); color: var(--green); border-style: solid; }

/* --------------------------------------------------------------- fee split */

.split-preview {
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  padding: 13px;
  display: grid;
  gap: 9px;
}

.split-row { display: grid; grid-template-columns: 62px 1fr 40px; align-items: center; gap: 10px; }

.split-name {
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 700;
}

.split-bar { height: 5px; background: var(--line); border-radius: 999px; overflow: hidden; }
.split-fill { display: block; height: 100%; background: var(--green); }
.split-fill.alt { background: var(--faint); }

.split-pct { font-size: 12px; font-weight: 700; text-align: right; font-variant-numeric: tabular-nums; }

.form-note { margin: 0; text-align: center; font-size: 11.5px; color: var(--faint); }

/* -------------------------------------------------------------------- main */

.band { border-bottom: 1px solid var(--line-soft); padding: 46px 0; }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 700;
}

.hint { font-size: 11.5px; color: var(--faint); }

/* -------------------------------------------------------------------- feed */

.feed { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 10px; }

.coin {
  display: flex;
  gap: 12px;
  background: var(--raised);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  padding: 13px;
  transition: border-color 0.15s, background 0.15s;
}

.coin:hover { border-color: var(--line); background: var(--hover); }

.coin-img { width: 44px; height: 44px; border-radius: var(--r); object-fit: cover; background: var(--hover); flex: none; }
.coin-body { min-width: 0; flex: 1; }

.coin-name { font-weight: 700; font-size: 14px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.coin-channel { font-size: 12px; color: var(--green); margin-top: 1px; }

.coin-meta {
  margin-top: 6px;
  display: flex;
  gap: 10px;
  font-size: 11px;
  color: var(--faint);
  font-variant-numeric: tabular-nums;
}

.coin-live { color: var(--green); font-weight: 700; }

.empty {
  border: 1px dashed var(--line);
  border-radius: var(--r);
  padding: 40px 20px;
  text-align: center;
  color: var(--faint);
  font-size: 13px;
  grid-column: 1 / -1;
}

/* ------------------------------------------------------------------- table */

.table { border: 1px solid var(--line-soft); border-radius: var(--r); overflow: hidden; }

.tr {
  display: grid;
  grid-template-columns: 30px 40px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 13px;
  padding: 12px 15px;
  background: var(--raised);
  border-bottom: 1px solid var(--line-soft);
}

.tr:last-child { border-bottom: 0; }
.tr:hover { background: var(--hover); }

.tr-rank { font-family: ui-monospace, monospace; font-size: 11.5px; color: var(--faint); font-variant-numeric: tabular-nums; }
.tr-avatar { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; background: var(--hover); }
.tr-name { font-weight: 700; font-size: 13.5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tr-sub { font-size: 11px; color: var(--faint); margin-top: 1px; }
.tr-coins { font-size: 12px; color: var(--dim); font-variant-numeric: tabular-nums; }
.tr-amount { font-weight: 700; font-size: 14px; color: var(--green); font-variant-numeric: tabular-nums; }

/* ------------------------------------------------------------------- steps */

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  overflow: hidden;
}

.steps li { background: var(--raised); padding: 20px 17px; }

.steps .n {
  display: block;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 9px;
}

.steps strong { display: block; font-size: 14px; margin-bottom: 5px; }
.steps p { margin: 0; font-size: 12.5px; color: var(--dim); line-height: 1.55; }

/* ------------------------------------------------------------------ footer */

.foot { padding: 30px 0 calc(36px + env(safe-area-inset-bottom, 0px)); }

.foot-inner { display: grid; gap: 14px; }

.foot-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
}

.foot-brand img { image-rendering: pixelated; }

.foot p { margin: 0; font-size: 11.5px; color: var(--faint); line-height: 1.7; max-width: 660px; }
.foot a { color: var(--dim); }

/* ------------------------------------------------------------- responsive */

@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; gap: 34px; padding-top: 44px; }
  .launch-card { max-width: 440px; }
  .nav { display: none; }
}

@media (max-width: 560px) {
  .top-inner { height: 54px; gap: 12px; }
  .hide-sm { display: none; }
  .wallet-menu { right: -8px; min-width: 230px; }
  .top-actions .btn { padding: 8px 13px; font-size: 12.5px; }
  .hero-inner { padding: 32px 20px 40px; }
  .hero-stats { gap: 24px; }
  .field-grid { grid-template-columns: 1fr; }
  .tr { grid-template-columns: 24px 32px minmax(0, 1fr) auto; }
  .tr-coins { display: none; }
}

/* -------------------------------------------------------------- hero solo */

/* The launch form moved to its own page, so the hero is a single column. */
.hero-solo .hero-inner { grid-template-columns: minmax(0, 720px); justify-content: center; text-align: center; }
.hero-solo .sub { margin-left: auto; margin-right: auto; }
.hero-solo .hero-cta { justify-content: center; }
.hero-solo .hero-stats { justify-content: center; }
.hero-solo .eyebrow { margin-left: auto; margin-right: auto; }

/* ------------------------------------------------------------------ ticker */

.ticker-band {
  border-bottom: 1px solid var(--line-soft);
  background: var(--raised);
  overflow: hidden;
}

.ticker {
  display: flex;
  gap: 26px;
  padding: 11px 20px;
  font-size: 12.5px;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.ticker::-webkit-scrollbar { display: none; }
.ticker-empty { color: var(--faint); font-size: 12px; margin: 0 auto; }

.ticker-item { display: inline-flex; align-items: center; gap: 7px; flex: none; }
.ticker-item .amount { color: var(--green); font-weight: 700; font-variant-numeric: tabular-nums; }
.ticker-item .to { color: var(--dim); }
.ticker-item .when { color: var(--faint); font-size: 11px; }

/* ----------------------------------------------------------------- two-col */

.two-col { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }

/* ------------------------------------------------------------------- chart */

.chart-card { border: 1px solid var(--line-soft); border-radius: var(--r); padding: 22px; background: var(--raised); }

.chart-value {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.chart-label {
  margin-top: 6px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 700;
}

.chart-plot {
  height: 130px;
  margin: 20px 0 14px;
  border-bottom: 1px solid var(--line-soft);
  display: grid;
  place-items: center;
}

.chart-empty { font-size: 12px; color: var(--faint); }

.chart-range { display: flex; gap: 6px; }

.range-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--dim);
  border-radius: 999px;
  padding: 5px 13px;
  font: 700 11px/1 inherit;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}

.range-btn:hover { color: var(--text); }
.range-btn.is-active { color: var(--green); border-color: rgba(255, 255, 255, 0.35); }

/* ------------------------------------------------------------ launch page */

.launch-page { padding: 34px 0 80px; }

.launch-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
}

.launch-main {
  background: var(--raised);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px;
}

.launch-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.launch-head h1 { margin: 0; font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }

.tabs { display: flex; gap: 3px; background: var(--bg); border: 1px solid var(--line); border-radius: 999px; padding: 3px; }

.tab {
  border: 0;
  background: transparent;
  color: var(--dim);
  border-radius: 999px;
  padding: 7px 15px;
  font: 700 12.5px/1 inherit;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.tab:hover { color: var(--text); }
.tab.is-active { background: var(--green); color: #0a0a0a; }

.panel { display: grid; gap: 16px; }
.panel[hidden] { display: none !important; }

.textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  padding: 11px;
  resize: vertical;
  outline: none;
  transition: border-color 0.15s;
}

.textarea:focus { border-color: var(--green); }

.suffix {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  color: var(--faint);
  padding-right: 11px;
  flex: none;
}

/* ------------------------------------------------------------------ notice */

.notice { border: 1px solid var(--line); border-radius: var(--r); padding: 16px; background: var(--bg); }
.notice-title { font-weight: 700; font-size: 13.5px; margin-bottom: 7px; }
.notice p { margin: 0 0 14px; font-size: 12.5px; color: var(--dim); line-height: 1.6; }

.addr-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  padding: 10px 11px;
  background: var(--raised);
}

.addr-body { min-width: 0; }

.addr-label {
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 700;
  margin-bottom: 3px;
}

.addr {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11.5px;
  color: var(--dim);
  word-break: break-all;
}

.copy-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--dim);
  border-radius: var(--r);
  padding: 6px 11px;
  font: 800 10px/1 ui-monospace, monospace;
  letter-spacing: 0.08em;
  cursor: pointer;
  flex: none;
  transition: color 0.15s, border-color 0.15s;
}

.copy-btn:hover:not(:disabled) { color: var(--green); border-color: rgba(255, 255, 255, 0.35); }
.copy-btn:disabled { opacity: 0.4; cursor: default; }

.check-row { display: flex; align-items: center; gap: 12px; margin-top: 12px; }
.btn-sm { padding: 7px 14px; font-size: 12px; }
.check-note { font-size: 11.5px; color: var(--faint); }

/* -------------------------------------------------------------------- walk */

.walk { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.walk li { display: flex; gap: 14px; }

.walk-n {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  color: var(--green);
  display: grid;
  place-items: center;
  font: 800 11px/1 ui-monospace, monospace;
}

.walk strong { display: block; font-size: 14px; margin-bottom: 5px; }
.walk p { margin: 0 0 12px; font-size: 12.5px; color: var(--dim); line-height: 1.6; }
.walk code { font-family: ui-monospace, monospace; font-size: 12px; color: var(--green); }

/* ----------------------------------------------------------------- preview */

.preview { position: sticky; top: 76px; }

.preview-card {
  background: var(--raised);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px;
}

.preview-img {
  aspect-ratio: 1;
  border-radius: var(--r);
  background: var(--bg);
  border: 1px solid var(--line-soft);
  display: grid;
  place-items: center;
  color: var(--faint);
  overflow: hidden;
  margin-bottom: 14px;
}

.preview-img img { width: 100%; height: 100%; object-fit: cover; }

.preview-name { display: flex; align-items: baseline; gap: 8px; font-weight: 700; font-size: 15px; }
.preview-ticker { font-size: 10px; letter-spacing: 0.12em; color: var(--faint); font-weight: 700; }

.preview-stats { display: flex; gap: 16px; margin-top: 7px; font-size: 12px; color: var(--faint); }
.preview-stats strong { color: var(--text); font-variant-numeric: tabular-nums; }

.preview-rows { margin-top: 14px; border-top: 1px solid var(--line-soft); }

.preview-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 12.5px;
  color: var(--dim);
}

.preview-row:last-child { border-bottom: 0; }
.preview-value { font-weight: 700; color: var(--text); font-variant-numeric: tabular-nums; }
.preview-value.accent { color: var(--green); }

@media (max-width: 900px) {
  .launch-grid { grid-template-columns: 1fr; }
  .preview { position: static; }
}

@media (max-width: 560px) {
  .launch-page { padding-top: 22px; }
  .launch-main { padding: 16px; }
  .launch-head h1 { font-size: 19px; }
  .tabs { width: 100%; }
  .tab { flex: 1; padding: 8px 6px; font-size: 11.5px; }
}

/* ------------------------------------------------------- social disclosure */

.disclosure-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.disclosure-head .field-label { margin-bottom: 0; }
.disclosure-head:hover .field-label { color: var(--dim); }

.disclosure-chev {
  color: var(--faint);
  font-size: 10px;
  transition: transform 0.15s;
}

.disclosure-head.is-open .disclosure-chev { transform: rotate(180deg); }

.disclosure-body {
  display: grid;
  gap: 13px;
  margin-top: 13px;
  padding-left: 12px;
  border-left: 1px solid var(--line-soft);
}

.disclosure-body[hidden] { display: none !important; }

/* The website is generated, not typed — it reads as output, not an input. */
.input-row.is-readonly { background: var(--line-soft); border-style: dashed; }
.input-row.is-readonly input { color: var(--dim); cursor: default; }

/* ------------------------------------------------------------- coin cards */

/* Cards are a responsive grid, not a list: the artwork is the point, and it
   reads better side by side. */
.feed {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 14px;
}

.coin {
  display: flex;
  flex-direction: column;
  background: var(--raised);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 10px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, transform 0.15s;
}

.coin:hover { border-color: rgba(255, 255, 255, 0.35); transform: translateY(-2px); }

/* Floats over the artwork's top edge rather than occupying its own row. */
.coin-top {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  z-index: 2;
}

/* The pump.fun mark: every coin here is a pump.fun launch, so the badge says
   where it lives rather than decorating the corner. */
.coin-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(10, 12, 9, 0.72);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: none;
}

.coin-dot img { width: 14px; height: 14px; object-fit: contain; display: block; }

.coin-age {
  font-size: 10.5px;
  font-weight: 700;
  color: #fff;
  background: rgba(10, 12, 9, 0.72);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 3px 9px;
}

/* The artwork, with the Twitch identity chip anchored over its lower edge. */
.coin-art { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 1; }

.coin-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.coin-img-blank { background: var(--bg); }

.coin-chip {
  position: absolute;
  left: 8px;
  bottom: 8px;
  right: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(10, 12, 9, 0.82);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 4px 10px 4px 4px;
  min-width: 0;
}

.chip-pfp { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; flex: none; }
.chip-pfp-blank { background: var(--line); display: block; }

.chip-verified { flex: none; }

.chip-name {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chip-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4747;
  flex: none;
  margin-left: auto;
}

.coin-foot { margin-top: 10px; }

.coin-title { display: flex; align-items: baseline; gap: 6px; min-width: 0; }

.coin-name {
  font-weight: 700;
  font-size: 13.5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.coin-ticker {
  font-size: 10.5px;
  color: var(--faint);
  font-weight: 700;
  text-transform: uppercase;
  flex: none;
}

.coin-mc { display: flex; align-items: baseline; gap: 5px; margin-top: 3px; }
.coin-mc strong { font-size: 16px; font-variant-numeric: tabular-nums; }
.coin-mc span { font-size: 10px; color: var(--faint); font-weight: 700; }

@media (max-width: 520px) {
  .feed { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
}

/* ------------------------------------------------------------- token page */

.token-page { padding: 24px 0 80px; }

.back-link {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 13px;
  color: var(--dim);
  text-decoration: none;
}

.back-link:hover { color: var(--text); }

.token-card {
  background: var(--raised);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 14px;
}

/* Identity beside the headline number, the way a listing page reads. */
.token-head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}

.token-head > .token-card {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.token-id { display: flex; align-items: center; gap: 12px; min-width: 0; }

.token-img {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: var(--bg);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  flex: none;
}

.token-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.token-names { min-width: 0; }
.token-title { display: flex; align-items: baseline; gap: 7px; min-width: 0; }
.token-title > span:first-child { font-weight: 800; font-size: 17px; }

.token-ticker {
  font-size: 11px;
  color: var(--faint);
  font-weight: 700;
  text-transform: uppercase;
}

.icon-btn {
  border: 0;
  background: transparent;
  color: var(--faint);
  cursor: pointer;
  font-size: 13px;
  padding: 0 2px;
}

.icon-btn:hover { color: var(--green); }

.token-sub { display: flex; align-items: center; gap: 8px; margin-top: 3px; font-size: 12px; color: var(--faint); }
.token-sub a { color: var(--faint); text-decoration: none; }
.token-sub a:hover { color: var(--green); }

.token-mc { text-align: right; flex: none; }
.token-mc strong { display: block; font-size: 24px; font-weight: 800; letter-spacing: -0.02em; }
.token-mc span { font-size: 10px; color: var(--faint); font-weight: 700; letter-spacing: 0.1em; }

.token-sent .sent-value { display: flex; align-items: baseline; gap: 8px; }
.token-sent strong { font-size: 24px; font-weight: 800; }
.token-sent span:last-child { font-size: 12px; color: var(--faint); }

.sol-mark { color: var(--faint); font-size: 18px; }

/* The payout block: the reason this coin exists. */
.payout-head { font-size: 13.5px; font-weight: 700; margin-bottom: 10px; }
.payout-value { display: flex; align-items: baseline; gap: 10px; }
.payout-value strong { font-size: 34px; font-weight: 800; letter-spacing: -0.03em; }

.payout-note { margin: 10px 0 12px; font-size: 12.5px; color: var(--dim); line-height: 1.6; }
.payout-note strong { color: var(--text); }
.payout-note a { color: var(--green); text-decoration: none; }
.payout-note a:hover { text-decoration: underline; }

.payout-status {
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 13px;
  font-size: 11.5px;
  color: var(--dim);
}

/* Chart */
.chart-card { padding: 0; overflow: hidden; }

.chart-tabs {
  display: flex;
  gap: 2px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line-soft);
}

.chart-tab {
  border: 0;
  background: transparent;
  color: var(--faint);
  border-radius: 6px;
  padding: 5px 11px;
  font: 700 11.5px/1 inherit;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.chart-tab:hover { color: var(--text); }
.chart-tab.is-active { background: rgba(255, 255, 255, 0.09); color: #fff; }

.chart-body { position: relative; min-height: 400px; }
.tv-chart { width: 100%; }

/* The OHLC readout sits over the plot, as on a trading terminal. */
.chart-legend {
  position: absolute;
  top: 10px;
  left: 12px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  font-size: 11.5px;
  pointer-events: none;
}

.legend-title { color: var(--text); font-weight: 600; }
.legend-ohlc { color: var(--faint); display: inline-flex; gap: 7px; }
.legend-change { font-weight: 700; }
.legend-change.up { color: #26d07c; }
.legend-change.down { color: #ff4d4d; }

.chart-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 12.5px;
  color: var(--faint);
  pointer-events: none;
}

/* Fee routing */
.routing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-soft);
}

.routing-row:last-of-type { border-bottom: 0; }
.routing-label { font-size: 13px; font-weight: 700; margin-bottom: 3px; }

.routing-addr {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  color: var(--faint);
  word-break: break-all;
}

.routing-row strong { font-size: 15px; flex: none; }

.routing-note {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
  font-size: 12px;
  color: var(--faint);
  line-height: 1.6;
}

@media (max-width: 720px) {
  .token-head { grid-template-columns: 1fr; }
  .token-mc strong { font-size: 20px; }
  .payout-value strong { font-size: 28px; }
}

/* --------------------------------------------- token header (coin + streamer) */

/* A small badge tucked into the corner of an avatar: the pump.fun mark on the
   coin, the live dot on the streamer. */
.img-badge {
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--raised);
  border: 2px solid var(--raised);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.img-badge img { width: 13px; height: 13px; object-fit: contain; display: block; }

.token-img { position: relative; overflow: visible; }
.token-img > img { border-radius: 12px; }
.streamer-img { border-radius: 50%; }
.streamer-img > img { border-radius: 50%; }

.live-badge { width: 14px; height: 14px; }
.live-badge.is-live { background: #ff3b3b; box-shadow: 0 0 0 2px var(--raised); }
.live-badge.is-offline { background: var(--line); box-shadow: 0 0 0 2px var(--raised); }

.token-fullname { font-size: 12.5px; color: var(--faint); font-weight: 600; }

.channel-name {
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
  text-decoration: none;
}

.channel-name:hover { color: var(--green); }

.verified { color: #3ea6ff; font-size: 12px; font-weight: 700; }

.live-text {
  color: #ff3b3b;
  font-weight: 800;
  font-size: 10.5px;
  letter-spacing: 0.08em;
}

.token-sent strong { display: flex; align-items: baseline; gap: 5px; justify-content: flex-end; }

/* Social links under the coin name: pump.fun, X, Telegram, website. Each only
   renders when the coin's metadata names it. */
.social-link {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  color: var(--faint);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}

.social-link:hover { color: var(--text); background: rgba(255, 255, 255, 0.07); }
.social-link img { display: block; opacity: 0.85; }
.social-link:hover img { opacity: 1; }
.social-link[hidden] { display: none; }

/* ------------------------------------------------- explore (grid + panel) */

.explore {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 26px;
  align-items: start;
}

/* Exactly four across: the page shows one screenful and pages rather than
   scrolling forever. */
.explore-main .feed { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.pager { display: flex; align-items: center; gap: 4px; }

.pager-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--dim);
  border-radius: 7px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, opacity 0.15s;
}

.pager-btn:hover:not(:disabled) { color: var(--text); border-color: var(--dim); }
.pager-btn:disabled { opacity: 0.3; cursor: default; }

.pager-count {
  font-size: 11.5px;
  color: var(--faint);
  font-variant-numeric: tabular-nums;
  padding: 0 6px;
  min-width: 42px;
  text-align: center;
}

/* Top streamer profiles: banner, overlapping avatar, then stats. */
.streamers { display: grid; gap: 12px; }

.head-with-icon { display: inline-flex; align-items: center; gap: 6px; }
.head-with-icon svg { flex: none; }

.sp {
  display: block;
  background: var(--raised);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, transform 0.15s;
}

.sp:hover { border-color: rgba(145, 70, 255, 0.45); transform: translateY(-2px); }

/* Without a Twitch banner the wash stands in: derived from the channel name,
   so it is stable per streamer rather than looking like a failed image. */
.sp-banner {
  position: relative;
  height: 92px;
  background:
    linear-gradient(135deg,
      hsl(var(--sp-hue) 55% 28%),
      hsl(calc(var(--sp-hue) + 40) 45% 16%));
}

.sp-banner-img { width: 100%; height: 100%; object-fit: cover; display: block; }

.sp-avatar {
  position: absolute;
  left: 14px;
  bottom: -22px;
  width: 54px;
  height: 54px;
}

.sp-avatar img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--raised);
  background: var(--bg);
}

.sp-live {
  position: absolute;
  right: 1px;
  bottom: 3px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #ff3b3b;
  border: 2.5px solid var(--raised);
}

.sp-body { padding: 28px 14px 14px; }

.sp-name {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 800;
  font-size: 15px;
}

.sp-verified { flex: none; }
.sp-handle { font-size: 12px; color: var(--faint); margin-top: 1px; }

.sp-stats {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--faint);
}

.sp-stats strong { color: var(--text); font-size: 13.5px; font-variant-numeric: tabular-nums; }
.sp-owed strong { color: var(--green); }

@media (max-width: 1100px) {
  .explore { grid-template-columns: 1fr; }
  .explore-main .feed { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
}

@media (max-width: 620px) {
  .explore-main .feed { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Our mark sits to the left of the streamer's avatar, at the head of the chip. */
.chip-mark {
  flex: none;
  border-radius: 4px;
  object-fit: contain;
  display: block;
}

/* ------------------------------------------------------------ explore page */

.explore-page { padding: 24px 0 80px; }

.explore-intro {
  background: var(--raised);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  margin-bottom: 30px;
}

.intro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.intro-head h1 { margin: 0; font-size: 26px; font-weight: 800; letter-spacing: -0.02em; }

.explore-intro p {
  margin: 12px 0 0;
  max-width: 62ch;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--dim);
}

/* Trending strip: a horizontal row that scrolls rather than wrapping. */
.trending-band { margin-bottom: 30px; }

.trending {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.trending::-webkit-scrollbar { display: none; }

.trend {
  display: flex;
  align-items: center;
  gap: 11px;
  flex: none;
  min-width: 250px;
  padding: 11px 14px;
  background: var(--raised);
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s;
}

.trend:hover { border-color: rgba(255, 255, 255, 0.35); }

.trend-img { width: 34px; height: 34px; border-radius: 9px; object-fit: cover; flex: none; }
.trend-img-blank { background: var(--bg); display: block; }

.trend-body { min-width: 0; flex: 1; }
.trend-name { font-weight: 700; font-size: 13px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.trend-ticker { font-size: 10.5px; color: var(--faint); font-weight: 700; text-transform: uppercase; }

.trend-owed { text-align: right; flex: none; }
.trend-owed span { display: block; font-size: 9px; letter-spacing: 0.1em; color: var(--faint); font-weight: 700; }
.trend-owed strong { font-size: 13.5px; font-variant-numeric: tabular-nums; color: var(--green); }

/* Search and sort */
.explore-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.search { flex: 1; min-width: 220px; }

.search input {
  width: 100%;
  background: var(--raised);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font: inherit;
  font-size: 13px;
  padding: 10px 16px;
  outline: none;
  transition: border-color 0.15s;
}

.search input:focus { border-color: var(--green); }
.search input::placeholder { color: var(--faint); }

.sorts {
  display: flex;
  gap: 2px;
  background: var(--raised);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  flex: none;
}

.sort-btn {
  border: 0;
  background: transparent;
  color: var(--faint);
  border-radius: 999px;
  padding: 7px 14px;
  font: 700 12px/1 inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.sort-btn:hover { color: var(--text); }
.sort-btn.is-active { background: var(--green); color: #0a0a0a; }

/* The explore grid is four across, like the landing feed. */
.explore-page .feed { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.coin-figures {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-top: 5px;
  font-size: 10px;
  color: var(--faint);
  font-weight: 700;
}

.coin-figures strong { font-size: 14px; font-variant-numeric: tabular-nums; color: var(--text); }
.coin-figures .owed strong { color: var(--green); }

.coin-mint {
  margin-top: 7px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  color: var(--faint);
}

.pager-center { justify-content: center; margin-top: 24px; }

@media (max-width: 1100px) {
  .explore-page .feed { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
}

@media (max-width: 620px) {
  .explore-page .feed { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sorts { width: 100%; }
  .sort-btn { flex: 1; }
}

/* The X account as a profile block rather than a bare icon: it shows whose
   account it is before someone clicks through. */
.nav-profile {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 5px 11px 5px 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--raised);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, background 0.15s;
}

.nav-profile:hover { border-color: var(--dim); background: rgba(255, 255, 255, 0.04); }

.np-avatar { border-radius: 50%; flex: none; display: block; }

.np-text { display: grid; line-height: 1.2; min-width: 0; }
.np-name { font-size: 12.5px; font-weight: 800; color: var(--green); }
.np-handle { font-size: 11px; color: var(--faint); }

.np-x { color: var(--dim); flex: none; margin-left: 2px; }
.nav-profile:hover .np-x { color: var(--text); }

@media (max-width: 900px) {
  .np-text { display: none; }
  .nav-profile { padding: 5px 8px; }
}

/* ---------------------------------------------------------------- clipped */

.brand-mark {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #fff;
  color: #0a0a0a;
  font-size: 15px;
}

.brand-name { font-weight: 800; font-size: 16px; letter-spacing: -0.01em; }

/* The per-view rate, on the artwork: the number a clipper decides on. */
.coin-chip .chip-rate { font-weight: 800; font-size: 13px; color: #fff; }
.coin-chip .chip-label { font-size: 10.5px; color: rgba(255, 255, 255, 0.55); }

.coin-dot { font-size: 12px; color: #fff; }

/* Source filter: which launchpad a token came from. Separate from sorting,
   because "which ones" and "in what order" are different questions. */
.filters {
  display: flex;
  gap: 2px;
  background: var(--raised);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  flex: none;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: var(--faint);
  border-radius: 999px;
  padding: 7px 13px;
  font: 700 12px/1 inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.filter-btn:hover { color: var(--text); }
.filter-btn.is-active { background: rgba(255, 255, 255, 0.1); color: #fff; }

.filter-dot { width: 13px; height: 13px; border-radius: 50%; flex: none; }
.filter-dot.pump { background: #6ee7a8; }
.filter-dot.bonk { background: #ffb02e; }

.filter-grid {
  width: 12px;
  height: 12px;
  flex: none;
  background:
    linear-gradient(currentColor 0 0) 0 0 / 5px 5px no-repeat,
    linear-gradient(currentColor 0 0) 7px 0 / 5px 5px no-repeat,
    linear-gradient(currentColor 0 0) 0 7px / 5px 5px no-repeat,
    linear-gradient(currentColor 0 0) 7px 7px / 5px 5px no-repeat;
}

.search { position: relative; }
.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--faint);
  font-size: 15px;
  pointer-events: none;
}

.search input { padding-left: 34px; }

/* The launchpad mark in the card corner. */
.dot-pump {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #6ee7a8;
  display: block;
}

/* Card stats: value then label, the way a ledger line reads. */
.coin-stats {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 5px;
  flex-wrap: wrap;
}

.stat { display: inline-flex; align-items: baseline; gap: 4px; }
.stat strong { font-size: 14px; font-variant-numeric: tabular-nums; }
.stat em { font-style: normal; font-size: 10.5px; color: var(--faint); font-weight: 700; }
.stat .sol { color: var(--faint); font-size: 12px; }

.coin-chip .chip-sol { color: rgba(255, 255, 255, 0.6); font-size: 12px; flex: none; }

/* Contract address with a copy control. */
.coin-mint {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 9px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  color: var(--faint);
}

.copy-mint {
  border: 0;
  background: transparent;
  color: var(--faint);
  cursor: pointer;
  font-size: 12px;
  padding: 2px 4px;
  border-radius: 4px;
  flex: none;
}

.copy-mint:hover { color: var(--text); background: rgba(255, 255, 255, 0.08); }
