:root {
  --bg: #090909;
  --panel: #121212;
  --ink: #f4f1ea;
  --muted: #a8a49a;
  --mint: #7dce9a;
  --line: #242424;
  --warn: #e8c07a;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--ink); font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif; }
a { color: var(--mint); }
img { max-width: 100%; display: block; }

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: .08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  z-index: 5;
}

/* Top bar sits ABOVE the banner — never overlays art */
.topbar {
  position: sticky; top: 0; z-index: 20;
  display: flex; justify-content: flex-end; align-items: center;
  gap: 16px;
  padding: 12px 18px;
  background: rgba(9,9,9,.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.mark {
  font-weight: 800; letter-spacing: .18em; font-size: 13px;
  color: var(--mint); text-decoration: none;
}
.topnav {
  display: flex; align-items: center; gap: 4px;
}
.topnav a {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted); text-decoration: none;
  font-size: 13px; font-weight: 600;
  padding: 8px 12px; border-radius: 999px;
  border: 1px solid transparent;
}
.topnav a:hover { color: var(--ink); background: rgba(255,255,255,.04); }
.topnav a.is-active,
.topnav a.is-active {
  color: var(--mint);
  border-color: #1e2a20;
  background: rgba(125,206,154,.08);
}
.nav-ico { display: none !important; }
.nav-txt { display: inline; }

/* Side social rail — desktop right edge; mobile bottom or side strip */
.siderail {
  position: fixed;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.side-ico {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: rgba(18,18,18,.92);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  text-decoration: none;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  transition: border-color .15s, color .15s, transform .15s;
}
.side-ico svg { width: 18px; height: 18px; }
.side-ico span { display: none; }
.side-ico:hover {
  color: var(--mint);
  border-color: #2a3a2e;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  width: 100%;
  background:
    radial-gradient(1200px 280px at 70% 40%, rgba(125, 206, 154, 0.06), transparent 60%),
    #121212;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-inner {
  width: 100%;
  min-height: clamp(180px, 22vw, 300px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px clamp(12px, 3vw, 32px);
  box-sizing: border-box;
}
.hero-art {
  display: block;
  width: auto;
  height: clamp(160px, 20vw, 280px);
  max-width: 100%;
  object-fit: contain;
  object-position: center center;
  background: transparent;
  border: 0;
}
.hero-slim .hero-inner {
  min-height: clamp(180px, 22vw, 300px);
  padding: 10px clamp(12px, 3vw, 32px);
}
.hero-slim .hero-art {
  height: clamp(160px, 20vw, 280px);
}

main { width: min(980px, calc(100% - 40px)); margin: 0 auto; padding: 0 0 80px; }

.intro {
  display: grid; grid-template-columns: 180px 1fr; gap: 36px; align-items: end;
  margin-top: 28px; /* clear of banner text */
  position: relative; z-index: 3;
  padding-top: 0;
}
.intro.intro-goal {
  grid-template-columns: 1fr;
  align-items: start;
  margin-top: 36px;
  max-width: 720px;
}
.avatar,
.avatar {
  width: 180px; height: 180px; border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--bg);
  box-shadow: 0 0 0 1px #2a2a2a, 0 16px 40px rgba(0,0,0,.5);
  position: relative; z-index: 3;
}
.kicker { color: var(--mint); letter-spacing: .12em; text-transform: uppercase; font-size: 12px; margin-bottom: 10px; }
h1 { font-size: clamp(32px, 5vw, 54px); line-height: .95; letter-spacing: -.03em; }
h1 em { font-style: normal; color: var(--mint); }
.lead,
.lead { margin: 16px 0 22px; color: var(--muted); max-width: 52ch; line-height: 1.55; }

.btn {
  display: inline-block; background: var(--mint); color: #08140c;
  text-decoration: none; font-weight: 700; padding: 12px 18px; border-radius: 999px;
}
.btn-ghost {
  background: rgba(8,8,8,.55); color: var(--ink); border: 1px solid #333;
  backdrop-filter: blur(8px);
}
.actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.mail { margin-top: 16px; color: var(--muted); font-size: 14px; }

.grid { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
article { background: var(--panel); border: 1px solid var(--line); padding: 22px; border-radius: 16px; }
article h2 { font-size: 16px; margin-bottom: 10px; }
article p { color: var(--muted); line-height: 1.55; font-size: 15px; }
.warn { border-color: #3a3322; }
.warn h2 { color: var(--warn); }

.feed { margin-top: 48px; }
.feed-head h2 { font-size: 22px; margin-bottom: 6px; }
.feed-head p { color: var(--muted); margin-bottom: 16px; }
.feed-frame {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 8px 8px 0;
  min-height: 320px;
  overflow: hidden;
}

.cta {
  margin-top: 28px; padding: 28px; border-radius: 16px;
  background: linear-gradient(180deg, #101510, #0c0c0c);
  border: 1px solid #1e2a20; text-align: center;
}
.cta h2 { margin-bottom: 8px; }
.cta p { color: var(--muted); margin-bottom: 18px; }

footer {
  width: min(980px, calc(100% - 40px)); margin: 0 auto;
  padding: 0 0 40px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  color: #666; font-size: 13px; border-top: 1px solid var(--line); padding-top: 20px;
}
footer a { color: #9ad0ad; text-decoration: none; }

@media (max-width: 760px) {
  .intro { grid-template-columns: 1fr; margin-top: 20px; align-items: start; gap: 18px; }
  .avatar { width: 132px; height: 132px; }
  .grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 8px; }
}

/* --- season kit intro (logo + copy) --- */
.nav-links { display: flex; gap: 8px; align-items: center; }
.intro-kit { grid-template-columns: 160px 1fr; }
.kit-mascot { text-align: center; }
.kit-orb {
  width: 140px; height: 140px; margin: 0 auto;
  border-radius: 28px;
  display: grid; place-items: center;
  font-size: 64px;
  background: linear-gradient(160deg, #142018, #0c0c0c);
  border: 1px solid #1e2a20;
  box-shadow: 0 20px 50px rgba(0,0,0,.45), 0 0 0 1px #2a2a2a;
  position: relative;
}
.kit-mark { line-height: 1; }
.kit-sign {
  position: absolute;
  right: 10px;
  bottom: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  color: var(--mint);
  opacity: .75;
  line-height: 1;
  pointer-events: none;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
}
.kit-label {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.status-pill {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(125, 206, 154, .08);
  border: 1px solid #1e2a20;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}
.status-pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px rgba(125, 206, 154, .8);
}
.muted-inline { color: var(--muted); font-weight: 500; }

.panel {
  margin-top: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}
.panel h2 { font-size: 18px; margin-bottom: 14px; }

.kv { display: grid; gap: 12px; }
.kv > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.kv > div:last-child { border-bottom: 0; }
.kv dt { color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.kv dd { font-weight: 600; }
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 14px; word-break: break-all; }
.fine { margin-top: 14px; color: var(--muted); font-size: 14px; line-height: 1.5; }

.steps {
  margin-left: 1.2em;
  color: var(--muted);
  line-height: 1.7;
}
.steps li { margin-bottom: 6px; }
.steps strong { color: var(--ink); }

.tok-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.tok-grid > div {
  background: #0c0c0c;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
}
.tok-grid strong { display: block; color: var(--mint); font-size: 20px; margin-bottom: 6px; }
.tok-grid span { color: var(--muted); font-size: 12px; line-height: 1.35; display: block; }

.faq-item { padding: 12px 0; border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 0; }
.faq-item h3 { font-size: 15px; margin-bottom: 6px; }
.faq-item p { color: var(--muted); font-size: 15px; line-height: 1.5; }

@media (max-width: 760px) {
  .intro-kit { grid-template-columns: 1fr; }
  .kit-orb { width: 112px; height: 112px; font-size: 52px; }
  .tok-grid { grid-template-columns: 1fr 1fr; }
  .kv > div { grid-template-columns: 1fr; gap: 4px; }
}

/* Non-home pages: restore top spacing (home intro overlaps the banner) */
.tokens-hero, .intro-kit { padding-top: 48px; }
.hero-slim + main > .intro { margin-top: 36px; } /* kit intro shouldn't overlap */

/* --- Tokens + Just launched --- */
.tokens-hero { margin-bottom: 28px; }
.tokens-hero h1 { margin: 6px 0 12px; }
.tokens-subhead {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.token-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.token-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--panel);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
  text-decoration: none;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.token-card:hover {
  border-color: #3a3a3a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.token-card.is-live:hover { border-color: var(--mint); }
.token-card.is-building:hover { border-color: #5a4a22; }
.token-card-emoji {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: #0c0c0c; border: 1px solid var(--line);
  font-size: 26px; flex-shrink: 0;
}
.token-card-body { display: grid; gap: 4px; min-width: 0; }
.token-card-body .token-status { margin-bottom: 2px; }
.token-card-ticker { font-size: 18px; letter-spacing: -.02em; }
.token-card-tagline {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}
.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span:last-child { color: var(--ink); font-weight: 600; }
.token-detail-hero { margin-bottom: 12px; padding-top: 40px; }
.token-detail-full { max-width: 720px; }
.token-detail-card h1 {
  font-size: 32px;
  letter-spacing: -.02em;
  margin: 0;
}
.token-tagline {
  color: var(--ink);
  font-size: 16px;
  margin: 10px 0 0;
  font-weight: 600;
}
/* legacy chip styles kept for any leftover markup */
.token-list { display: grid; gap: 10px; }
.token-chip {
  display: flex; align-items: center; gap: 12px;
  width: 100%; text-align: left;
  background: var(--panel); color: var(--ink);
  border: 1px solid var(--line); border-radius: 14px;
  padding: 12px 14px; cursor: pointer;
  font: inherit;
}
.token-chip-emoji {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: #0c0c0c; border: 1px solid var(--line);
  font-size: 22px; flex-shrink: 0;
}

.token-detail-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
}
.token-detail-top {
  display: flex; gap: 16px; align-items: center; margin-bottom: 14px;
}
.token-detail-emoji {
  width: 64px; height: 64px; border-radius: 16px;
  display: grid; place-items: center; font-size: 32px;
  background: linear-gradient(160deg, #142018, #0c0c0c);
  border: 1px solid #1e2a20;
}
.token-status {
  display: inline-block;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 6px; font-weight: 700;
}
.token-status.is-live { color: var(--mint); }
.token-status.is-upcoming { color: var(--warn); }
.token-status.is-building { color: var(--warn); }
.token-status.is-retired { color: var(--muted); }
.token-detail-card h2 { font-size: 28px; letter-spacing: -.02em; }
.token-name { color: var(--muted); margin-top: 2px; }
.token-blurb { color: var(--muted); line-height: 1.55; margin: 8px 0 16px; }

.just-launched { margin-top: 40px; }
.just-launched-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  background: linear-gradient(180deg, #101510, #0c0c0c);
  border: 1px solid #1e2a20;
  border-radius: 18px;
  padding: 22px;
}
.just-launched-card.is-pending { border-color: #3a3322; background: linear-gradient(180deg, #15120c, #0c0c0c); }
.just-launched-emoji {
  width: 72px; height: 72px; border-radius: 18px;
  display: grid; place-items: center; font-size: 34px;
  background: #0c0c0c; border: 1px solid var(--line);
}
.just-launched-label {
  color: var(--mint);
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 700; margin-bottom: 6px;
}
.just-launched-card.is-pending .just-launched-label { color: var(--warn); }
.just-launched-body h2 { font-size: 22px; margin-bottom: 8px; }
.just-launched-body h2 span { color: var(--muted); font-weight: 500; font-size: 16px; }
.just-launched-body p { color: var(--muted); line-height: 1.5; margin-bottom: 14px; max-width: 54ch; }

@media (max-width: 760px) {
  .token-grid { grid-template-columns: 1fr; }
  .just-launched-card { grid-template-columns: 1fr; }
}

/* --- Follow + buy links --- */
.follow-label,
.follow-label {
  margin: 16px 0 8px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}
.follow-row { margin-top: 0; }
.buy-block { margin-top: 16px; }
.buy-label {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}
.buy-row { gap: 8px; }
.buy-btn { font-size: 13px; padding: 10px 14px; }
.buy-pending { color: var(--muted); font-size: 14px; line-height: 1.45; margin: 0; }

/* --- Curated X feed --- */
.x-feed { display: grid; gap: 12px; }
.x-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
}
.x-card-empty {
  text-align: center;
  color: var(--muted);
  padding: 28px 20px;
}
.x-card-empty p { margin-bottom: 16px; line-height: 1.5; }
.x-card-meta {
  display: flex; flex-wrap: wrap; gap: 8px 12px;
  align-items: center;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--muted);
}
.x-card-handle { color: var(--mint); font-weight: 700; }
.x-card-label {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid #1e2a20;
  background: rgba(125, 206, 154, .08);
  color: var(--mint);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
}
.x-card-text {
  color: var(--ink);
  line-height: 1.55;
  font-size: 15px;
  margin-bottom: 12px;
  white-space: pre-wrap;
}
.x-card-link {
  color: var(--mint);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}
.x-card-link:hover { text-decoration: underline; }

/* --- Launch lottery --- */
.lottery-panel { border-color: #1e2a20; }
.lottery-panel h2 { color: var(--mint); }
.lottery-panel .steps { margin-top: 12px; }

/* FIGH artist signature on coin marks */
.token-detail-emoji,
.just-launched-emoji,
.token-card-emoji,
.token-chip-emoji {
  position: relative;
}
.token-detail-emoji::after,
.just-launched-emoji::after,
.token-card-emoji::after {
  content: "FIGH";
  position: absolute;
  right: 6px;
  bottom: 5px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--mint);
  opacity: .7;
  line-height: 1;
  pointer-events: none;
}
.token-chip-emoji::after {
  content: "FIGH";
  position: absolute;
  right: 3px;
  bottom: 2px;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--mint);
  opacity: .65;
  line-height: 1;
  pointer-events: none;
}

/* Token logo images (same box as emoji marks) */
.token-chip-emoji.has-logo,
.token-card-emoji.has-logo,
.token-detail-emoji.has-logo,
.just-launched-emoji.has-logo {
  padding: 0;
  overflow: hidden;
  font-size: 0;
}
.token-chip-emoji.has-logo img,
.token-card-emoji.has-logo img,
.token-detail-emoji.has-logo img,
.just-launched-emoji.has-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}


.lottery-sub {
  margin: 20px 0 8px;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
}
.lottery-panel .fine { margin-bottom: 10px; }
.lottery-panel .steps { margin-bottom: 4px; }

.lottery-tiers { margin: 12px 0 4px; }
.lottery-tiers strong { font-size: 18px; }

/* --- FIGH house + Higgs --- */
.house { margin-top: 48px; }
.house-card {
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr;
  gap: 28px;
  align-items: center;
  background: linear-gradient(180deg, #101510, #0c0c0c);
  border: 1px solid #1e2a20;
  border-radius: 20px;
  padding: 24px;
}
.higgs-wrap {
  position: relative;
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
}
.higgs {
  width: 100%;
  height: auto;
  border-radius: 18px;
  background: #0c0c0c;
  border: 1px solid var(--line);
}
.higgs-sign {
  right: 12px;
  bottom: 12px;
  opacity: .85;
}
.house-copy h2 {
  font-size: clamp(26px, 4vw, 34px);
  letter-spacing: -.02em;
  margin: 4px 0 12px;
}
.house-copy p {
  color: var(--muted);
  line-height: 1.55;
  max-width: 52ch;
}
.house-note {
  margin-top: 12px;
  font-size: 14px;
}
.house-note strong { color: var(--ink); }
.house-rails {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}
.house-rails article {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 14px;
}
.house-rails h3 {
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--mint);
}
.house-rails .warn h3 { color: var(--warn); }
.house-rails p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.house-rails strong { color: var(--ink); font-weight: 600; }

.tokens-higgs-row {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
  padding: 12px 14px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  max-width: 560px;
}
.tokens-higgs {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 12px;
  background: #0c0c0c;
  border: 1px solid var(--line);
  flex-shrink: 0;
}
.token-season {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mint);
  font-weight: 700;
}

@media (max-width: 760px) {
  .house-card { grid-template-columns: 1fr; text-align: center; }
  .house-copy p { margin-left: auto; margin-right: auto; }
  .house-rails { grid-template-columns: 1fr; }
  .higgs-wrap { max-width: 180px; }
}


/* Inline follow icons (intro) */
.follow-icons,
.follow-icons { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.ico-btn,
.ico-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-radius: 999px;
  background: rgba(8,8,8,.55); color: var(--ink);
  border: 1px solid #333; text-decoration: none;
  font-size: 13px; font-weight: 600;
}
.ico-btn svg,
.ico-btn svg { width: 15px; height: 15px; }
.ico-btn:hover,
.ico-btn:hover { border-color: #444; color: var(--mint); }

.follow-label {
  margin: 16px 0 8px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}

/* Main content width */
@media (min-width: 961px) {
  main, footer { width: min(980px, calc(100% - 40px)); }
}

/* Mobile: icon topnav + bottom social dock */
@media (max-width: 760px) {
  .topbar { padding: 10px 12px; justify-content: center; }
  .topnav { flex-wrap: wrap; justify-content: center; gap: 2px; }
  .topnav a { padding: 8px 10px; font-size: 12px; }
  .hero { height: 160px; }
  .intro { margin-top: 20px; }
  body { padding-bottom: 24px; }
}


/* Cleaner intro CTAs */
.intro .actions .btn { padding: 11px 16px; font-size: 14px; }
.intro .actions .btn-ghost,
.intro .actions .btn-ghost {
  background: transparent;
  border-color: #2a2a2a;
}


/* siderail off — socials live in topbar as text */
.siderail { display: none !important; }

/* ——— FIGH Games (scoped) ——— */
.game-page { padding-top: 8px; }
.game-head { margin-top: 20px; margin-bottom: 18px; }
.game-head h1 { font-size: clamp(28px, 4vw, 40px); line-height: 1; letter-spacing: -.02em; }
.game-head .lead { max-width: 48ch; }

.game-hub {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.game-card {
  display: flex; flex-direction: column; gap: 10px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  text-decoration: none;
  color: inherit;
  transition: border-color .15s, transform .15s;
}
a.game-card:hover {
  border-color: #2a3a2e;
  transform: translateY(-1px);
}
.game-card h2 { font-size: 20px; margin: 0; color: var(--ink); }
.game-card p { color: var(--muted); line-height: 1.5; font-size: 15px; margin: 0; }
.game-card.is-soon { opacity: .72; }

.game-shell {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  margin-top: 8px;
}
.game-hud {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}
.hud-item {
  background: #0c0c0c;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
}
.hud-label {
  display: block;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
  font-weight: 700;
}
.hud-item strong {
  font-size: 16px;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.hud-item strong.is-long { color: var(--mint); }

.game-canvas-wrap {
  position: relative;
  background: #0c0c0c;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.game-canvas {
  display: block;
  width: 100%;
  height: auto;
  touch-action: none;
}
.game-price {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--mint);
  background: rgba(9,9,9,.75);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
  font-variant-numeric: tabular-nums;
}

.game-actions {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  margin-top: 14px;
}
.game-btn {
  appearance: none;
  border: none;
  cursor: pointer;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .04em;
  padding: 16px 18px;
  border-radius: 14px;
  min-height: 56px;
  transition: opacity .15s, transform .1s;
}
.game-btn:active:not(:disabled) { transform: scale(.98); }
.game-btn:disabled { opacity: .35; cursor: not-allowed; }
.game-btn.buy { background: var(--mint); color: #08140c; }
.game-btn.sell { background: var(--warn); color: #1a1408; }
.game-btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid #333;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 16px;
}

.game-status {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  min-height: 1.4em;
}
.game-disclaimer { margin-top: 10px; margin-bottom: 0; font-size: 13px; }

@media (max-width: 760px) {
  .game-hub { grid-template-columns: 1fr; }
  .game-hud { grid-template-columns: repeat(2, 1fr); }
  .game-actions { grid-template-columns: 1fr 1fr; }
  .game-btn.ghost { grid-column: 1 / -1; }
  .game-btn { min-height: 64px; font-size: 18px; }
}

/* --- Merch mockup gallery --- */
.merch-gallery { margin: 8px 0 28px; }
.merch-heading {
  font-size: 22px;
  letter-spacing: -.02em;
  margin-bottom: 6px;
}
.merch-sub { margin-bottom: 16px; }
.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.merch-card {
  margin: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.merch-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  background: #0c0c0c;
}
.store-how {
  max-width: 62ch;
  margin: 8px 0 36px;
}
.store-how h2 {
  font-size: 20px;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
.store-how p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
.merch-card figcaption {
  display: grid;
  gap: 2px;
  padding: 12px 14px 14px;
}
.merch-card figcaption strong { font-size: 15px; }
.merch-card figcaption span { color: var(--muted); font-size: 13px; }
@media (max-width: 760px) {
  .merch-grid { grid-template-columns: 1fr; }
}


/* Homepage explore path */
.path-strip {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.path-card {
  display: grid;
  gap: 6px;
  padding: 18px 16px;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: border-color .15s ease, transform .15s ease;
}
.path-card:hover {
  border-color: #3a3a3a;
  transform: translateY(-1px);
}
.path-card strong {
  font-size: 15px;
  letter-spacing: -.01em;
}
.path-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}
.grid { scroll-margin-top: 72px; }
@media (max-width: 820px) {
  .path-strip { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .path-strip { grid-template-columns: 1fr; }
}


/* Tek launch verifier */
.tek-verify h2 { font-size: 18px; margin-bottom: 14px; }
.tek-verify-label {
  display: block;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 8px;
}
.tek-verify-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
}
.tek-verify-row input {
  flex: 1 1 240px;
  min-width: 0;
  background: #0c0c0c;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 14px;
}
.tek-verify-row input:focus {
  outline: none;
  border-color: var(--mint);
  box-shadow: 0 0 0 1px rgba(125, 206, 154, .35);
}
.tek-verify-row .btn {
  border: none;
  cursor: pointer;
  font: inherit;
}
.tek-verify-result {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #0c0c0c;
}
.tek-verify-result.is-ok {
  border-color: #1e2a20;
  background: linear-gradient(180deg, #101510, #0c0c0c);
}
.tek-verify-result.is-bad {
  border-color: #3a3322;
  background: linear-gradient(180deg, #15120c, #0c0c0c);
}
.tek-verify-badge {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}
.tek-verify-result.is-ok .tek-verify-badge { color: var(--mint); }
.tek-verify-result.is-bad .tek-verify-badge { color: var(--warn); }
.tek-verify-body p { color: var(--muted); line-height: 1.55; margin-bottom: 10px; }
.tek-verify-body .mono {
  color: var(--ink);
  word-break: break-all;
  font-size: 13px;
}
.tek-verify-body .actions { margin-top: 4px; }
.tek-registry-status .steps { color: var(--muted); }


/* Tek proof board */
.tek-board { margin-top: 40px; }
.tek-board-head h2 { font-size: 22px; margin-bottom: 6px; }
.tek-board-head p { color: var(--muted); margin-bottom: 16px; }
.tek-board-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.tek-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  display: grid;
  gap: 12px;
  align-content: start;
}
.tek-card.is-live { border-color: #1e2a20; }
.tek-card.is-building { border-color: #3a3322; }
.tek-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.tek-card h3 { font-size: 16px; margin: 0; }
.tek-card p { color: var(--muted); line-height: 1.55; font-size: 14px; margin: 0; }
.tek-card .btn { justify-self: start; }
.tek-card-note {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.tek-wired { margin-top: 28px; }
.tek-wired h2 { font-size: 18px; margin-bottom: 12px; }
#verifier { scroll-margin-top: 72px; margin-top: 28px; }
@media (max-width: 720px) {
  .tek-board-grid { grid-template-columns: 1fr; }
}


/* Tek draws / hold */
.tek-select {
  flex: 1 1 240px;
  min-width: 0;
  background: #0c0c0c;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  font-size: 14px;
}
.tek-ladder {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tek-ladder span {
  background: #0c0c0c;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  color: var(--muted);
}
.tek-ladder strong { color: var(--mint); }
.tek-draw-card .steps { margin-bottom: 0; }


/* --- $FIGH launch-week giveaway alert --- */
.launch-alert {
  margin: 0 0 18px;
  padding: 18px 18px 16px;
  border-radius: 16px;
  border: 1px solid rgba(232, 192, 122, 0.55);
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(232, 192, 122, 0.22), transparent 55%),
    linear-gradient(180deg, #1a150c, #100e0a);
  box-shadow: 0 0 0 1px rgba(232, 192, 122, 0.08), 0 12px 40px rgba(0, 0, 0, 0.35);
}
.launch-alert-badge {
  display: inline-block;
  margin: 0 0 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1a1408;
  background: var(--warn, #e8c07a);
}
.launch-alert-title {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.launch-alert-prize {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}
.launch-alert-window {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.launch-rules {
  margin: 0 0 22px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}
.launch-rules h3 {
  margin: 0 0 10px;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.launch-rules-list {
  margin: 0 0 12px;
  padding-left: 1.2em;
  display: grid;
  gap: 8px;
  color: var(--ink);
  line-height: 1.45;
}
.giveaway-disclaimer {
  display: block;
  margin: 14px 0 0;
  color: var(--warn, #e8c07a);
  font-size: 13px;
  line-height: 1.5;
}

.launch-rules-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.launch-rules-body {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
}
.launch-rules-ladder {
  margin: 0 0 16px;
  padding-left: 1.2em;
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
}
.launch-rules-ladder li { margin: 0 0 4px; }
.launch-rules h3 + h3,
.launch-rules-list + h3,
.launch-rules-ladder + h3,
.launch-rules-body + h3 {
  margin-top: 16px;
}



/* --- Dip Hunter rails --- */
.dip-rails-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  padding: 12px 14px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.dip-rails-bar--game {
  margin: 0 0 16px;
  flex-direction: column;
  align-items: stretch;
}
.dip-rails-panel .dip-rails-bar {
  background: transparent;
  border: none;
  padding: 0;
}
.dip-rails-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--mint);
}
.dip-rails-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 3px rgba(125,206,154,.18);
}
.dip-rails-auth {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.dip-rails-bar--game .dip-rails-auth {
  margin-left: 0;
}
.dip-rails-handle {
  font-weight: 700;
  color: var(--ink);
  font-size: 14px;
}
.dip-rails-game-msg {
  margin: 0;
  width: 100%;
  font-size: 13px;
}
.dip-rails-bar .btn {
  padding: 8px 14px;
  font-size: 13px;
  min-height: 0;
}
.dip-rails-bar .btn:disabled {
  opacity: .4;
  cursor: not-allowed;
}

.dip-lb-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.dip-lb-refresh {
  padding: 6px 12px !important;
  font-size: 12px !important;
}
.dip-lb-wrap {
  margin-top: 12px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.dip-lb-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.dip-lb-table th,
.dip-lb-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.dip-lb-table th {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  background: rgba(255,255,255,.02);
}
.dip-lb-table tr:last-child td { border-bottom: none; }
.dip-lb-handle { color: var(--mint); font-weight: 700; }
.dip-lb-score {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}
.dip-lb-empty {
  color: var(--muted);
  text-align: center !important;
  padding: 20px 12px !important;
}

@media (max-width: 760px) {
  .dip-rails-auth { margin-left: 0; width: 100%; }
  .dip-rails-bar .btn { flex: 1 1 auto; justify-content: center; }
}

/* --- Fee prize pool meter --- */
.prize-pool-section { margin-bottom: 8px; }
.prize-pool-card {
  padding: 18px 18px 16px;
  border-radius: 16px;
  border: 1px solid rgba(125, 206, 154, 0.35);
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(125, 206, 154, 0.14), transparent 55%),
    linear-gradient(180deg, #101612, #0c0e0c);
}
.prize-pool-card.is-tbd { border-color: var(--line); }
.prize-pool-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 12px;
  margin-bottom: 10px;
}
.prize-pool-label {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.prize-pool-amount {
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.1;
}
.prize-pool-hint { font-size: 14px; font-weight: 600; color: var(--muted); }
.prize-pool-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  overflow: hidden;
  margin-bottom: 12px;
}
.prize-pool-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #3d8f5f, var(--mint));
  min-width: 0;
  transition: width 0.4s ease;
}
.prize-pool-phase,
.prize-pool-note,
.prize-pool-buyback {
  margin: 0 0 6px;
}
.prize-pool-buyback { margin-bottom: 0; }
.prize-pool-compact {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--panel);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease;
}
.prize-pool-compact:hover { border-color: rgba(125, 206, 154, 0.45); }
.prize-pool-compact-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.prize-pool-compact-amount {
  font-size: 22px;
  color: var(--mint);
}
.prize-pool-compact-note { font-size: 13px; color: var(--muted); }

/* --- Ship-next poll --- */
.ship-next-section { margin-top: 28px; }
.poll-card {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--panel);
}
.poll-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px 16px;
  margin-bottom: 16px;
}
.poll-head h2 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.poll-auth {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.poll-handle {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.poll-options {
  display: grid;
  gap: 10px;
}
.poll-option {
  display: grid;
  gap: 8px;
  width: 100%;
  text-align: left;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: inherit;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.poll-option:hover { border-color: rgba(125, 206, 154, 0.4); }
.poll-option.is-selected {
  border-color: rgba(125, 206, 154, 0.65);
  background: rgba(125, 206, 154, 0.08);
}
.poll-option:disabled { opacity: 0.55; cursor: wait; }
.poll-option-top {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
}
.poll-option-top strong {
  font-size: 16px;
  color: var(--mint);
}
.poll-count {
  margin-left: auto;
  font-size: 13px;
  color: var(--muted);
}
.poll-bar {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.poll-bar-fill {
  display: block;
  height: 100%;
  background: var(--mint);
  border-radius: 999px;
}
.poll-meta { margin: 12px 0 0; }
.poll-suggest { margin: 8px 0 0; }
.poll-msg { margin: 8px 0 0; }

/* Buyback public log placeholder */
.buyback-log {
  margin-top: 10px;
  padding: 14px;
  border-radius: 12px;
  border: 1px dashed var(--line);
  background: rgba(255, 255, 255, 0.02);
}
.buyback-log-empty {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Top Secret Tek card — classified vibe */
.token-card[href*="top-secret"] {
  border-color: #2a1a1a;
  background: linear-gradient(160deg, #121010 0%, var(--panel) 55%);
}
.token-card[href*="top-secret"]:hover {
  border-color: #5a2a2a;
  box-shadow: 0 8px 24px rgba(80, 20, 20, .25);
}
.token-card[href*="top-secret"] .token-card-emoji {
  border-color: #3a2222;
  background: #0a0808;
}
.token-card[href*="top-secret"] .token-card-ticker::after {
  content: " CLASSIFIED";
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  color: #c44;
  margin-left: 8px;
  vertical-align: middle;
}

/* Narrative Pulse */
.np-panel .np-status {
  margin-top: 12px;
  min-height: 1.2em;
}
.np-result {
  margin-top: 16px;
  padding: 18px 18px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #0c0c0c;
}
.np-result.is-ok {
  border-color: #1e2a20;
  background: linear-gradient(180deg, #101510, #0c0c0c);
}
.np-result.is-bad {
  border-color: #3a3322;
  background: linear-gradient(180deg, #15120c, #0c0c0c);
}
.np-card-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px 16px;
  margin-bottom: 16px;
}
.np-token-name {
  margin: 0 0 4px;
  font-size: 18px;
  color: var(--ink);
}
.np-ticker {
  color: var(--mint);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.np-mint {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}
.np-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}
.np-source,
.np-meta-chip {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}
.np-source.is-x {
  border-color: #1e2a20;
  color: var(--mint);
}
.np-source.is-onchain {
  border-color: #3a3322;
  color: var(--warn);
}
.np-meters {
  display: grid;
  gap: 14px;
  margin-bottom: 16px;
}
.np-meter-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}
.np-meter-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.np-meter-dir {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.np-meter.is-up .np-meter-dir { color: var(--mint); }
.np-meter.is-down .np-meter-dir { color: var(--warn); }
.np-meter-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  overflow: hidden;
}
.np-meter-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #3d5570, #7a9bb8);
  min-width: 0;
  transition: width 0.35s ease;
}
.np-meter.is-up .np-meter-fill {
  background: linear-gradient(90deg, #3d8f5f, var(--mint));
}
.np-meter.is-down .np-meter-fill {
  background: linear-gradient(90deg, #8a6a2a, var(--warn));
}
.np-meter-detail {
  margin: 6px 0 0;
  font-size: 12px;
}
.np-reading {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #1e2a20;
  background: rgba(125, 206, 154, 0.06);
  margin-bottom: 14px;
}
.np-reading-label {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint);
}
.np-reading-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}
.np-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.np-fine {
  margin: 0;
  font-size: 12px;
}


/* Safety Tek */
.safety-panel .safety-status {
  margin-top: 12px;
  min-height: 1.2em;
}
.safety-result {
  margin-top: 16px;
  padding: 18px 18px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #0c0c0c;
}
.safety-result.is-ok {
  border-color: #1e2a20;
  background: linear-gradient(180deg, #101510, #0c0c0c);
}
.safety-result.is-bad {
  border-color: #3a3322;
  background: linear-gradient(180deg, #15120c, #0c0c0c);
}
.safety-result.is-caution {
  border-color: #3a3322;
}
.safety-result.is-risky,
.safety-result.is-danger {
  border-color: #4a2a2a;
  background: linear-gradient(180deg, #151010, #0c0c0c);
}
.safety-card-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px 24px;
  margin-bottom: 18px;
}
.safety-score-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.safety-creator-card {
  flex: 1 1 360px;
  min-width: 300px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,0.025);
}
.safety-creator-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.safety-creator-ring {
  width: 70px;
  height: 70px;
}
.safety-creator-ring .safety-ring-inner {
  width: 54px;
  height: 54px;
}
.safety-creator-ring .safety-score-num {
  font-size: 20px;
}
.safety-creator-title,
.safety-creator-label,
.safety-creator-summary {
  margin: 0;
}
.safety-creator-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.safety-creator-label {
  margin-top: 2px;
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
}
.safety-creator-summary {
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.35;
  color: var(--muted);
}
.safety-creator-checks {
  display: grid;
  gap: 5px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  font-size: 11px;
  color: var(--muted);
}
.safety-creator-row {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.35;
}
.safety-creator-row strong {
  color: var(--ink);
}
.safety-creator-row .safety-pill {
  flex: 0 0 auto;
  padding: 2px 5px;
  font-size: 8px;
}
.safety-ring {
  --score-deg: 0deg;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: conic-gradient(var(--mint) var(--score-deg), rgba(255,255,255,0.08) 0);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.safety-result.is-caution .safety-ring {
  background: conic-gradient(var(--warn) var(--score-deg), rgba(255,255,255,0.08) 0);
}
.safety-result.is-risky .safety-ring,
.safety-result.is-danger .safety-ring {
  background: conic-gradient(#e07a7a var(--score-deg), rgba(255,255,255,0.08) 0);
}
.safety-ring-inner {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #0c0c0c;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
}
.safety-score-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
}
.safety-score-max {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.safety-label-block {
  min-width: 140px;
}
.safety-letter {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  color: var(--mint);
  line-height: 1;
}
.safety-result.is-caution .safety-letter { color: var(--warn); }
.safety-result.is-risky .safety-letter,
.safety-result.is-danger .safety-letter { color: #e07a7a; }
.safety-label-name {
  margin: 4px 0 6px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}
.safety-label-summary {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
  max-width: 280px;
}
.safety-token-meta {
  text-align: right;
}
.safety-token-name {
  margin: 0 0 4px;
  font-size: 16px;
  color: var(--ink);
}
.safety-ticker {
  color: var(--mint);
  font-weight: 700;
}
.safety-mint {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--muted);
}
.safety-src-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}
.safety-src {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
}
.safety-src.is-ok {
  border-color: #1e2a20;
  color: var(--mint);
}
.safety-src.is-miss {
  border-color: #3a3322;
  color: var(--warn);
}
.safety-checks-head {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.safety-table-wrap {
  overflow-x: auto;
  margin-bottom: 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.safety-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.safety-table th {
  text-align: left;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}
.safety-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  color: var(--ink);
}
.safety-table tr:last-child td { border-bottom: none; }
.safety-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.safety-row.is-pass .safety-pill {
  color: var(--mint);
  border-color: #1e2a20;
  background: rgba(125, 206, 154, 0.08);
}
.safety-row.is-fail .safety-pill {
  color: #e07a7a;
  border-color: #4a2a2a;
  background: rgba(224, 122, 122, 0.08);
}
.safety-row.is-caution .safety-pill {
  color: var(--warn);
  border-color: #3a3322;
  background: rgba(232, 192, 122, 0.08);
}
.safety-row.is-unknown .safety-pill {
  color: var(--muted);
}
.safety-row-detail {
  color: var(--muted) !important;
  max-width: 360px;
}
.safety-row-source {
  color: var(--muted) !important;
  white-space: nowrap;
  font-size: 12px;
}
.safety-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.safety-fine {
  margin: 0;
  font-size: 12px;
}
@media (max-width: 640px) {
  .safety-token-meta { text-align: left; }
  .safety-src-row { justify-content: flex-start; }
  .safety-row-detail { max-width: 200px; }
}
