/* Rogue Alpha content surface — plain-English market briefing. */

:root {
  --bg: #ffffff;
  --paper: #f6f9fc;
  --panel: #eef5ff;
  --ink: #17202a;
  --ink-2: #334155;
  --muted: #64748b;
  --rule: #d7e0ea;
  --rule-soft: #e6edf5;
  --dash: #94a3b8;
  --accent: #165dff;
  --accent-2: #f5b700;
  --warm: #ff5a3d;
  --pass: #1f8a4c;
  --fail: #d92d20;
  --serif: "OpenAI Sans", Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --sans: "OpenAI Sans", Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Monaco, Consolas, monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; border-bottom: 1px solid transparent; }
a:hover { border-bottom-color: currentColor; }

/* Header */
.site-head {
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
}

.issue-band {
  min-height: 92px;
  padding: 22px 40px 16px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: none;
}

.issue-band > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.issue-band > div:last-child { text-align: right; }

.wordmark {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  text-transform: none;
  letter-spacing: 0;
  border-bottom: none;
  position: relative;
}

.wordmark::before,
.wordmark::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 34px;
  height: 1px;
  background: var(--rule-soft);
}

.wordmark::before { right: calc(100% + 20px); }
.wordmark::after { left: calc(100% + 20px); }

.primary-nav,
.desk-tape {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  overflow-x: auto;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: none;
}

.nav-link,
.desk-tape-cell,
.desk-tape-label {
  padding: 10px 18px;
  border-right: 1px solid var(--rule);
  white-space: nowrap;
}

.nav-link.active,
.nav-link:hover {
  color: var(--accent);
  border-bottom-color: transparent;
}

.desk-tape {
  border-bottom: 1px solid var(--rule);
  background: var(--panel);
}

.desk-tape-label { color: var(--muted); }
.desk-tape-cell { display: flex; gap: 8px; align-items: center; }
.desk-tape-cell strong { color: var(--accent); }
.desk-tape-cell em { color: var(--pass); font-style: normal; font-size: 10px; }

.crumb-row {
  border-bottom: 1px solid var(--rule);
  padding: 10px 40px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--ink-2);
}

/* Shared modules */
.content {
  width: min(100%, 1440px);
  margin: 0 auto;
}

.front-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}

.front-meta div {
  min-height: 70px;
  padding: 14px 40px;
  border-right: 1px solid var(--rule-soft);
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.front-meta strong {
  font-family: var(--serif);
  font-size: 28px;
}

.front-meta span,
.module-head span,
.filing-row,
.ledger-meta,
.feature-meta,
.article-filing-row,
.tag,
.audit,
.read-link,
.transmission-end {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.03em;
  text-transform: none;
}

.front-meta span,
.module-head span { color: var(--muted); }

.module-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 11px 0;
  margin-bottom: 16px;
}

.module-head h2 {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  letter-spacing: 0;
  text-transform: none;
}

.module-head h2::before,
.kicker-line::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 10px;
  margin-right: 12px;
  background: var(--accent);
}

.audit {
  display: inline-block;
  padding: 4px 9px;
  border: 1px solid currentColor;
  border-radius: 999px;
  line-height: 1.1;
  background: #ffffff;
}

.audit-pass { color: var(--pass); }
.audit-fail { color: var(--fail); }

.tag {
  color: var(--muted);
  border: 1px solid var(--rule-soft);
  border-radius: 999px;
  padding: 3px 7px;
}

/* Media */
.media-figure {
  display: block;
  margin: 0;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
}

.media-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.02);
}

.media-figure figcaption {
  border-top: 1px solid var(--rule);
  padding: 8px 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.media-lead,
.media-article { margin: 0; }

.media-thumb,
.media-card {
  margin-bottom: 14px;
}

.media-thumb figcaption,
.media-card figcaption { display: none; }

.media-thumb img,
.media-card img { aspect-ratio: 4 / 3; }

/* Homepage */
.reader-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 40px;
  align-items: end;
  padding: 42px 40px;
  background: linear-gradient(135deg, #ffffff 0%, #eef5ff 62%, #fff7d6 100%);
  border-bottom: 1px solid var(--rule);
}

.reader-intro h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 1.03;
  letter-spacing: 0;
}

.reader-intro p {
  margin: 0;
  color: var(--ink-2);
  font-size: 19px;
}

.intro-kicker {
  margin-bottom: 10px !important;
  color: var(--accent) !important;
  font-family: var(--mono);
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.lead {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  padding: 46px 40px 42px;
  border-bottom: 1px solid var(--rule);
}

.lead-copy { align-self: center; }

.kicker-line {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--accent);
}

.lead-title,
.article-title {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.04;
  margin: 0;
}

.lead-title {
  font-size: clamp(38px, 4.5vw, 64px);
  max-width: 14ch;
}

.lead-dek,
.article-dek {
  color: var(--ink-2);
  line-height: 1.45;
}

.lead-dek {
  max-width: 47ch;
  margin: 22px 0 24px;
  font-size: 20px;
}

.filing-row {
  border-top: 1px solid var(--rule);
  padding-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.lead-tags {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.read-link {
  display: inline-block;
  margin-top: 22px;
  font-weight: 700;
}

.read-link::after { content: " ›"; color: var(--accent); }

.intake,
.featured,
.open-file,
.desk-taxonomy,
.signal-map {
  padding: 40px;
  border-bottom: 1px solid var(--rule);
}

.intake-table,
.sm-table {
  width: 100%;
  border-collapse: collapse;
}

.intake-table td,
.sm-table th,
.sm-table td {
  border-bottom: 1px solid var(--rule-soft);
  padding: 12px 12px 12px 0;
  vertical-align: top;
}

.intake-table td {
  font-size: 16px;
}

.intake-table td:first-child,
.intake-table td:nth-child(2),
.intake-table td:nth-child(4),
.intake-table td:nth-child(5) {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.03em;
  text-transform: none;
  white-space: nowrap;
}

.intake-table td:nth-child(2) { color: var(--accent); font-weight: 700; }
.intake-table td:nth-child(3) { width: 100%; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.feature-card {
  border-top: 3px solid var(--accent);
  padding-top: 10px;
}

.feature-card h3 {
  margin: 10px 0 0;
  font-size: 23px;
  line-height: 1.1;
}

.feature-meta,
.ledger-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

.feature-meta span:first-child,
.ledger-meta span:first-child {
  color: var(--accent);
  font-weight: 700;
}

.ledger-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ledger-row {
  display: grid;
  grid-template-columns: minmax(160px, 240px) 1fr;
  gap: 24px;
  border-bottom: 1px solid var(--rule-soft);
  padding: 18px 0;
}

.ledger-title {
  margin: 6px 0;
  font-size: 25px;
  line-height: 1.15;
}

.ledger-dek {
  margin: 0;
  color: var(--ink-2);
  font-size: 17px;
}

.desk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule-soft);
}

.desk-card {
  padding: 26px;
  border-right: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  background: var(--paper);
  border-radius: 8px;
}

.desk-card > span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.desk-card h3 {
  margin: 14px 0 8px;
  font-size: 24px;
}

.desk-card p {
  margin: 0 0 24px;
  color: var(--ink-2);
}

.desk-card footer {
  display: flex;
  justify-content: space-between;
  border-top: 1px dashed var(--rule-soft);
  padding-top: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.03em;
  text-transform: none;
}

/* Signal map */
.sm-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 12px;
}

