:root {
  --ar-bg: #08090a;
  --ar-panel: #0f1113;
  --ar-panel-2: #131518;
  --ar-border: rgba(244, 240, 232, 0.12);
  --ar-border-soft: rgba(244, 240, 232, 0.07);
  --ar-text: #f4f0e8;
  --ar-muted: #9b9da2;
  --ar-dim: #7b7f86;
  --ar-orange: #ff4d00;
  --ar-orange-deep: #c33b08;
  --ar-serif: "Instrument Serif", Georgia, serif;
  --ar-mono: "Space Mono", ui-monospace, monospace;
  --ar-sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ar-type-label: 10px;
  --ar-type-meta: 12px;
  --ar-type-ui: 13px;
  --ar-type-body: 16px;
  --ar-sidebar: 110px;
  --ar-topbar: 56px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ar-bg);
}

body {
  min-width: 0;
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.023) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.023) 1px, transparent 1px),
    var(--ar-bg);
  background-size: 48px 48px;
  color: var(--ar-text);
  font-family: var(--ar-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: var(--ar-orange);
  color: #070707;
}

.research-shell {
  min-height: 100vh;
}

.research-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 30;
  width: var(--ar-sidebar);
  border-right: 1px solid var(--ar-border);
  background: rgba(8, 9, 10, 0.96);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.research-sidebar__brand {
  height: var(--ar-topbar);
  border-bottom: 1px solid var(--ar-border);
  display: grid;
  place-items: center;
}

.research-sidebar__brand img {
  width: 24px;
  height: 24px;
}

.research-nav {
  flex: 1;
  width: 100%;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.research-nav a {
  position: relative;
  width: 100%;
  padding: 10px 4px;
  border-radius: 10px;
  color: var(--ar-dim);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: color 150ms ease, background 150ms ease;
}

.research-nav a:hover {
  color: var(--ar-text);
  background: rgba(255, 255, 255, 0.04);
}

.research-nav a[aria-current="page"] {
  color: var(--ar-orange);
  background: rgba(255, 77, 0, 0.1);
}

.research-nav a[aria-current="page"]::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 3px;
  height: 26px;
  border-radius: 0 3px 3px 0;
  background: var(--ar-orange);
  box-shadow: 0 0 12px rgba(255, 77, 0, 0.7), 0 0 4px rgba(255, 77, 0, 0.9);
  transform: translateY(-50%);
}

.research-nav__icon {
  flex: 0 0 auto;
}

.research-nav__label {
  font-family: var(--ar-mono);
  font-size: var(--ar-type-label);
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.research-sidebar__foot {
  padding: 16px 8px 20px;
  border-top: 1px solid var(--ar-border);
  color: var(--ar-dim);
  font-family: var(--ar-mono);
  font-size: var(--ar-type-label);
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}

.research-topbar {
  position: fixed;
  z-index: 25;
  inset: 0 0 auto var(--ar-sidebar);
  height: var(--ar-topbar);
  border-bottom: 1px solid var(--ar-border);
  background: rgba(8, 9, 10, 0.92);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 38px 0 30px;
}

.research-topbar__identity {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
}

.research-topbar__wordmark {
  color: var(--ar-text);
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.research-topbar__wordmark span {
  color: var(--ar-orange);
}

.research-topbar__divider {
  color: var(--ar-dim);
  font-family: var(--ar-serif);
  font-size: 26px;
  font-style: italic;
}

.research-topbar__section {
  font-family: var(--ar-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  white-space: nowrap;
}

.research-topbar__section strong {
  color: var(--ar-orange);
}

.research-topbar__actions {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.research-topbar__actions > .research-button {
  flex: 0 0 auto;
}

.research-button {
  min-height: 38px;
  border: 1px solid var(--ar-border);
  border-radius: 3px;
  background: transparent;
  color: var(--ar-muted);
  cursor: pointer;
  font-family: var(--ar-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0 15px;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 150ms ease, border-color 150ms ease, background 150ms ease;
}

.research-button:hover {
  color: var(--ar-text);
  border-color: rgba(244, 240, 232, 0.26);
  background: rgba(255, 255, 255, 0.025);
}

.research-button--primary {
  border-color: var(--ar-orange);
  background: var(--ar-orange);
  color: #0a0a0a;
}

.research-button--primary:hover {
  border-color: #ff6422;
  background: #ff6422;
  color: #050505;
}

.research-main {
  margin-left: var(--ar-sidebar);
  padding-top: var(--ar-topbar);
}

.research-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ar-muted);
  font-family: var(--ar-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.research-eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--ar-orange);
}

.research-eyebrow strong {
  color: var(--ar-orange);
}

.research-toast {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 24px;
  max-width: 360px;
  border: 1px solid rgba(255, 77, 0, 0.45);
  background: #101214;
  color: var(--ar-text);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.45);
  padding: 13px 16px;
  font-size: 12px;
  line-height: 1.45;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.research-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Library */

.alpha-research-library {
  --ar-sidebar: 110px;
  --ar-topbar: 56px;
}

.alpha-research-library .research-topbar {
  padding: 0 28px;
}

.alpha-research-library .research-sidebar__brand {
  height: var(--ar-topbar);
}

.alpha-research-library .research-sidebar__brand img {
  width: 24px;
  height: 24px;
}

.alpha-research-library .research-nav {
  flex: 1;
  gap: 4px;
  padding: 14px 10px 8px;
}

.alpha-research-library .research-nav a {
  width: 100%;
  min-height: 56px;
  gap: 5px;
  padding: 10px 4px;
  border: 0;
  border-radius: 10px;
}

.alpha-research-library .research-nav a:hover {
  border-color: transparent;
  background: rgba(255, 255, 255, 0.04);
}

.alpha-research-library .research-nav a[aria-current="page"] {
  border-color: transparent;
  background: rgba(255, 77, 0, 0.1);
}

.alpha-research-library .research-nav a[aria-current="page"]::before {
  left: -10px;
  top: 50%;
  bottom: auto;
  width: 3px;
  height: 26px;
  border-radius: 0 3px 3px 0;
  box-shadow: 0 0 12px rgba(255, 77, 0, 0.7), 0 0 4px rgba(255, 77, 0, 0.9);
  transform: translateY(-50%);
}

.research-latest {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 0;
  overflow: hidden;
  color: var(--ar-dim);
  font-family: var(--ar-mono);
  font-size: var(--ar-type-label);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.research-latest span {
  flex: 0 0 auto;
  padding-right: 12px;
  border-right: 1px solid var(--ar-border);
  white-space: nowrap;
}

.research-latest a {
  display: block;
  min-width: 0;
  max-width: min(320px, 28vw);
  overflow: hidden;
  color: var(--ar-orange);
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.research-latest a:hover {
  color: var(--ar-text);
}

.library-page {
  min-height: 100vh;
  padding: calc(var(--ar-topbar) + 24px) 28px 56px 22px;
}

.library-hero {
  padding: 0 10px 13px;
}

.library-hero h1 {
  margin: 0 0 6px;
  font-size: clamp(28px, 2.4vw, 34px);
  font-weight: 720;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.library-hero p {
  max-width: 760px;
  margin: 0 0 10px;
  color: var(--ar-muted);
  font-size: 14px;
  line-height: 1.55;
}

.library-hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ar-muted);
  font-family: var(--ar-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
}

.library-hero__meta strong {
  display: inline;
  color: var(--ar-text);
  font-size: inherit;
}

.library-section {
  min-width: 0;
}

.library-tabs {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid var(--ar-border);
  padding: 0 10px;
}

.library-tab {
  position: relative;
  min-height: 42px;
  border: 0;
  background: transparent;
  color: var(--ar-muted);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  padding: 0;
}

.library-tab:hover,
.library-tab.is-active {
  color: var(--ar-text);
}

.library-tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--ar-orange);
}

.library-controls {
  display: grid;
  grid-template-columns: minmax(270px, 1.45fr) repeat(3, minmax(150px, 0.75fr));
  gap: 8px;
  padding: 16px 0;
}

.library-search,
.library-filter {
  height: 44px;
  border: 1px solid var(--ar-border);
  border-radius: 2px;
  outline: none;
  background: rgba(15, 17, 19, 0.82);
  color: var(--ar-text);
  font-family: var(--ar-sans);
  font-size: var(--ar-type-ui);
}

.library-search {
  padding: 0 14px;
}

.library-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
}

.library-filter > span {
  color: var(--ar-muted);
  white-space: nowrap;
}

.library-select {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--ar-text);
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

.library-search::placeholder {
  color: var(--ar-dim);
}

.library-search:focus,
.library-filter:focus-within {
  border-color: var(--ar-orange);
}

.library-filter-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 36px;
  padding: 0 0 12px;
  color: var(--ar-muted);
  font-family: var(--ar-sans);
  font-size: var(--ar-type-meta);
}

.library-filter-summary p {
  margin: 0;
}

.library-clear {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--ar-border);
  border-radius: 2px;
  background: rgba(15, 17, 19, 0.82);
  color: var(--ar-text);
  font: 600 var(--ar-type-ui) / 1 var(--ar-sans);
  cursor: pointer;
}

