/* No Limit Holdings crypto research — NLH house theme (nlh.xyz): dark + brand gold */
:root {
  --bg: #080808;
  --surface: #151515;
  --surface-2: #1b1b1b;
  --accent: #EFB500;
  --accent-2: #F7C01B;
  --on-accent: #080808;
  --text: #FFFFFF;
  --text-dim: rgba(255, 255, 255, 0.5);
  --text-faint: rgba(255, 255, 255, 0.35);
  --muted: #999999;
  --border: rgba(247, 192, 27, 0.2);
  --border-soft: rgba(255, 255, 255, 0.08);
  --syrup: #e8a83c;
  --syrup-dim: rgba(232, 168, 60, 0.35);
  --hype: #3ecfc4;
  --hype-dim: rgba(62, 207, 196, 0.35);
  --pos: #4cc38a;
  --neg: #e0606e;
  --mono: "Fragment Mono", ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ---------- Header / hero ---------- */
.topbar {
  border-bottom: 1px solid var(--border-soft);
  background: var(--surface);
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
  flex-wrap: wrap;
}
.brand {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.brand b { color: #fbf3d9; font-weight: 500; }
.nfa-badge {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border);
  background: rgba(239, 181, 0, 0.06);
  padding: 5px 10px;
  border-radius: 0;
  white-space: nowrap;
}

.hero { padding: 52px 0 8px; }
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
}
.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4.6vw, 42px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.12;
}
.hero h1 .t-syrup { color: var(--syrup); }
.hero h1 .t-hype { color: var(--hype); }
.hero .subtitle {
  margin: 0 0 8px;
  font-size: 15px;
  color: var(--text-dim);
}
.hero .timestamp {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

/* ---------- Verdict cards ---------- */
.verdict-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0 14px;
}
.verdict-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  position: relative;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.verdict-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  border-radius: 10px 0 0 10px;
}
.verdict-card.syrup::before { background: var(--syrup); }
.verdict-card.hype::before { background: var(--hype); }
/* Fully-clickable landing cards: obvious hover + focus states */
.verdict-card:hover {
  border-color: var(--accent-2);
  transform: translateY(-2px);
}
.card-link {
  display: block;
  padding: 22px 24px;
  color: inherit;
  text-decoration: none;
  border-radius: 10px;
}
.card-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.verdict-card .vc-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.verdict-card h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}
.verdict-card.syrup h2 span { color: var(--syrup); }
.verdict-card.hype h2 span { color: var(--hype); }
.verdict-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 0;
  white-space: nowrap;
}
.verdict-card.syrup .verdict-tag { color: var(--syrup); border: 1px solid var(--syrup-dim); background: rgba(232, 168, 60, 0.07); }
.verdict-card.hype .verdict-tag { color: var(--hype); border: 1px solid var(--hype-dim); background: rgba(62, 207, 196, 0.07); }
.verdict-card p { margin: 0; color: var(--text-dim); font-size: 14.5px; }
/* Padding for non-linked verdict cards (research pages) */
.verdict-card > .vc-head, .verdict-card > p { margin-left: 22px; margin-right: 22px; }
.verdict-card > .vc-head { padding-top: 20px; }
.verdict-card > p:last-child { padding-bottom: 20px; }

/* Landing page card CTA (inside the full-card link) */
.card-cta { margin-top: 16px !important; }
.cta-text {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  display: inline-block;
  transition: transform 0.15s ease;
}
.verdict-card.syrup .cta-text { color: var(--syrup); }
.verdict-card.hype .cta-text { color: var(--hype); }
.verdict-card:hover .cta-text, .card-link:focus-visible .cta-text {
  transform: translateX(4px);
  text-decoration: underline;
}

.preference {
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--text-dim);
  background: var(--surface);
  border-radius: 0;
  padding: 14px 18px;
  margin: 4px 0 8px;
  font-size: 14.5px;
  color: var(--text);
}
.preference b { color: var(--text); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border-soft);
  margin-top: 30px;
}
.nav .wrap {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding-top: 0;
  padding-bottom: 0;
  scrollbar-width: none;
}
.nav .wrap::-webkit-scrollbar { display: none; }
.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  padding: 10px 13px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.nav a:hover, .nav a:focus-visible { color: var(--accent); border-bottom-color: var(--accent); outline: none; }

/* ---------- Sections ---------- */
section { padding: 44px 0 8px; }
.section-head { margin-bottom: 20px; }
.section-kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.section-kicker .k-syrup { color: var(--syrup); }
.section-kicker .k-hype { color: var(--hype); }
h2.section-title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}
h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 28px 0 8px;
}
p { margin: 0 0 14px; }
p.lead { color: var(--text); }
.dim { color: var(--text-dim); }
strong { color: var(--text); font-weight: 600; }
.syrup-c { color: var(--syrup); }
.hype-c { color: var(--hype); }
.pos { color: var(--pos); }
.neg { color: var(--neg); }
.mono { font-family: var(--mono); }

ul.clean { margin: 0 0 16px; padding-left: 20px; }
ul.clean li { margin-bottom: 7px; }
ul.clean li::marker { color: var(--text-faint); }

hr.rule { border: 0; border-top: 1px solid var(--border-soft); margin: 40px 0 0; }