.sm-head .section-label {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  letter-spacing: 0;
  text-transform: none;
}

.sm-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--muted);
}

.sm-table {
  font-family: var(--mono);
  font-size: 12px;
}

.sm-table th {
  text-align: left;
  text-transform: none;
  letter-spacing: 0.03em;
}

.sm-count { text-align: right; font-variant-numeric: tabular-nums; }
.sm-is { color: var(--accent); }
.sm-wl { color: var(--ink-2); }
.sm-top-title {
  font-family: var(--serif);
  font-size: 15px;
}

.like {
  border: 1px solid currentColor;
  padding: 2px 7px;
  text-transform: uppercase;
  font-size: 10px;
}

.like-high { color: var(--pass); }
.like-med { color: #9c6a12; }
.like-low { color: var(--muted); }

/* Article */
.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  border-bottom: 1px solid var(--rule);
}

.article-shell {
  padding: 48px 40px 72px;
  max-width: 960px;
}

.article-title {
  font-size: clamp(38px, 4.8vw, 68px);
  max-width: 15ch;
  margin-bottom: 22px;
}

.article-dek {
  max-width: 58ch;
  font-size: 21px;
  margin: 0 0 28px;
}

.article-filing-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 24px;
}

.article-filing-row span {
  padding: 12px 14px;
  border-right: 1px solid var(--rule-soft);
}

.article-filing-row strong {
  display: block;
  color: var(--muted);
  font-weight: 400;
}

.article-tagrow {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 18px 0 34px;
}

.article-section {
  max-width: 680px;
  margin: 36px 0;
}

.article-section-label {
  border-top: 1px solid var(--rule);
  padding-top: 13px;
  margin: 0 0 18px;
  font-family: var(--sans);
  font-size: 21px;
  letter-spacing: 0;
  text-transform: none;
}

.article-section-label::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent);
  margin-right: 12px;
}

.article-section-body {
  font-size: 19px;
  line-height: 1.65;
}

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

.evidence-list,
.watchnext-list,
.sources-list,
.rail-module ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.evidence-list li,
.watchnext-list li,
.sources-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 8px;
  border-bottom: 1px dashed var(--rule-soft);
  padding: 12px 0;
  font-size: 16px;
}

.evidence-list li::before,
.watchnext-list li::before,
.sources-list li::before {
  content: "▪";
  color: var(--accent);
  font-family: var(--mono);
}

.evidence-source {
  display: block;
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.article-rail {
  border-left: 1px solid var(--rule);
  padding: 48px 40px;
  background: var(--paper);
}

.rail-module {
  position: sticky;
  top: 20px;
  margin-bottom: 28px;
  border-top: 1px solid var(--rule);
  padding-top: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.03em;
  text-transform: none;
}

.rail-module + .rail-module { position: static; }
.rail-module h2 {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.rail-module p { margin: 7px 0; color: var(--ink-2); }
.rail-module li {
  border-bottom: 1px dashed var(--rule-soft);
  padding: 10px 0;
}

.rail-related a {
  display: block;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.25;
  text-transform: none;
  letter-spacing: 0;
}

.rail-related span {
  color: var(--accent);
}

.transmission-end {
  max-width: 680px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 14px 0;
  text-align: center;
  color: var(--muted);
}

/* Footer */
.site-foot {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1.2fr;
  gap: 48px;
  padding: 34px 40px 42px;
  background: var(--ink);
  color: #ffffff;
  border-top: 1px solid var(--rule);
}

.site-foot strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 25px;
}

.site-foot div:not(:first-child) strong {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: none;
}

.site-foot span {
  display: block;
  color: #dbeafe;
  font-size: 14px;
}

/* Legacy filter support */
.ledger-row[hidden],
.feature-card[hidden] { display: none; }

@media (max-width: 980px) {
	  .lead,
	  .reader-intro,
	  .article-grid {
	    grid-template-columns: 1fr;
	  }

  .feature-grid,
  .desk-grid,
  .front-meta,
  .article-filing-row,
  .site-foot {
    grid-template-columns: 1fr 1fr;
  }

  .article-rail {
    border-left: none;
    border-top: 1px solid var(--rule);
  }
}

@media (max-width: 720px) {
  .issue-band {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 18px;
  }

  .issue-band > div:last-child { text-align: left; }
  .wordmark::before,
  .wordmark::after { display: none; }

	  .lead,
	  .reader-intro,
	  .intake,
  .featured,
  .open-file,
  .desk-taxonomy,
  .signal-map,
  .article-shell,
  .article-rail,
  .site-foot,
  .crumb-row {
    padding-left: 18px;
    padding-right: 18px;
  }

  .front-meta,
  .feature-grid,
  .desk-grid,
  .article-filing-row,
  .site-foot,
  .ledger-row {
    grid-template-columns: 1fr;
  }

  .lead-title,
  .article-title {
    font-size: 42px;
    max-width: 100%;
  }

  .sm-source,
  .sm-src-h,
  .sm-label-h,
  .sm-top-label,
  .intake-table td:nth-child(5) {
    display: none;
  }

  .intake-table td,
  .sm-table td,
  .sm-table th {
    padding-right: 8px;
  }
}

/* v0 compact publication pass.
   This layer intentionally overrides the earlier dossier/broadsheet spacing. */

:root {
  --bg: #ffffff;
  --paper: #f8fafc;
  --panel: #f1f7ff;
  --ink: #162033;
  --ink-2: #42526b;
  --muted: #6b7890;
  --rule: #dbe5ef;
  --rule-soft: #edf2f7;
  --accent: #2563eb;
  --accent-2: #f59e0b;
  --pass: #16803c;
  --serif: "OpenAI Sans", Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --sans: "OpenAI Sans", Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Monaco, Consolas, monospace;
}

html,
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
}

