:root {
  --bg: #050716;
  --surface: #111827;
  --surface-soft: #0b1020;
  --accent: #06b6d4;
  --accent-soft: rgba(6,182,212,0.16);
  --accent2: #22c55e;
  --danger: #f97373;
  --border: #1f2937;
  --text: #f6f1e7;
  --muted: #9f9bb5;
  --positive: #4ade80;
  --negative: #fb7185;

  /* новый цвет для Hist. Fund / APR · N days */
  --hist-apr-bg: rgba(250, 204, 21, 0.12);      /* колонки */
  --hist-apr-bg-head: rgba(250, 204, 21, 0.18); /* шапка */
}
* { box-sizing: border-box; }
body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  background: radial-gradient(circle at top, #1f2937 0, #020617 45%, #000 100%);
  color: var(--text);
  min-height: 100vh;
  font-weight: 500;
}

/* NAVBAR */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(5,7,22,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15,23,42,0.9);
}
.site-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.site-nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #f9fafb;
  font-weight: 600;
}
.site-nav-logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 0 0 1px rgba(15,23,42,0.9);
  flex-shrink: 0;
}
.site-nav-logo-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.site-nav-logo-text {
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.98;
}
.site-nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-left: 12px;
}
.site-nav-link {
  font-size: 13px;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: #e5e7eb;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.site-nav-link:hover {
  color: #f9fafb;
  border-color: rgba(148,163,184,0.5);
  background: rgba(15,23,42,0.9);
}
.site-nav-link.is-active {
  color: #0f172a;
  border-color: transparent;
  background: linear-gradient(135deg,#06b6d4,#22c55e);
}

.shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px 32px;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg,#06b6d4,#22c55e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 22px;
  color: #0b1020;
}
.logo-text-main {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.logo-text-sub {
  font-size: 13px;
  color: var(--muted);
}
.pill {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(15,23,42,0.85);
  font-size: 12px;
  color: var(--muted);
}
.pill strong {
  color: var(--accent2);
}