/* ---------- Tables ---------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--border); border-radius: 10px; background: var(--surface); }
table { border-collapse: collapse; width: 100%; min-width: 560px; font-size: 14px; }
th, td { padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--border-soft); vertical-align: top; }
thead th {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
  background: var(--surface-2);
  white-space: nowrap;
}
tbody tr:last-child td, tbody tr:last-child th { border-bottom: none; }
tbody th { font-weight: 500; color: var(--text-dim); white-space: nowrap; }
td.num, th.num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
td .src {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-faint);
  border: 1px solid var(--border-soft);
  border-radius: 0;
  padding: 1px 5px;
  margin-left: 6px;
  vertical-align: 1px;
}
td .sub { display: block; font-size: 12px; color: var(--text-faint); margin-top: 2px; }
th.col-syrup { color: var(--syrup); }
th.col-hype { color: var(--hype); }
.col-note { font-size: 12px; color: var(--text-faint); font-weight: 400; letter-spacing: 0; text-transform: none; display: block; }

/* ---------- Charts ---------- */
.chart-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 20px 12px;
  margin-bottom: 20px;
}
.chart-card h3 { margin: 0 0 2px; font-size: 15.5px; }
.chart-card .chart-sub { font-size: 12.5px; color: var(--text-dim); margin: 0 0 10px; }
.chart-legend {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--text-dim);
  margin: 0 0 8px;
}
.chart-legend .swatch {
  display: inline-block;
  width: 14px; height: 3px;
  border-radius: 0;
  margin-right: 6px;
  vertical-align: 3px;
}
.chart-svg { display: block; width: 100%; height: auto; }
.chart-svg text { font-family: var(--mono); fill: var(--text-faint); }
.chart-svg .grid { stroke: rgba(255, 255, 255, 0.08); stroke-width: 1; }
.chart-svg .axis-label { font-size: 10px; }
.chart-svg .hover-line { stroke: var(--text-faint); stroke-width: 1; stroke-dasharray: 3 3; }
.chart-svg .hover-dot { stroke: var(--bg); stroke-width: 1.5; }
.chart-tip {
  position: absolute;
  pointer-events: none;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 8px 11px;
  font-family: var(--mono);
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--text);
  white-space: nowrap;
  z-index: 30;
  display: none;
}
.chart-tip .tip-date { color: var(--text-faint); margin-bottom: 2px; }
.chart-host { position: relative; }

/* ---------- Two-col text grids ---------- */
.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mini-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 22px;
}
.mini-panel h3 { margin-top: 0; font-size: 15px; }
.mini-panel ul { margin-bottom: 0; }
.mini-panel .mp-kicker {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.mp-up { color: var(--pos); }
.mp-down { color: var(--neg); }

/* Timeline */
.timeline { list-style: none; margin: 0 0 16px; padding: 0; }
.timeline li {
  position: relative;
  padding: 0 0 14px 22px;
  border-left: 1px solid var(--border);
}
.timeline li::before {
  content: "";
  position: absolute;
  left: -4px; top: 7px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.timeline li:last-child { padding-bottom: 0; }
.timeline .t-date {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--text-faint);
  letter-spacing: 0.04em;
  display: block;
}

/* Stat strip */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 20px 0;
}
.stat {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 14px 16px;
}
.stat .s-label { font-size: 11px; color: var(--text-faint); font-family: var(--mono); letter-spacing: 0.08em; text-transform: uppercase; }
.stat .s-value { font-size: 19px; font-weight: 600; color: var(--text); font-variant-numeric: tabular-nums; margin-top: 2px; }
.stat .s-note { font-size: 11.5px; color: var(--text-dim); margin-top: 2px; }

/* Callout */
.callout {
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  background: var(--surface);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 18px 0;
  font-size: 14.5px;
}
.callout.stance-syrup { border-left-color: var(--syrup); }
.callout.stance-hype { border-left-color: var(--hype); }
.callout b, .callout strong { color: var(--text); }

/* ---------- Sources ---------- */
.src-group h3 { margin-top: 24px; }
.src-group h3 .tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  border: 1px solid var(--border-soft);
  padding: 2px 7px;
  border-radius: 0;
  margin-left: 8px;
  vertical-align: 2px;
}
.src-list { list-style: none; margin: 0 0 14px; padding: 0; }
.src-list li {
  padding: 7px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 13.5px;
  color: var(--text-dim);
}
.src-list li:last-child { border-bottom: none; }
.src-list a {
  color: var(--accent);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 12.5px;
  word-break: break-all;
}
.src-list a:hover, .src-list a:focus-visible { text-decoration: underline; outline: none; }
.src-group.syrup-src .src-list a { color: var(--syrup); }

/* ---------- Footer ---------- */
footer {
  margin-top: 56px;
  border-top: 1px solid var(--border-soft);
  background: var(--surface);
}
footer .wrap {
  padding-top: 28px;
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
footer .f-line { font-size: 13px; color: var(--text-dim); }
footer .f-nfa { color: var(--accent); font-weight: 600; }
footer .f-mono { font-family: var(--mono); font-size: 12px; color: var(--text-faint); }
footer .f-nav { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 10px; }
footer .f-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
}
footer .f-nav a:hover, footer .f-nav a:focus-visible { text-decoration: underline; outline: none; }

/* Generic link contrast guard */
a { color: var(--accent); }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  body { font-size: 15px; }
  .wrap { padding: 0 18px; }
  .verdict-grid, .cols-2 { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .hero { padding-top: 36px; }
  section { padding-top: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .verdict-card, .cta-text { transition: none; }
  .verdict-card:hover { transform: none; }
}