.site-head,
.content,
.site-foot {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.site-head {
  border: 0;
  background: #ffffff;
}

.issue-band {
  min-height: 0;
  padding: 18px 0 12px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: end;
  border-bottom: 1px solid var(--rule);
}

.issue-band > div {
  gap: 2px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.issue-band > div:first-child span:first-child,
.issue-band > div:last-child span:first-child {
  color: var(--ink);
  font-weight: 700;
}

.wordmark {
  font-size: 30px;
  line-height: 1;
}

.wordmark::before,
.wordmark::after {
  display: none;
}

.primary-nav {
  display: flex;
  overflow-x: auto;
  border: 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0;
}

.nav-link {
  padding: 11px 18px;
  border-right: 1px solid var(--rule-soft);
  color: var(--ink-2);
}

.nav-link:first-child {
  padding-left: 0;
}

.nav-link.active {
  color: var(--accent);
  font-weight: 700;
}

.reader-intro {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  background: #ffffff;
}

.intro-kicker {
  margin: 0 0 4px !important;
  font-family: var(--sans);
  font-size: 13px !important;
  letter-spacing: 0;
}

.reader-intro h1 {
  margin: 0;
  max-width: none;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
}

.reader-intro > p {
  margin-top: 4px;
  font-size: 14px;
  color: var(--muted);
}

.front-meta {
  display: none;
}

.top-package {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.8fr);
  gap: 20px;
  padding: 18px 0 22px;
  border-bottom: 1px solid var(--rule);
}

.top-story,
.latest-panel,
.topic-card {
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: #ffffff;
}

.top-story {
  padding: 16px;
}

.module-label {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.top-story .media-figure {
  margin: 0 0 12px;
  border: 0;
  border-radius: 6px;
}

.top-story .media-figure img {
  aspect-ratio: 16 / 6;
}

.media-figure figcaption {
  display: none;
}

.story-topic {
  margin-bottom: 7px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.top-story h2 {
  margin: 0;
  max-width: 760px;
  font-family: var(--sans);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.top-story p {
  max-width: 740px;
  margin: 10px 0 14px;
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.45;
}

.story-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.latest-panel {
  padding: 16px;
}

.latest-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.latest-panel li + li {
  border-top: 1px solid var(--rule-soft);
}

.latest-panel a {
  display: block;
  padding: 13px 0;
}

.latest-panel span,
.topic-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.latest-panel strong,
.topic-card h3 {
  display: block;
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.2;
}

.latest-panel em,
.topic-card p {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.35;
}

.topic-section {
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
}

.module-head {
  margin: 0 0 12px;
  padding: 0;
  border: 0;
}

.module-head h2 {
  font-size: 18px;
}

.module-head h2::before,
.kicker-line::before {
  display: none;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.topic-card a {
  display: block;
  padding: 16px;
}

.audit {
  border-radius: 999px;
  padding: 5px 10px;
  background: #eefbf2;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.read-link {
  margin: 0;
  color: var(--accent);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
}

.site-foot {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0;
  padding: 24px 0 34px;
  background: #ffffff;
  color: var(--ink);
  border-top: 0;
}

.site-foot span {
  color: var(--muted);
}

@media (max-width: 980px) {
  .site-head,
  .content,
  .site-foot {
    width: min(100% - 32px, 1120px);
  }

  .issue-band {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .issue-band > div:last-child {
    text-align: left;
  }

  .top-package {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-head,
  .content,
  .site-foot {
    width: min(100% - 24px, 1120px);
  }

  .primary-nav {
    margin-left: -12px;
    margin-right: -12px;
  }

  .nav-link:first-child {
    padding-left: 12px;
  }

  .top-package {
    padding-top: 16px;
  }

  .top-story {
    padding: 14px;
  }

  .top-story h2 {
    font-size: 30px;
  }

  .topic-grid,
  .site-foot {
    grid-template-columns: 1fr;
  }
}

/* Distinct briefing palette pass: Motley-style variety, Rogue Alpha colors. */
:root {
  --bg: #f7fbff;
  --paper: #ffffff;
  --panel: #edf6ff;
  --ink: #101828;
  --ink-2: #344054;
  --muted: #667085;
  --rule: #d8e5f3;
  --rule-soft: #eaf1f8;
  --accent: #176bff;
  --accent-2: #ffb020;
  --warm: #ff5a3d;
  --mint: #18a36b;
  --violet: #7057ff;
  --sky: #00a6d6;
}

body {
  background:
    linear-gradient(180deg, #eaf5ff 0, #f7fbff 220px, #ffffff 640px);
}

.site-head,
.content,
.site-foot {
  width: min(100% - 48px, 1180px);
}

.site-head {
  margin-top: 16px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.07);
}

.issue-band {
  padding: 16px 18px 13px;
  background:
    linear-gradient(90deg, #fff8df 0 22%, #ffffff 22% 78%, #e8f7ff 78% 100%);
}

.wordmark {
  color: #0b1f44;
  text-shadow: 0 1px 0 #ffffff;
}

.issue-band > div:first-child span:first-child {
  color: var(--warm);
}

.issue-band > div:last-child span:first-child {
  color: var(--mint);
}

.primary-nav {
  background: #0b1f44;
  border-bottom: 0;
}

.nav-link {
  color: #d8e5f3;
  border-right: 1px solid rgba(255,255,255,0.14);
}

.nav-link.active,
.nav-link:hover {
  color: #ffffff;
  background: var(--accent);
}

.reader-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 22px;
  align-items: stretch;
  margin-top: 22px;
  padding: 0;
  border: 0;
  background: transparent;
}

.intro-copy {
  padding: 26px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #ffffff 0%, #ffffff 55%, #fff1c7 55%, #fff1c7 100%);
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.06);
}

.intro-kicker {
  color: var(--warm) !important;
  font-weight: 900;
  text-transform: uppercase;
}

.reader-intro h1 {
  max-width: 680px;
  font-size: clamp(31px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.reader-intro .intro-copy > p:not(.intro-kicker) {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.4;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}

.intro-stats div {
  padding: 18px 16px;
  border-right: 1px solid var(--rule-soft);
}

.intro-stats div:last-child {
  border-right: 0;
}

.intro-stats span,
.brief-points span,
.story-ribbon,
.latest-panel span,
.topic-card span {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.intro-stats span {
  display: block;
  color: var(--muted);
}

.intro-stats strong {
  display: block;
  margin-top: 8px;
  color: #0b1f44;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1;
}

.intro-stats div:last-child strong {
  font-size: 20px;
  line-height: 1.08;
}

.top-package {
  grid-template-columns: minmax(0, 1.6fr) minmax(310px, 0.72fr);
  gap: 22px;
  padding: 22px 0 24px;
}

.top-story,
.latest-panel,
.topic-card {
  border-color: var(--rule);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.06);
}

.top-story {
  padding: 0;
  overflow: hidden;
  border-top: 6px solid var(--sky);
}

.story-ribbon {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  color: #ffffff;
  background: #0b1f44;
}

.top-story-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
  align-items: stretch;
}

.top-story .media-figure {
  height: 100%;
  margin: 0;
  border-radius: 0;
  border-right: 1px solid var(--rule);
}

.top-story .media-figure img {
  height: 100%;
  min-height: 286px;
  aspect-ratio: auto;
}

.top-story-copy {
  padding: 24px 24px 20px;
}

.story-topic {
  color: var(--warm);
  text-transform: uppercase;
}

.top-story h2 {
  font-size: clamp(27px, 3.2vw, 42px);
  letter-spacing: -0.03em;
}

.top-story p {
  font-size: 17px;
}

.brief-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
}

.brief-points div {
  min-height: 142px;
  padding: 16px;
  border-right: 1px solid var(--rule-soft);
}

.brief-points div:nth-child(1) {
  background: #fff8df;
}

.brief-points div:nth-child(2) {
  background: #eaf5ff;
}

.brief-points div:nth-child(3) {
  background: #eafaf3;
  border-right: 0;
}

.brief-points span {
  color: #0b1f44;
}

.brief-points p {
  margin: 8px 0 0;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.35;
}

.latest-panel {
  padding: 0;
  overflow: hidden;
}

.latest-panel .module-label {
  margin: 0;
  padding: 12px 16px;
  color: #ffffff;
  background: var(--accent);
}

.latest-panel li {
  position: relative;
  border-top: 1px solid var(--rule-soft);
}

.latest-panel li::before,
.topic-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--accent);
}

.latest-panel a {
  padding: 16px 16px 16px 22px;
}

.latest-panel span,
.topic-card span {
  color: var(--accent);
}

.topic-section {
  padding: 22px 0;
}

.module-head {
  align-items: center;
  padding: 0 0 10px;
  border-bottom: 3px solid var(--rule);
}

.module-head h2 {
  font-size: 22px;
  font-weight: 900;
}

.topic-card {
  position: relative;
  overflow: hidden;
}

.topic-card a {
  padding-left: 24px;
}

.desk-ai-infrastructure {
  --desk: var(--violet);
}

.desk-crypto-market-structure {
  --desk: #f7931a;
}

.desk-defense-industrial {
  --desk: var(--mint);
}

.desk-orbital-networks {
  --desk: var(--sky);
}

.desk-ai-infrastructure.top-story,
.desk-ai-infrastructure .module-head {
  border-top-color: var(--desk);
}

.latest-panel .desk-ai-infrastructure::before,
.topic-card.desk-ai-infrastructure::before,
.topic-section.desk-ai-infrastructure .module-head {
  border-bottom-color: var(--desk);
}

.latest-panel .desk-ai-infrastructure::before,
.topic-card.desk-ai-infrastructure::before {
  background: var(--desk);
}

.latest-panel .desk-crypto-market-structure::before,
.topic-card.desk-crypto-market-structure::before {
  background: var(--desk);
}

.latest-panel .desk-defense-industrial::before,
.topic-card.desk-defense-industrial::before {
  background: var(--desk);
}

.latest-panel .desk-orbital-networks::before,
.topic-card.desk-orbital-networks::before {
  background: var(--desk);
}

.topic-section.desk-ai-infrastructure .module-head { border-bottom-color: var(--violet); }
.topic-section.desk-crypto-market-structure .module-head { border-bottom-color: #f7931a; }
.topic-section.desk-defense-industrial .module-head { border-bottom-color: var(--mint); }
.topic-section.desk-orbital-networks .module-head { border-bottom-color: var(--sky); }

.audit {
  color: #075e3b;
  background: #dffbea;
  border: 1px solid #a9e8c4;
}

.read-link {
  color: var(--accent);
}

@media (max-width: 980px) {
  .reader-intro,
  .top-story-grid,
  .brief-points {
    grid-template-columns: 1fr;
  }

  .top-story .media-figure {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .brief-points div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--rule-soft);
  }
}

@media (max-width: 720px) {
  .site-head,
  .content,
  .site-foot {
    width: min(100% - 24px, 1180px);
  }

  .intro-stats {
    grid-template-columns: 1fr;
  }

  .intro-stats div {
    border-right: 0;
    border-bottom: 1px solid var(--rule-soft);
  }

  .reader-intro h1 {
    font-size: 34px;
  }
}

/* Rogue Alpha signal board: replace generic topic cards with desk dispatches. */
.signal-board {
  margin: 4px 0 30px;
  padding: 18px;
  border: 1px solid #102a56;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.06) 0 24%, transparent 24%),
    #081a37;
  box-shadow: 0 18px 44px rgba(8, 26, 55, 0.18);
}

.signal-board-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
  margin-bottom: 14px;
  color: #ffffff;
}

.signal-board-head span {
  color: #ffcf4a;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-board-head strong {
  font-size: 18px;
  font-weight: 800;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.signal-lane {
  min-width: 0;
}

.lane-head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.lane-head span {
  display: inline-flex;
  min-width: 62px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  background: var(--desk);
  color: #081a37;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 50%, calc(100% - 9px) 100%, 0 100%);
}

.lane-head em {
  color: #9fb3d1;
  font-family: var(--mono);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lane-stack {
  display: grid;
  gap: 10px;
}

.signal-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  background: #ffffff;
}

.signal-card::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--desk);
}

.signal-link {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  min-height: 218px;
  border-bottom: 0;
}

.signal-code {
  display: grid;
  align-content: space-between;
  padding: 16px 14px 14px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--desk), white 78%), #ffffff);
  border-right: 1px solid var(--rule);
}

