:root {
  --ink: #16201f;
  --muted: #697471;
  --paper: #f4f0e8;
  --paper-raised: #fbf8f2;
  --forest: #183f3a;
  --forest-soft: #285b54;
  --gold: #b48a4e;
  --line: #d9d1c4;
  --green: #19724e;
  --green-wash: #e4efe7;
  --red: #a64437;
  --red-wash: #f2e6e1;
  --shadow: 0 20px 42px rgba(22, 32, 31, .07);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  min-height: 100vh;
}

.paper-grain {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .38;
  background-image: radial-gradient(rgba(22, 32, 31, .1) .6px, transparent .6px);
  background-size: 5px 5px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .55), transparent 55%);
}

.masthead, .page, .empty-state { position: relative; z-index: 1; }

.masthead {
  max-width: 1280px;
  margin: 0 auto;
  padding: 34px 42px 22px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.issue, .eyebrow, .kicker {
  font-size: 11px;
  letter-spacing: .2em;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 10px;
}

.brand h1 {
  font-family: Georgia, "Songti SC", serif;
  margin: 0;
  font-weight: 500;
  font-size: clamp(38px, 5vw, 56px);
  letter-spacing: -.04em;
}

.mast-meta {
  display: flex;
  gap: 22px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

.status {
  border: 1px solid var(--line);
  background: var(--paper-raised);
  border-radius: 30px;
  padding: 10px 14px;
}

.status i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 100%;
  margin-right: 8px;
  background: var(--green);
}

.page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 42px 48px;
}

.anchor-section {
  scroll-margin-top: 26px;
}

.quick-nav {
  display: none;
}

@media (min-width: 1080px) {
  .quick-nav {
    position: fixed;
    z-index: 2;
    left: 16px;
    top: 50%;
    display: grid;
    gap: 3px;
    width: 54px;
    padding: 14px 8px 12px;
    overflow: hidden;
    border: 1px solid rgba(217, 209, 196, .45);
    border-radius: 22px;
    background: rgba(251, 248, 242, .38);
    opacity: .58;
    backdrop-filter: blur(12px);
    transform: translateY(-50%);
    transition: width .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, opacity .2s ease;
  }

  .quick-nav:hover,
  .quick-nav:focus-within {
    width: 126px;
    border-color: var(--line);
    background: rgba(251, 248, 242, .98);
    opacity: 1;
    box-shadow: 0 12px 29px rgba(22, 32, 31, .07);
  }

  .quick-nav-title {
    height: 0;
    margin: 0;
    overflow: hidden;
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    opacity: 0;
    transition: height .18s ease, opacity .18s ease, margin .18s ease;
  }

  .quick-nav:hover .quick-nav-title,
  .quick-nav:focus-within .quick-nav-title {
    height: 14px;
    margin: 0 0 7px 15px;
    opacity: 1;
  }

  .quick-nav a {
    display: flex;
    gap: 12px;
    align-items: center;
    height: 34px;
    padding: 0 15px;
    border-radius: 17px;
    color: var(--muted);
    text-decoration: none;
    white-space: nowrap;
    transition: background .18s ease, color .18s ease;
  }

  .quick-nav a i {
    display: block;
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(155, 143, 125, .45);
    transition: background .18s ease, transform .18s ease;
  }

  .quick-nav a span {
    font-size: 12px;
    opacity: 0;
    transform: translateX(-5px);
    transition: opacity .18s ease, transform .18s ease;
  }

  .quick-nav:hover a span,
  .quick-nav:focus-within a span {
    opacity: 1;
    transform: translateX(0);
  }

  .quick-nav a:hover,
  .quick-nav a.active {
    color: var(--ink);
    background: #ede6d9;
  }

  .quick-nav a.active i {
    background: var(--green);
    transform: scale(1.28);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .quick-nav,
  .quick-nav *,
  .quick-nav-title {
    transition: none !important;
  }
}

.issue-nav {
  margin-bottom: 18px;
  padding: 23px 25px 21px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper-raised);
}

.issue-nav-head {
  display: flex;
  gap: 28px;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 18px;
}

.issue-nav-head .eyebrow { margin-bottom: 7px; }

.issue-nav-head h2 {
  margin: 0;
  font-size: 23px;
  font-weight: 550;
  letter-spacing: -.035em;
}

.issue-nav-head > p {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 13px;
}

.issue-strip {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding-bottom: 1px;
  scrollbar-width: thin;
}

.stats-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.stats-shell {
  width: min(860px, 100%);
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper-raised);
}

.stats-shell h1 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 650;
  letter-spacing: -.055em;
}

