/* Nexopera content pages: glossary + blog. Loaded only on those pages. */

.breadcrumb {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--text-faint);
  letter-spacing: 0.02em;
  padding: 26px 0 0;
}
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--up); }
.breadcrumb .bc-sep { margin: 0 9px; opacity: 0.5; }
.breadcrumb span[aria-current] { color: var(--text); }

.content-head { padding: 30px 0 8px; max-width: 64ch; }
.content-head .eyebrow { margin-bottom: 14px; }
.content-head h1 { font-size: clamp(30px, 5vw, 48px); }
.content-head p { color: var(--text-dim); font-size: 18px; }

/* ---------- Glossary hub ---------- */
.glossary-toc {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 24px 0 8px; padding-block: 18px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.glossary-toc a {
  font-family: var(--font-mono); font-size: 12.5px;
  color: var(--text-dim); border: 1px solid var(--line);
  padding: 7px 13px; border-radius: 999px; transition: all .18s ease;
}
.glossary-toc a:hover { color: var(--up); border-color: var(--up-line); }

.glossary-cat { padding-top: 48px; }
.glossary-cat h2 {
  font-size: 22px; display: flex; align-items: center; gap: 12px; margin-bottom: 22px;
}
.glossary-cat h2::before {
  content: ""; width: 9px; height: 9px; border-radius: 2px;
  background: var(--up); box-shadow: 0 0 12px var(--up);
}
.term-grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .term-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .term-grid { grid-template-columns: repeat(3, 1fr); } }
.term-card {
  display: block; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; background: var(--surface);
  transition: border-color .2s ease, transform .2s ease;
}
.term-card:hover { border-color: var(--up-line); transform: translateY(-3px); }
.term-card h3 { font-size: 16.5px; margin-bottom: 5px; }
.term-card p { color: var(--text-dim); font-size: 13.5px; margin: 0; line-height: 1.5; }

/* ---------- Glossary term page ---------- */
.term-page { max-width: 720px; padding-bottom: 40px; }
.term-cat {
  display: inline-block; font-family: var(--font-mono); font-size: 11.5px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--up);
  background: var(--up-soft); border: 1px solid var(--up-line);
  padding: 5px 11px; border-radius: 7px; margin-bottom: 18px;
}
.term-page h1 { font-size: clamp(30px, 5vw, 46px); margin-bottom: 18px; }
.term-lead { font-size: 20px; color: var(--text); line-height: 1.55; margin-bottom: 22px; }
.term-body p { color: var(--text-dim); font-size: 17px; }
.term-body a { color: var(--up); text-decoration: underline; text-underline-offset: 2px; }
.related { margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--line); }
.related h4 {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-faint); margin: 0 0 14px;
}
.related .chips { display: flex; flex-wrap: wrap; gap: 10px; }
.related .chips a {
  font-size: 14px; color: var(--text); border: 1px solid var(--line);
  padding: 8px 14px; border-radius: 999px; transition: all .18s ease;
}
.related .chips a:hover { border-color: var(--up-line); color: var(--up); }

/* ---------- Blog ---------- */
.post-list { display: grid; gap: 18px; grid-template-columns: 1fr; padding-top: 36px; }
@media (min-width: 760px) { .post-list { grid-template-columns: repeat(2, 1fr); } }
.post-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; background: linear-gradient(180deg, var(--surface), rgba(14,21,33,.4));
  transition: border-color .2s ease, transform .2s ease;
}
.post-card:hover { border-color: var(--up-line); transform: translateY(-3px); }
.post-meta { font-family: var(--font-mono); font-size: 12px; color: var(--text-faint); letter-spacing: .04em; margin-bottom: 12px; }
.post-card h2 { font-size: 21px; margin-bottom: 10px; }
.post-card p { color: var(--text-dim); font-size: 15px; margin: 0 0 16px; flex: 1; }
.post-card .more { color: var(--up); font-weight: 600; font-size: 14.5px; }

.article { max-width: 720px; padding-bottom: 48px; }
.article .post-meta { padding-top: 8px; }
.article h1 { font-size: clamp(30px, 5vw, 46px); margin: 8px 0 10px; }
.article .dek { font-size: 20px; color: var(--text-dim); line-height: 1.55; margin-bottom: 30px; }
.article-body p { color: var(--text-dim); font-size: 17.5px; line-height: 1.75; }
.article-body h2 { font-size: 26px; margin: 40px 0 14px; }
.article-body ul { color: var(--text-dim); font-size: 17px; padding-left: 22px; }
.article-body li { margin-bottom: 8px; }
.article-body a { color: var(--up); text-decoration: underline; text-underline-offset: 2px; }
.article-note {
  margin-top: 40px; padding: 20px 22px; border-radius: var(--radius);
  border: 1px solid var(--line); background: var(--bg-soft);
  color: var(--text-faint); font-size: 14.5px;
}

/* ---------- Programmatic landing pages (coins / exchanges) ---------- */
.lp-cta {
  margin-top: 36px; padding: 26px; border-radius: var(--radius);
  border: 1px solid var(--up-line); background: var(--up-soft);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
}
.lp-cta p { margin: 0; color: var(--text); font-size: 16px; max-width: 46ch; }
.lp-symbol {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 13px; font-weight: 500;
  color: var(--up); background: var(--up-soft); border: 1px solid var(--up-line);
  padding: 5px 11px; border-radius: 7px; margin-bottom: 18px; letter-spacing: 0.06em;
}

/* ---------- Comparison pages ---------- */
.cmp-table { width: 100%; border-collapse: collapse; margin: 28px 0; font-size: 15px; }
.cmp-table th, .cmp-table td {
  text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line);
  vertical-align: top; color: var(--text-dim);
}
.cmp-table thead th {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-faint); border-bottom-color: var(--line);
}
.cmp-table tbody th {
  font-family: var(--font-body); font-weight: 600; color: var(--text); width: 32%;
}
.cmp-table .col-nx { color: var(--text); }
.cmp-disclaimer { color: var(--text-faint); font-size: 13.5px; margin-top: 8px; }