.signal-code span {
  color: #081a37;
  font-family: var(--mono);
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.signal-code em {
  color: var(--desk);
  font-family: var(--mono);
  font-size: 26px;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
}

.signal-copy {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  padding: 17px 18px;
}

.signal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.signal-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  border: 1px solid color-mix(in srgb, var(--desk), white 42%);
  border-radius: 999px;
  color: #0b1f44;
  background: color-mix(in srgb, var(--desk), white 86%);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.signal-copy h3 {
  margin: 0;
  color: #101828;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.signal-copy p {
  margin: 8px 0 14px;
  color: #4a5570;
  font-size: 15px;
  line-height: 1.35;
}

.signal-cues {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  align-self: end;
}

.signal-cues span {
  display: block;
  min-height: 86px;
  padding: 10px;
  background: #f7fbff;
  border: 1px solid var(--rule-soft);
  color: #526078;
  font-size: 12px;
  line-height: 1.28;
}

.signal-cues strong {
  display: block;
  margin-bottom: 5px;
  color: var(--desk);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.topic-section,
.topic-grid,
.topic-card {
  display: revert;
}

@media (max-width: 980px) {
  .signal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .signal-board {
    padding: 14px;
  }

  .signal-board-head {
    display: block;
  }

  .signal-board-head strong {
    display: block;
    margin-top: 5px;
  }

  .signal-link {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .signal-code {
    padding: 13px 10px;
  }

  .signal-code span {
    font-size: 18px;
  }

  .signal-code em {
    font-size: 22px;
  }

  .signal-cues {
    grid-template-columns: 1fr;
  }
}

/* Calm retiree-reader pass: less dashboard, more trusted briefing. */
:root {
  --bg: #f8fafc;
  --paper: #ffffff;
  --panel: #f1f5f9;
  --ink: #111827;
  --ink-2: #334155;
  --muted: #64748b;
  --rule: #d7dee8;
  --rule-soft: #e8edf3;
  --accent: #1858a8;
  --warm: #b9382f;
  --mint: #2f7d5a;
  --violet: #1858a8;
  --sky: #1858a8;
}

body {
  background: #f8fafc;
}

.site-head {
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.issue-band {
  background: #ffffff;
}

.issue-band > div:first-child span:first-child {
  color: var(--warm);
}

.primary-nav {
  background: #17324f;
}

.nav-link.active,
.nav-link:hover {
  background: var(--warm);
}

.reader-intro {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
}

.intro-copy {
  background: #ffffff;
}

.reader-intro h1 {
  max-width: 720px;
  font-size: clamp(34px, 4vw, 52px);
}

.intro-stats strong {
  color: #17324f;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 14px 0 0;
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}

.trust-strip div {
  padding: 16px 18px;
  border-right: 1px solid var(--rule-soft);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  display: block;
  margin-bottom: 5px;
  color: #17324f;
  font-size: 15px;
}

.trust-strip span {
  display: block;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.45;
}

.plain-brief {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 28px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}

.plain-brief div {
  padding: 16px 18px;
  border-right: 1px solid var(--rule-soft);
}

.plain-brief div:last-child {
  border-right: 0;
}

.plain-brief strong {
  display: block;
  margin-bottom: 7px;
  color: var(--warm);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.plain-brief p {
  margin: 0;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.48;
}

.article-section-label {
  color: #17324f;
}

.article-section-body {
  max-width: 70ch;
  color: #263241;
  font-size: 20px;
  line-height: 1.68;
}

.top-story {
  border-top-color: #17324f;
}

.story-ribbon {
  background: #17324f;
}

.story-topic,
.intro-kicker {
  color: var(--warm) !important;
}

.brief-points {
  background: #ffffff;
}

.brief-points div,
.brief-points div:nth-child(1),
.brief-points div:nth-child(2),
.brief-points div:nth-child(3) {
  min-height: 118px;
  background: #ffffff;
}

.brief-points div:nth-child(2) {
  border-left: 4px solid var(--accent);
}

.brief-points div:nth-child(3) {
  border-left: 4px solid var(--mint);
}

.brief-points span {
  color: var(--warm);
}

.brief-points p {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.42;
}

.latest-panel .module-label {
  background: var(--accent);
}

.signal-board {
  margin: 8px 0 32px;
  padding: 0;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.signal-board-head {
  margin: 0;
  padding: 18px 20px;
  color: var(--ink);
  background: #f1f5f9;
  border-bottom: 1px solid var(--rule);
}

.signal-board-head span {
  color: var(--warm);
}

.signal-board-head strong {
  color: #17324f;
}

.signal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.signal-lane {
  padding: 20px;
  border-bottom: 1px solid var(--rule-soft);
}

.signal-lane:last-child {
  border-bottom: 0;
}

.lane-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--rule);
}

.lane-head span {
  display: block;
  min-width: 0;
  min-height: 0;
  padding: 0;
  clip-path: none;
  background: transparent;
  color: #17324f;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.lane-head em {
  color: var(--muted);
  font-size: 12px;
}

.signal-card {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.signal-card::after {
  display: none;
}

.signal-link {
  display: block;
  min-height: 0;
  padding: 0;
}

.signal-copy {
  display: block;
  padding: 0;
}

.signal-meta {
  margin-bottom: 9px;
}

.signal-meta span {
  border-color: var(--rule);
  background: #ffffff;
  color: var(--muted);
}

.signal-meta span:first-child {
  color: var(--warm);
  border-color: #edc6c2;
  background: #fff5f3;
}

.signal-copy h3 {
  max-width: 820px;
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.12;
}

.signal-copy p {
  max-width: 820px;
  font-size: 17px;
  line-height: 1.45;
}

.signal-cues {
  max-width: 920px;
  margin-top: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.signal-cues span {
  min-height: 0;
  padding: 12px 13px;
  background: #f8fafc;
  border-color: var(--rule);
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.4;
}

.signal-cues strong {
  color: var(--warm);
  font-size: 11px;
}

@media (max-width: 720px) {
  .trust-strip,
  .reader-intro,
  .plain-brief,
  .signal-cues {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--rule-soft);
  }

  .plain-brief div {
    border-right: 0;
    border-bottom: 1px solid var(--rule-soft);
  }

  .plain-brief div:last-child {
    border-bottom: 0;
  }

  .signal-lane {
    padding: 16px;
  }

  .article-title {
    max-width: 100%;
    font-size: 34px;
    line-height: 1.06;
  }

  .article-dek {
    font-size: 19px;
    line-height: 1.45;
  }

  .article-section-body {
    font-size: 18px;
    line-height: 1.62;
  }
}

/* Evidence-ledger pass: one homepage hierarchy, no repeated card grid. */
html,
body {
  overflow-x: hidden;
}

.site-head,
.content,
.site-foot {
  max-width: 1180px;
}

.reader-intro,
.intro-copy,
.intro-stats,
.top-package,
.top-story,
.latest-panel {
  min-width: 0;
}

.source-ledger {
  margin: 12px 0 36px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.source-ledger-head {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: 20px;
  align-items: baseline;
  padding: 18px 20px;
  background: #f1f7ff;
  border-bottom: 1px solid var(--rule);
}

.source-ledger-head span {
  color: var(--warm);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.source-ledger-head strong {
  color: #17324f;
  font-size: 20px;
  line-height: 1.25;
}

.source-ledger-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ledger-brief {
  border-bottom: 1px solid var(--rule-soft);
}

.ledger-brief:last-child {
  border-bottom: 0;
}

.ledger-brief a {
  display: grid;
  grid-template-columns: minmax(170px, 0.32fr) minmax(240px, 0.45fr) minmax(180px, 0.35fr);
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 0;
}

.ledger-brief a:hover {
  background: #fbfdff;
}

.ledger-brief-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.35;
}

.ledger-brief-meta span:first-child {
  color: var(--warm);
  font-weight: 900;
}

.ledger-brief strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.12;
}

.ledger-brief p {
  margin: 0;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.42;
}

.source-chips {
  grid-column: 2 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.source-chips span {
  padding: 5px 8px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: #17324f;
  background: #ffffff;
  font-family: var(--mono);
  font-size: 11px;
}

@media (max-width: 720px) {
  .site-head,
  .content,
  .site-foot {
    width: min(100% - 24px, 1180px);
  }

  .issue-band {
    overflow: hidden;
  }

  .issue-band > div,
  .reader-intro h1,
  .reader-intro p,
  .trust-strip span,
  .top-story h2,
  .top-story p,
  .latest-panel strong,
  .latest-panel em {
    overflow-wrap: anywhere;
  }

  .reader-intro {
    display: grid;
    grid-template-columns: 1fr;
  }

  .reader-intro h1 {
    max-width: 100%;
    font-size: clamp(30px, 8.4vw, 38px);
    line-height: 1.08;
  }

  .top-package,
  .top-story-grid,
  .brief-points {
    grid-template-columns: 1fr;
  }

  .top-story {
    padding: 0;
  }

  .top-story h2 {
    font-size: 30px;
  }

  .latest-panel {
    width: 100%;
  }

  .source-ledger-head,
  .ledger-brief a {
    grid-template-columns: 1fr;
  }

  .source-ledger-head {
    gap: 6px;
    padding: 16px;
  }

  .ledger-brief a {
    gap: 10px;
    padding: 16px;
  }

  .source-chips {
    grid-column: 1;
  }
}

/* Premium editorial pass, inspired by finance/news references without copying them. */
:root {
  --bg: #f3f6fa;
  --paper: #f8fbff;
  --ink: #111827;
  --ink-2: #2f3d52;
  --muted: #65758d;
  --rule: #cbd7e6;
  --rule-soft: #e4ebf4;
  --accent: #155faa;
  --warm: #c33a2e;
  --mint: #2c7a58;
}

body {
  background:
    linear-gradient(180deg, #eef4fa 0, #f7f9fc 260px, #f3f6fa 100%);
}

.site-head,
.content,
.site-foot {
  width: calc(100% - 40px);
  max-width: 1180px;
}

.site-head {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid #203854;
  border-radius: 10px;
  background: #10223a;
  box-shadow: 0 18px 40px rgba(16, 34, 58, 0.14);
}

.issue-band {
  padding: 20px 22px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.13);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), transparent 46%),
    #10223a;
  color: #dce8f6;
}

.issue-band > div {
  color: #aebed0;
}

.issue-band > div:first-child span:first-child,
.issue-band > div:last-child span:first-child {
  color: #ffffff;
}

.wordmark {
  color: #ffffff;
  font-size: clamp(34px, 3.4vw, 44px);
}

.primary-nav {
  border-top: 0;
  border-bottom: 0;
  background: #0b1829;
}

.nav-link {
  padding: 13px 22px;
  border-right-color: rgba(255,255,255,0.12);
  color: #dbe7f5;
}

.nav-link.active,
.nav-link:hover {
  color: #ffffff;
  background: var(--warm);
}

.reader-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 18px;
  margin-top: 22px;
  padding: 0;
  border: 0;
  background: transparent;
}

.intro-copy,
.intro-stats {
  border: 1px solid var(--rule);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.06);
}

.intro-copy {
  padding: 34px 34px 30px;
}

.intro-kicker {
  color: var(--warm) !important;
}

.reader-intro h1 {
  max-width: 780px;
  color: #101827;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.reader-intro .intro-copy > p:not(.intro-kicker) {
  max-width: 700px;
  margin-top: 18px;
  color: var(--ink-2);
  font-size: 22px;
  line-height: 1.42;
}

.intro-stats {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}

.intro-stats div {
  min-height: 0;
  padding: 22px 24px;
  border-right: 0;
  border-bottom: 1px solid var(--rule-soft);
}

.intro-stats div:last-child {
  border-bottom: 0;
}

.intro-stats strong {
  color: #10223a;
  font-size: 32px;
}

.trust-strip {
  margin-top: 14px;
  border-radius: 10px;
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.04);
}

.top-package {
  grid-template-columns: minmax(0, 1.78fr) minmax(300px, 0.72fr);
  gap: 22px;
  padding: 22px 0 28px;
}

.top-story,
.latest-panel,
.source-ledger {
  border-radius: 10px;
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.07);
}

