:root {
  --paper: #f2f0e8;
  --paper-deep: #e8e4d8;
  --surface: #fffef8;
  --ink: #102a24;
  --ink-soft: #27463d;
  --muted: #56675f;
  --line: #d6d9d0;
  --mint: #b8efd2;
  --mint-bright: #6dddac;
  --green: #1d7658;
  --acid: #dff483;
  --amber: #e6b95d;
  --red: #a94c43;
  --display: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--paper); }
button, input, textarea, select { font: inherit; }
a { color: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  transform: translateY(-160%);
  border-radius: 999px;
  color: white;
  background: var(--ink);
}

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

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

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(16, 42, 36, 0.14);
  background: rgba(242, 240, 232, 0.94);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1440px;
  min-height: 76px;
  margin: 0 auto;
  padding: 0 3rem;
}

.brand {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  width: fit-content;
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--display);
  font-size: 1.2rem;
  font-style: italic;
}

.brand__name {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.edition {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  color: var(--ink-soft);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.edition__dot {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(29, 118, 88, 0.11);
}

.site-nav {
  display: flex;
  gap: 1.4rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.site-nav a { text-decoration: none; }
.site-nav a:hover { text-decoration: underline; text-underline-offset: 0.3rem; }

.mobile-nav-toggle {
  display: none;
  min-height: 2.5rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
}
.mobile-nav-toggle[aria-expanded="true"] { color: white; background: var(--ink); }
.mobile-nav-panel {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}
.mobile-nav-panel[hidden] { display: none; }
.mobile-nav-panel a {
  min-height: 3rem;
  padding: 0.95rem 1.5rem;
  background: var(--surface);
  font-size: 0.78rem;
  font-weight: 750;
  text-decoration: none;
}
.mobile-nav-panel a:hover { color: var(--green); text-decoration: underline; text-underline-offset: 0.2rem; }

.header-controls {
  display: flex;
  justify-content: flex-end;
  gap: 1.4rem;
  align-items: center;
}

.auth-entry { position: relative; }
.login-button,
.account-button {
  min-height: 2.5rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
}
.login-button:hover { color: white; background: var(--ink); }
.account-button { display: inline-flex; gap: 0.55rem; align-items: center; padding: 0.28rem 0.72rem 0.28rem 0.32rem; }
.account-button[hidden] { display: none; }
.account-button__avatar {
  display: grid;
  width: 1.85rem;
  height: 1.85rem;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-family: var(--display);
  font-size: 0.95rem;
}
.account-menu {
  position: absolute;
  z-index: 40;
  top: calc(100% + 0.7rem);
  right: 0;
  width: min(310px, calc(100vw - 2rem));
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(16, 42, 36, 0.18);
}
.account-menu[hidden] { display: none; }
.account-menu strong, .account-menu span { display: block; }
.account-menu strong { font-family: var(--display); font-size: 1.25rem; }
.account-menu > span { overflow: hidden; margin-top: 0.25rem; color: var(--muted); font-size: 0.72rem; text-overflow: ellipsis; }
.account-menu p { margin: 1rem 0; padding-top: 0.85rem; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.74rem; line-height: 1.45; }
.account-menu button { width: 100%; padding: 0.65rem; border: 1px solid var(--line); border-radius: 0.55rem; background: transparent; font-size: 0.72rem; font-weight: 800; cursor: pointer; }
.account-menu button:hover { border-color: var(--ink); }
.account-menu .account-menu__action {
  display: block;
  width: 100%;
  min-height: 2.5rem;
  margin-top: 0.45rem;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  color: var(--ink);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
.account-menu .account-menu__action:hover { border-color: var(--green); color: var(--green); }

.loading-shell {
  max-width: 1440px;
  min-height: 72vh;
  margin: 0 auto;
  padding: 5rem 3rem;
}

.loading-shell__eyebrow,
.loading-shell__title,
.loading-shell__card {
  border-radius: 0.5rem;
  background: linear-gradient(100deg, #e5e2d8 30%, #f8f6ee 50%, #e5e2d8 70%);
  background-size: 300% 100%;
  animation: shimmer 1.5s infinite;
}

.loading-shell__eyebrow { width: 14rem; height: 0.8rem; }
.loading-shell__title { width: min(52rem, 90%); height: 8rem; margin-top: 2rem; }
.loading-shell__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1rem; margin-top: 4rem; }
.loading-shell__card { height: 22rem; }

.story-ssr {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 5rem 2rem 7rem;
}
.story-ssr > .eyebrow { margin-top: 3.5rem; }
.story-ssr > h1 {
  max-width: 1160px;
  margin: 1rem 0 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.92;
}
.story-ssr > p:not(.eyebrow) {
  max-width: 760px;
  margin: 1.75rem 0 0;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  line-height: 1.45;
}
.story-ssr > h2 { margin-top: 4rem; font-family: var(--display); font-size: 2rem; }
.story-ssr__sources {
  display: grid;
  gap: 0;
  margin: 1rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.story-ssr__sources li { border-bottom: 1px solid var(--line); }
.story-ssr__sources a {
  display: grid;
  grid-template-columns: minmax(10rem, 0.35fr) 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  color: var(--ink);
  text-decoration: none;
}
.story-ssr__sources a:hover span { text-decoration: underline; }
.story-ssr__sources strong { color: var(--green); font-size: 0.72rem; text-transform: uppercase; }
.story-ssr__sources span { font-family: var(--display); font-size: 1.15rem; }

@keyframes shimmer { to { background-position-x: -300%; } }

.hero-shell {
  max-width: 1440px;
  margin: 0 auto;
  padding: 2.5rem 3rem 4rem;
}

.hero-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.5fr);
  gap: 3rem;
  align-items: end;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.17em;
}

.eyebrow--light { color: var(--mint-bright); }

.hero-intro h1,
.story-hero h1 {
  max-width: 980px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.hero-intro h1 em,
.comparison-section__intro h2 em {
  color: var(--green);
  font-weight: 400;
}

.hero-intro__copy {
  max-width: 29rem;
  margin: 0.45rem 0 0;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.4;
}

.hero-intro__summary { padding-bottom: 0.2rem; }
.hero-intro__summary > strong {
  display: inline-block;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.daily-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding: 0.85rem 1.1rem;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  color: var(--ink-soft);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-update {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0.25rem 0.65rem;
  align-items: center;
  justify-items: end;
  min-width: 18rem;
}

.live-update__badge,
.live-update__activity {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
}

.live-update__badge {
  padding: 0.32rem 0.52rem;
  border-radius: 999px;
  color: var(--mint);
  background: var(--ink);
}

.live-update__badge i {
  position: relative;
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  background: var(--mint-bright);
}

.live-update__badge i::after {
  position: absolute;
  inset: -0.26rem;
  border: 1px solid var(--mint-bright);
  border-radius: 50%;
  content: "";
  animation: live-pulse 1.8s ease-out infinite;
}

.live-update__activity { color: var(--ink-soft); }
.live-update__activity strong {
  min-width: 2.9rem;
  color: var(--green);
  font-size: 0.76rem;
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.live-update__activity strong[hidden] { display: none; }

.live-update__verified {
  grid-column: 1 / -1;
  display: flex;
  gap: 0.25rem 0.8rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.live-update[data-state="checking"] .live-update__badge i { animation: live-blink 700ms ease-in-out infinite alternate; }
.live-update[data-state="changed"] .live-update__badge { color: var(--ink); background: var(--acid); }
.live-update[data-state="changed"] .live-update__badge i,
.live-update[data-state="changed"] .live-update__badge i::after { background: var(--green); border-color: var(--green); }
.live-update[data-state="error"] .live-update__badge { color: #fff2cf; background: #6c4d13; }
.live-update[data-state="error"] .live-update__activity strong { color: #805b17; }
.live-update[data-state="offline"] .live-update__badge,
.live-update[data-state="paused"] .live-update__badge { color: var(--paper); background: var(--muted); }
.live-update[data-state="offline"] .live-update__badge i,
.live-update[data-state="paused"] .live-update__badge i { background: var(--line); }
.live-update[data-state="offline"] .live-update__badge i::after,
.live-update[data-state="paused"] .live-update__badge i::after { display: none; }

@keyframes live-pulse {
  0% { opacity: 0.72; transform: scale(0.62); }
  75%, 100% { opacity: 0; transform: scale(1.75); }
}

@keyframes live-blink {
  from { opacity: 0.45; }
  to { opacity: 1; }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 1rem;
  margin-top: 1.15rem;
}

.hero-grid > .lead-story:only-child { grid-column: 1 / -1; }

.local-edition-placeholder {
  min-height: 330px;
  margin-top: 1.15rem;
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: 1.25rem;
  color: white;
  background:
    radial-gradient(circle at 86% 12%, rgba(184, 239, 210, 0.2), transparent 18rem),
    linear-gradient(145deg, #12332b, #0d211d 76%);
}
.local-edition-placeholder h2 {
  max-width: 850px;
  margin: 2.5rem 0 1rem;
  font-family: var(--display);
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 0.98;
}
.local-edition-placeholder > p:last-child { max-width: 670px; margin: 0; color: #c7d4d0; line-height: 1.6; }

.lead-story {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  border-radius: 1.25rem;
  color: white;
  background:
    radial-gradient(circle at 86% 12%, rgba(184, 239, 210, 0.2), transparent 18rem),
    linear-gradient(145deg, #12332b, #0d211d 76%);
}

.lead-story__link {
  display: flex;
  min-height: inherit;
  padding: 1.8rem;
  flex-direction: column;
  text-decoration: none;
}

.lead-story__topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  color: #b9c9c4;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.live-label { display: inline-flex; gap: 0.55rem; align-items: center; color: var(--mint); font-weight: 800; }
.live-label span { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--mint-bright); }

.lead-story h2 {
  max-width: 950px;
  margin: 2rem 0 0.85rem;
  font-family: var(--display);
  font-size: clamp(2.25rem, 3.8vw, 3.8rem);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 0.98;
}

.lead-story p {
  max-width: 680px;
  margin: 0;
  color: #c7d4d0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.source-pills { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 1rem; }
.source-pills span {
  padding: 0.35rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #dfe9e6;
  font-size: 0.69rem;
}

.lead-story__cta {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  margin-top: auto;
  padding-top: 1.35rem;
  color: var(--mint);
  font-size: 0.83rem;
  font-weight: 800;
}

.lead-story__link:hover .lead-story__cta span { transform: translateX(0.25rem); }
.lead-story__cta span { transition: transform 160ms ease; }

.glance {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: var(--surface);
}

.glance__heading {
  display: flex;
  justify-content: space-between;
  padding: 1.2rem 1.35rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  grid-column: 1 / -1;
}

.glance__heading small { color: var(--muted); font-size: inherit; font-weight: 600; }

.glance-story { display: grid; grid-template-columns: auto 1fr; gap: 0.7rem; min-height: 174px; padding: 1rem; }
.glance-story + .glance-story { border-top: 0; }
.glance-story:nth-child(n + 4) { border-top: 1px solid var(--line); }
.glance-story:nth-child(odd) { border-left: 1px solid var(--line); }
.glance-story__number { color: var(--green); font-family: var(--display); font-size: 1.35rem; font-style: italic; }
.glance-story a { display: flex; flex-direction: column; text-decoration: none; }
.glance-story a > span { color: var(--green); font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.glance-story h3 { margin: 0.55rem 0; font-family: var(--display); font-size: clamp(1.08rem, 1.55vw, 1.35rem); line-height: 1.08; letter-spacing: -0.025em; }
.glance-story small { color: var(--ink-soft); font-size: 0.72rem; font-weight: 700; }
.glance-story time { margin-top: auto; color: var(--muted); font-size: 0.72rem; }
.glance-story a:hover h3 { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 0.2rem; }

.top-ranking {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-top: 1px solid var(--line);
}

.top-ranking__list {
  display: grid;
  margin: 3rem 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: var(--line);
  list-style: none;
}

.top-ranking__item {
  display: grid;
  grid-template-columns: minmax(118px, 0.14fr) 1fr;
  gap: 1px;
  background: var(--line);
}

.top-ranking__item + .top-ranking__item { border-top: 1px solid var(--line); }

.top-ranking__position {
  display: flex;
  min-height: 240px;
  padding: 1.25rem;
  color: white;
  background: var(--ink);
  flex-direction: column;
}

.top-ranking__position > span {
  color: var(--mint);
  font-family: var(--display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-style: italic;
  line-height: 0.9;
}

.top-ranking__position small {
  margin-top: auto;
  color: #a9beb7;
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.top-ranking__position strong {
  margin-top: 0.2rem;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 500;
  white-space: nowrap;
}

.top-ranking__maximum { color: #a9beb7; font-family: var(--sans); font-size: 0.58rem; }

.top-ranking__story {
  display: grid;
  min-width: 0;
  padding: 1.25rem 1.45rem;
  background: var(--surface);
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 1.5rem;
  align-content: start;
}

.top-ranking__eyeline {
  display: flex;
  gap: 0.45rem 0.8rem;
  flex-wrap: wrap;
  grid-column: 1;
  color: var(--green);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.top-ranking__eyeline span + span {
  padding-left: 0.8rem;
  border-left: 1px solid var(--line);
  color: var(--muted);
}

.top-ranking__title {
  grid-column: 1;
  color: inherit;
  text-decoration: none;
}

.top-ranking__title h3 {
  max-width: 980px;
  margin: 0.65rem 0 0.55rem;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.top-ranking__title:hover h3 {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2rem;
}

.top-ranking__explanation {
  max-width: 820px;
  margin: 0;
  grid-column: 1;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.5;
}

.top-ranking__context {
  display: flex;
  gap: 0.4rem 1rem;
  flex-wrap: wrap;
  margin-top: 0.9rem;
  grid-column: 1;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.top-ranking__context > * + * {
  position: relative;
  padding-left: 1rem;
}

.top-ranking__context > * + *::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: var(--green);
  content: "";
  transform: translateY(-50%);
}

.top-ranking__details {
  margin-top: 1rem;
  grid-column: 1;
}

.top-ranking__details summary {
  width: fit-content;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 850;
  cursor: pointer;
  text-underline-offset: 0.18rem;
}

.top-ranking__details summary:hover { text-decoration: underline; }

.top-ranking__details dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(115px, 1fr));
  gap: 1px;
  max-width: 900px;
  margin: 0.8rem 0 0;
  padding: 1px;
  background: var(--line);
}

.top-ranking__details dl div {
  display: flex;
  gap: 0.5rem;
  min-width: 0;
  padding: 0.65rem;
  background: var(--paper);
  flex-direction: column;
}

.top-ranking__details dt {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.top-ranking__details dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 850;
}

.top-ranking__ai {
  display: flex;
  min-width: 190px;
  padding-left: 1.5rem;
  border-left: 1px solid var(--line);
  grid-column: 2;
  grid-row: 1 / span 5;
  flex-direction: column;
  justify-content: center;
}

.top-ranking__ai > span {
  max-width: 190px;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.065em;
  line-height: 1.35;
}

.top-ranking__ai--ready > span { color: var(--green); }

.top-ranking__ai a {
  margin-top: 0.65rem;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 850;
  text-decoration: none;
}

.top-ranking__ai a:hover { text-decoration: underline; text-underline-offset: 0.18rem; }

.top-ranking__method {
  max-width: 800px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.5;
}

.content-section,
.method-section,
.sources-band,
.story-page {
  max-width: 1440px;
  margin: 0 auto;
  padding-right: 3rem;
  padding-left: 3rem;
}

.content-section { padding-top: 5.5rem; padding-bottom: 6.5rem; }
.section-heading { display: grid; grid-template-columns: 1fr minmax(280px, 0.45fr); gap: 3rem; align-items: end; }
.section-heading h2,
.analysis-section__heading h2,
.sources-section h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.95;
}
.section-heading > p { margin: 0 0 0.4rem; color: var(--muted); line-height: 1.55; }

.topic-filter { display: flex; gap: 0.5rem; overflow-x: auto; margin-top: 2.5rem; padding-bottom: 0.5rem; scrollbar-width: thin; }
.topic-button {
  flex: 0 0 auto;
  min-height: 2.75rem;
  padding: 0.58rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-size: 0.72rem;
  font-weight: 750;
  cursor: pointer;
}
.topic-button:hover, .topic-button.is-active, .topic-button[aria-pressed="true"] { color: white; border-color: var(--ink); background: var(--ink); }

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

.story-card { position: relative; min-width: 0; min-height: 390px; background: var(--surface); }
.story-card__link { display: flex; height: 100%; padding: 1.45rem; flex-direction: column; text-decoration: none; }
.story-card__meta { display: flex; justify-content: space-between; gap: 1rem; color: var(--green); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; }
.story-card__meta time { color: var(--muted); font-weight: 600; letter-spacing: 0; text-align: right; text-transform: none; }
.ai-teaser { display: inline-flex; width: fit-content; margin-top: 1rem; padding: 0.32rem 0.5rem; border: 1px solid #a8cdbd; border-radius: 999px; color: var(--green); background: #e7f3ec; font-size: 0.6rem; font-weight: 750; letter-spacing: 0.04em; }
.ai-teaser strong { font-weight: 900; }
.ai-teaser--lead { color: var(--mint); border-color: rgba(141,224,186,0.55); background: rgba(141,224,186,0.08); }
.story-hero .ai-teaser--story { margin-top: 1.25rem; }
.story-hero .ai-teaser--story + p { margin-top: 0.7rem; }
.story-card h3 { margin: 2.2rem 0 0.85rem; font-family: var(--display); font-size: clamp(1.45rem, 2.4vw, 2.05rem); font-weight: 600; letter-spacing: -0.035em; line-height: 1.08; }
.story-card .ai-teaser + h3 { margin-top: 1.1rem; }
.story-card p { margin: 0; color: var(--muted); font-size: 0.88rem; line-height: 1.5; }
.story-signals {
  display: grid;
  gap: 0.42rem;
  margin: 1.1rem 0 0;
  padding: 0.85rem 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.story-signal {
  display: grid;
  grid-template-columns: 1.2rem 1fr;
  gap: 0.4rem;
  align-items: start;
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 650;
  line-height: 1.35;
}
.story-signal > span:first-child {
  color: var(--green);
  font-weight: 900;
  text-align: center;
}
.story-signal--difference > span:first-child { color: #906719; }
.story-signal--change > span:first-child { color: var(--muted); }
.story-signals--compact {
  display: flex;
  gap: 0.4rem 0.8rem;
  flex-wrap: wrap;
  max-width: 760px;
  margin-top: 1rem;
  padding-top: 0;
  border-top: 0;
}
.story-signals--compact .story-signal {
  grid-template-columns: auto 1fr;
  color: #d2dfdb;
  font-size: 0.72rem;
}
.story-signals--compact .story-signal > span:first-child { color: var(--mint); }
.story-signals--compact .story-signal--difference > span:first-child { color: #f4d690; }
.story-signals--compact .story-signal--change > span:first-child { color: #c2cfcb; }
.story-card__footer { display: flex; justify-content: space-between; gap: 1rem; align-items: center; margin-top: auto; padding-top: 1.5rem; padding-bottom: 2.8rem; }
.coverage-badge { padding: 0.35rem 0.55rem; border-radius: 999px; color: var(--ink-soft); background: #edf0e9; font-size: 0.67rem; font-weight: 750; }
.text-link { color: var(--green); font-size: 0.72rem; font-weight: 800; }
.story-card__link:hover { background: #f7f7ef; }
.story-card__link:hover h3 { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 0.2rem; }
.filter-empty { padding: 3rem; border: 1px solid var(--line); background: var(--surface); text-align: center; }

.story-grid--essential { margin-top: 1.4rem; }
.more-local-section { border-top: 1px solid var(--line); }
.section-heading--compact h2 { font-size: clamp(2.4rem, 4vw, 3.8rem); }

.ai-home-section { max-width: none; padding-right: max(3rem, calc((100vw - 1344px) / 2)); padding-left: max(3rem, calc((100vw - 1344px) / 2)); color: white; background: #0d2b24; }
.ai-home-section .eyebrow { color: var(--mint); }
.ai-home-section .section-heading > p { color: #b6c9c2; }
.ai-home-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin-top: 3rem; border: 1px solid rgba(255,255,255,0.17); background: rgba(255,255,255,0.17); }
.ai-home-card { display: flex; min-height: 310px; padding: 1.4rem; color: white; background: #12352c; flex-direction: column; text-decoration: none; }
.ai-home-card > span { width: fit-content; padding: 0.32rem 0.5rem; border: 1px solid rgba(141,224,186,0.5); border-radius: 999px; color: var(--mint); font-size: 0.6rem; font-weight: 850; letter-spacing: 0.06em; }
.ai-home-card h3 { margin: 2rem 0 0.8rem; font-family: var(--display); font-size: clamp(1.55rem, 2.5vw, 2.2rem); line-height: 1.05; }
.ai-home-card p { margin: 0; color: #c0d1cc; font-size: 0.82rem; line-height: 1.5; }
.ai-home-card small { margin-top: auto; padding-top: 1rem; color: var(--mint); font-size: 0.7rem; font-weight: 800; }
.ai-home-card:hover { background: #19483b; }
.ai-home-card:hover h3 { text-decoration: underline; text-underline-offset: 0.2rem; }

.supporting-section { border-top: 1px solid var(--line); }
.supporting-section--border {
  max-width: none;
  padding-right: max(3rem, calc((100vw - 1344px) / 2));
  padding-left: max(3rem, calc((100vw - 1344px) / 2));
  background: var(--paper-deep);
}
.supporting-section--other .story-card { background: rgba(255, 254, 248, 0.72); }
.story-grid--supporting { margin-top: 3rem; }

.direct-sources-section {
  max-width: none;
  padding-right: max(3rem, calc((100vw - 1344px) / 2));
  padding-left: max(3rem, calc((100vw - 1344px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #e9f1e9;
}
.direct-sources-section--home { padding-top: 4rem; padding-bottom: 4.5rem; }
.direct-sources-section--home .section-heading h2 { font-size: clamp(2.5rem, 4.5vw, 4rem); }
.direct-sources-section--home .direct-source-grid { margin-top: 2rem; }
.direct-source-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}
.direct-source-grid--detail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.direct-source-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(16, 42, 36, 0.18);
  border-radius: 1rem;
  background: var(--surface);
  box-shadow: 0 12px 35px rgba(16, 42, 36, 0.06);
}
.direct-source-card__media {
  position: relative;
  display: grid;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  place-items: stretch;
  background:
    radial-gradient(circle at 82% 15%, rgba(109, 221, 172, 0.35), transparent 35%),
    linear-gradient(145deg, #102a24, #1d5b48);
}
.direct-source-card__media iframe { width: 100%; height: 100%; border: 0; }
.youtube-player-close {
  position: absolute;
  z-index: 2;
  top: 0.65rem;
  right: 0.65rem;
  padding: 0.45rem 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: white;
  background: rgba(16, 42, 36, 0.9);
  font-size: 0.62rem;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.youtube-player-close:hover,
.youtube-player-close:focus-visible { background: #102a24; }
.youtube-consent {
  display: grid;
  width: 100%;
  min-height: 100%;
  padding: 1.4rem;
  place-content: center;
  justify-items: center;
  border: 0;
  color: white;
  background: transparent;
  text-align: center;
  cursor: pointer;
}
.youtube-consent__play {
  display: grid;
  width: 3.7rem;
  height: 3.7rem;
  margin-bottom: 0.8rem;
  padding-left: 0.2rem;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--mint);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}
.youtube-consent strong { font-family: var(--display); font-size: 1.35rem; }
.youtube-consent small { margin-top: 0.35rem; color: #c5d7d1; font-size: 0.66rem; }
.youtube-consent:hover .youtube-consent__play { transform: scale(1.06); background: var(--acid); }
.youtube-unavailable {
  display: grid;
  padding: 1.4rem;
  place-content: center;
  justify-items: center;
  color: white;
  text-align: center;
}
.youtube-unavailable > span {
  display: grid;
  width: 3.7rem;
  height: 3.7rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-weight: 850;
}
.youtube-unavailable p { max-width: 15rem; margin: 0.7rem 0 0; color: #c5d7d1; font-size: 0.7rem; }
.direct-source-card__body { display: flex; min-height: 270px; padding: 1.25rem; flex-direction: column; }
.direct-source-card__account { display: flex; justify-content: space-between; gap: 0.8rem; align-items: baseline; }
.direct-source-card__account strong { overflow: hidden; font-size: 0.78rem; text-overflow: ellipsis; white-space: nowrap; }
.direct-source-card__account span { color: var(--muted); font-size: 0.67rem; }
.direct-source-card__meta { display: flex; justify-content: space-between; gap: 0.8rem; margin-top: 0.55rem; color: var(--green); font-size: 0.64rem; }
.direct-source-card__meta > span:first-child { font-weight: 850; letter-spacing: 0.06em; text-transform: uppercase; }
.direct-source-card__meta time, .direct-source-card__meta > span:last-child { color: var(--muted); text-align: right; }
.direct-source-card__badges { display: flex; flex-wrap: wrap; gap: 0.35rem; min-height: 1.55rem; margin-top: 0.9rem; }
.direct-source-card__badges span { padding: 0.3rem 0.48rem; border-radius: 999px; color: var(--ink-soft); background: #e9f0e8; font-size: 0.61rem; font-weight: 750; }
.direct-source-card h3 { margin: 1rem 0 1.5rem; font-family: var(--display); font-size: clamp(1.25rem, 2vw, 1.75rem); font-weight: 600; letter-spacing: -0.025em; line-height: 1.12; }
.direct-source-card__actions { display: flex; flex-wrap: wrap; gap: 0.65rem 1rem; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line); }
.direct-source-card__actions a { color: var(--green); font-size: 0.68rem; font-weight: 800; text-decoration-thickness: 1px; text-underline-offset: 0.2rem; }
.direct-evidence-section .direct-source-grid { margin-top: 2rem; }
.direct-sources-section--home .direct-source-card__body { min-height: 215px; padding: 1rem; }
.direct-sources-section--home .direct-source-card h3 {
  margin: 0.75rem 0 1rem;
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
}
.direct-sources-section--home .direct-source-card__badges { margin-top: 0.65rem; }

.comparison-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: 5rem;
  padding: 6.5rem max(3rem, calc((100vw - 1380px) / 2));
  color: white;
  background: var(--ink);
}
.comparison-section__intro h2 { margin: 0; font-family: var(--display); font-size: clamp(3rem, 6vw, 5.8rem); font-weight: 500; letter-spacing: -0.06em; line-height: 0.9; }
.comparison-section__intro h2 em { color: var(--mint); }
.comparison-section__intro > p:last-child { max-width: 30rem; margin: 1.7rem 0 0; color: #b8c7c2; line-height: 1.65; }
.comparison-list { border-top: 1px solid rgba(255, 255, 255, 0.2); }
.comparison-row { display: grid; grid-template-columns: auto 1fr auto; gap: 1.4rem; align-items: center; padding: 1.45rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.2); text-decoration: none; }
.comparison-row > span:first-child { color: var(--mint); font-family: var(--display); font-size: 1.2rem; font-style: italic; }
.comparison-row small { color: var(--mint); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.comparison-row h3 { margin: 0.45rem 0 0; font-family: var(--display); font-size: clamp(1.35rem, 2.6vw, 2.15rem); font-weight: 500; line-height: 1.05; }
.comparison-row > span:last-child { font-size: 1.35rem; transition: transform 160ms ease; }
.comparison-row:hover > span:last-child { transform: translate(0.2rem, -0.2rem); }

.method-section { padding-top: 7rem; padding-bottom: 7rem; }
.section-heading--method { grid-template-columns: 1fr minmax(300px, 0.65fr); }
.section-heading--method h2 { font-size: clamp(3rem, 6vw, 5.6rem); }
.section-heading--method > p { color: var(--ink-soft); font-family: var(--display); font-size: clamp(1.15rem, 1.8vw, 1.55rem); }
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 4rem; border: 1px solid var(--line); background: var(--line); }
.method-grid article { min-height: 275px; padding: 1.5rem; background: var(--surface); }
.method-grid span { color: var(--green); font-family: var(--display); font-size: 1.25rem; font-style: italic; }
.method-grid h3 { margin: 4rem 0 0.75rem; font-family: var(--display); font-size: 2rem; }
.method-grid p { margin: 0; color: var(--muted); line-height: 1.55; }
.method-note { display: grid; grid-template-columns: auto 1fr; gap: 1rem; margin-top: 1rem; padding: 1rem 1.2rem; border: 1px solid #dac47f; background: #fff6d9; font-size: 0.77rem; }
.method-note p { margin: 0; color: #665a36; }
.method-note a { color: inherit; font-weight: 800; text-underline-offset: 0.15rem; }

.sources-band { padding-top: 6rem; padding-bottom: 6rem; border-top: 1px solid var(--ink); }
.sources-band h2 { max-width: 900px; margin: 0; font-family: var(--display); font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 500; letter-spacing: -0.06em; line-height: 0.95; }
.sources-band > p:not(.eyebrow) { max-width: 700px; margin: 1.5rem 0 0; color: var(--muted); line-height: 1.6; }
.source-cloud { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2.5rem; }
.source-cloud span { padding: 0.55rem 0.75rem; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); font-size: 0.72rem; }

.story-page { padding-top: 3.5rem; padding-bottom: 7rem; }
.legal-page {
  max-width: 900px;
  min-height: 70vh;
  margin: 0 auto;
  padding: 4rem 3rem 7rem;
}
.legal-page header { margin-top: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--ink); }
.legal-page header h1 { margin: 0; font-family: var(--display); font-size: clamp(3.2rem, 8vw, 6.5rem); font-weight: 500; letter-spacing: -0.06em; line-height: 0.92; }
.legal-page header > p:last-child { margin: 1.2rem 0 0; color: var(--muted); }
.legal-page section { padding: 2.2rem 0; border-bottom: 1px solid var(--line); }
.legal-page section h2 { margin: 0 0 0.9rem; font-family: var(--display); font-size: 2rem; }
.legal-page section p { margin: 0; color: var(--ink-soft); line-height: 1.7; }
.legal-page section p + p { margin-top: 0.9rem; }
.legal-page section a { color: var(--green); font-weight: 700; text-underline-offset: 0.2rem; }
.back-link { display: inline-flex; gap: 0.5rem; align-items: center; color: var(--green); font-size: 0.75rem; font-weight: 800; text-decoration: none; }
.back-link:hover { text-decoration: underline; text-underline-offset: 0.25rem; }
.story-hero { padding: 3rem 0 4rem; border-bottom: 1px solid var(--ink); }
.story-hero__meta { display: flex; flex-wrap: wrap; gap: 0.6rem 1.2rem; margin-bottom: 2rem; color: var(--green); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; }
.story-hero__meta time { color: var(--muted); }
.story-hero h1 { max-width: 1160px; font-size: clamp(3.2rem, 7vw, 6.5rem); }
.story-hero > p { max-width: 760px; margin: 1.75rem 0 0; color: var(--ink-soft); font-family: var(--display); font-size: clamp(1.15rem, 2.2vw, 1.6rem); line-height: 1.45; }
.story-hero .source-pills span { color: var(--ink-soft); border-color: var(--line); background: var(--surface); }
.story-hero__actions { margin-top: 2rem; }
.share-button { padding: 0.7rem 1rem; border: 1px solid var(--ink); border-radius: 999px; color: white; background: var(--ink); font-size: 0.75rem; font-weight: 800; cursor: pointer; }
.share-button:hover { background: var(--green); border-color: var(--green); }

.story-layout { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.45fr); gap: 5rem; padding-top: 5rem; }
.story-main { min-width: 0; }

.consenso-ai {
  overflow: hidden;
  border: 1px solid #183c32;
  border-radius: 1.35rem;
  background: #0d2b24;
  box-shadow: 0 24px 70px rgba(13, 43, 36, 0.12);
}
.consenso-ai__header { padding: clamp(1.5rem, 4vw, 3rem); color: white; background: radial-gradient(circle at 90% 0, #28634f 0, transparent 42%), #0d2b24; }
.consenso-ai__identity { display: flex; gap: 0.85rem; align-items: center; }
.consenso-ai__mark { display: grid; width: 2.8rem; height: 2.8rem; flex: 0 0 auto; place-items: center; border-radius: 50%; color: #0d2b24; background: var(--mint); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.05em; }
.consenso-ai__identity .eyebrow { margin-bottom: 0.15rem; color: var(--mint); }
.consenso-ai__identity > div > span { color: #b8ccc5; font-size: 0.68rem; }
.consenso-ai__header h2 { max-width: 850px; margin: 2.2rem 0 0; font-family: var(--display); font-size: clamp(2.4rem, 5vw, 4.5rem); font-weight: 500; letter-spacing: -0.055em; line-height: 0.95; }
.consenso-ai__standfirst { max-width: 760px; margin: 1.25rem 0 0; color: #d8e5e1; font-family: var(--display); font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.45; }
.consenso-ai__why { max-width: 760px; margin-top: 2rem; padding: 1rem 1.1rem; border-left: 3px solid var(--mint); background: rgba(255,255,255,0.06); }
.consenso-ai__why > strong { color: var(--mint); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; }
.consenso-ai__why > p { margin: 0.45rem 0 0; color: #d8e5e1; line-height: 1.55; }
.consenso-ai__extended { border-top: 1px solid rgba(255,255,255,0.14); background: #f4f1e8; }
.consenso-ai__extended > summary { display: flex; min-height: 4rem; padding: 1rem clamp(1rem, 3vw, 2rem); align-items: center; justify-content: space-between; color: white; background: #153a31; font-size: 0.75rem; font-weight: 850; cursor: pointer; list-style: none; }
.consenso-ai__extended > summary::-webkit-details-marker { display: none; }
.consenso-ai__extended > summary span { color: var(--mint); font-size: 1.2rem; transition: transform 160ms ease; }
.consenso-ai__extended[open] > summary span { transform: rotate(45deg); }
.consenso-ai__body { display: grid; gap: 1rem; padding: clamp(1rem, 3vw, 2rem); background: #f4f1e8; }
.consenso-ai__comparison { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.consenso-ai__group { min-width: 0; padding: 1.2rem; border: 1px solid var(--line); border-radius: 0.9rem; background: var(--surface); }
.consenso-ai__group > h3 { margin: 0 0 1rem; color: var(--green); font-size: 0.69rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.consenso-ai__group--key > div { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.7rem; }
.consenso-ai__fact { min-width: 0; padding: 0.85rem; border-radius: 0.65rem; background: #f7f7f0; }
.consenso-ai__fact + .consenso-ai__fact { margin-top: 0.7rem; }
.consenso-ai__group--key .consenso-ai__fact + .consenso-ai__fact { margin-top: 0; }
.consenso-ai__fact > small { color: var(--green); font-size: 0.65rem; font-weight: 800; }
.consenso-ai__fact > p { margin: 0.2rem 0 0; font-family: var(--display); font-size: 1.05rem; line-height: 1.4; }
.consenso-ai__group--text ul { margin: 0; padding-left: 1.1rem; color: var(--ink-soft); font-size: 0.82rem; line-height: 1.55; }
.consenso-ai__group--text li + li { margin-top: 0.65rem; }
.consenso-ai__evidence { margin-top: 0.65rem; }
.consenso-ai__evidence summary { width: fit-content; color: var(--green); font-size: 0.68rem; font-weight: 850; cursor: pointer; }
.consenso-ai__evidence ul { display: grid; gap: 0.55rem; padding: 0; margin: 0.65rem 0 0; list-style: none; }
.consenso-ai__evidence li { padding: 0.7rem; border: 1px solid var(--line); border-radius: 0.55rem; background: white; }
.consenso-ai__evidence a { display: grid; gap: 0.15rem; color: var(--green); font-size: 0.68rem; text-decoration: none; }
.consenso-ai__evidence a span { color: var(--muted); }
.consenso-ai__evidence a:hover strong { text-decoration: underline; text-underline-offset: 0.18rem; }
.consenso-ai__evidence blockquote { margin: 0.5rem 0 0; color: var(--ink-soft); font-size: 0.72rem; line-height: 1.5; }
.consenso-ai__header > .consenso-ai__evidence, .consenso-ai__why .consenso-ai__evidence { max-width: 760px; }
.consenso-ai__header .consenso-ai__evidence summary, .consenso-ai__why .consenso-ai__evidence summary { color: var(--mint); }
.consenso-ai__header .consenso-ai__evidence li, .consenso-ai__why .consenso-ai__evidence li { border-color: rgba(255,255,255,0.16); background: rgba(255,255,255,0.07); }
.consenso-ai__header .consenso-ai__evidence a, .consenso-ai__why .consenso-ai__evidence a { color: var(--mint); }
.consenso-ai__header .consenso-ai__evidence a span, .consenso-ai__header .consenso-ai__evidence blockquote, .consenso-ai__why .consenso-ai__evidence a span, .consenso-ai__why .consenso-ai__evidence blockquote { color: #bed0ca; }
.consenso-ai__footer { display: flex; gap: 2rem; align-items: center; justify-content: space-between; padding: 1.25rem clamp(1rem, 3vw, 2rem); color: white; border-top: 1px solid rgba(255,255,255,0.14); }
.consenso-ai__footer > div { max-width: 680px; }
.consenso-ai__footer strong { color: var(--mint); font-size: 0.72rem; letter-spacing: 0.05em; text-transform: uppercase; }
.consenso-ai__footer p { margin: 0.3rem 0 0; color: #b8ccc5; font-size: 0.72rem; line-height: 1.5; }
.consenso-ai__footer button { flex: 0 0 auto; min-height: 2.8rem; padding: 0.65rem 0.95rem; border: 1px solid var(--mint); border-radius: 999px; color: var(--ink); background: var(--mint); font-size: 0.72rem; font-weight: 850; cursor: pointer; }
.consenso-ai__footer button[aria-pressed="true"] { color: white; background: transparent; }
.consenso-ai__footer button:disabled { opacity: 0.6; cursor: wait; }
.ai-follow-pending { display: flex; gap: 2rem; margin-bottom: 2rem; padding: clamp(1.2rem, 3vw, 2rem); align-items: center; justify-content: space-between; border: 1px solid #d8c78f; border-radius: 1rem; background: #fff8df; }
.ai-follow-pending h2 { margin: 0.2rem 0 0; font-family: var(--display); font-size: clamp(1.8rem, 3vw, 2.7rem); }
.ai-follow-pending p:last-child { max-width: 680px; margin: 0.65rem 0 0; color: var(--ink-soft); line-height: 1.55; }
.ai-follow-pending button { flex: 0 0 auto; min-height: 2.8rem; padding: 0.65rem 0.95rem; border: 1px solid var(--ink); border-radius: 999px; color: white; background: var(--ink); font-weight: 850; cursor: pointer; }

.analysis-section + .analysis-section, .sources-section { margin-top: 5rem; padding-top: 5rem; border-top: 1px solid var(--line); }
.analysis-section__heading h2, .sources-section h2 { font-size: clamp(2.4rem, 4.5vw, 4rem); }
.analysis-section__heading > p:last-child { max-width: 680px; margin: 1rem 0 0; color: var(--muted); line-height: 1.6; }
.analysis-stack { display: grid; gap: 0.7rem; margin-top: 2rem; }
.analysis-card { display: grid; grid-template-columns: auto 1fr; gap: 1rem; padding: 1.2rem; border: 1px solid var(--line); background: var(--surface); }
.analysis-card__mark { display: grid; width: 1.8rem; height: 1.8rem; place-items: center; border-radius: 50%; color: var(--ink); background: var(--mint); font-weight: 900; }
.analysis-card--difference .analysis-card__mark { background: #f4db9f; }
.analysis-card p { margin: 0; font-family: var(--display); font-size: 1.15rem; line-height: 1.4; }
.analysis-card small { display: block; margin-top: 0.45rem; color: var(--muted); font-size: 0.68rem; }
.analysis-empty { padding: 1.5rem; border: 1px dashed var(--line); color: var(--muted); }

.source-timeline { margin-top: 2.5rem; }
.source-row { display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; }
.source-row__timeline { display: flex; align-items: center; flex-direction: column; color: var(--green); font-family: var(--display); font-style: italic; }
.source-row__timeline i { width: 1px; min-height: 5rem; flex: 1; margin-top: 0.5rem; background: var(--line); }
.source-row:last-child .source-row__timeline i { display: none; }
.source-row__body { padding: 0 0 2.5rem; }
.source-row__meta { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.6rem; color: var(--green); font-size: 0.7rem; }
.source-row__meta time { color: var(--muted); }
.source-row h3 { margin: 0.8rem 0 0.45rem; font-family: var(--display); font-size: clamp(1.4rem, 2.8vw, 2.25rem); line-height: 1.1; }
.source-row p { margin: 0; color: var(--muted); font-size: 0.78rem; }
.source-row__body > a { display: inline-block; margin-top: 1rem; color: var(--green); font-size: 0.75rem; font-weight: 800; text-underline-offset: 0.2rem; }

.story-aside { min-width: 0; }
.aside-card { position: sticky; top: 1rem; padding: 1.35rem; border: 1px solid var(--line); background: var(--surface); }
.aside-card + .aside-card { position: static; margin-top: 0.8rem; }
.aside-card__label { color: var(--green); font-size: 0.66rem; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.aside-card h2 { margin: 1.5rem 0 0.7rem; font-family: var(--display); font-size: 2rem; line-height: 1; }
.aside-card p { margin: 0; color: var(--muted); font-size: 0.83rem; line-height: 1.55; }
.aside-card ul { margin: 1.2rem 0 0; padding-left: 1.1rem; color: var(--ink-soft); font-size: 0.8rem; line-height: 1.5; }
.aside-card li + li { margin-top: 0.75rem; }
.aside-card--questions { background: #fff7df; }
.aside-card--sources strong { display: block; margin-top: 1rem; font-family: var(--display); font-size: 4rem; font-weight: 500; line-height: 1; }
.aside-card--sources small { display: block; margin-top: 1rem; color: var(--muted); }

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 4rem max(3rem, calc((100vw - 1380px) / 2)) 2rem;
  color: white;
  background: #0c211c;
}
.brand--footer .brand__mark { color: var(--ink); background: var(--mint); }
.site-footer__lead > p { max-width: 360px; margin: 1.2rem 0 0; color: #aebeb8; font-family: var(--display); font-size: 1.2rem; }
.site-footer__links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.site-footer__links div { display: flex; flex-direction: column; gap: 0.7rem; }
.site-footer__links strong { color: var(--mint); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; }
.site-footer__links a { color: #bdcbc7; font-size: 0.75rem; text-decoration: none; }
.site-footer__links a:hover { color: white; text-decoration: underline; }
.site-footer__legal { grid-column: 1 / -1; margin: 2rem 0 0; padding-top: 1.2rem; border-top: 1px solid rgba(255, 255, 255, 0.15); color: #81938d; font-size: 0.68rem; line-height: 1.5; }

.toast { position: fixed; z-index: 50; right: 1.2rem; bottom: 1.2rem; padding: 0.85rem 1rem; transform: translateY(140%); border-radius: 0.7rem; color: white; background: var(--ink); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2); font-size: 0.75rem; transition: transform 180ms ease; }
.toast.is-visible { transform: translateY(0); }
.toast.is-error { background: var(--red); }

.auth-dialog {
  width: min(510px, calc(100vw - 2rem));
  padding: 2rem;
  border: 0;
  border-radius: 1.25rem;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 2%, rgba(184, 239, 210, 0.6), transparent 12rem),
    var(--surface);
  box-shadow: 0 30px 90px rgba(9, 29, 24, 0.34);
}
.auth-dialog::backdrop { background: rgba(7, 24, 20, 0.66); backdrop-filter: blur(4px); }
.auth-dialog__close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  border-radius: 50%;
  background: rgba(16, 42, 36, 0.08);
  font-size: 1.4rem;
  cursor: pointer;
}
.auth-dialog__brand {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  margin-bottom: 2rem;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--display);
  font-size: 1.5rem;
  font-style: italic;
}
.auth-dialog h2 { margin: 0; font-family: var(--display); font-size: clamp(2.4rem, 7vw, 3.5rem); font-weight: 500; letter-spacing: -0.055em; line-height: 0.95; }
.auth-dialog__intro { margin: 1rem 0 0; color: var(--muted); line-height: 1.55; }
.auth-providers { display: grid; gap: 0.7rem; margin-top: 1.7rem; }
.provider-button {
  display: grid;
  grid-template-columns: 1.7rem 1fr 1.7rem;
  gap: 0.7rem;
  align-items: center;
  min-height: 3.2rem;
  padding: 0.65rem 1rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: white;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}
.provider-button::after { content: "→"; justify-self: end; }
.provider-button > span { display: grid; width: 1.7rem; height: 1.7rem; place-items: center; border-radius: 50%; font-weight: 900; }
.provider-button--google > span { color: #4285f4; background: #f1f5ff; font-family: Arial, sans-serif; }
.provider-button--apple { color: white; border-color: #0e1714; background: #0e1714; }
.provider-button--apple > span { color: white; font-size: 0.62rem; }
.provider-button:hover:not(:disabled) { transform: translateY(-1px); border-color: var(--green); box-shadow: 0 8px 20px rgba(16, 42, 36, 0.09); }
.provider-button:disabled { opacity: 0.55; cursor: wait; }
.auth-status { min-height: 1.2rem; margin: 1rem 0 0; color: var(--green); font-size: 0.72rem; font-weight: 750; text-align: center; }
.auth-status.is-error { color: var(--red); }
.auth-dialog__privacy { margin: 1.2rem 0 0; padding-top: 1rem; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.66rem; line-height: 1.45; text-align: center; }

.reader-dialog {
  width: min(660px, calc(100vw - 2rem));
  max-height: min(820px, calc(100vh - 2rem));
  padding: 2rem;
  overflow-y: auto;
  border: 0;
  border-radius: 1.25rem;
  color: var(--ink);
  background: var(--surface);
  box-shadow: 0 30px 90px rgba(9, 29, 24, 0.34);
}
.reader-dialog::backdrop { background: rgba(7, 24, 20, 0.66); backdrop-filter: blur(4px); }
.reader-dialog h2 { margin: 0; font-family: var(--display); font-size: clamp(2.25rem, 6vw, 3.4rem); font-weight: 500; letter-spacing: -0.05em; line-height: 0.98; }
.reader-dialog__intro { margin: 0.85rem 0 1.5rem; color: var(--muted); line-height: 1.55; }
.reader-preferences__topics { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.55rem; margin: 0; padding: 0; border: 0; }
.reader-preferences__topics legend { margin-bottom: 0.7rem; font-size: 0.75rem; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.reader-preferences__topics label {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  min-height: 2.8rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}
.reader-preferences__topics input { width: 1.1rem; height: 1.1rem; accent-color: var(--green); }
.reader-preferences__field { display: grid; gap: 0.45rem; margin-top: 1.3rem; }
.reader-preferences__field > span { font-size: 0.75rem; font-weight: 850; }
.reader-preferences__field input { min-height: 2.9rem; padding: 0.7rem 0.8rem; border: 1px solid var(--line); border-radius: 0.65rem; color: var(--ink); background: white; font-size: 0.82rem; }
.reader-preferences__field small { color: var(--muted); font-size: 0.7rem; line-height: 1.4; }
.reader-preferences__note {
  margin-top: 1.3rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  color: var(--muted);
  background: #edf5ec;
  font-size: 0.72rem;
  line-height: 1.5;
}
.reader-preferences__status { min-height: 1.2rem; margin: 0.85rem 0 0; color: var(--green); font-size: 0.75rem; font-weight: 700; }
.reader-preferences__save { width: 100%; min-height: 3rem; margin-top: 0.55rem; border: 0; border-radius: 999px; color: white; background: var(--ink); font-size: 0.8rem; font-weight: 850; cursor: pointer; }
.reader-preferences__save:hover { background: var(--green); }

.save-story-button,
.report-story-button,
.reader-page__actions button,
.reader-page__actions a,
.reader-page__empty button,
.reader-page__empty a,
.digest-toolbar button {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0.58rem 0.85rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--surface);
  font-size: 0.72rem;
  font-weight: 820;
  text-decoration: none;
  cursor: pointer;
}
.save-story-button:hover,
.save-story-button.is-saved,
.reader-page__actions button:hover,
.reader-page__actions a:hover,
.reader-page__empty button:hover,
.reader-page__empty a:hover,
.digest-toolbar button:hover { color: white; border-color: var(--green); background: var(--green); }
.save-story-button--card { position: absolute; z-index: 2; bottom: 1.1rem; left: 1.45rem; }
.save-story-button--lead { position: absolute; z-index: 2; right: 1.8rem; bottom: 1.45rem; color: white; border-color: rgba(255, 255, 255, 0.42); background: rgba(7, 24, 20, 0.35); }
.save-story-button--lead:hover, .save-story-button--lead.is-saved { color: var(--ink); border-color: var(--mint); background: var(--mint); }
.save-story-button--detail { position: static; }

.story-hero__actions { display: flex; flex-wrap: wrap; gap: 0.65rem; align-items: center; }
.share-button { display: inline-flex; gap: 0.35rem; align-items: center; text-decoration: none; }
.share-button--whatsapp { color: var(--ink); border-color: var(--green); background: var(--mint); }
.report-story-button { border-color: var(--line); color: var(--muted); background: transparent; }
.report-story-button:hover { color: var(--ink); border-color: var(--ink); }

.story-report-dialog {
  width: min(580px, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  padding: 0;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  color: var(--ink);
  background: var(--surface);
  box-shadow: 0 24px 80px rgba(7, 24, 20, 0.24);
}
.story-report-dialog::backdrop { background: rgba(7, 24, 20, 0.66); backdrop-filter: blur(4px); }
.story-report-dialog form { padding: 2rem; }
.story-report-dialog h2 { margin: 0; font-family: var(--display); font-size: clamp(2rem, 5vw, 3rem); line-height: 1; }
.story-report-dialog form > p:not(.eyebrow) { color: var(--muted); line-height: 1.55; }
.story-report-dialog label { display: grid; gap: 0.5rem; margin-top: 1.3rem; font-size: 0.75rem; font-weight: 800; }
.story-report-dialog label small { color: var(--muted); font-weight: 600; }
.story-report-dialog textarea { width: 100%; resize: vertical; padding: 0.8rem; border: 1px solid var(--line); border-radius: 0.7rem; color: var(--ink); background: white; line-height: 1.5; }
.story-report-dialog [role="status"] { min-height: 1.2rem; color: var(--green); font-size: 0.72rem; font-weight: 750; }
.story-report-dialog form > div { display: flex; gap: 0.6rem; justify-content: flex-end; }
.story-report-dialog form > div button { min-height: 2.6rem; padding: 0.6rem 0.9rem; border: 1px solid var(--line); border-radius: 999px; background: transparent; font-weight: 800; cursor: pointer; }
.story-report-dialog form > div button[type="submit"] { color: white; border-color: var(--ink); background: var(--ink); }

.reader-page {
  max-width: 1380px;
  min-height: 70vh;
  margin: 0 auto;
  padding: 4.5rem 3rem 7rem;
}
.reader-page__header { display: grid; max-width: 980px; }
.reader-page__header h1 { margin: 0; font-family: var(--display); font-size: clamp(3.2rem, 7vw, 6.2rem); font-weight: 500; letter-spacing: -0.06em; line-height: 0.92; }
.reader-page__header > p:last-of-type { max-width: 700px; margin: 1.3rem 0 0; color: var(--ink-soft); font-size: 1rem; line-height: 1.6; }
.reader-page__actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.reader-story-grid { margin-top: 3rem; }
.reader-page__empty { grid-column: 1 / -1; margin-top: 3rem; padding: 3rem; border: 1px solid var(--line); border-radius: 1rem; background: var(--surface); text-align: center; }
.reader-page__empty strong { display: block; font-family: var(--display); font-size: 2rem; }
.reader-page__empty p { color: var(--muted); }
.reader-page__empty a, .reader-page__empty button { margin-top: 0.7rem; }
.reader-page__loading { margin-top: 3rem; padding: 3rem; border: 1px solid var(--line); background: var(--surface); text-align: center; }

.discovery-search { max-width: 920px; margin-top: 2.5rem; }
.discovery-search > label { display: block; margin-bottom: 0.5rem; font-size: 0.72rem; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.discovery-search > div { display: grid; grid-template-columns: 1fr auto; }
.discovery-search input { min-width: 0; min-height: 3.3rem; padding: 0.75rem 1rem; border: 1px solid var(--ink); border-radius: 0.75rem 0 0 0.75rem; color: var(--ink); background: white; }
.discovery-search button { min-height: 3.3rem; padding: 0.75rem 1.2rem; border: 1px solid var(--ink); border-left: 0; border-radius: 0 0.75rem 0.75rem 0; color: white; background: var(--ink); font-weight: 850; cursor: pointer; }
.discovery-topics { display: flex; gap: 0.45rem; overflow-x: auto; margin-top: 1.2rem; padding-bottom: 0.5rem; }
.discovery-topics a { flex: 0 0 auto; min-height: 2.65rem; padding: 0.65rem 0.85rem; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); font-size: 0.72rem; font-weight: 800; text-decoration: none; }
.discovery-topics a:hover, .discovery-topics a.is-active { color: white; border-color: var(--ink); background: var(--ink); }
.discovery-results-heading { margin-top: 2.3rem; padding-bottom: 0.8rem; border-bottom: 1px solid var(--ink); }
.discovery-results { margin-top: 1rem; }
.discovery-pagination { display: flex; justify-content: center; min-height: 4rem; margin-top: 2rem; }
.discovery-pagination button {
  min-height: 2.8rem;
  padding: 0.65rem 1.1rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: white;
  background: var(--ink);
  font-weight: 850;
  cursor: pointer;
}
.discovery-pagination button:hover:not(:disabled) { background: var(--green); }
.discovery-pagination button:disabled { opacity: 0.6; cursor: wait; }
.digest-toolbar { display: flex; gap: 1rem; justify-content: space-between; align-items: center; margin-top: 2.5rem; padding: 0.8rem 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); color: var(--ink-soft); font-size: 0.78rem; font-weight: 750; }
.digest-ai { margin-top: 3rem; padding: clamp(1.2rem, 3vw, 2rem); border-radius: 1.25rem; color: white; background: #0d2b24; }
.digest-ai > header { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr); gap: 2rem; align-items: end; }
.digest-ai .eyebrow { color: var(--mint); }
.digest-ai h2 { max-width: 700px; margin: 0; font-family: var(--display); font-size: clamp(2.1rem, 4vw, 3.7rem); font-weight: 500; letter-spacing: -0.05em; line-height: 0.98; }
.digest-ai > header > p { margin: 0; color: #b7cac3; font-size: 0.78rem; line-height: 1.55; }
.digest-ai__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin-top: 2rem; border: 1px solid rgba(255,255,255,0.16); background: rgba(255,255,255,0.16); }
.digest-ai__grid > a { display: flex; min-height: 260px; padding: 1.1rem; color: white; background: #13362e; flex-direction: column; text-decoration: none; }
.digest-ai__grid > a > span { color: var(--mint); font-size: 0.6rem; font-weight: 850; letter-spacing: 0.06em; }
.digest-ai__grid h3 { margin: 1.4rem 0 0.65rem; font-family: var(--display); font-size: 1.65rem; line-height: 1.08; }
.digest-ai__grid p { margin: 0; color: #bdcec9; font-size: 0.75rem; line-height: 1.5; }
.digest-ai__grid small { margin-top: auto; padding-top: 0.8rem; color: var(--mint); font-weight: 800; }
.digest-ai__grid > a:hover { background: #1b4a3d; }
.digest-ai__grid > a:hover h3 { text-decoration: underline; text-underline-offset: 0.18rem; }
.digest-ai__empty { margin-top: 2rem; padding: 1.25rem; border: 1px dashed rgba(255,255,255,0.28); border-radius: 0.8rem; color: #bed0ca; }
.digest-ai__empty strong { color: white; }
.digest-ai__empty p { margin: 0.4rem 0 0; font-size: 0.75rem; }
.digest-ai__pending { margin-top: 1rem; padding: 1.25rem; border: 1px solid rgba(191,239,210,0.38); border-radius: 0.8rem; background: rgba(191,239,210,0.08); }
.digest-ai__pending > p { max-width: 760px; margin: 0.4rem 0 0; color: #bed0ca; font-size: 0.75rem; line-height: 1.55; }
.digest-ai__pending ul { display: grid; gap: 0.45rem; margin: 0.9rem 0 0; padding-left: 1.1rem; }
.digest-ai__pending a { color: var(--mint); font-weight: 800; text-underline-offset: 0.18rem; }

.error-state { display: grid; min-height: 68vh; padding: 5rem 2rem; place-items: center; align-content: center; text-align: center; }
.error-state > span { display: grid; width: 3.5rem; height: 3.5rem; place-items: center; border-radius: 50%; color: white; background: var(--ink); font-family: var(--display); font-size: 2rem; font-style: italic; }
.error-state h1 { max-width: 700px; margin: 1.5rem 0 0.6rem; font-family: var(--display); font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 0.95; }
.error-state p { color: var(--muted); }
.error-state a { padding: 0.7rem 1rem; border-radius: 999px; color: white; background: var(--green); font-size: 0.75rem; font-weight: 800; text-decoration: none; }

:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }

@media (max-width: 980px) {
  .site-header__inner { grid-template-columns: 1fr auto; padding: 0 1.5rem; }
  .edition { justify-self: end; }
  .site-nav { display: none; }
  .header-controls { gap: 0.55rem; }
  .mobile-nav-toggle { display: inline-flex; align-items: center; }
  .mobile-nav-panel:not([hidden]) { display: grid; }
  .hero-shell, .content-section, .method-section, .sources-band, .story-page { padding-right: 1.5rem; padding-left: 1.5rem; }
  .section-heading, .section-heading--method { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-intro__copy { margin-top: 0.5rem; }
  .story-grid { grid-template-columns: repeat(2, 1fr); }
  .top-ranking__details dl { grid-template-columns: repeat(2, minmax(115px, 1fr)); }
  .ai-home-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .consenso-ai__comparison { grid-template-columns: 1fr; }
  .direct-source-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .comparison-section { grid-template-columns: 1fr; gap: 3rem; padding-right: 1.5rem; padding-left: 1.5rem; }
  .story-layout { grid-template-columns: 1fr; gap: 3rem; }
  .aside-card { position: static; }
  .reader-page { padding-right: 1.5rem; padding-left: 1.5rem; }
  .digest-ai > header { grid-template-columns: 1fr; }
  .digest-ai__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 800px) {
  .hero-intro { grid-template-columns: 1fr; gap: 1rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .top-ranking__story { grid-template-columns: minmax(0, 1fr); }
  .top-ranking__ai {
    min-width: 0;
    margin-top: 1rem;
    padding: 0.9rem 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
    grid-column: 1;
    grid-row: auto;
  }
  .top-ranking__ai > span { max-width: none; }
}

@media (max-width: 640px) {
  .site-header__inner { min-height: 66px; padding: 0 1rem; }
  .brand__name { font-size: 1.25rem; }
  .edition { display: none; }
  .site-header__inner { grid-template-columns: 1fr auto; }
  .login-button { min-height: 2.25rem; padding: 0.45rem 0.75rem; }
  .account-button > span:last-child { display: none; }
  .account-button { padding-right: 0.32rem; }
  .mobile-nav-toggle { min-height: 2.25rem; padding: 0.45rem 0.7rem; }
  .mobile-nav-panel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mobile-nav-panel a { padding-right: 1rem; padding-left: 1rem; }
  .hero-shell, .content-section, .method-section, .sources-band, .story-page { padding-right: 1rem; padding-left: 1rem; }
  .story-ssr { padding: 3rem 1rem 5rem; }
  .story-ssr > h1 { font-size: clamp(2.8rem, 14vw, 4.5rem); }
  .story-ssr__sources a { grid-template-columns: 1fr; gap: 0.35rem; }
  .hero-shell { padding-top: 2rem; padding-bottom: 3rem; }
  .hero-intro h1 { font-size: clamp(2.8rem, 14vw, 4.4rem); }
  .hero-intro__copy { font-size: 1.1rem; }
  .daily-bar { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; margin-top: 2.5rem; }
  .daily-bar > span { line-height: 1.45; }
  .live-update {
    grid-column: 1 / -1;
    grid-row: 1;
    grid-template-columns: auto 1fr;
    justify-items: start;
    width: 100%;
    min-width: 0;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--line);
  }
  .live-update__activity { justify-self: end; text-align: right; }
  .live-update__verified { justify-self: stretch; text-align: right; }
  .live-update__verified { gap: 0.2rem; flex-direction: column; align-items: flex-end; }
  .lead-story { min-height: 390px; }
  .lead-story__link { padding: 1.35rem; }
  .lead-story__topline { align-items: flex-start; flex-direction: column; }
  .lead-story h2 { margin-top: 2.5rem; font-size: clamp(2.4rem, 12vw, 3.7rem); }
  .glance { display: block; }
  .glance-story + .glance-story { border-top: 1px solid var(--line); border-left: 0; }
  .glance-story:nth-child(odd) { border-left: 0; }
  .top-ranking { padding-top: 4rem; padding-bottom: 4rem; }
  .top-ranking__list { margin-top: 2rem; border-radius: 0.9rem; }
  .top-ranking__item { grid-template-columns: 74px minmax(0, 1fr); }
  .top-ranking__position { min-height: 0; padding: 1rem 0.7rem; }
  .top-ranking__position > span { font-size: 2rem; }
  .top-ranking__position small { margin-top: 2.5rem; }
  .top-ranking__position strong { font-size: 1.25rem; }
  .top-ranking__story { padding: 1rem; }
  .top-ranking__title h3 { font-size: 1.45rem; }
  .top-ranking__details dl { grid-template-columns: 1fr; }
  .top-ranking__context { gap: 0.45rem; flex-direction: column; }
  .top-ranking__context > * + * { padding-left: 0; }
  .top-ranking__context > * + *::before { display: none; }
  .content-section { padding-top: 4rem; padding-bottom: 4.5rem; }
  .story-grid { grid-template-columns: 1fr; }
  .ai-home-grid { grid-template-columns: 1fr; }
  .digest-ai__grid { grid-template-columns: 1fr; }
  .consenso-ai__group--key > div { grid-template-columns: 1fr; }
  .consenso-ai__footer { align-items: flex-start; flex-direction: column; }
  .consenso-ai__footer button { width: 100%; }
  .ai-follow-pending { align-items: flex-start; flex-direction: column; }
  .ai-follow-pending button { width: 100%; }
  .direct-source-grid, .direct-source-grid--detail { grid-template-columns: 1fr; }
  .story-card { min-height: 300px; }
  .comparison-section { padding-top: 4.5rem; padding-bottom: 4.5rem; }
  .comparison-row { grid-template-columns: auto 1fr; }
  .comparison-row > span:last-child { display: none; }
  .method-section { padding-top: 5rem; padding-bottom: 5rem; }
  .method-grid { grid-template-columns: 1fr; }
  .method-grid article { min-height: 230px; }
  .method-grid h3 { margin-top: 2.5rem; }
  .method-note { grid-template-columns: 1fr; }
  .sources-band { padding-top: 4.5rem; padding-bottom: 4.5rem; }
  .story-page { padding-top: 2rem; padding-bottom: 5rem; }
  .legal-page { padding: 2.5rem 1rem 5rem; }
  .story-hero { padding-top: 2.5rem; }
  .story-hero h1 { font-size: clamp(2.8rem, 14vw, 4.5rem); }
  .story-layout { padding-top: 3.5rem; }
  .source-row { grid-template-columns: 2rem 1fr; gap: 0.6rem; }
  .source-row__meta { flex-direction: column; }
  .site-footer { grid-template-columns: 1fr; gap: 3rem; padding: 3.5rem 1rem 1.5rem; }
  .site-footer__legal { grid-column: 1; }
  .auth-dialog { padding: 1.5rem; }
  .reader-dialog { padding: 1.5rem 1rem; }
  .reader-preferences__topics { grid-template-columns: 1fr; }
  .reader-page { padding: 3rem 1rem 5rem; }
  .reader-page__header h1 { font-size: clamp(2.8rem, 14vw, 4.5rem); }
  .reader-page__empty { padding: 2rem 1rem; }
  .discovery-search > div { grid-template-columns: 1fr; gap: 0.5rem; }
  .discovery-search input, .discovery-search button { border: 1px solid var(--ink); border-radius: 0.7rem; }
  .digest-toolbar { align-items: flex-start; flex-direction: column; }
  .save-story-button--lead { right: 1.1rem; bottom: 1rem; }
  .story-report-dialog form { padding: 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