.library-clear:hover:not(:disabled),
.library-clear:focus-visible {
  border-color: var(--ar-orange);
  outline: none;
}

.library-clear:disabled {
  color: var(--ar-dim);
  cursor: default;
  opacity: 0.62;
}

.library-table-wrap {
  border: 1px solid var(--ar-border);
  overflow-x: auto;
  background: rgba(10, 12, 14, 0.78);
}

.library-table {
  width: 100%;
  min-width: 1240px;
  border-collapse: collapse;
  table-layout: fixed;
}

.library-table th {
  height: 44px;
  padding: 0 14px;
  border-bottom: 1px solid var(--ar-border);
  color: var(--ar-dim);
  font-family: var(--ar-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.library-table th:nth-child(1) { width: 33%; }
.library-table th:nth-child(2) { width: 10%; }
.library-table th:nth-child(3) { width: 13%; }
.library-table th:nth-child(4) { width: 14%; }
.library-table th:nth-child(5) { width: 13%; }
.library-table th:nth-child(6) { width: 10%; }
.library-table th:nth-child(7) { width: 17%; }

.library-sort {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  padding: 0;
  text-transform: inherit;
}

.library-sort span {
  margin-left: 2px;
  color: var(--ar-orange);
}

.library-row {
  border-bottom: 1px solid var(--ar-border-soft);
  transition: background 140ms ease;
}

.library-row--latest {
  box-shadow: inset 2px 0 0 var(--ar-orange);
}

.library-row:last-child {
  border-bottom: 0;
}

.library-row:hover {
  background: rgba(255, 255, 255, 0.025);
}

.library-row[hidden] {
  display: none;
}

.library-row td {
  height: 54px;
  padding: 9px 14px;
  color: var(--ar-muted);
  font-family: var(--ar-sans);
  font-size: var(--ar-type-meta);
  line-height: 1.4;
  vertical-align: middle;
}

.library-report-link {
  border: 0;
  background: transparent;
  color: var(--ar-text);
  cursor: pointer;
  display: inline;
  font-family: var(--ar-sans);
  font-size: var(--ar-type-ui);
  font-weight: 600;
  line-height: 1.4;
  padding: 0;
  text-align: left;
  text-decoration: none;
}

.library-report-link:hover {
  color: var(--ar-orange);
}

.library-report-title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  min-width: 0;
}

.library-report-title .library-report-link {
  min-width: 0;
}

.library-latest-badge {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 22px;
  margin: 0;
  border: 1px solid rgba(255, 77, 0, 0.45);
  color: var(--ar-orange);
  font-family: var(--ar-mono);
  font-size: var(--ar-type-label);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  padding: 0 7px;
  text-transform: uppercase;
  white-space: nowrap;
}

.library-asset {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ar-text);
}

.library-asset__logo,
.library-asset__logos img {
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  display: block;
  object-fit: contain;
}

.library-asset__logos {
  display: inline-flex;
  align-items: center;
  width: 64px;
}

.library-asset__logos img {
  flex: 0 0 26px;
  position: relative;
}

.library-asset__logos img + img {
  margin-left: -7px;
}

.library-asset__logos img:nth-child(1) {
  z-index: 3;
}

.library-asset__logos img:nth-child(2) {
  z-index: 2;
}

.library-asset__logos img:nth-child(3) {
  z-index: 1;
}

.library-asset__logos--two {
  width: 45px;
}

.research-pill {
  display: inline-block;
  border: 1px solid var(--ar-border);
  border-radius: 2px;
  color: var(--ar-muted);
  font-family: var(--ar-mono);
  font-size: var(--ar-type-label);
  font-weight: 700;
  letter-spacing: 0.035em;
  margin: 2px 4px 2px 0;
  padding: 4px 7px;
  text-transform: uppercase;
  white-space: nowrap;
}

.research-pill--live {
  border-color: rgba(255, 77, 0, 0.5);
  background: rgba(255, 77, 0, 0.08);
  color: var(--ar-orange);
}

.library-empty {
  display: none;
  border: 1px solid var(--ar-border);
  border-top: 0;
  color: var(--ar-muted);
  font-size: var(--ar-type-meta);
  padding: 24px;
  text-align: center;
}

.library-empty.is-visible {
  display: block;
}

.library-disclosure {
  margin: 14px 0 0;
  color: var(--ar-dim);
  font-family: var(--ar-mono);
  font-size: 11px;
  line-height: 1.55;
}

.library-analysts {
  padding: 34px 10px;
}

.library-analysts__intro {
  max-width: 660px;
}

.library-analysts__intro > span {
  color: var(--ar-orange);
  font-family: var(--ar-mono);
  font-size: var(--ar-type-label);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.library-analysts__intro h2 {
  margin: 8px 0;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.library-analysts__intro p {
  margin: 0;
  color: var(--ar-muted);
  font-size: 14px;
  line-height: 1.6;
}

.library-analyst-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  border: 1px solid var(--ar-border);
  background: var(--ar-border);
}

.library-analyst-grid article {
  min-height: 150px;
  background: var(--ar-panel);
  padding: 22px;
}

.library-analyst-grid strong,
.library-analyst-grid span {
  display: block;
}

.library-analyst-grid strong {
  margin-bottom: 10px;
  font-size: 15px;
}

.library-analyst-grid span {
  color: var(--ar-muted);
  font-size: 13px;
  line-height: 1.55;
}

/* Report */

.report-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 292px;
  min-height: calc(100vh - var(--ar-topbar));
}