.stats-copy,
.stats-updated {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.stats-card {
  min-height: 92px;
  padding: 16px;
  border: 1px solid #d8cebf;
  border-radius: 17px;
  background: #fffdf9;
}

.stats-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.stats-card strong {
  color: var(--ink);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -.04em;
}

.stats-table-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(237, 231, 220, .56);
}

.stats-table-card h2 {
  margin: 0 0 12px;
  font-size: 18px;
}

.stats-table-card table {
  width: 100%;
  border-collapse: collapse;
}

.stats-table-card th,
.stats-table-card td {
  padding: 10px 8px;
  border-top: 1px solid rgba(214, 205, 190, .9);
  text-align: left;
  font-size: 14px;
}

.stats-back {
  display: inline-block;
  margin-top: 16px;
  color: var(--gold);
  font-weight: 700;
}

@media (max-width: 720px) {
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-shell { padding: 24px; }
}

.issue-strip .archive-entry {
  position: relative;
  flex: 0 0 224px;
  min-height: 106px;
  padding: 15px 16px;
  border: 1px solid #e4dccf;
  background: #fffdf9;
}

.issue-strip .archive-entry.active {
  border-color: rgba(24, 63, 58, .34);
  background: #edf2ec;
}

.issue-strip .archive-entry.active::before {
  position: absolute;
  inset: 13px auto 13px 0;
  width: 3px;
  border-radius: 2px;
  content: "";
  background: var(--green);
}

.issue-strip .archive-kind {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--ink);
}

.issue-strip .archive-kind strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 760;
  letter-spacing: -.02em;
}

.issue-strip .archive-kind em {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 2px 9px;
  border-radius: 999px;
  background: rgba(184, 133, 64, .12);
  color: var(--gold);
  font-size: 12px;
  font-style: normal;
  font-weight: 750;
}

.issue-strip .archive-published {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 620;
}

.issue-strip .archive-state {
  display: block;
  margin-top: 9px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 650;
}

.hero {
  border-radius: 22px;
  min-height: 388px;
  background: var(--forest);
  color: #f5f2ea;
  display: grid;
  grid-template-columns: minmax(360px, 1fr) 424px;
  gap: 46px;
  padding: 38px 40px;
  overflow: hidden;
}

.kicker { color: #c6aa76; }

.hero h2 {
  max-width: 590px;
  margin: 0 0 14px;
  font-family: Georgia, "Songti SC", serif;
  font-weight: 500;
  font-size: clamp(32px, 3.4vw, 47px);
  line-height: 1.16;
  letter-spacing: -.045em;
}

.dek {
  margin: 0 0 29px;
  color: rgba(245, 242, 234, .72);
  line-height: 1.7;
  max-width: 530px;
}

.timestamp {
  color: rgba(245, 242, 234, .55);
  font-size: 13px;
}

.lead-card {
  background: #f7f2e7;
  border-radius: 16px;
  color: var(--ink);
  padding: 25px 27px;
  align-self: stretch;
}

.thesis-label {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .1em;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 20px;
}

.thesis-label span:last-child {
  max-width: 220px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0;
  text-align: right;
}

.thesis-title {
  margin: 0 0 10px;
  font-family: Georgia, "Songti SC", serif;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -.04em;
}

.thesis-view {
  margin: 0 0 18px;
  color: #566360;
  font-size: 13px;
  line-height: 1.68;
}

.thesis-groups {
  display: grid;
  gap: 0;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.thesis-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 13px;
  padding: 7px 0;
  align-items: baseline;
}

.thesis-row span {
  font-size: 12px;
  color: var(--muted);
}

.thesis-row strong {
  font-size: 13px;
  font-weight: 550;
  line-height: 1.5;
}

.thesis-row.long strong { color: var(--green); }
.thesis-row.watch strong { color: #90662e; }
.thesis-row.risk strong, .thesis-row.short strong { color: var(--red); }

.stat-label {
  color: var(--muted);
  font-size: 12px;
  display: block;
  margin-bottom: 5px;
}

.up { color: var(--green); }
.down { color: var(--red); }

.thesis-status {
  margin-top: 16px;
}

.thesis-status span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
}

.thesis-status strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 550;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 18px 0 30px;
}

.metric {
  padding: 18px 21px;
  border: 1px solid var(--line);
  background: var(--paper-raised);
  border-radius: 14px;
}

.metric span { color: var(--muted); font-size: 12px; }
.metric strong { display: block; margin-top: 9px; font-size: 27px; font-weight: 550; }

.editorial, .briefing, .archive, .ledger {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 27px;
}

.briefing { margin-bottom: 18px; }