.top-story {
  border-top: 0;
  background: #ffffff;
}

.story-ribbon {
  padding: 13px 18px;
  background: #10223a;
}

.top-story-grid {
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, 1fr);
}

.top-story .media-figure {
  height: 100%;
  margin: 0;
  border-radius: 0;
}

.top-story .media-figure img {
  height: 100%;
  min-height: 380px;
  aspect-ratio: auto;
  object-fit: contain;
  padding: 30px;
  background: #050505;
}

.top-story-copy {
  padding: 36px 32px 28px;
}

.story-topic {
  color: var(--warm) !important;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.top-story h2 {
  font-size: clamp(42px, 4.2vw, 58px);
  line-height: 0.98;
}

.top-story p {
  margin-top: 18px;
  font-size: 21px;
}

.brief-points {
  border-top: 1px solid var(--rule);
}

.brief-points div,
.brief-points div:nth-child(1),
.brief-points div:nth-child(2),
.brief-points div:nth-child(3) {
  min-height: 132px;
  padding: 20px 22px;
}

.brief-points span {
  color: var(--warm);
}

.brief-points p {
  font-size: 18px;
  line-height: 1.45;
}

.latest-panel {
  border: 0;
  background: #ffffff;
}

.latest-panel .module-label {
  margin: 0;
  padding: 16px 18px;
  background: var(--accent);
  color: #ffffff;
}

.latest-panel li + li {
  border-top: 1px solid var(--rule-soft);
}

.latest-panel a {
  padding: 18px;
}

.latest-panel strong {
  font-size: 20px;
  line-height: 1.08;
}

.latest-panel em {
  font-size: 16px;
  line-height: 1.4;
}

.source-ledger {
  margin-top: 0;
}

.source-ledger-head {
  background:
    linear-gradient(90deg, rgba(21, 95, 170, 0.08), rgba(195, 58, 46, 0.05)),
    #ffffff;
}

.source-ledger-head strong {
  font-size: 22px;
}

.ledger-brief a {
  grid-template-columns: 180px minmax(260px, 0.8fr) minmax(260px, 1fr);
}

.ledger-brief strong {
  font-size: 24px;
}

.article-grid {
  width: min(100% - 40px, 1180px);
  margin: 22px auto 0;
  border: 1px solid var(--rule);
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.07);
}