.report-meta {
  position: sticky;
  top: var(--ar-topbar);
  align-self: start;
  height: calc(100vh - var(--ar-topbar));
  border-right: 1px solid var(--ar-border);
  padding: 40px 28px 42px 30px;
  overflow-y: auto;
}

.report-meta__block {
  padding: 0 0 18px;
  margin: 0 0 18px;
  border-bottom: 1px solid var(--ar-border);
}

.report-meta__label {
  display: block;
  margin-bottom: 7px;
  color: var(--ar-dim);
  font-family: var(--ar-mono);
  font-size: var(--ar-type-label);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.report-meta__value {
  color: var(--ar-text);
  font-family: var(--ar-mono);
  font-size: var(--ar-type-meta);
  letter-spacing: 0.03em;
  line-height: 1.6;
}

.report-meta__thesis {
  margin-top: 28px;
  border-left: 2px solid var(--ar-orange);
  background: rgba(255, 77, 0, 0.045);
  padding: 16px 16px 17px;
}

.report-meta__thesis p {
  margin: 0;
  color: var(--ar-text);
  font-family: var(--ar-serif);
  font-size: 20px;
  font-style: italic;
  line-height: 1.2;
}

.report-meta h2 {
  margin: 12px 0 18px;
  color: var(--ar-orange);
  font-family: var(--ar-serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
}

.finding {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  padding: 0 0 16px;
  margin: 0 0 16px;
  border-bottom: 1px solid var(--ar-border-soft);
}

.finding__number {
  color: var(--ar-orange);
  font-family: var(--ar-serif);
  font-size: 22px;
  font-style: italic;
}

.finding strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ar-text);
  font-size: 13px;
}

.finding p {
  margin: 0;
  color: var(--ar-muted);
  font-size: var(--ar-type-meta);
  line-height: 1.6;
}

.report-article {
  width: 100%;
  max-width: 1080px;
  justify-self: center;
  min-width: 0;
  padding: 68px 64px 100px;
}

.report-hero {
  padding-bottom: 42px;
  border-bottom: 1px solid var(--ar-border);
}

.report-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 30px;
}

.report-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid var(--ar-border-strong);
  background: rgba(255, 255, 255, 0.035);
  color: #d0d0d2;
  font-family: var(--ar-mono);
  font-size: var(--ar-type-label);
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0 11px;
  text-transform: uppercase;
}

.report-tags span:first-child {
  border-color: rgba(255, 77, 0, 0.5);
  background: rgba(255, 77, 0, 0.1);
  color: var(--ar-orange);
}

.report-hero h1 {
  max-width: 920px;
  margin: 24px 0 18px;
  font-size: clamp(54px, 5.2vw, 76px);
  font-weight: 740;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.report-hero__dek {
  max-width: 810px;
  margin: 0 0 34px;
  color: #b9b9bc;
  font-family: var(--ar-sans);
  font-size: clamp(18px, 1.55vw, 22px);
  font-style: normal;
  letter-spacing: -0.012em;
  line-height: 1.55;
}

.report-hero__ledger {
  display: grid;
  grid-template-columns: minmax(250px, 1.15fr) minmax(300px, 0.85fr);
  gap: 36px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--ar-border);
}

.report-byline {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.report-byline img {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  display: block;
}

.report-byline div {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.report-byline strong {
  color: var(--ar-text);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.report-byline span {
  color: var(--ar-muted);
  font-size: 13px;
  line-height: 1.45;
}

.report-hero__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
}

.report-hero__facts div {
  min-width: 0;
}

.report-hero__facts dt {
  margin: 0 0 7px;
  color: var(--ar-dim);
  font-family: var(--ar-mono);
  font-size: var(--ar-type-label);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.report-hero__facts dd {
  margin: 0;
  color: var(--ar-text);
  font-size: 13px;
  line-height: 1.5;
}

.report-reader-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 0 0 24px;
  border-bottom: 1px solid var(--ar-border);
}

.report-reader-actions button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ar-border);
  background: rgba(255, 255, 255, 0.025);
  color: var(--ar-muted);
  font-family: var(--ar-mono);
  font-size: var(--ar-type-label);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 0 14px;
  text-transform: uppercase;
}

.report-reader-actions button {
  cursor: pointer;
  transition: border-color 150ms ease, color 150ms ease, background 150ms ease;
}

.report-reader-actions button:hover,
.report-reader-actions button:focus-visible {
  border-color: rgba(255, 77, 0, 0.55);
  background: rgba(255, 77, 0, 0.075);
  color: var(--ar-text);
}

.report-reader-actions button[aria-pressed="true"] {
  border-color: rgba(255, 77, 0, 0.55);
  color: var(--ar-orange);
}

.report-reader-actions .report-audio-trigger {
  gap: 8px;
  border-color: rgba(255, 77, 0, 0.5);
  background: rgba(255, 77, 0, 0.08);
  color: var(--ar-text);
}

.report-reader-actions .report-audio-trigger svg {
  flex: 0 0 auto;
  color: var(--ar-orange);
}

.report-reader-actions .report-audio-trigger[aria-expanded="true"] {
  border-color: var(--ar-orange);
  background: var(--ar-orange);
  color: #150600;
}

.report-reader-actions .report-audio-trigger[aria-expanded="true"] svg {
  color: currentColor;
}

.report-audio-player {
  margin: 18px 0 0;
  border: 1px solid rgba(255, 77, 0, 0.42);
  background:
    linear-gradient(135deg, rgba(255, 77, 0, 0.09), transparent 42%),
    rgba(15, 17, 19, 0.96);
  padding: 18px;
}

.report-audio-player__header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
}

