:root {
  color-scheme: dark;
  --page: #080808;
  --surface: #111111;
  --surface-raised: #181818;
  --paper: #f5f5f2;
  --text: #f5f5f2;
  --text-inverse: #080808;
  --muted: #a8a8a2;
  --muted-inverse: #565653;
  --line: #343434;
  --line-inverse: #b8b8b2;
  --unavailable-surface: #deded9;
  --accent: #b51f2a;
  --brand-blue: #2bb5c8;
  --brand-yellow: #f3ae21;
  --reaction-positive: var(--brand-blue);
  --reaction-mixed: var(--brand-yellow);
  --reaction-empty: var(--unavailable-surface);
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --max: 1120px;
  --z-sticky: 10;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 0;
  background: var(--page);
}

body {
  min-width: 0;
  margin: 0;
  background: var(--page);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
}

::selection {
  background: var(--accent);
  color: var(--text);
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px var(--accent);
}

main:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.topic-header h2:focus-visible {
  outline: 0;
  box-shadow: inset 0 -3px 0 var(--accent);
}

.methodology h2:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 5px;
}

#trends-title:focus-visible {
  outline: 0;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 3px;
  text-underline-offset: 8px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 20;
  transform: translateY(-180%);
  padding: 9px 12px;
  background: var(--accent);
  color: var(--text);
  font-family: var(--mono);
  font-size: 12px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  border-bottom: 2px solid var(--accent);
  background: var(--page);
}

.header-inner,
main,
footer {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.header-inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: clamp(27px, 2.6vw, 31px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  text-decoration: none;
}

.brand__word {
  position: relative;
  z-index: 1;
}

.brand-period {
  width: 0.48em;
  height: 0.48em;
  flex: 0 0 auto;
  align-self: flex-end;
  margin-bottom: 0.36em;
  perspective: 4em;
}

.brand-period__cube {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform: rotateZ(0deg) rotateX(0deg) rotateY(0deg);
  transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.brand-period__face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
}

.brand-period__face--front,
.brand-period__face--back {
  background: var(--accent);
}

.brand-period__face--right,
.brand-period__face--left {
  background: var(--brand-blue);
}

.brand-period__face--top,
.brand-period__face--bottom {
  background: var(--brand-yellow);
}

.brand-period__face--front {
  transform: translateZ(0.24em);
}

.brand-period__face--back {
  transform: rotateY(180deg) translateZ(0.24em);
}

.brand-period__face--right {
  transform: rotateY(90deg) translateZ(0.24em);
}

.brand-period__face--left {
  transform: rotateY(-90deg) translateZ(0.24em);
}

.brand-period__face--top {
  transform: rotateX(90deg) translateZ(0.24em);
}

.brand-period__face--bottom {
  transform: rotateX(-90deg) translateZ(0.24em);
}

.header-purpose,
.site-nav,
.site-nav__link,
.snapshot-note,
.weekly-scope,
.weekly-item__meta,
.weekly-item__families,
.weekly-item__caveat,
.weekly-item__sources,
.dossier-count,
.trend-controls,
.ranking-disclosure,
.trend-card__meta,
.trend-card__signal,
.category-index__header,
.category-button,
.topic-meta,
.panel-label,
.evidence-signal,
.source-row,
.source-summary,
.trust-summary,
.viewpoint-title p,
.viewpoint-title span,
.filter-result,
footer {
  font-family: var(--mono);
}

.header-purpose {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 14px;
}

.site-nav__link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 4px;
  border-bottom: 2px solid transparent;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
}

.site-nav__link:hover {
  background: var(--accent);
}

.secure-logout-form {
  margin: 0;
}

.secure-logout-button {
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.edition-switcher {
  margin: 0 0 38px;
  border-top: 3px solid var(--accent);
  background: var(--page);
}

.edition-switcher__body {
  min-width: 0;
  padding: 25px 0 22px;
}

.edition-switcher__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
}

.edition-switcher__heading {
  align-items: flex-start;
}

.edition-switcher__status,
.edition-picker,
.edition-error,
.edition-comparison {
  font-family: var(--mono);
}