.article-shell {
  padding: 52px 48px 76px;
}

.article-title {
  max-width: 16ch;
  font-size: clamp(48px, 5vw, 78px);
  line-height: 0.98;
}

.article-dek {
  font-size: 23px;
}

.plain-brief {
  border-radius: 10px;
}

@media (max-width: 980px) {
  .reader-intro,
  .top-package,
  .top-story-grid,
  .brief-points,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .top-story .media-figure img {
    min-height: 260px;
  }

  .article-grid {
    width: min(100% - 32px, 1180px);
  }
}

@media (max-width: 720px) {
  .site-head,
  .content,
  .site-foot,
  .article-grid {
    width: calc(100vw - 24px);
    max-width: 1180px;
  }

  .site-head {
    margin-top: 12px;
  }

  .issue-band {
    padding: 17px 18px 15px;
  }

  .wordmark {
    font-size: 31px;
  }

  .nav-link {
    padding: 12px 16px;
  }

  .intro-copy {
    padding: 24px 22px;
    overflow: hidden;
  }

  .reader-intro h1 {
    width: 100%;
    max-width: 280px;
    font-size: 29px;
    line-height: 1.08;
  }

  .reader-intro .intro-copy > p:not(.intro-kicker) {
    max-width: 280px;
    font-size: 18px;
  }

  .trust-strip span {
    max-width: 280px;
  }

  .top-story-copy {
    padding: 24px 22px;
  }

  .top-story h2 {
    font-size: clamp(30px, 8.5vw, 38px);
    line-height: 1.02;
  }

  .top-story .media-figure img {
    min-height: 220px;
    padding: 20px;
  }

  .top-story p,
  .brief-points p {
    font-size: 17px;
  }

  .source-ledger-head,
  .ledger-brief a {
    grid-template-columns: 1fr;
  }

  .source-ledger-head {
    gap: 6px;
  }

  .source-chips {
    grid-column: 1;
  }

  .article-shell {
    padding: 32px 22px 48px;
  }

  .article-title {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.02;
  }
}