.report-audio-player__header > div {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.report-audio-player__eyebrow {
  color: var(--ar-orange);
  font-family: var(--ar-mono);
  font-size: var(--ar-type-label);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-audio-player__header strong {
  color: var(--ar-text);
  font-size: 15px;
  line-height: 1.35;
}

.report-audio-player__header small {
  color: var(--ar-muted);
  font-size: var(--ar-type-meta);
  line-height: 1.45;
}

.report-audio-player__close {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border: 1px solid var(--ar-border);
  background: rgba(255, 255, 255, 0.025);
  color: var(--ar-muted);
  cursor: pointer;
  font: 400 20px/1 var(--ar-sans);
}

.report-audio-player__close:hover,
.report-audio-player__close:focus-visible {
  border-color: rgba(255, 77, 0, 0.55);
  color: var(--ar-text);
}

.report-audio-player__controls {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 16px;
}

.report-audio-player__controls button,
.report-audio-player__voice select,
.report-audio-player__speed select {
  min-height: 38px;
  border: 1px solid var(--ar-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ar-text);
  cursor: pointer;
}

.report-audio-player__transport {
  width: 44px;
  padding: 0;
  font-family: var(--ar-mono);
  font-size: 10px;
  font-weight: 700;
}

.report-audio-player__play {
  min-width: 104px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  border-color: var(--ar-orange) !important;
  background: var(--ar-orange) !important;
  color: #150600 !important;
  padding: 0 14px;
  font-family: var(--ar-mono);
  font-size: var(--ar-type-label);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.report-audio-player__pause-icon {
  display: none;
}

.report-audio-player.is-playing .report-audio-player__play-icon {
  display: none;
}

.report-audio-player.is-playing .report-audio-player__pause-icon {
  display: block;
}

.report-audio-player__settings {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: auto;
}

.report-audio-player__voice,
.report-audio-player__speed {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--ar-muted);
  font-family: var(--ar-mono);
  font-size: var(--ar-type-label);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.report-audio-player__voice select,
.report-audio-player__speed select {
  min-width: 76px;
  padding: 0 9px;
  color-scheme: dark;
  background: #111315;
  color: var(--ar-text);
  font: 600 12px/1 var(--ar-sans);
}

.report-audio-player__voice select {
  min-width: 88px;
}

.report-audio-player__voice select option,
.report-audio-player__speed select option {
  background: #111315;
  color: #f4f0e8;
}

.report-audio-player__voice select option:checked,
.report-audio-player__speed select option:checked {
  background: var(--ar-orange);
  color: #150600;
}

.report-audio-player__timeline {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 52px;
  gap: 10px;
  align-items: center;
  margin-top: 13px;
  color: var(--ar-muted);
  font-family: var(--ar-mono);
  font-size: 10px;
}

.report-audio-player__timeline span:last-child {
  text-align: right;
}

.report-audio-player__timeline input[type="range"] {
  width: 100%;
  height: 4px;
  margin: 0;
  accent-color: var(--ar-orange);
  cursor: pointer;
}

.report-audio-player__chapters {
  margin-top: 14px;
  border-top: 1px solid var(--ar-border);
  padding-top: 12px;
}

.report-audio-player__chapters summary {
  width: fit-content;
  color: var(--ar-text);
  cursor: pointer;
  font-family: var(--ar-mono);
  font-size: var(--ar-type-label);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.report-audio-player__chapters [data-audio-chapters] {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 12px;
  margin-top: 11px;
}

.report-audio-player__chapter {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 8px;
  align-items: baseline;
  border: 0;
  border-bottom: 1px solid var(--ar-border);
  background: transparent;
  color: var(--ar-muted);
  cursor: pointer;
  padding: 8px 0;
  text-align: left;
}

.report-audio-player__chapter:hover,
.report-audio-player__chapter:focus-visible,
.report-audio-player__chapter[aria-current="true"] {
  color: var(--ar-text);
}

.report-audio-player__chapter[aria-current="true"] {
  border-bottom-color: rgba(255, 77, 0, 0.55);
}

.report-audio-player__chapter-time {
  color: var(--ar-orange);
  font-family: var(--ar-mono);
  font-size: 10px;
}

.report-audio-player__chapter-title {
  font-size: 12px;
  line-height: 1.35;
}

.report-audio-player__disclosure,
.report-audio-player__status {
  margin: 12px 0 0;
  color: var(--ar-dim);
  font-size: 11px;
  line-height: 1.5;
}

.report-audio-player__status {
  min-height: 0;
  color: var(--ar-orange);
}

.report-hero__status {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 16px;
  align-items: baseline;
  margin-top: 20px;
  color: var(--ar-muted);
  font-size: var(--ar-type-meta);
  line-height: 1.55;
}

.report-hero__status strong {
  color: var(--ar-orange);
  font-family: var(--ar-mono);
  font-size: var(--ar-type-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media screen {
  .alpha-research-report--crypto-ai .report-section {
    padding-top: 62px;
  }

  .alpha-research-report--crypto-ai .report-section--insights {
    padding-top: 58px;
  }

  .alpha-research-report--crypto-ai .report-section h2 {
    margin-bottom: 24px;
  }

  .alpha-research-report--crypto-ai .report-section p {
    margin-bottom: 22px;
  }

  .alpha-research-report--crypto-ai .key-insights-list {
    margin-top: 12px;
  }

  .alpha-research-report--crypto-ai .key-insights-list li {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .alpha-research-report--crypto-ai .key-insights-list li::before {
    top: 33px;
  }

  .alpha-research-report--crypto-ai .key-insights-list strong {
    margin-bottom: 8px;
    font-size: var(--ar-type-body);
  }

  .alpha-research-report--crypto-ai .key-insights-list span {
    max-width: 900px;
    font-size: 15px;
    line-height: 1.7;
  }
}

.report-section {
  padding: 44px 0 0;
  scroll-margin-top: calc(var(--ar-topbar) + 24px);
}

.report-section__label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--ar-orange);
  font-family: var(--ar-mono);
  font-size: var(--ar-type-label);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.report-section__label::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--ar-orange);
}

.report-section h2 {
  margin: 0 0 18px;
  color: var(--ar-text);
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 720;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.report-section h3 {
  margin: 28px 0 12px;
  color: var(--ar-text);
  font-size: 20px;
  letter-spacing: -0.025em;
}

.report-section p,
.report-section li {
  color: #b9b9bc;
  font-size: var(--ar-type-body);
  line-height: 1.7;
}

.report-section p {
  margin: 0 0 18px;
}

.report-section a {
  color: var(--ar-text);
  text-decoration-color: rgba(255, 77, 0, 0.8);
  text-underline-offset: 3px;
}

.report-lead {
  color: var(--ar-text) !important;
  font-size: 20px !important;
  line-height: 1.58 !important;
}

.report-section--insights {
  padding-top: 38px;
}

.key-insights-list {
  margin: 8px 0 6px;
  padding: 0;
  list-style: none;
}

.key-insights-list li {
  position: relative;
  margin: 0;
  border-top: 1px solid var(--ar-border);
  padding: 18px 12px 18px 30px;
}

.key-insights-list li:last-child {
  border-bottom: 1px solid var(--ar-border);
}

.key-insights-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 27px;
  width: 6px;
  height: 6px;
  background: var(--ar-orange);
}

.key-insights-list strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ar-text);
  font-size: var(--ar-type-body);
  line-height: 1.45;
}

.key-insights-list span {
  display: block;
  color: #b9b9bc;
  font-size: 15px;
  line-height: 1.68;
}

.report-thesis {
  margin: 24px 0 26px;
  border-top: 1px solid var(--ar-orange);
  border-bottom: 1px solid var(--ar-border);
  padding: 20px 0 22px;
}

.report-thesis span {
  display: block;
  margin-bottom: 9px;
  color: var(--ar-orange);
  font-family: var(--ar-mono);
  font-size: var(--ar-type-label);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.report-thesis p {
  max-width: 900px;
  margin: 0;
  color: var(--ar-text);
  font-family: var(--ar-serif);
  font-size: clamp(25px, 2.25vw, 34px);
  font-style: italic;
  line-height: 1.12;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 24px 0 8px;
  background: var(--ar-border);
  border: 1px solid var(--ar-border);
}

.summary-item {
  background: var(--ar-panel);
  padding: 20px;
}

.summary-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--ar-orange);
  font-family: var(--ar-mono);
  font-size: var(--ar-type-label);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.summary-item strong {
  display: block;
  color: var(--ar-text);
  font-size: 15px;
  line-height: 1.45;
}

.report-cover,
.report-figure {
  margin: 28px 0 12px;
  border: 1px solid var(--ar-border);
  background: var(--ar-panel);
  overflow: hidden;
}

.report-cover img,
.report-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.report-cover img.is-zoomable,
.report-figure img.is-zoomable {
  cursor: zoom-in;
}

.report-cover img.is-zoomable:focus-visible,
.report-figure img.is-zoomable:focus-visible {
  outline: 2px solid var(--ar-orange);
  outline-offset: -4px;
}

.report-cover figcaption,
.report-figure figcaption {
  border-top: 1px solid var(--ar-border);
  padding: 13px 15px;
  color: var(--ar-muted);
  font-size: var(--ar-type-meta);
  line-height: 1.55;
}

.report-cover figcaption strong,
.report-figure figcaption strong {
  color: var(--ar-text);
}

.chart-lightbox-open {
  overflow: hidden;
}

.chart-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  box-sizing: border-box;
  padding: 24px;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
}

.chart-lightbox.is-open {
  display: grid;
}

.chart-lightbox__dialog {
  display: flex;
  flex-direction: column;
  width: min(1800px, 96vw);
  max-height: calc(100vh - 48px);
  border: 1px solid rgba(244, 240, 232, 0.22);
  background: #090a0b;
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.72);
}