.edition-switcher__heading h1 {
  margin: 0;
  color: var(--paper);
  font-family: var(--mono);
  font-size: clamp(42px, 5.4vw, 64px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.92;
  text-transform: uppercase;
  text-wrap: balance;
}

.edition-switcher__status {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.edition-picker {
  width: 208px;
  min-width: 180px;
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.edition-picker select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 7px 34px 7px 10px;
  background: var(--page);
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
}

.edition-error {
  margin-top: 13px;
  padding: 10px 12px;
  border-left: 5px solid var(--accent);
  background: var(--page);
  color: var(--text);
  font-size: 12px;
  line-height: 1.5;
}

.edition-content:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 7px;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

.panel-label {
  margin: 0 0 10px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
  padding: 30px 0 26px 18px;
  border-left: 8px solid var(--accent);
}

h1 {
  max-width: 880px;
  margin-bottom: 12px;
  font-size: clamp(34px, 4.3vw, 58px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.overview-copy {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.snapshot-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  text-align: right;
}

.snapshot-note span:first-child {
  color: var(--text);
  font-weight: 700;
}

.snapshot-note__edition {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0 7px;
}

.trend-board {
  padding: 42px 0 64px;
  scroll-margin-top: 16px;
}

body[data-page="home"] .trend-board {
  padding-top: 0;
}

.trend-board__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 22px;
}

.trend-board__title-group {
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 18px clamp(100px, 9vw, 136px);
}

.trend-board__title-group .edition-picker {
  flex: 0 0 208px;
}

#trends-title {
  width: max-content;
  max-width: 100%;
  margin: 0;
  font-size: clamp(38px, 4.5vw, 54px);
  letter-spacing: -0.035em;
  line-height: 1;
  transform: scale(1.25);
  transform-origin: left bottom;
}

.category-index {
  margin: -8px 0 26px;
}

body[data-page="home"] .category-index {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  margin-top: 0;
  padding: 0 0 8px;
  background: var(--page);
}

.category-index__header {
  height: 0;
  margin: 0;
}

.category-index__header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.45;
  text-align: right;
}

.category-list {
  min-width: 0;
  display: flex;
  align-items: stretch;
  gap: 1px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.category-list::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.category-button {
  min-width: max-content;
  min-height: 48px;
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  border: 0;
  border-radius: 0;
  padding: 8px clamp(8px, 0.9vw, 12px);
  background: var(--page);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
}

.category-button__label {
  min-width: 0;
  white-space: nowrap;
}

.category-button__count {
  flex: 0 0 auto;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

.category-button[aria-pressed="true"] {
  background: var(--paper);
  color: var(--text-inverse);
}

.category-button[aria-pressed="true"] .category-button__count {
  color: var(--accent);
}

.category-button:active {
  background: var(--accent);
  color: var(--text);
}

@media (hover: hover) {
  .category-button:hover:not([aria-pressed="true"]) {
    background: var(--surface-raised);
  }
}

.trend-controls {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  align-items: end;
  gap: 12px;
  padding: 18px 0 4px;
}

.trend-controls label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.trend-controls input,
.trend-controls select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 10px 12px;
  background: var(--surface);
  color: var(--text);
  font: inherit;
}

.trend-controls input::placeholder {
  color: var(--muted);
  opacity: 1;
}

.filter-result {
  min-width: 128px;
  margin: 0;
  padding-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.ranking-disclosure {
  max-width: 720px;
  margin-top: 14px;
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-size: 12px;
}

.ranking-disclosure summary,
.filter-disclosure summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 0;
  color: var(--text);
}

.ranking-disclosure p {
  max-width: 68ch;
  margin: 0;
  padding: 0 0 14px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
}

.weekly-scope {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px 24px;
  margin: 0;
}

.weekly-scope div {
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.weekly-scope dt {
  color: var(--muted);
  font-size: 12px;
}

.weekly-scope dd {
  margin: 0;
  color: var(--text);
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.4;
}

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

.weekly-item {
  border-bottom: 1px solid var(--line);
}

.weekly-item[data-selected="true"] {
  position: relative;
  z-index: 1;
  margin-top: -1px;
  border-top: 1px solid var(--accent);
  border-bottom-color: var(--accent);
}

.weekly-item > article {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.39fr);
  background: var(--page);
}

.weekly-item:nth-child(even) > article {
  background: var(--surface);
}

.weekly-item__body {
  min-width: 0;
  padding: 12px clamp(15px, 1.8vw, 20px);
}

.weekly-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 16px;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.weekly-item__meta span:first-child,
.weekly-item__status {
  color: var(--text);
}

.weekly-item--emerging .weekly-item__status {
  color: var(--accent);
}

.weekly-item__body h3 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(19px, 1.7vw, 23px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.weekly-item__summary {
  max-width: 72ch;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.weekly-item__consensus {
  max-width: 68ch;
  margin: 7px 0 0;
  color: var(--text);
  font-size: 13px;
  line-height: 1.4;
  text-wrap: pretty;
}

.weekly-item__open {
  margin-top: 2px;
}

.weekly-item__families {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.weekly-item__families li {
  padding: 4px 8px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.weekly-item__caveat {
  max-width: 78ch;
  margin: 12px 0 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.55;
}

.weekly-item__caveat strong {
  color: var(--text);
}

.weekly-item__sources {
  margin-top: 8px;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
}

.weekly-item__sources summary {
  min-height: 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 7px 0 5px;
  color: var(--text);
  font-size: 12px;
}

.weekly-item__sources summary small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.weekly-item__sources ul {
  margin: 0;
  padding: 5px 0 4px;
  list-style: none;
}

.weekly-item__context {
  padding: 14px 0 2px;
  border-top: 1px solid var(--line);
}

.weekly-item__sources li {
  display: grid;
  grid-template-columns: minmax(120px, 0.35fr) minmax(0, 1fr) minmax(160px, 0.5fr);
  gap: 12px 20px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.weekly-item__sources li > span {
  color: var(--muted);
  font-weight: 700;
}

.weekly-item__sources a {
  color: var(--text);
  font-family: var(--sans);
  font-weight: 700;
  line-height: 1.4;
  overflow-wrap: anywhere;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.weekly-item__sources a:hover {
  background: var(--accent);
}

.weekly-item__sources li > small {
  color: var(--muted);
  line-height: 1.4;
}

.weekly-item__opinion {
  position: relative;
  min-width: 0;
  display: grid;
  align-content: center;
  padding: 14px 18px;
  background: var(--paper);
  color: var(--text-inverse);
}

.weekly-limitations {
  margin-top: 18px;
  border-right: 0;
  border-left: 0;
  background: transparent;
}

.weekly-limitations summary {
  padding-right: 0;
  padding-left: 0;
}

.weekly-limitations ul {
  margin: 0;
  padding: 4px 0 18px;
  list-style: none;
}

.weekly-limitations li {
  max-width: 78ch;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
}

.weekly-limitations li::before {
  color: var(--accent);
  content: "■";
  margin-right: 9px;
}

.dossier-board {
  margin-top: 30px;
  scroll-margin-top: 16px;
}

body[data-page="home"] .dossier-board,
body[data-page="home"] .watchlist {
  scroll-margin-top: 72px;
}

.dossier-board__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
}

.dossier-count {
  flex: 0 0 auto;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.dossier-method-note {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.4;
  text-align: right;
}

.filter-disclosure {
  margin-top: 12px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.topic-list {
  margin-top: 18px;
  border-top: 1px solid var(--line);
}

.watchlist {
  margin-top: 48px;
  scroll-margin-top: 16px;
}

.watchlist__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px 32px;
  padding: 12px 0;
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
}

.watchlist__header h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-transform: uppercase;
}

.trend-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.44fr);
  border-bottom: 1px solid var(--line);
  background: var(--page);
  color: var(--text);
}

body[data-page="home"] .trend-card--lead {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.44fr);
}

body[data-page="home"] .trend-card--lead .trend-card__main {
  min-height: 266px;
  gap: 9px;
  padding: 28px clamp(24px, 3vw, 38px);
}

body[data-page="home"] .trend-card--lead .trend-card__headline {
  max-width: 820px;
  font-size: clamp(32px, 3.7vw, 46px);
  letter-spacing: -0.038em;
  line-height: 1.02;
  text-wrap: balance;
}

body[data-page="home"] .trend-card--lead .trend-card__summary {
  max-width: 64ch;
  font-size: 15px;
}

body[data-page="home"] .trend-card--lead .trend-card__consensus {
  max-width: 62ch;
  font-size: 16px;
  line-height: 1.45;
}

body[data-page="home"] .trend-card--lead .trend-card__signal {
  padding: 24px;
}

body[data-page="home"] .trend-card--lead .reaction-block__label {
  font-size: clamp(23px, 2.2vw, 29px);
  text-wrap: balance;
}

.trend-card[data-selected="true"] {
  position: relative;
  z-index: 1;
  margin-top: -1px;
  border-top: 1px solid var(--accent);
  border-bottom-color: var(--accent);
  background: var(--surface-raised);
}

.trend-card[data-selected="true"] + .trend-card {
  border-top-color: var(--line);
}

.trend-card__main,
.trend-card__signal {
  min-width: 0;
  display: grid;
}

.trend-card__main {
  align-content: center;
  gap: 6px;
  padding: 12px 22px;
}

.trend-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.trend-card__meta span:first-child {
  color: var(--text);
}

.trend-card[data-selected="true"] .trend-card__meta,
.trend-card[data-selected="true"] .trend-card__meta span:first-child {
  color: var(--text);
}

.trend-card__headline {
  display: block;
  max-width: 740px;
  margin: 0;
  font-size: clamp(21px, 2.2vw, 28px);
  letter-spacing: -0.03em;
  line-height: 1.14;
}

.trend-card__selection {
  color: var(--text);
  font-weight: 800;
}

.trend-card__selection::before {
  color: var(--accent);
  content: "■";
  margin-right: 6px;
}

.trend-card__summary {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.trend-card__consensus {
  display: block;
  max-width: 68ch;
  margin-top: 2px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.4;
  text-wrap: pretty;
}

.trend-card__footer {
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 4px 18px;
  margin-top: 3px;
}

.story-source-strip {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.story-source-strip__label {
  color: var(--muted);
}

.story-source-strip__marks {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.story-source-strip .source-row__publisher {
  margin: 0;
}

.story-source-strip .source-row__publisher-name {
  display: none;
}

.story-source-strip .source-row__mark,
.story-source-strip .source-row__mark:not(.source-row__mark--wordmark) {
  width: 22px;
  height: 20px;
  flex-basis: 22px;
}

.story-source-strip .source-row__mark--wordmark {
  width: 46px;
  flex-basis: 46px;
}

.story-source-strip__count {
  white-space: nowrap;
}

.trend-card__open {
  width: max-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.trend-card__open > span {
  display: inline-block;
  transition: transform 160ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) {
  .trend-card__open:hover {
    background: transparent;
    text-decoration-color: var(--brand-yellow);
  }

  .trend-card__open:hover > span {
    transform: translateX(4px);
  }

  .trend-card:has(.trend-card__open:hover) .trend-card__headline,
  .weekly-item:has(.weekly-item__open:hover) h3 {
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
  }
}

.trend-card__signal {
  position: relative;
  align-content: center;
  justify-items: stretch;
  padding: 12px 18px;
  background: var(--paper);
  color: var(--text-inverse);
  text-align: left;
}

.reaction-block {
  min-width: 0;
  width: 100%;
  display: grid;
  gap: 5px;
  color: var(--text-inverse);
}

.reaction-block__eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.reaction-block__marker {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  background: var(--line-inverse);
}

.reaction-block__marker--positive {
  background: var(--reaction-positive);
}

.reaction-block__marker--mixed {
  background: var(--reaction-mixed);
}

.reaction-block__marker--negative {
  background: var(--accent);
}

.weekly-item__opinion .reaction-block__marker,
.trend-card__signal .reaction-block__marker,
.conclusion-v2__statement .reaction-block__marker {
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  flex: none;
  pointer-events: none;
}

.reaction-block__label,
.trend-card__signal .reaction-block__label {
  color: var(--text-inverse);
  font-family: var(--sans);
  font-size: 19px;
  line-height: 1.15;
}

.reaction-bars {
  width: 100%;
  max-width: 340px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 2px minmax(0, 1fr);
  align-items: stretch;
  gap: 6px;
  margin: 1px 0;
}

.reaction-bars__divider {
  width: 2px;
  min-height: 44px;
  background: var(--text-inverse);
}

.reaction-arm {
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(31px, auto) auto;
  align-content: end;
  gap: 4px;
}

.reaction-arm__label {
  display: grid;
  align-content: end;
  justify-items: start;
  gap: 1px;
  color: var(--muted-inverse);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.reaction-arm__label > span {
  overflow-wrap: anywhere;
}

.reaction-arm__label small {
  color: var(--text-inverse);
  font: inherit;
  font-weight: 800;
}

.reaction-arm__track {
  min-height: 9px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
}

.reaction-arm__step {
  height: 9px;
  border: 1px solid var(--line-inverse);
  background: var(--reaction-empty);
}

.reaction-arm__step[data-filled="true"] {
  height: 9px;
}

.reaction-arm--negative .reaction-arm__step[data-filled="true"] {
  border-color: var(--accent);
  background: var(--accent);
}

.reaction-arm--positive .reaction-arm__step[data-filled="true"] {
  border-color: var(--reaction-positive);
  background: var(--reaction-positive);
}

.reaction-block[data-state="mixed"] .reaction-bars__divider {
  background: var(--reaction-mixed);
}

.reaction-block__summary {
  max-width: 46ch;
  color: var(--muted-inverse);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.35;
}

.reaction-block__note {
  color: var(--muted-inverse);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.2;
}

.reaction-block[data-state="legacy"] {
  gap: 7px;
}

.edition-comparison {
  min-width: 0;
  display: grid;
  gap: 3px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--line-inverse);
  color: var(--muted-inverse);
  font-size: 12px;
  line-height: 1.35;
}

.edition-comparison__eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.edition-comparison strong {
  color: var(--text-inverse);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.2;
}

.edition-comparison > span:last-child {
  max-width: 48ch;
}

.edition-comparison--card {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 2px 7px;
}

.edition-comparison--card > span:last-child {
  max-width: none;
}

.edition-comparison--card .edition-comparison__eyebrow::after,
.edition-comparison--card strong::after {
  color: var(--line-inverse);
  content: " /";
  font-family: var(--mono);
  font-weight: 500;
}

.edition-comparison[data-state="comparable"] strong {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.conclusion-v2__statement > .edition-comparison {
  display: grid;
  gap: 4px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line-inverse);
  color: var(--muted-inverse);
  font-size: 12px;
}

.conclusion-v2__statement > .edition-comparison strong {
  color: var(--text-inverse);
  font-size: 15px;
}

.conclusion-v2__statement > .edition-comparison > span:last-child {
  margin: 0;
  color: var(--muted-inverse);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.4;
}

.reaction-block[data-state="unclassified"] .reaction-bars,
.reaction-block[data-state="unavailable"] .reaction-bars,
.reaction-block[data-state="invalid"] .reaction-bars,
.reaction-block[data-state="withheld"] .reaction-bars {
  opacity: 0.72;
}

.trend-card__opinion-label {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.trend-card__signal strong {
  color: var(--text-inverse);
  font-family: var(--sans);
  font-size: 20px;
  line-height: 1.2;
}

.trend-card__opinion-copy {
  max-width: 28ch;
  color: var(--muted-inverse);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.4;
}

.empty-state {
  padding: 24px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  text-align: center;
}

.empty-state p {
  margin-bottom: 12px;
  color: var(--muted);
}

.empty-state button {
  min-height: 44px;
  border: 1px solid var(--accent);
  border-radius: 0;
  padding: 8px 14px;
  background: var(--accent);
  color: var(--text);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.weekly-empty {
  margin-top: 18px;
  border-top: 1px solid var(--line);
}

.topic-detail {
  padding: 48px 0 72px;
  border-top: 3px solid var(--accent);
  scroll-margin-top: 16px;
}

.topic-article {
  min-width: 0;
}

.back-to-trends {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.back-to-trends:hover {
  background: var(--accent);
}

.topic-opening {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  grid-template-areas: "headline consensus";
  align-items: start;
  gap: 24px 28px;
  margin-bottom: 24px;
}

.topic-header {
  grid-area: headline;
  max-width: 880px;
  margin: 0;
}

.topic-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 18px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
}

.topic-meta span:first-child {
  color: var(--text);
  font-weight: 700;
}

.topic-header h2 {
  max-width: 820px;
  margin-bottom: 14px;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.topic-dek {
  max-width: 68ch;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.55;
}

.trust-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 12px;
  list-style: none;
}

.trust-summary li {
  padding: 0 12px;
  border-left: 1px solid var(--line);
}

.trust-summary li:first-child {
  padding-left: 0;
  border-left: 0;
}

.trust-summary li:first-child {
  color: var(--text);
  font-weight: 700;
}

.story-glance {
  max-width: 720px;
  margin-top: clamp(32px, 4vw, 46px);
}

.story-glance h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.story-glance dl {
  display: grid;
  gap: 2px;
  margin: 0;
}

.story-glance dl > div {
  display: grid;
  grid-template-columns: minmax(104px, 0.32fr) minmax(0, 1fr);
  align-items: baseline;
  gap: 18px;
  padding: 8px 0;
}

.story-glance dt {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.story-glance dd {
  min-width: 0;
  margin: 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  text-wrap: pretty;
}

.conclusion-v2__statement {
  position: relative;
  grid-area: consensus;
  min-width: 0;
  padding: clamp(26px, 3vw, 34px);
  background: var(--paper);
  color: var(--text-inverse);
}

.conclusion-v2__statement > p {
  margin: 0 0 10px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
}

.conclusion-v2__statement h3 {
  max-width: 30ch;
  margin: 0;
  color: var(--text-inverse);
  font-size: clamp(25px, 2.5vw, 32px);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.conclusion-v2__statement > span {
  display: block;
  max-width: 58ch;
  margin-top: 12px;
  color: var(--muted-inverse);
  font-size: 14px;
  line-height: 1.5;
}

.conclusion-v2__statement .reaction-block {
  gap: 8px;
}

.conclusion-v2__statement .reaction-block__label {
  max-width: 30ch;
  font-size: clamp(25px, 2.5vw, 32px);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.conclusion-v2__statement .reaction-bars {
  max-width: 390px;
  margin: 5px 0 3px;
}

.conclusion-v2__statement .reaction-block__summary {
  max-width: 54ch;
  font-size: 15px;
  line-height: 1.45;
}

.weekly-detail-flow {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.weekly-detail__story {
  padding: clamp(28px, 4vw, 44px) 0;
}

.weekly-detail__story h3,
.weekly-evidence__header h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
}

.weekly-detail__story p {
  max-width: 65ch;
  margin: 14px 0 0;
  color: var(--text);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.55;
  text-wrap: pretty;
}

.weekly-evidence {
  padding: clamp(30px, 4vw, 46px) 0;
  border-top: 1px solid var(--line);
}

.weekly-evidence__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 18px 32px;
  margin-bottom: clamp(18px, 2.5vw, 28px);
}

.weekly-evidence__header .source-summary {
  justify-content: flex-end;
  margin: 0;
  text-align: right;
}

.weekly-evidence__groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(28px, 4vw, 52px);
}

.weekly-evidence-group {
  min-width: 0;
}

.weekly-evidence-group__header {
  min-height: 36px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.weekly-evidence-group__header h4 {
  margin: 0;
  color: var(--text);
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-wrap: balance;
}

.weekly-evidence-group__header > span {
  flex: 0 0 auto;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.4;
}

.weekly-detail__limits {
  padding-bottom: 24px;
}

.weekly-detail__limits .review-details {
  margin-top: 20px;
}

.conclusion-v2__confidence {
  display: grid;
  gap: 4px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line-inverse);
}

.conclusion-v2__confidence strong {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.conclusion-v2__confidence span {
  max-width: 58ch;
  color: var(--muted-inverse);
  font-size: 13px;
  line-height: 1.45;
}

.conclusion-v2__receipt {
  grid-area: receipt;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
}

.conclusion-v2__receipt > summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 20px;
  font-family: var(--mono);
  font-size: 12px;
}

.conclusion-v2__receipt > summary small {
  color: var(--muted);
  font-size: 12px;
}

.conclusion-v2__receipt-body {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  border-top: 1px solid var(--line);
}

.conclusion-v2__audit-summary {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 32px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.conclusion-v2__audit-summary .conclusion-v2__confidence,
.conclusion-v2__audit-summary .edition-comparison {
  align-content: start;
  margin: 0;
  padding: 0;
  border-top: 0;
}

.conclusion-v2__audit-summary .edition-comparison strong {
  color: var(--text);
}

.conclusion-v2__method {
  grid-column: 1 / -1;
  margin: 0;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
}

.conclusion-v2__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-right: 1px solid var(--line);
}

.conclusion-v2__metrics div {
  padding: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.conclusion-v2__metrics dt,
.conclusion-v2__checks strong {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.conclusion-v2__metrics dd {
  margin: 7px 0 0;
  color: var(--text);
  font-size: 13px;
  line-height: 1.4;
}

.conclusion-v2__checks {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 20px;
}

.conclusion-v2__checks p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.conclusion-v2__gap {
  padding-top: 10px;
  border-top: 1px solid var(--accent);
}

.answer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(330px, 0.78fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.answer-grid--sources-only {
  grid-template-columns: 1fr;
}

.consensus-panel,
.origin-panel {
  min-width: 0;
  padding: clamp(28px, 4vw, 48px);
}

.consensus-panel {
  background: var(--surface);
  color: var(--text);
}

.consensus-panel .panel-label {
  color: var(--text);
}

.discussion-state {
  margin: 0 0 12px;
  color: var(--text);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
}

.origin-panel {
  border-left: 1px solid var(--line);
  background: var(--page);
}

.answer-grid--sources-only .origin-panel {
  max-width: 900px;
  padding-right: 0;
  padding-left: 0;
  border-left: 0;
}

.consensus-panel h3,
.origin-panel h3,
.support-heading h3 {
  margin-bottom: 20px;
  font-size: clamp(25px, 2.7vw, 34px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.evidence-disclaimer {
  max-width: 62ch;
  margin: 10px 0 24px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.45;
}

.consensus-copy {
  max-width: 62ch;
  margin-bottom: 28px;
  font-size: clamp(18px, 1.7vw, 20px);
  line-height: 1.58;
}

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

.evidence-signal__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.evidence-signal__heading strong {
  font-family: var(--sans);
  font-size: 20px;
  line-height: 1.2;
}

.evidence-signal__heading span,
.evidence-signal > p {
  color: var(--muted);
  font-size: 12px;
}

.consensus-panel .evidence-signal__heading span,
.consensus-panel .evidence-signal > p {
  color: var(--muted);
}

.evidence-signal > p {
  margin: 7px 0 0;
}

.evidence-signal__scale {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-top: 10px;
}

.evidence-signal__scale span {
  min-width: 0;
  min-height: 48px;
  display: grid;
  place-content: center;
  gap: 1px;
  padding: 6px 3px;
  border: 1px solid var(--line);
  background: var(--surface-raised);
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.evidence-signal__scale b {
  font-weight: 650;
}

.evidence-signal__scale small {
  color: inherit;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.consensus-panel .evidence-signal__scale span {
  border-color: var(--line);
  background: var(--surface-raised);
  color: var(--muted);
}

.evidence-signal__scale span[data-active="true"],
.consensus-panel .evidence-signal__scale span[data-active="true"] {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--text);
  font-weight: 800;
}

.evidence-signal--unavailable {
  padding: 12px;
  border-left: 5px solid var(--accent);
  background: var(--surface-raised);
}

.consensus-panel .evidence-signal--unavailable {
  background: var(--unavailable-surface);
}

.evidence-signal--unavailable strong,
.evidence-signal--unavailable span {
  display: block;
  font-size: 12px;
}

.counterview {
  display: grid;
  gap: 4px;
  margin-top: 30px;
  padding: 16px 0 0 16px;
  border-top: 1px solid var(--line);
}

.counterview p,
.counterview span {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.counterview p {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.counterview strong {
  font-size: 16px;
}

.mixed-viewpoints {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 5px 0;
}

.mixed-viewpoints > span {
  display: grid;
  gap: 3px;
  padding: 10px;
  border: 1px solid var(--line-inverse);
}

.mixed-viewpoints b {
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.3;
}

.mixed-viewpoints small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
}

.sample-count {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
}

.source-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 16px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 12px;
}

.source-summary strong {
  color: var(--text);
}

.sample-receipt {
  margin: 14px 0 8px;
  padding: 0;
  border-right: 0;
  border-left: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.sample-receipt > summary {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 700;
}

.sample-receipt > summary small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
}

.sample-receipt dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 20px;
  margin: 0;
  padding: 4px 0 18px;
}

.sample-receipt dt,
.sample-receipt dd {
  font-size: 12px;
  line-height: 1.4;
}

.sample-receipt dd {
  margin-top: 3px;
  color: var(--text);
}

.origin-list,
.viewpoint-list,
.fact-list,
.limits-list,
.coverage-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.source-row {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.source-row--compact {
  padding: 15px 0;
}

.source-row__topline {
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}

.source-row__topline .source-row__publisher {
  margin: 0;
}

.source-row__relationship {
  flex: 0 0 auto;
  color: var(--text);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.source-row--context .source-row__relationship {
  color: var(--muted);
}

.source-row__publisher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.source-row__publisher--inline {
  align-self: start;
  margin: 0;
}

.source-row__mark {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: grid;
  overflow: visible;
  border: 0;
  background: transparent;
  color: var(--muted);
}

.source-row__mark--wordmark {
  width: 88px;
  height: 24px;
  flex-basis: 88px;
}

.source-row__mark--disney {
  width: 68px;
  flex-basis: 68px;
}

.source-row__mark--thewrap {
  width: 92px;
  flex-basis: 92px;
}

.source-row__mark--india-today,
.source-row__mark--gamesradar {
  width: 96px;
  flex-basis: 96px;
}

.source-row__mark-fallback,
.source-row__mark img {
  width: 100%;
  height: 100%;
  grid-area: 1 / 1;
}

.source-row__mark-fallback {
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
}

.source-row__mark[data-loaded="true"] .source-row__mark-fallback {
  opacity: 0;
}

.source-row__mark img {
  display: block;
  object-fit: contain;
  object-position: left center;
  opacity: 0;
}

.source-row__mark img[data-source-logo-treatment="invert"] {
  filter: invert(1);
}

.source-row__mark img[data-loaded="true"] {
  opacity: 1;
}

.source-row__mark img[hidden] {
  display: none;
}

.source-row__publisher-name {
  min-width: 0;
  overflow-wrap: anywhere;
}

.weekly-item__sources .source-row__publisher--inline {
  color: var(--muted);
}

.weekly-item__sources .source-row__publisher--inline .source-row__mark {
  height: 22px;
}

.weekly-item__sources .source-row__publisher--inline .source-row__mark:not(.source-row__mark--wordmark) {
  width: 22px;
  flex-basis: 22px;
}

.source-row > a {
  display: inline;
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.source-row > a:hover,
.viewpoint-content small a:hover,
.fact-list a:hover {
  background: var(--accent);
}

.weekly-evidence .source-row > a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 4px 0;
}

.weekly-evidence .source-row > a:hover {
  background: transparent;
  text-decoration-color: var(--brand-yellow);
}

.source-row__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  margin: 6px 0 3px;
  color: var(--muted);
  font-size: 12px;
}

.source-row--compact .source-row__meta {
  margin-bottom: 0;
}

.source-row small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.source-row__note {
  margin-top: 5px;
}

.scope-warning {
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.evidence-button {
  min-height: 44px;
  margin-top: 22px;
  border: 0;
  border-bottom: 2px solid var(--accent);
  border-radius: 0;
  padding: 8px 0 6px;
  background: transparent;
  color: var(--text);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.evidence-button:hover {
  background: var(--accent);
}

.detail-disclosures {
  display: grid;
  gap: 0;
  padding-top: 28px;
}

.detail-disclosures > .conclusion-v2__receipt {
  grid-area: auto;
}

details {
  border: 1px solid var(--line);
  background: var(--surface);
}

summary {
  padding: 16px 18px;
  font-weight: 700;
  cursor: pointer;
}

summary::marker {
  color: var(--accent);
}

.detail-disclosures summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
}

.detail-disclosures > details {
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  scroll-margin-top: 24px;
}

.detail-disclosures > details:last-child {
  border-bottom: 1px solid var(--line);
}

.detail-disclosures > details > summary {
  padding-right: 0;
  padding-left: 0;
}

.detail-disclosures summary small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
}

.analysis-disclosure__overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 42px;
  padding: 24px 0 30px;
}

.analysis-disclosure__overview .story-glance,
.analysis-disclosure__overview .sample-receipt,
.analysis-disclosure__overview .scope-warning {
  margin-top: 0;
}

.analysis-disclosure__overview .scope-warning {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.sample-finding-audit {
  max-width: 850px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.sample-finding-audit h3 {
  margin: 0 0 18px;
  font-size: clamp(25px, 2.7vw, 34px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.claim-check {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 3px solid var(--line);
}

.claim-check__lede {
  margin: 0 0 10px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.claim-check__lede--result {
  margin-top: 28px;
  color: var(--accent);
}

.claim-check__quote {
  margin: 0 0 28px;
}

.claim-check__quote > p {
  margin: 0;
}

.support-heading {
  max-width: 760px;
  padding: 34px 0 10px;
}

.support-heading h3 {
  margin-bottom: 8px;
}

.support-heading p {
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
}

.viewpoint-list {
  padding: 0 0 12px;
}

.viewpoint-row {
  display: grid;
  grid-template-columns: minmax(185px, 0.52fr) minmax(0, 1fr);
  gap: 14px 34px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.viewpoint-title p {
  margin: 0 0 5px;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.viewpoint-title h4 {
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 1.25;
}

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

.viewpoint-content {
  min-width: 0;
}

.viewpoint-content > p {
  max-width: 68ch;
  margin: 16px 0 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.viewpoint-content > small {
  color: var(--muted);
  font-size: 12px;
}

.viewpoint-content > .viewpoint-qualifiers {
  display: block;
  margin-top: 5px;
}

.viewpoint-content > small a,
.fact-list a {
  color: var(--text);
  font-weight: 700;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.fact-list,
.limits-list,
.detail-disclosures details > p {
  padding: 8px 0 24px;
}

.evidence-sources {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
  gap: 28px 56px;
  margin-top: 22px;
  padding: 34px 0 28px;
  border-top: 1px solid var(--line);
}

.trend-evidence {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
  gap: 28px 56px;
  margin-top: 22px;
  padding: 34px 0 28px;
  border-top: 1px solid var(--line);
}

.trend-evidence h3 {
  margin-bottom: 14px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.trend-evidence dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.trend-evidence p {
  max-width: 65ch;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.trend-evidence small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.5;
}

.trend-evidence a {
  color: var(--text);
  font-weight: 700;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.trend-evidence a:hover {
  background: var(--accent);
}

.evidence-sources h3 {
  margin-bottom: 8px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.evidence-sources > div p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.evidence-sources .source-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.review-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 48px;
  margin: 0;
  padding: 18px 0 30px;
}

.review-details div {
  min-width: 0;
}

.review-details dd {
  overflow-wrap: anywhere;
}

.fact-list li,
.limits-list li,
.coverage-grid li {
  max-width: 74ch;
  margin-bottom: 11px;
  color: var(--muted);
  font-size: 14px;
}

.fact-list li > span,
.fact-source-note {
  display: block;
}

.fact-source-note,
.percentage-scope-note {
  margin-top: 5px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.45;
}

.facts-unavailable {
  margin: 0;
  padding: 8px 0 24px;
  color: var(--muted);
}

.change-note {
  max-width: 72ch;
  margin: 20px 0 0;
  padding: 12px 0 12px 14px;
  border-left: 5px solid var(--accent);
  color: var(--muted);
  font-size: 14px;
}

.change-note strong {
  color: var(--text);
}

.fact-list li:last-child,
.limits-list li:last-child,
.coverage-grid li:last-child {
  margin-bottom: 0;
}

.detail-disclosures details > p {
  color: var(--muted);
  font-size: 14px;
}

.methodology {
  padding: 64px 0 72px;
  border-top: 3px solid var(--accent);
}

.methodology > div:first-child {
  max-width: 720px;
  margin-bottom: 26px;
}

.methodology h2 {
  margin-bottom: 8px;
  font-size: 32px;
  letter-spacing: -0.04em;
}

.methodology > div:first-child > p:last-child {
  margin: 0;
  color: var(--muted);
}

.method-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 0;
  padding: 8px 0 26px;
}

.method-points div {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--text);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
}

dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.coverage-details {
  margin-top: 12px;
  border-right: 0;
  border-left: 0;
  background: transparent;
}

.method-details {
  border-right: 0;
  border-left: 0;
  background: transparent;
}

.method-details summary,
.coverage-details summary {
  padding-right: 0;
  padding-left: 0;
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  padding: 8px 0 20px;
}

.coverage-grid h3 {
  margin-bottom: 10px;
  font-size: 14px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 26px 0 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

footer p {
  margin: 0;
}

footer a {
  color: var(--text);
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.page-error {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
  border: 1px solid var(--accent);
  padding: 18px 20px;
  background: var(--surface);
}

.page-error[hidden] {
  display: none;
}

.page-error h2 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.page-error p {
  max-width: 68ch;
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.page-error__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.page-error__actions button,
.page-error__actions a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 0;
  padding: 8px 12px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
}

.page-error__actions button {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--text);
  cursor: pointer;
}

.page-error__actions button:disabled {
  border-color: var(--line);
  background: var(--line);
  color: var(--muted);
  cursor: wait;
}

.page-error__actions a {
  color: var(--text);
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.loading-state,
.error-state,
.topic-list-unavailable {
  padding: 20px 14px;
  border-left: 5px solid var(--accent);
  background: var(--surface);
  color: var(--muted);
  font-size: 13px;
}

.loading-state span {
  display: block;
  width: 32px;
  height: 4px;
  margin-bottom: 8px;
  background: var(--accent);
}

.loading-state p,
.error-state p:last-child,
.topic-list-unavailable {
  margin-bottom: 0;
}

.noscript {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 16px;
  border-left: 5px solid var(--accent);
  background: var(--surface-raised);
  text-align: center;
}

@media (max-width: 1050px) {
  #trends-title {
    transform: scale(1.12);
  }

  .conclusion-v2__receipt-body {
    grid-template-columns: 1fr;
  }

  .conclusion-v2__checks {
    border-top: 1px solid var(--line);
  }

  .conclusion-v2__metrics {
    border-right: 0;
  }

  .answer-grid {
    grid-template-columns: 1fr;
  }

  .origin-panel {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 900px) {
  .topic-opening {
    grid-template-columns: 1fr;
    grid-template-areas:
      "headline"
      "consensus";
    gap: 18px;
  }

  .conclusion-v2__audit-summary,
  .analysis-disclosure__overview {
    grid-template-columns: 1fr;
  }

  .analysis-disclosure__overview .scope-warning {
    grid-column: 1;
  }

  .weekly-evidence__header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .weekly-evidence__header .source-summary {
    justify-content: flex-start;
    text-align: left;
  }

  .weekly-evidence__groups {
    grid-template-columns: 1fr;
  }

  .watchlist {
    margin-top: 40px;
  }

  .watchlist__header {
    display: grid;
    align-items: start;
    gap: 10px;
    padding: 12px 0;
  }

  .weekly-scope {
    justify-content: flex-start;
    gap: 4px 16px;
  }

  .weekly-item__sources li {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .weekly-item__sources li > small {
    grid-column: 2;
  }

  .weekly-item > article,
  .trend-card {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .trend-card--lead {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .trend-card--lead .trend-card__main {
    min-height: 0;
    padding: 24px 22px;
  }

  body[data-page="home"] .trend-card--lead .trend-card__signal {
    padding: 18px 22px;
  }

  .weekly-item__body,
  .trend-card__main {
    padding: 14px 16px 12px;
  }

  .weekly-item__opinion,
  .trend-card__signal {
    padding: 12px 16px 14px;
  }

  .reaction-bars {
    max-width: 400px;
  }

  .reaction-block__summary {
    max-width: 62ch;
  }

  .trend-controls {
    grid-template-columns: minmax(0, 1fr) 210px;
  }

  .filter-result {
    grid-column: 1 / -1;
    padding: 0;
    text-align: left;
  }

  .method-points {
    grid-template-columns: 1fr 1fr;
  }

  .evidence-sources {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .trend-evidence {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .header-inner,
  main,
  footer {
    width: min(calc(100% - 28px), var(--max));
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 0 14px;
    padding: 6px 0 8px;
  }

  .header-purpose {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .snapshot-note {
    text-align: left;
  }

  .snapshot-note__edition {
    justify-content: flex-start;
  }

  .trend-board {
    padding: 36px 0 52px;
  }

  .edition-switcher {
    margin-bottom: 30px;
  }

  .edition-switcher__body {
    padding: 20px 0 18px;
  }

  .edition-switcher__heading {
    align-items: stretch;
    flex-direction: column;
  }

  .edition-switcher__status {
    text-align: left;
  }

  .edition-switcher__heading h1 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 0.95;
  }

  .edition-picker {
    width: 100%;
    min-width: 0;
  }

  .trend-board__title-group {
    align-items: stretch;
    gap: 18px;
  }

  .trend-board__title-group .edition-picker {
    flex-basis: 100%;
  }

  .trend-board__header {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 22px;
  }

  #trends-title {
    font-size: 42px;
    transform: scale(1.12);
  }

  .category-index {
    margin-bottom: 24px;
  }

  .category-list {
    gap: 2px;
    scroll-snap-type: inline proximity;
  }

  .category-button {
    min-width: max-content;
    min-height: 48px;
    flex: 0 0 auto;
    padding: 9px 13px;
    font-size: 0.75rem;
    scroll-snap-align: start;
  }

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

  .filter-result {
    grid-column: auto;
  }

  .ranking-disclosure {
    max-width: none;
  }

  .weekly-item__body {
    padding: 14px 12px 12px;
  }

  .weekly-item__opinion {
    padding: 12px;
  }

  .weekly-item__body h3 {
    font-size: 22px;
  }

  .weekly-item__sources summary,
  .weekly-item__sources li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .weekly-item__sources li > small {
    grid-column: auto;
  }

  .dossier-board {
    margin-top: 24px;
  }

  .dossier-board__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .dossier-method-note {
    text-align: left;
  }

  .trend-card {
    grid-template-columns: 1fr;
  }

  .trend-card__main {
    gap: 7px;
    padding: 14px 14px 10px;
  }

  .trend-card__signal {
    display: grid;
    padding: 12px 14px 14px;
    text-align: left;
  }

  body[data-page="home"] .trend-card--lead .trend-card__main {
    gap: 8px;
    padding: 18px 14px 14px;
  }

  body[data-page="home"] .trend-card--lead .trend-card__signal {
    padding: 14px;
  }

  body[data-page="home"] .trend-card--lead .trend-card__headline {
    font-size: clamp(27px, 8.5vw, 36px);
    line-height: 1.05;
  }

  body[data-page="home"] .trend-card--lead .trend-card__summary {
    font-size: 14px;
  }

  body[data-page="home"] .trend-card--lead .trend-card__consensus {
    font-size: 15px;
  }

  .trend-card__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .reaction-bars,
  .reaction-block__summary {
    max-width: none;
  }

  .trend-card__headline {
    font-size: 20px;
  }

  .trend-card__opinion-label {
    font-size: 12px;
  }

  .trend-card__signal strong {
    font-size: 18px;
  }

  .topic-detail {
    padding: 42px 0 52px;
  }

  .topic-header h2 {
    font-size: 36px;
  }

  .trust-summary li:last-child {
    flex-basis: 100%;
    padding-left: 0;
    border-left: 0;
  }

  .story-glance {
    margin-top: 26px;
  }

  .weekly-detail__story,
  .weekly-evidence {
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .weekly-evidence-group__header {
    min-height: 32px;
  }

  .consensus-panel,
  .origin-panel {
    padding: 24px 20px;
  }

  .conclusion-v2__statement,
  .conclusion-v2__checks {
    padding: 20px;
  }

  .conclusion-v2__receipt > summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .evidence-signal__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .evidence-signal__scale span {
    padding-right: 1px;
    padding-left: 1px;
    font-size: 12px;
  }

  .sample-receipt dl {
    grid-template-columns: 1fr;
  }

  .mixed-viewpoints {
    grid-template-columns: 1fr;
  }

  .detail-disclosures summary {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .viewpoint-row,
  .method-points,
  .coverage-grid,
  .review-details {
    grid-template-columns: 1fr;
  }

  .viewpoint-row {
    gap: 14px;
  }

  .review-details {
    gap: 20px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-error {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 360px) {
  .header-inner,
  main,
  footer {
    width: calc(100% - 24px);
  }

  .header-purpose {
    display: none;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
    gap: 7px;
  }

  .site-nav__link {
    padding-right: 2px;
    padding-left: 2px;
    font-size: 12px;
  }

  .topic-header h2 {
    font-size: 31px;
  }

  .trend-card {
    grid-template-columns: 1fr;
  }

  .evidence-signal__scale {
    grid-template-columns: 1fr 1fr;
  }
}

@media (forced-colors: active) {
  .brand-period__face {
    border: 1px solid CanvasText;
    background: Highlight;
  }

  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  select:focus-visible,
  summary:focus-visible,
  main:focus-visible {
    outline: 3px solid Highlight;
    box-shadow: none;
  }

  .trend-card[data-selected="true"] {
    border: 2px solid Highlight;
    background: Highlight;
    color: HighlightText;
  }

  .evidence-signal__scale span[data-active="true"] {
    border: 2px solid Highlight;
    background: Highlight;
    color: HighlightText;
  }

  .reaction-arm__step {
    border-color: CanvasText;
  }

  .reaction-arm__step[data-filled="true"] {
    border: 2px solid CanvasText;
    background: Highlight;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

  .brand-period__cube {
    transition: none;
    transform: rotateZ(0deg) rotateX(0deg) rotateY(0deg);
    will-change: auto;
  }

  .trend-card__open > span {
    transform: none;
  }
}