.editorial {
  margin: 10px 0 44px;
  padding: 45px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.editorial-header {
  display: grid;
  grid-template-columns: 255px minmax(0, 1fr);
  gap: 58px;
  align-items: start;
  margin-bottom: 48px;
}

.editorial-title h3 {
  margin: 3px 0 21px;
  font-family: Georgia, "Songti SC", serif;
  font-size: 39px;
  font-weight: 500;
  letter-spacing: -.05em;
}

.editorial-tone {
  display: inline-block;
  margin: 0;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 24px;
  color: var(--forest-soft);
  font-size: 12px;
}

.editorial-takeaway {
  max-width: 820px;
  margin: 0;
  padding: 7px 0 12px 34px;
  border-left: 2px solid var(--gold);
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(25px, 2.3vw, 32px);
  line-height: 1.62;
  letter-spacing: -.03em;
  color: var(--forest);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.article-section {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 39px 34px 43px;
}

.article-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 25px;
}

.article-index {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 15px;
  letter-spacing: .1em;
}

.article-section h4 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Songti SC", serif;
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -.045em;
}

.article-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
  font-size: 15px;
}

.article-copy p + p {
  margin-top: 19px;
}

.article-symbol {
  margin-right: 7px;
  color: var(--forest);
  font-weight: 650;
  letter-spacing: .02em;
}

.article-section:not(.overview):not(.closing) ~ .article-section:not(.overview):not(.closing) {
  border-left: 1px solid var(--line);
}

.article-section.overview,
.article-section.closing {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 255px minmax(0, 1fr);
  gap: 58px;
  padding: 33px 0 38px;
  border-bottom: 1px solid var(--line);
}

.article-section.overview .article-head,
.article-section.closing .article-head {
  margin: 0;
}

.article-section.overview .article-copy,
.article-section.closing .article-copy {
  max-width: 1040px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px 35px;
}

.article-section.closing {
  margin-top: 0;
  padding-top: 35px;
  border-top: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(180, 138, 78, .055), transparent 72%);
}

.catalysts {
  margin: 0 0 43px;
  padding: 34px 0 39px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.catalyst-head {
  display: grid;
  grid-template-columns: 255px minmax(0, 1fr);
  gap: 58px;
  align-items: end;
  margin-bottom: 28px;
}

.catalyst-head h3 {
  margin: 0;
  font-family: Georgia, "Songti SC", serif;
  font-size: 35px;
  font-weight: 500;
  letter-spacing: -.05em;
}

.catalyst-note {
  justify-self: end;
  max-width: 515px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 13px;
}

.catalyst-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.catalyst-item {
  position: relative;
  min-height: 240px;
  padding: 25px 30px 18px;
  border-left: 1px solid var(--line);
}

.catalyst-item:first-child {
  border-left: 0;
  padding-left: 0;
}

.catalyst-item:last-child { padding-right: 0; }

.catalyst-item::before {
  position: absolute;
  top: 0;
  left: 30px;
  width: 36px;
  height: 2px;
  content: "";
  background: var(--gold);
}

.catalyst-item:first-child::before { left: 0; }
.catalyst-item.positive::before { background: var(--green); }
.catalyst-item.negative::before { background: var(--red); }

.catalyst-meta {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 20px;
}

.catalyst-meta strong {
  color: var(--forest);
  font-size: 13px;
  letter-spacing: .05em;
}

.catalyst-meta span {
  color: var(--muted);
  font-size: 12px;
}

.catalyst-item h4 {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 550;
  line-height: 1.45;
}

.catalyst-item p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.catalyst-item a,
.catalyst-source {
  color: var(--forest-soft);
  font-size: 12px;
  text-decoration: none;
}

.catalyst-item a span {
  color: var(--gold);
  margin-left: 8px;
}

.catalyst-item a:hover { text-decoration: underline; }

.catalyst-empty {
  margin: 0;
  padding: 26px 0 6px;
  color: var(--muted);
  font-size: 14px;
}

/* AI report: the editorial conclusion leads, evidence stays with each security. */
.editorial {
  margin: 0 0 20px;
  padding: 38px 40px 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper-raised);
}

.editorial-header {
  grid-template-columns: 225px minmax(0, 1fr);
  gap: 42px;
  margin-bottom: 31px;
}

.editorial-title h3 {
  font-size: 33px;
  margin-bottom: 17px;
}

.editorial-takeaway {
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.62;
  padding: 4px 0 7px 28px;
}

.editorial-context {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 31px;
  padding-top: 29px;
  border-top: 1px solid var(--line);
}