/* Brand mark pass: replace plain text wordmark with a compact RA lockup. */
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-family: var(--sans);
  border-bottom: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255,255,255,0.92);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.12), transparent 42%),
    #0b1829;
  box-shadow: inset 0 0 0 1px rgba(195,58,46,0.55);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 8px 24px 8px auto;
  width: 2px;
  background: var(--warm);
  transform: skewX(-14deg);
}

.brand-mark span {
  display: grid;
  place-items: center;
  color: #ffffff;
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.brand-mark span:last-child {
  color: #ffffff;
  transform: translateY(9px);
}

.brand-name {
  display: flex;
  flex-direction: column;
  gap: 1px;
  color: #ffffff;
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 0.88;
  letter-spacing: -0.01em;
}

.brand-name span:last-child {
  color: #dce8f6;
  font-style: italic;
}

.wordmark:hover .brand-mark {
  border-color: #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(195,58,46,0.8),
    0 0 0 3px rgba(195,58,46,0.18);
}

@media (max-width: 720px) {
  .wordmark {
    gap: 10px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-mark span {
    font-size: 17px;
  }

  .brand-name {
    font-size: 28px;
  }
}

/* Margin Note brand system: smart annotation at the edge of consensus. */
:root {
  --bg: #f1ede4;
  --paper: #f8f4eb;
  --panel: #fffdf7;
  --ink: #15110e;
  --ink-2: #332d27;
  --muted: #6b645b;
  --rule: #d8d0c2;
  --rule-soft: #e7dfd2;
  --accent: #9c2a1c;
  --warm: #9c2a1c;
  --mint: #5e5852;
  --correction: #9c2a1c;
  --display: "OpenAI Sans", Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

body {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.35), transparent 240px),
    var(--bg);
  color: var(--ink);
}

.site-head {
  border-color: var(--rule);
  background: var(--paper);
  box-shadow: 0 18px 42px rgba(21, 17, 14, 0.08);
}

.issue-band {
  background: var(--paper);
  color: var(--ink);
  border-bottom-color: var(--rule);
}

.issue-band > div,
.issue-band > div:first-child span:first-child,
.issue-band > div:last-child span:first-child {
  color: var(--ink-2);
}

.issue-band > div:first-child span:first-child {
  color: var(--correction);
}

.margin-note-lockup,
.wordmark.margin-note-lockup {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: var(--ink);
  font-family: var(--display);
  border-bottom: 0;
}

.brand-bracket {
  color: var(--correction);
  font-family: var(--mono);
  font-size: .72em;
  font-weight: 700;
  transform: translateY(-0.06em);
}

.wordmark .brand-name,
.brand-name {
  display: inline;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(34px, 3.7vw, 50px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
}

.brand-name em,
.brand-name span:last-child {
  color: var(--ink);
  font-style: italic;
  font-weight: 500;
}

.brand-mark {
  display: none;
}

.primary-nav {
  background: var(--paper);
  border-top: 1px solid var(--rule);
}

.nav-link {
  color: var(--ink-2);
  border-right-color: var(--rule);
}

.nav-link.active,
.nav-link:hover {
  color: var(--correction);
  background: transparent;
}

.nav-link.active::before {
  content: "[ ";
  color: var(--correction);
}

.nav-link.active::after {
  content: " ]";
  color: var(--correction);
}

.intro-copy,
.intro-stats,
.trust-strip,
.top-story,
.latest-panel,
.source-ledger,
.article-grid {
  background: var(--panel);
  border-color: var(--rule);
  box-shadow: 0 18px 38px rgba(21, 17, 14, 0.07);
}

.reader-intro h1 {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(50px, 5.2vw, 76px);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.reader-intro .intro-copy > p:not(.intro-kicker) {
  max-width: 620px;
}

.intro-kicker,
.story-topic,
.brief-points span,
.source-ledger-head span,
.plain-brief strong,
.latest-panel span,
.ledger-brief-meta span:first-child {
  color: var(--correction) !important;
}

.intro-kicker::before,
.story-topic::before,
.source-ledger-head span::before {
  content: "[ ";
}

.intro-kicker::after,
.story-topic::after,
.source-ledger-head span::after {
  content: " ]";
}

.story-ribbon {
  background: var(--ink);
  color: var(--paper);
}

.top-story h2,
.article-title {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.top-story .media-figure img {
  background: #050505;
}

.latest-panel .module-label {
  background: var(--correction);
}

.brief-points div:nth-child(2) {
  border-left-color: var(--correction);
}

.brief-points div:nth-child(3) {
  border-left-color: var(--muted);
}

.source-ledger-head {
  background: var(--paper);
}

.source-ledger-head strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.source-chips span {
  color: var(--ink-2);
  background: var(--panel);
  border-color: var(--rule);
}

@media (max-width: 720px) {
  .wordmark .brand-name,
  .brand-name {
    font-size: 33px;
  }

  .reader-intro h1 {
    max-width: 280px;
    font-size: 40px;
    line-height: .98;
  }

  .reader-intro .intro-copy > p:not(.intro-kicker) {
    max-width: 280px;
  }
}

.alpha-points {
  max-width: 760px;
  margin: 28px 0 34px;
  padding: 20px 22px;
  border: 1px solid #cfe0ff;
  border-left: 6px solid var(--accent);
  border-radius: 8px;
  background: #f7fbff;
}

.alpha-points h2 {
  margin: 0 0 12px;
  color: #17324f;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.alpha-points ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.alpha-points li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  padding: 8px 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.45;
}

.alpha-points li::before {
  content: "→";
  color: var(--accent);
  font-weight: 800;
}

.rogue-scale {
  display: grid;
  grid-template-columns: auto max-content;
  gap: 2px 16px;
  align-items: baseline;
  padding: 14px 0 16px;
  border-bottom: 1px solid rgba(36, 80, 140, 0.18);
  margin-bottom: 14px;
}

.rogue-scale span {
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-700);
}

.rogue-scale strong {
  font-family: var(--sans);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.9;
  color: var(--ink);
}

.rogue-scale em {
  grid-column: 1 / -1;
  font-style: normal;
  color: var(--muted);
}

/* Figma-informed Rogue Alpha build: bright editorial surface, no alpha glyph. */
:root {
  --bg: #eef4fa;
  --paper: #ffffff;
  --panel: #f6f9fd;
  --ink: #101828;
  --ink-2: #344054;
  --muted: #667085;
  --rule: #d6e0eb;
  --rule-soft: #e8eef5;
  --accent: #155faa;
  --warm: #c33a2e;
  --mint: #287a56;
  --gold: #f2b544;
  --violet: #4f63d9;
  --sky: #0086c9;
}

body {
  background: linear-gradient(180deg, #e9f3ff 0, #f7fbff 280px, #ffffff 100%);
  color: var(--ink);
}

.site-head,
.content,
.site-foot,
.article-grid {
  width: calc(100% - 40px);
  max-width: 1180px;
}

.site-head {
  margin-top: 18px;
  border: 1px solid #193653;
  border-radius: 10px;
  overflow: hidden;
  background: #10223a;
  box-shadow: 0 18px 42px rgba(16, 34, 58, 0.14);
}

.issue-band {
  padding: 18px 22px;
  background: #10223a;
  color: #dce8f6;
  border-bottom: 1px solid rgba(255,255,255,.13);
}

.issue-band > div,
.issue-band > div:first-child span:first-child,
.issue-band > div:last-child span:first-child {
  color: #dce8f6;
}

.primary-nav {
  background: #0b1829;
  border: 0;
}

.nav-link {
  color: #dbe7f5;
  border-right-color: rgba(255,255,255,.12);
}

.nav-link.active,
.nav-link:hover {
  color: #fff;
  background: var(--warm);
}

.wordmark.rogue-lockup,
.rogue-lockup {
  display: inline-flex;
  gap: 13px;
  align-items: center;
  color: #fff;
  border: 0;
}

.rogue-lockup .brand-mark {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255,255,255,.9);
  background: #0b1829;
  box-shadow: inset 0 0 0 1px rgba(195,58,46,.7);
}

.rogue-lockup .brand-mark::before {
  content: "";
  position: absolute;
  inset: 8px 24px 8px auto;
  width: 2px;
  background: var(--warm);
  transform: skewX(-14deg);
}

.rogue-lockup .brand-mark span {
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--mono);
  font-size: 19px;
  font-weight: 950;
  letter-spacing: -.04em;
}

.rogue-lockup .brand-mark span:last-child {
  transform: translateY(8px);
}

.rogue-lockup .brand-name {
  display: flex;
  flex-direction: column;
  gap: 1px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(30px, 3.1vw, 42px);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.02em;
}

.rogue-lockup .brand-name span:last-child {
  color: #dce8f6;
  font-style: italic;
}

.reader-intro {
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 18px;
  margin-top: 22px;
}

.intro-copy,
.intro-stats,
.trust-strip,
.top-story,
.latest-panel,
.signals-section,
.frontier-section,
.source-ledger,
.article-grid {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 10px;
  box-shadow: 0 16px 36px rgba(17,24,39,.07);
}

.intro-copy {
  padding: 34px;
}

.reader-intro h1 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 68px);
  line-height: .98;
  letter-spacing: -.03em;
}