.chart-lightbox__toolbar {
  z-index: 2;
  display: flex;
  flex: 0 0 52px;
  align-items: center;
  gap: 7px;
  box-sizing: border-box;
  border-bottom: 1px solid var(--ar-border);
  padding: 5px 8px 5px 14px;
}

.chart-lightbox__hint {
  margin-right: auto;
  color: var(--ar-muted);
  font-family: var(--ar-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.chart-lightbox__control,
.chart-lightbox__reset,
.chart-lightbox__close {
  display: grid;
  min-width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(244, 240, 232, 0.35);
  border-radius: 2px;
  background: transparent;
  color: var(--ar-text);
  cursor: pointer;
  font-family: var(--ar-sans);
  font-size: 19px;
  font-weight: 500;
  line-height: 1;
  padding: 0 0 2px;
}

.chart-lightbox__reset {
  width: auto;
  padding: 0 12px;
  font-family: var(--ar-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.chart-lightbox__zoom {
  min-width: 48px;
  color: var(--ar-text);
  font-family: var(--ar-mono);
  font-size: 11px;
  text-align: center;
}

.chart-lightbox__control:disabled {
  cursor: default;
  opacity: 0.35;
}

.chart-lightbox__control:not(:disabled):hover,
.chart-lightbox__control:focus-visible,
.chart-lightbox__reset:hover,
.chart-lightbox__reset:focus-visible,
.chart-lightbox__close:hover,
.chart-lightbox__close:focus-visible {
  border-color: var(--ar-orange);
  color: var(--ar-orange);
  outline: none;
}

.chart-lightbox__viewport {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  touch-action: none;
  cursor: zoom-in;
  outline: none;
}

.chart-lightbox__viewport.is-pannable {
  cursor: grab;
}

.chart-lightbox__viewport.is-pannable:active {
  cursor: grabbing;
}

.chart-lightbox__viewport:focus-visible {
  box-shadow: inset 0 0 0 2px var(--ar-orange);
}

.chart-lightbox__stage {
  display: grid;
  min-width: 100%;
  min-height: 100%;
  place-items: center;
}

.chart-lightbox__image {
  display: block;
  max-width: none;
  max-height: none;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.chart-lightbox__caption {
  flex: 0 0 auto;
  margin: 0;
  border-top: 1px solid var(--ar-border);
  color: var(--ar-muted);
  font-size: var(--ar-type-meta);
  line-height: 1.55;
  padding: 13px 96px 13px 15px;
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--ar-border);
  margin: 26px 0;
}

.snapshot-stat {
  min-height: 116px;
  border-right: 1px solid var(--ar-border);
  padding: 18px 15px;
}

.snapshot-stat:last-child {
  border-right: 0;
}

.snapshot-stat__value {
  color: var(--ar-text);
  font-size: 25px;
  font-weight: 760;
  letter-spacing: -0.045em;
}

.snapshot-stat__value--orange {
  color: var(--ar-orange);
}

.snapshot-stat__label {
  margin-top: 7px;
  color: var(--ar-muted);
  font-family: var(--ar-mono);
  font-size: var(--ar-type-label);
  letter-spacing: 0.06em;
  line-height: 1.55;
  text-transform: uppercase;
}

.report-callout {
  margin: 28px 0;
  border-left: 2px solid var(--ar-orange);
  background: var(--ar-panel);
  padding: 22px 24px;
}

.report-callout__label {
  display: block;
  margin-bottom: 10px;
  color: var(--ar-orange);
  font-family: var(--ar-mono);
  font-size: var(--ar-type-label);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.report-callout p {
  margin: 0;
  color: var(--ar-text);
  font-size: 16px;
  line-height: 1.58;
}

.mechanism-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 24px 0;
  border: 1px solid var(--ar-border);
  background: var(--ar-border);
}

.mechanism-step {
  position: relative;
  background: var(--ar-panel);
  padding: 20px;
}

.mechanism-step__number {
  color: var(--ar-orange);
  font-family: var(--ar-serif);
  font-size: 28px;
  font-style: italic;
}

.mechanism-step strong {
  display: block;
  margin: 7px 0;
  color: var(--ar-text);
  font-size: 14px;
}

.mechanism-step p {
  margin: 0;
  color: var(--ar-muted);
  font-size: 13px;
  line-height: 1.6;
}

.monitor-table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
  border: 1px solid var(--ar-border);
}

.monitor-table th,
.monitor-table td {
  border-bottom: 1px solid var(--ar-border);
  padding: 13px 14px;
  vertical-align: top;
  text-align: left;
}

.monitor-table th {
  color: var(--ar-muted);
  font-family: var(--ar-mono);
  font-size: var(--ar-type-label);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.monitor-table td {
  color: #b9b9bc;
  font-size: 13px;
  line-height: 1.6;
}

.monitor-table td:first-child {
  color: var(--ar-text);
  font-weight: 700;
}

.report-list {
  margin: 0;
  padding-left: 20px;
}

.report-list li {
  margin-bottom: 10px;
  padding-left: 4px;
}

.source-list {
  display: grid;
  gap: 0;
  margin: 24px 0;
  border-top: 1px solid var(--ar-border);
}

.source-list a {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--ar-border);
  text-decoration: none;
}

.source-list__number {
  color: var(--ar-orange);
  font-family: var(--ar-serif);
  font-size: 17px;
  font-style: italic;
}

.source-list__title {
  color: var(--ar-text);
  font-size: 13px;
  font-weight: 600;
}

.source-list__domain {
  color: var(--ar-dim);
  font-family: var(--ar-mono);
  font-size: var(--ar-type-label);
  text-transform: uppercase;
}

.report-disclaimer {
  margin-top: 44px;
  border-top: 1px solid var(--ar-border);
  color: var(--ar-dim);
  font-family: var(--ar-mono);
  font-size: 11px;
  line-height: 1.65;
  padding-top: 18px;
}

.report-rail {
  position: sticky;
  top: var(--ar-topbar);
  align-self: start;
  height: calc(100vh - var(--ar-topbar));
  border-left: 1px solid var(--ar-border);
  overflow-y: auto;
}

.report-reading-progress,
.report-mobile-dock,
.report-mobile-sheet {
  display: none;
}

body.report-mobile-sheet-open {
  overflow: hidden;
}

.report-outline {
  padding: 28px 14px 24px;
}

.report-outline__title {
  margin: 0 10px 14px;
  color: var(--ar-text);
  font-family: var(--ar-sans);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.report-outline a {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  gap: 10px;
  align-items: start;
  min-height: 0;
  margin: 2px 0;
  border: 0;
  border-radius: 4px;
  color: var(--ar-muted);
  padding: 10px 10px 10px 13px;
  text-decoration: none;
  transition: color 140ms ease, background 140ms ease;
}

.report-outline__copy {
  min-width: 0;
}

.report-outline__copy strong {
  display: block;
  color: inherit;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.35;
}

.report-outline__copy small {
  display: block;
  margin-top: 4px;
  color: var(--ar-dim);
  font-size: 11.5px;
  line-height: 1.4;
}

.report-outline__number {
  color: var(--ar-dim);
  font-family: var(--ar-mono);
  font-size: var(--ar-type-label);
  line-height: 1.4;
  text-align: right;
}

.report-outline a:hover,
.report-outline a.is-active {
  color: var(--ar-text);
}

.report-outline a:hover {
  background: rgba(255, 255, 255, 0.025);
}

.report-outline a.is-active {
  background: rgba(255, 77, 0, 0.075);
}

.report-outline a.is-active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 0 2px 2px 0;
  background: var(--ar-orange);
}

.report-outline a.is-active .report-outline__number {
  color: var(--ar-orange);
}

.report-outline a.is-active .report-outline__copy small {
  color: var(--ar-muted);
}

.report-rail__section {
  border-top: 1px solid var(--ar-border);
  padding: 22px 20px 30px;
}

.report-rail__section h2 {
  margin: 0 0 13px;
  color: var(--ar-text);
  font-size: 14px;
  font-weight: 650;
}

.mentioned-asset {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  border: 1px solid var(--ar-border);
  background: var(--ar-panel);
  padding: 10px;
  text-decoration: none;
  transition: border-color 140ms ease, background 140ms ease;
}

.mentioned-assets-list {
  display: grid;
  gap: 11px;
}

.mentioned-asset-item {
  min-width: 0;
}

.mentioned-asset-item .mentioned-asset__status {
  margin: 6px 2px 0;
}

.mentioned-asset:hover {
  border-color: rgba(255, 77, 0, 0.55);
  background: #131518;
}

.mentioned-asset img {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  display: block;
  object-fit: contain;
}

.mentioned-asset__identity,
.mentioned-asset__market {
  min-width: 0;
}

.mentioned-asset__identity strong,
.mentioned-asset__market strong {
  display: block;
  color: var(--ar-text);
  font-size: 13px;
  line-height: 1.25;
}

.mentioned-asset__identity small,
.mentioned-asset__market small {
  display: block;
  margin-top: 3px;
  color: var(--ar-dim);
  font-family: var(--ar-mono);
  font-size: var(--ar-type-label);
  line-height: 1.3;
}

.mentioned-asset__market {
  text-align: right;
}

.mentioned-asset__market small.is-positive {
  color: #5fcf9b;
}

.mentioned-asset__market small.is-negative {
  color: #ff6a5f;
}

.mentioned-asset__status {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-top: 9px;
  color: var(--ar-dim);
  font-family: var(--ar-mono);
  font-size: var(--ar-type-label);
  line-height: 1.45;
}

.mentioned-asset__badge {
  flex: 0 0 auto;
  border: 1px solid var(--ar-border);
  color: var(--ar-muted);
  padding: 2px 4px;
  text-transform: uppercase;
}

.mentioned-asset__badge.is-live {
  border-color: rgba(95, 207, 155, 0.4);
  background: rgba(95, 207, 155, 0.08);
  color: #5fcf9b;
}

.mentioned-asset__badge.is-snapshot {
  border-color: rgba(255, 77, 0, 0.35);
  color: var(--ar-orange);
}

.mentioned-asset__badge.is-stale {
  border-color: rgba(219, 173, 76, 0.45);
  background: rgba(219, 173, 76, 0.08);
  color: #dbad4c;
}

.report-rail__section > p {
  margin: 10px 0 0;
  color: var(--ar-dim);
  font-size: 11px;
  line-height: 1.5;
}

@media (max-width: 1280px) {
  .library-controls {
    grid-template-columns: minmax(260px, 1.4fr) repeat(2, minmax(160px, 1fr));
  }

  .report-layout {
    grid-template-columns: minmax(0, 1fr) 252px;
  }

  .report-article {
    padding-left: 44px;
    padding-right: 44px;
  }
}

@media (max-width: 1024px) {
  :root {
    --ar-sidebar: 74px;
  }

  .research-topbar {
    padding: 0 22px;
  }

  .research-topbar__section {
    letter-spacing: 0.22em;
  }

  .library-page {
    padding: calc(var(--ar-topbar) + 30px) 28px 70px;
  }

  .library-controls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .library-search {
    grid-column: 1 / -1;
  }

  .report-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .report-rail {
    display: none;
  }
}

@media screen and (max-width: 760px) {
  :root {
    --ar-topbar: 56px;
  }

  .research-sidebar {
    display: none;
  }

  .research-topbar {
    left: 0;
    gap: 12px;
    padding: 0 16px;
  }

  .research-topbar__identity {
    gap: 12px;
  }

  .research-topbar__divider {
    display: block;
    font-size: 20px;
  }

  .research-topbar__wordmark {
    font-size: 18px;
  }

  .research-topbar__section {
    max-width: 116px;
    overflow: hidden;
    font-size: var(--ar-type-label);
    letter-spacing: 0.12em;
    text-overflow: ellipsis;
  }

  .research-latest {
    display: none;
  }

  .research-button {
    min-height: 44px;
    border: 0;
    padding: 0;
    color: var(--ar-text);
    font-family: var(--ar-sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
  }

  .research-main {
    margin-left: 0;
  }

  .library-page {
    padding: calc(var(--ar-topbar) + 24px) 16px 60px;
  }

  .library-hero {
    padding: 0 2px 18px;
  }

  .library-hero h1 {
    font-size: 30px;
  }

  .library-hero__meta {
    flex-wrap: wrap;
    padding: 0;
    border: 0;
  }

  .library-controls {
    grid-template-columns: 1fr;
  }

  .library-search {
    grid-column: auto;
  }

  .library-filter-summary {
    align-items: stretch;
  }

  .library-clear {
    min-height: 44px;
  }

  .library-table {
    min-width: 700px;
  }

  .library-table th:nth-child(4),
  .library-table td:nth-child(4),
  .library-table th:nth-child(5),
  .library-table td:nth-child(5),
  .library-table th:nth-child(7),
  .library-table td:nth-child(7) {
    display: none;
  }

  .library-table th:nth-child(1) { width: 45%; }
  .library-table th:nth-child(2) { width: 18%; }
  .library-table th:nth-child(3) { width: 20%; }
  .library-table th:nth-child(6) { width: 17%; }

  .library-analyst-grid {
    grid-template-columns: 1fr;
  }

  .report-layout {
    display: block;
  }

  .report-article {
    padding: 30px 18px calc(102px + env(safe-area-inset-bottom));
  }

  .report-reading-progress {
    position: fixed;
    z-index: 26;
    top: var(--ar-topbar);
    left: 0;
    width: 100%;
    height: 2px;
    display: block;
    background: rgba(244, 240, 232, 0.1);
    pointer-events: none;
  }

  .report-reading-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--ar-orange);
    transition: width 90ms linear;
  }

  .report-hero h1 {
    margin: 24px 0 18px;
    font-size: clamp(40px, 11.5vw, 48px);
    letter-spacing: -0.052em;
    line-height: 1.04;
  }

  .report-tags {
    gap: 6px;
    margin-bottom: 28px;
  }

  .report-tags span {
    min-height: 30px;
    padding: 0 10px;
    font-size: var(--ar-type-label);
  }

  .research-eyebrow {
    display: none;
  }

  .report-hero__dek {
    margin-bottom: 30px;
    font-size: 17px;
    line-height: 1.55;
  }

  .report-hero__ledger {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 24px 0 26px;
  }

  .report-byline img {
    width: 46px;
    height: 46px;
  }

  .report-byline strong {
    font-size: 16px;
  }

  .report-byline span,
  .report-hero__facts dd {
    font-size: 13px;
  }

  .report-hero__facts {
    gap: 20px;
  }

  .report-reader-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 26px 0 24px;
  }

  .report-reader-actions button {
    min-width: 0;
    min-height: 46px;
    padding: 0 8px;
    font-size: 11px;
  }

  .report-reader-actions .report-audio-trigger {
    grid-column: 1 / -1;
    order: 1;
    min-height: 52px;
    border-color: var(--ar-orange);
    background: var(--ar-orange);
    color: #150600;
    font-family: var(--ar-sans);
    font-size: 16px;
    letter-spacing: -0.01em;
    text-transform: none;
  }

  .report-reader-actions .report-audio-trigger svg {
    width: 20px;
    height: 20px;
    color: currentColor;
  }

  .report-reader-actions [data-bookmark] {
    order: 2;
  }

  .report-reader-actions [data-share] {
    order: 3;
  }

  .report-reader-actions [data-print] {
    order: 4;
  }

  .report-audio-player {
    padding: 15px;
  }

  .report-audio-player__close {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .report-audio-player__controls {
    flex-wrap: wrap;
  }

  .report-audio-player__controls button,
  .report-audio-player__voice select,
  .report-audio-player__speed select {
    min-height: 44px;
  }

  .report-audio-player__play {
    flex: 1 1 112px;
  }

  .report-audio-player__settings {
    width: 100%;
    margin-left: 0;
  }

  .report-audio-player__voice,
  .report-audio-player__speed {
    flex: 1 1 0;
    justify-content: space-between;
    margin: 2px 0 0;
  }

  .report-audio-player__chapters [data-audio-chapters] {
    grid-template-columns: 1fr;
  }

  .report-hero__status {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 0;
    font-size: 13px;
    line-height: 1.6;
  }

  .report-hero__status strong {
    display: none;
  }

  .report-hero {
    padding-bottom: 34px;
  }

  .alpha-research-report--crypto-ai .report-section,
  .alpha-research-report--crypto-ai .report-section--insights {
    padding-top: 48px;
  }

  .alpha-research-report--crypto-ai .key-insights-list li {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .alpha-research-report--crypto-ai .key-insights-list li::before {
    top: 29px;
  }

  .summary-grid,
  .mechanism-grid {
    grid-template-columns: 1fr;
  }

  .snapshot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .snapshot-stat:nth-child(2) {
    border-right: 0;
  }

  .snapshot-stat:nth-child(-n+2) {
    border-bottom: 1px solid var(--ar-border);
  }

  .report-section h2 {
    font-size: 32px;
  }

  .report-section--insights {
    padding-top: 40px;
  }

  .report-section--insights .report-section__label {
    display: block;
    margin-bottom: 18px;
    color: var(--ar-text);
    font-family: var(--ar-sans);
    font-size: 30px;
    font-weight: 720;
    letter-spacing: -0.035em;
    text-transform: none;
  }

  .report-section--insights .report-section__label::before {
    display: none;
  }

  .report-section--insights h2 {
    margin-bottom: 14px;
    font-size: 25px;
    line-height: 1.12;
  }

  .key-insights-list {
    counter-reset: mobile-insight;
  }

  .key-insights-list li {
    min-height: 90px;
    counter-increment: mobile-insight;
    padding: 20px 0 20px 62px;
  }

  .key-insights-list li::before,
  .alpha-research-report--crypto-ai .key-insights-list li::before {
    content: counter(mobile-insight);
    position: absolute;
    top: 20px;
    left: 0;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--ar-orange);
    border-radius: 4px;
    background: transparent;
    color: var(--ar-orange);
    font-family: var(--ar-mono);
    font-size: 16px;
    font-weight: 700;
  }

  .key-insights-list strong {
    font-size: 16px;
  }

  .key-insights-list span {
    font-size: 15px;
    line-height: 1.6;
  }

  .report-section p,
  .report-section li {
    font-size: var(--ar-type-body);
  }

  .report-section code {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .report-figure {
    overflow: hidden;
  }

  .report-cover picture,
  .report-figure picture {
    display: block;
  }

  .report-cover img,
  .report-figure img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .alpha-research-report--crypto-ai-money #leaders .report-figure,
  .alpha-research-report--crypto-ai-money #rotation .report-figure,
  .alpha-research-report--crypto-ai-money #capture .report-figure {
    overflow-x: hidden;
  }

  .alpha-research-report--crypto-ai-money #leaders .report-figure::before,
  .alpha-research-report--crypto-ai-money #rotation .report-figure::before,
  .alpha-research-report--crypto-ai-money #capture .report-figure::before {
    display: none;
  }

  .alpha-research-report--crypto-ai-money #leaders .report-figure img,
  .alpha-research-report--crypto-ai-money #rotation .report-figure img,
  .alpha-research-report--crypto-ai-money #capture .report-figure img {
    width: 100%;
    max-width: 100%;
  }

  .alpha-research-report--crypto-ai-money #leaders .report-figure figcaption,
  .alpha-research-report--crypto-ai-money #rotation .report-figure figcaption,
  .alpha-research-report--crypto-ai-money #capture .report-figure figcaption {
    position: static;
    width: auto;
  }

  .monitor-table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-color: var(--ar-orange) var(--ar-panel);
  }

  .chart-lightbox {
    padding: 0;
  }

  .chart-lightbox__dialog {
    width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    border: 0;
  }

  .chart-lightbox__toolbar {
    flex-basis: 56px;
    min-height: 56px;
    gap: 5px;
    padding: max(6px, env(safe-area-inset-top)) 7px 6px;
  }

  .chart-lightbox__hint {
    display: none;
  }

  .chart-lightbox__control,
  .chart-lightbox__close {
    width: 44px;
    min-width: 44px;
    height: 44px;
  }

  .chart-lightbox__reset {
    min-width: 58px;
    height: 44px;
    padding: 0 8px;
  }

  .chart-lightbox__zoom {
    min-width: 42px;
    font-size: 10px;
  }

  .chart-lightbox__caption {
    max-height: 92px;
    overflow-y: auto;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    font-size: 11px;
  }

  .source-list a {
    grid-template-columns: 26px 1fr;
  }

  .source-list__domain {
    display: none;
  }

  .report-mobile-dock {
    position: fixed;
    z-index: 40;
    right: 0;
    bottom: 0;
    left: 0;
    height: calc(62px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(244, 240, 232, 0.18);
    background: rgba(10, 11, 12, 0.97);
    box-shadow: 0 -12px 34px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px);
    padding-bottom: env(safe-area-inset-bottom);
  }

  .report-mobile-dock button {
    min-width: 0;
    min-height: 62px;
    border: 0;
    border-right: 1px solid var(--ar-border);
    background: transparent;
    color: var(--ar-muted);
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    padding: 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .report-mobile-dock button:last-child {
    border-right: 0;
  }

  .report-mobile-dock button:focus-visible,
  .report-mobile-dock button.is-current {
    color: var(--ar-orange);
    outline: none;
  }

  .report-mobile-sheet {
    position: fixed;
    z-index: 90;
    inset: 0;
    align-items: end;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(6px);
  }

  .report-mobile-sheet.is-open {
    display: grid;
  }

  .report-mobile-sheet__dialog {
    width: 100%;
    max-height: min(78dvh, 720px);
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(244, 240, 232, 0.24);
    background: #0c0e10;
    box-shadow: 0 -24px 70px rgba(0, 0, 0, 0.7);
    padding-bottom: env(safe-area-inset-bottom);
  }

  .report-mobile-sheet__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 62px;
    border-bottom: 1px solid var(--ar-border);
    padding: 0 18px;
  }

  .report-mobile-sheet__header strong {
    font-size: 18px;
  }

  .report-mobile-sheet__close {
    min-width: 62px;
    height: 44px;
    border: 1px solid var(--ar-border);
    background: transparent;
    color: var(--ar-text);
    cursor: pointer;
    font-size: 13px;
    font-weight: 650;
    line-height: 1;
    padding: 0 12px;
  }

  .report-mobile-sheet__content {
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 10px 8px 24px;
  }

  .report-mobile-sheet__content .report-outline {
    padding: 4px 0 16px;
  }

  .report-mobile-sheet__content .report-outline__title,
  .report-mobile-sheet__content .report-rail__section > h2 {
    display: none;
  }

  .report-mobile-sheet__content .report-outline a {
    min-height: 56px;
    align-items: center;
    margin: 0;
    border-bottom: 1px solid var(--ar-border-soft);
    border-radius: 0;
    padding: 10px 12px 10px 16px;
  }

  .report-mobile-sheet__content .report-outline__copy strong {
    font-size: 15px;
  }

  .report-mobile-sheet__content .report-outline__copy small {
    font-size: 12px;
  }

  .report-mobile-sheet__content .report-rail__section {
    border: 0;
    padding: 4px 10px 20px;
  }

  .report-mobile-sheet__content .mentioned-asset {
    min-height: 64px;
    padding: 12px;
  }
}