.editorial-context article + article {
  padding-left: 31px;
  border-left: 1px solid var(--line);
}

.editorial-context h4 {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 650;
}

.editorial-context .article-copy p {
  line-height: 1.8;
  font-size: 14px;
}

.catalysts {
  margin: 0 0 20px;
  padding: 36px 40px 40px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper-raised);
}

.catalyst-head {
  grid-template-columns: minmax(240px, 1fr) minmax(300px, 470px);
  gap: 26px;
  margin-bottom: 29px;
}

.catalyst-head h3 {
  font-size: 30px;
}

.focus-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.focus-group {
  display: grid;
  gap: 11px;
}

.focus-group-title {
  margin: 0 0 2px;
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 650;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.focus-group-title small {
  font-size: 11px;
  font-weight: 550;
  opacity: .82;
}

.focus-group-title.long { background: var(--green-wash); color: var(--green); }
.focus-group-title.watch { background: #f4ead8; color: #90662e; }
.focus-group-title.risk { background: #f2e5df; color: #985744; }
.focus-group-title.short { background: var(--red-wash); color: var(--red); }

.focus-card {
  display: flex;
  flex-direction: column;
  padding: 21px 21px 18px;
  border: 1px solid #e4dccf;
  border-radius: 15px;
  background: #fffdf9;
}

.focus-card.long { border-top: 2px solid rgba(25, 114, 78, .48); }
.focus-card.short, .focus-card.risk { border-top: 2px solid rgba(166, 68, 55, .45); }
.focus-card.watch { border-top: 2px solid rgba(180, 138, 78, .52); }

.focus-head {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: start;
  margin-bottom: 15px;
}

.focus-head > div {
  min-width: 0;
}

.focus-symbol {
  display: block;
  font-size: 22px;
  letter-spacing: -.025em;
}

.focus-name {
  display: block;
  max-width: 100%;
  overflow: hidden;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.focus-side {
  flex-shrink: 0;
  padding: 6px 10px;
  border-radius: 20px;
  background: #eee9df;
  color: var(--muted);
  font-size: 11px;
}

.focus-card.long .focus-side { background: var(--green-wash); color: var(--green); }
.focus-card.watch .focus-side { background: #f4ead8; color: #90662e; }
.focus-card.risk .focus-side { background: #f2e5df; color: #985744; }
.focus-card.short .focus-side { background: var(--red-wash); color: var(--red); }

.focus-view {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.7;
}

.focus-reason {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.focus-plan {
  margin: 0;
  padding: 12px 13px;
  border-radius: 9px;
  background: #f5f0e7;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.65;
}

.focus-plan span, .focus-news-label {
  display: block;
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
}

.focus-news {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px dashed #dbd1c1;
}

.linked-catalyst {
  border-left: 2px solid var(--gold);
  padding-left: 12px;
}

.linked-catalyst.positive { border-color: var(--green); }
.linked-catalyst.negative { border-color: var(--red); }

.linked-catalyst + .linked-catalyst { margin-top: 15px; }

.linked-catalyst time {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
}

.linked-catalyst strong {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  line-height: 1.48;
}

.linked-catalyst p, .no-catalyst {
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.linked-catalyst a {
  color: var(--forest-soft);
  font-size: 11px;
  text-decoration: none;
}

.linked-catalyst a span {
  margin-left: 7px;
  color: var(--gold);
}

.no-catalyst { margin-bottom: 0; }

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 24px;
}

.section-title h3, .archive h3 {
  margin: 0;
  font-size: 25px;
  font-weight: 550;
  letter-spacing: -.035em;
}

.side-key {
  display: flex;
  gap: 17px;
  font-size: 12px;
  color: var(--muted);
}

.long-dot::before, .short-dot::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 6px;
  content: "";
  background: var(--green);
}

.short-dot::before { background: var(--red); }

.columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.column-title {
  font-size: 13px;
  margin: 0 0 12px;
  padding: 11px 14px;
  border-radius: 10px;
}

.column-title.positive { background: var(--green-wash); color: var(--green); }
.column-title.negative { background: var(--red-wash); color: var(--red); }

.pick-list { display: grid; gap: 9px; }

.pick {
  padding: 13px 14px;
  border: 1px solid #e6dfd4;
  border-radius: 11px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 12px;
  background: #fffdf8;
}

.pick-symbol { font-size: 15px; font-weight: 650; }
.pick-change { font-size: 14px; font-weight: 600; text-align: right; }
.pick-name { font-size: 12px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pick-score { font-size: 12px; color: var(--muted); }

.archive h3 { margin-bottom: 13px; }
.archive-copy { font-size: 13px; line-height: 1.65; color: var(--muted); margin: 0 0 21px; }
.archive-list { gap: 8px; }

.archive-entry {
  width: 100%;
  text-align: left;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 11px;
  padding: 12px;
  color: inherit;
  cursor: pointer;
}

.archive-entry:hover, .archive-entry.active {
  border-color: var(--line);
  background: #f1ebdf;
}

.archive-entry strong { display: block; font-size: 14px; margin-bottom: 5px; }
.archive-entry span { color: var(--muted); font-size: 12px; }

.ledger { margin-top: 18px; padding-bottom: 16px; }
.ledger-head { margin-bottom: 18px; }

.search {
  color: var(--muted);
  font-size: 12px;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 9px 14px;
}

.search input {
  margin-left: 8px;
  border: none;
  outline: none;
  background: transparent;
  font: inherit;
  font-size: 13px;
  width: 150px;
}

.row {
  display: grid;
  grid-template-columns: minmax(170px, 1.25fr) 95px 96px minmax(225px, 1.1fr) 125px;
  gap: 15px;
  align-items: center;
  min-height: 65px;
  padding: 10px 6px;
  border-top: 1px solid #e8e1d5;
  font-size: 13px;
}

.row.header {
  min-height: 38px;
  color: var(--muted);
  border-top: none;
  font-size: 12px;
}

.symbol-cell strong { display: block; font-size: 14px; }
.symbol-cell span { color: var(--muted); display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.stance {
  border-radius: 20px;
  font-size: 11px;
  font-style: normal;
  font-weight: 550;
  display: inline-block;
  padding: 5px 9px;
  background: #f0ebe2;
  color: var(--muted);
  white-space: nowrap;
}

.stance.long { color: var(--green); background: var(--green-wash); }
.stance.short { color: var(--red); background: var(--red-wash); }
.stance.neutral { color: #90662e; background: #f4ead8; }
.plan { line-height: 1.6; color: var(--muted); }
.plan strong { color: var(--ink); font-weight: 500; }

.disclaimer {
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  border-left: 2px solid var(--gold);
  padding: 7px 0 7px 17px;
}

.disclaimer strong { color: var(--ink); margin-right: 14px; }
.empty-state { text-align: center; padding: 110px 24px; }
.empty-state h2 { font-family: Georgia, serif; font-weight: 500; }
.skeleton { height: 100%; border-radius: 9px; background: #eee6d8; }
.nothing { color: var(--muted); font-size: 13px; padding: 14px 2px; }

@media (max-width: 980px) {
  .masthead, .page { padding-left: 22px; padding-right: 22px; }
  .hero { display: block; }
  .issue-nav-head { display: block; }
  .issue-nav-head > p { margin-top: 14px; }
  .hero-copy { margin-bottom: 28px; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .editorial { padding: 29px 25px; }
  .editorial-header { display: block; margin-bottom: 32px; }
  .editorial-title h3 { font-size: 32px; margin-bottom: 15px; }
  .editorial-takeaway { margin-top: 27px; padding-left: 20px; font-size: 23px; }
  .editorial-context { grid-template-columns: 1fr; gap: 24px; }
  .editorial-context article + article { padding: 23px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .article-grid { grid-template-columns: 1fr; }
  .article-section.overview, .article-section.closing {
    grid-column: auto;
    display: block;
    padding: 26px 0;
  }
  .article-section { padding: 29px 0; }
  .article-section:not(.overview):not(.closing) ~ .article-section:not(.overview):not(.closing) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .article-section.overview .article-head, .article-section.closing .article-head { margin-bottom: 20px; }
  .article-section.overview .article-copy, .article-section.closing .article-copy {
    display: block;
  }
  .catalysts { padding: 29px 25px; }
  .catalyst-head { display: block; }
  .catalyst-note { margin-top: 18px; }
  .focus-columns { grid-template-columns: 1fr; }
  .catalyst-list { grid-template-columns: 1fr; }
  .catalyst-item, .catalyst-item:first-child, .catalyst-item:last-child {
    min-height: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 25px 0;
  }
  .catalyst-item::before, .catalyst-item:first-child::before { left: 0; }
  .row { grid-template-columns: 1fr 82px 80px; }
  .row .plan, .row .stance { display: none; }
}

@media (max-width: 620px) {
  .masthead { align-items: start; display: block; }
  .mast-meta { margin-top: 18px; justify-content: space-between; }
  .hero { padding: 26px 22px; min-height: 0; }
  .columns { grid-template-columns: 1fr; }
  .section-title { display: block; }
  .side-key, .search { margin-top: 18px; }
}