.reader-intro .intro-copy > p:not(.intro-kicker) {
  max-width: 680px;
  color: var(--ink-2);
  font-size: 21px;
}

.intro-kicker,
.story-topic,
.section-head span,
.brief-points span,
.plain-brief strong,
.ledger-brief-meta span:first-child {
  color: var(--warm) !important;
}

.top-package {
  grid-template-columns: minmax(0, 1.7fr) minmax(310px, .74fr);
  gap: 22px;
  padding: 22px 0;
}

.story-ribbon {
  background: #10223a;
}

.top-story h2,
.article-title {
  font-family: var(--serif);
  font-weight: 800;
  letter-spacing: -.035em;
}

.top-story h2 {
  font-size: clamp(38px, 4.1vw, 56px);
}

.top-story p {
  color: var(--ink-2);
  font-size: 20px;
}

.top-story .media-figure img {
  background: #050505;
  object-fit: contain;
  padding: 28px;
}

.latest-panel .module-label {
  background: var(--accent);
}

.brief-points div:nth-child(1) { border-left: 4px solid var(--gold); }
.brief-points div:nth-child(2) { border-left: 4px solid var(--accent); }
.brief-points div:nth-child(3) { border-left: 4px solid var(--mint); }

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline;
  padding: 18px 20px;
  border-bottom: 1px solid var(--rule);
  background: #f6f9fd;
}

.section-head span {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-head strong {
  color: #10223a;
  font-size: 20px;
}

.signals-section,
.frontier-section {
  margin: 0 0 22px;
  overflow: hidden;
}

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

.signals-table th,
.signals-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--rule-soft);
  text-align: left;
  vertical-align: top;
}

.signals-table th {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.signals-table td:first-child,
.signals-table td:nth-child(4),
.signals-table td:nth-child(5),
.signals-table td:nth-child(6),
.signal-desk {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
}

.signals-table a {
  display: block;
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.16;
}

.signals-table em {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.35;
}

.signal-desk { color: var(--warm); }

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

.frontier-card {
  padding: 20px;
  border-right: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}

.frontier-card span {
  color: var(--warm);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
}

.frontier-card h3 {
  margin: 8px 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.05;
}

.frontier-card p,
.frontier-card a {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.38;
}

.frontier-card a {
  display: block;
  margin-top: 12px;
  color: var(--accent);
  font-weight: 800;
}

.frontier-card footer {
  display: flex;
  gap: 6px;
  align-items: baseline;
  margin-top: 18px;
  padding-top: 10px;
  border-top: 1px solid var(--rule-soft);
}

.frontier-card footer strong { font-size: 24px; }
.frontier-card footer em { color: var(--muted); font-style: normal; }

.article-grid {
  margin-top: 22px;
  overflow: hidden;
}

.site-foot {
  margin-top: 28px;
  padding: 28px 0 42px;
  background: transparent;
  color: var(--ink);
}

.site-foot span { color: var(--muted); }

@media (max-width: 980px) {
  .reader-intro,
  .top-package,
  .top-story-grid,
  .brief-points,
  .frontier-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-head,
  .content,
  .site-foot,
  .article-grid {
    width: calc(100vw - 24px);
  }

  .issue-band {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .issue-band > div:last-child { text-align: left; }

  .rogue-lockup .brand-mark {
    width: 44px;
    height: 44px;
  }

  .rogue-lockup .brand-name {
    font-size: 28px;
  }

  .reader-intro h1 {
    max-width: 9ch;
    font-size: 36px;
    overflow-wrap: normal;
  }

  .reader-intro .intro-copy > p:not(.intro-kicker) {
    max-width: 28ch;
    font-size: 18px;
    overflow-wrap: normal;
  }

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

  .signals-table th,
  .signals-table td {
    padding: 12px 10px;
  }
}