@media print {
  .chart-lightbox {
    display: none !important;
  }

  @page {
    size: A4;
    margin: 14mm;
  }

  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  body {
    background: var(--ar-bg);
  }

  .research-sidebar,
  .research-topbar,
  .report-meta,
  .report-rail,
  .report-reading-progress,
  .report-mobile-dock,
  .report-mobile-sheet,
  .report-reader-actions,
  .report-audio-player {
    display: none !important;
  }

  .research-main {
    margin: 0;
    padding: 0;
  }

  .report-layout {
    display: block;
  }

  .report-article {
    box-sizing: border-box;
    max-width: none;
    padding: 0 6mm;
  }

  .report-figure,
  .report-cover,
  .report-callout,
  .report-thesis,
  .snapshot-grid {
    break-inside: avoid;
  }

  .report-section {
    padding-top: 28px;
  }

  .report-section p,
  .report-section li {
    font-size: 11px;
    line-height: 1.52;
  }

  .report-section p {
    margin-bottom: 12px;
  }

  .report-lead {
    font-size: 15px !important;
    line-height: 1.42 !important;
  }

  .key-insights-list li {
    padding-top: 11px;
    padding-bottom: 11px;
    break-inside: avoid;
  }

  .key-insights-list li::before {
    top: 20px;
  }

  .key-insights-list strong {
    font-size: 11px;
  }

  .key-insights-list span {
    font-size: 10px;
    line-height: 1.5;
  }

  .report-figure,
  .report-cover {
    width: 94%;
    margin: 18px auto 8px;
  }

  .report-cover figcaption,
  .report-figure figcaption {
    padding: 9px 11px;
    font-size: 8.5px;
    line-height: 1.4;
  }

  .report-section h2,
  .report-section h3,
  .report-section__label {
    break-after: avoid;
    break-inside: avoid;
  }

  .report-section h2 {
    font-size: 28px;
    letter-spacing: -0.04em;
    line-height: 1.06;
  }

  .report-section__heading {
    break-inside: avoid;
  }

  .source-list a {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .source-list__domain {
    display: none;
  }

  .alpha-research-report--vvv .report-disclaimer {
    display: none;
  }

  .alpha-research-report--vvv #methodology .source-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
  }

  .alpha-research-report--vvv #methodology .source-list a {
    padding: 8px 0;
  }

  .alpha-research-report--vvv #methodology .source-list__title {
    font-size: 10.5px;
  }

  .alpha-research-report--vvv #methodology .methodology-copy {
    columns: 2;
    column-gap: 22px;
  }

  .alpha-research-report--vvv #methodology .methodology-copy p {
    break-inside: avoid;
    margin-bottom: 8px;
    font-size: 10.3px;
    line-height: 1.42;
  }

  .alpha-research-report--tao .report-disclaimer {
    margin-top: 12px;
    padding-top: 8px;
    font-size: 6.5px;
    line-height: 1.35;
    break-inside: avoid;
  }

  .alpha-research-report--nest #methodology {
    padding-top: 18px;
  }

  .alpha-research-report--nest #methodology h2 {
    font-size: 24px;
  }

  .alpha-research-report--nest #methodology .report-lead {
    font-size: 13px !important;
    line-height: 1.36 !important;
  }

  .alpha-research-report--nest #methodology .source-list {
    margin: 14px 0;
  }

  .alpha-research-report--nest #methodology .source-list a {
    padding: 8px 0;
  }

  .alpha-research-report--nest #methodology .source-list__number {
    font-size: 14px;
  }

  .alpha-research-report--nest #methodology .source-list__title {
    font-size: 10.5px;
  }

  .alpha-research-report--nest #methodology .methodology-copy {
    columns: 2;
    column-gap: 22px;
  }

  .alpha-research-report--nest #methodology .methodology-copy p {
    break-inside: avoid;
    margin-bottom: 7px;
    font-size: 10.3px;
    line-height: 1.42;
  }

  .alpha-research-report--nest .report-disclaimer {
    margin-top: 18px;
    padding-top: 8px;
    font-size: 6.8px;
    line-height: 1.35;
    break-inside: avoid;
  }
}
