:root {
  --navy: #061c3c;
  --navy-2: #0a2d57;
  --ink: #111820;
  --charcoal: #26313d;
  --steel: #496b84;
  --teal: #39b4ac;
  --teal-dark: #217f78;
  --blue: #26699a;
  --blue-soft: #e5eef5;
  --paper: #f7f8f5;
  --paper-2: #ffffff;
  --paper-3: #eef4f1;
  --line: #cbd7dc;
  --line-dark: #8ea2ad;
  --muted: #61717d;
  --danger: #8a4d1e;
  --radius: 3px;
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 150px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6, 28, 60, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(6, 28, 60, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(57, 180, 172, 0.8);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--navy);
  color: #fff;
}

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

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.advertorial-bar {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 8px 16px;
  color: #d6e3e9;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 248, 245, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line-dark);
}

.header-top {
  display: grid;
  grid-template-columns: minmax(190px, 300px) minmax(240px, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 16px 0 14px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: min(300px, 54vw);
  height: auto;
}

.header-deck {
  max-width: 520px;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 700;
  line-height: 1.12;
}

.header-brief,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 15px;
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  line-height: 1.15;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.header-brief,
.button-primary {
  color: #fff;
  background: var(--navy);
}

.button-secondary {
  color: var(--navy);
  background: transparent;
  border-color: var(--line-dark);
}

.header-brief:hover,
.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(6, 28, 60, 0.12);
}

.header-brief:hover,
.button-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.button-secondary:hover {
  border-color: var(--teal-dark);
  color: var(--teal-dark);
}

.topic-nav {
  border-top: 1px solid var(--line);
  background: var(--paper-2);
}

.topic-nav-scroll {
  display: flex;
  gap: 0;
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: thin;
}

.topic-nav a {
  flex: 0 0 auto;
  padding: 12px 16px;
  border-left: 1px solid var(--line);
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.topic-nav a:last-child {
  border-right: 1px solid var(--line);
}

.topic-nav a:hover {
  color: var(--teal-dark);
  background: var(--paper-3);
}

.ticker {
  background: var(--navy-2);
  color: #f5fbff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.ticker-row {
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: stretch;
}

.ticker-note {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 12px 14px 12px 0;
  color: #cbe3ef;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticker ul {
  display: grid;
  grid-template-columns: repeat(6, minmax(130px, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
}

.ticker li {
  min-width: 130px;
  padding: 12px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.ticker span {
  display: block;
  color: #b6d5e0;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticker strong {
  display: block;
  margin-top: 2px;
  font-size: 0.9rem;
}

.hero-newsroom,
.editorial-band,
.pressure-section,
.numbers-section,
.topic-desk,
.request-section {
  padding: 52px 0;
  border-bottom: 1px solid var(--line);
}

.hero-newsroom {
  padding-top: 38px;
  background: linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
}

.section-label-row,
.section-heading,
.section-heading-split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.section-heading {
  align-items: start;
  flex-direction: column;
  gap: 6px;
}

.section-kicker,
.story-label {
  margin: 0 0 8px;
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.data-warning {
  max-width: 420px;
  margin: 0;
  color: var(--danger);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: right;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.65rem, 4.05vw, 4.35rem);
  line-height: 1.02;
  overflow-wrap: normal;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: clamp(1.45rem, 3vw, 2.25rem);
}

p {
  margin: 0;
}

.equal-grid {
  display: grid;
  align-items: stretch;
}

.hero-layout {
  grid-template-columns: minmax(0, 1.9fr) minmax(280px, 0.55fr);
  gap: 18px;
}

.lead-story,
.secondary-board,
.analysis-column,
.analysis-ledger,
.pressure-copy,
.editorial-media,
.request-copy,
.reader-form-card,
.coverage-lead,
.coverage-index {
  height: 100%;
}

.lead-story,
.secondary-board,
.analysis-column,
.analysis-ledger,
.pressure-copy,
.request-copy,
.reader-form-card,
.coverage-lead,
.coverage-index,
.indicator-card {
  position: relative;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.lead-story::before,
.secondary-board::before,
.analysis-column::before,
.pressure-copy::before,
.coverage-lead::before,
.reader-form-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), rgba(38, 105, 154, 0));
}

.lead-story-grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(390px, 0.9fr);
  min-height: 560px;
}

.lead-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(24px, 4vw, 44px);
}

.hero-summary {
  max-width: 640px;
  margin-top: 18px;
  color: var(--charcoal);
  font-size: clamp(1.04rem, 1.4vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.editorial-media {
  position: relative;
  display: block;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: var(--navy);
}

.editorial-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(6, 28, 60, 0) 45%, rgba(6, 28, 60, 0.78) 100%);
  pointer-events: none;
}

.editorial-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.hero-media img {
  object-position: center 42%;
}

.editorial-media figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  margin: 0;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.secondary-board {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px;
  background: var(--paper-2);
}

.secondary-board h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.35rem);
}

.headline-list {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.headline-list li {
  border-top: 1px solid var(--line);
}

.headline-list a {
  display: block;
  padding: 18px 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
  font-weight: 700;
  line-height: 1.06;
  text-decoration: none;
}

.headline-list a:hover {
  color: var(--teal-dark);
}

.editorial-band {
  background: var(--paper-3);
}

.analysis-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 18px;
}

.analysis-column {
  padding: clamp(24px, 4vw, 42px);
}

.analysis-column h2 {
  max-width: 780px;
}

.analysis-column p {
  max-width: 760px;
  margin-top: 18px;
  color: var(--charcoal);
  font-size: 1rem;
}

.analysis-ledger {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  background: var(--paper-2);
}

.analysis-ledger div {
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.analysis-ledger div:hover,
.pressure-matrix article:hover,
.indicator-card:hover,
.coverage-index article:hover {
  background: rgba(229, 238, 245, 0.48);
}

.analysis-ledger span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: #fff;
  background: var(--navy);
  font-weight: 900;
}

.analysis-ledger strong,
.indicator-card strong {
  display: block;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1;
}

.analysis-ledger p {
  margin-top: 10px;
  color: var(--muted);
}

.pressure-layout,
.request-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 18px;
}

.pressure-copy {
  padding: clamp(24px, 4vw, 42px);
}

.pressure-copy > p {
  max-width: 770px;
  color: var(--charcoal);
  font-size: 1.05rem;
}

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

.pressure-matrix article {
  min-height: 138px;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 248, 245, 0.72);
}

.pressure-matrix h3 {
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.15;
}

.pressure-matrix p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.pressure-visual {
  min-height: 100%;
}

.section-heading-split {
  align-items: center;
}

.indicator-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 12px;
}

.indicator-card {
  display: flex;
  min-height: 315px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
}

.indicator-card > p:first-child {
  color: var(--teal-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trend {
  display: inline-flex;
  width: fit-content;
  margin: 16px 0;
  padding: 6px 9px;
  color: var(--navy);
  background: var(--blue-soft);
  border: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 900;
}

.trend.up {
  background: #e4f3f1;
}

.trend.down {
  background: #f2ece5;
}

.indicator-card h3 {
  margin-top: 12px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.indicator-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.topic-desk {
  background: #fff;
}

.coverage-panel {
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.45fr);
  gap: 18px;
}

.coverage-lead {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(24px, 3vw, 38px);
}

.coverage-lead h3 {
  max-width: 560px;
}

.coverage-lead p {
  max-width: 540px;
  color: var(--charcoal);
  font-size: 1rem;
}

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

.coverage-index article {
  min-height: 198px;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.coverage-index span {
  display: block;
  margin-bottom: 10px;
  color: var(--teal-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.coverage-index h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.18;
}

.coverage-index p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.coverage-index article:hover h3 {
  color: var(--navy);
}

.request-section {
  background: var(--navy);
  color: #e9f4f6;
}

.request-section h2,
.request-section .section-kicker {
  color: #fff;
}

.request-copy,
.reader-form-card {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.request-copy {
  padding: clamp(24px, 4vw, 42px);
}

.request-copy p {
  max-width: 720px;
  margin-top: 18px;
  color: #d7e9ee;
}

.trust-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding: 12px 14px 12px 38px;
  color: #eef8f9;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  width: 10px;
  height: 10px;
  background: var(--teal);
}

.general-disclaimer {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 800;
}

.reader-form-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  padding: clamp(24px, 4vw, 42px);
}

.reader-form-card label {
  color: #fff;
  font-weight: 900;
}

.form-field {
  display: grid;
  gap: 7px;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.reader-form-card input,
.reader-form-card select {
  min-height: 48px;
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: #fff;
  color: var(--ink);
  border-radius: 0;
}

.reader-form-card input:focus,
.reader-form-card select:focus {
  border-color: var(--teal);
  box-shadow: inset 0 0 0 1px var(--teal);
  outline: none;
}

.consent-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  color: #d7e9ee;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.4;
}

.reader-form-card .consent-row {
  font-weight: 400;
}

.consent-row input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.form-submit {
  width: 100%;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.82;
}

.form-note,
.reader-status {
  color: #bfdce4;
  font-size: 0.88rem;
}

.reader-status {
  min-height: 22px;
  font-weight: 900;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 60;
  transform: translateX(-50%);
  display: none;
  width: min(420px, calc(100% - 28px));
  min-height: 48px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(4, 20, 42, 0.25);
}

.success-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(4, 20, 42, 0.74);
}

.success-modal.is-open {
  display: flex;
}

.success-modal-panel {
  width: min(520px, 100%);
  padding: clamp(24px, 4vw, 40px);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 22px 70px rgba(4, 20, 42, 0.28);
}

.success-modal-panel h2 {
  margin: 8px 0 12px;
  color: var(--navy);
  font-size: clamp(1.7rem, 4vw, 2.35rem);
  line-height: 1.02;
}

.success-modal-panel p:not(.story-label) {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.success-modal-panel .button {
  width: 100%;
}

.site-footer {
  padding: 58px 0 46px;
  color: #d7e9ee;
  background:
    linear-gradient(180deg, #061c3c 0%, #04142a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-wrap {
  display: grid;
  gap: 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(220px, 0.75fr) minmax(280px, 1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
}

.footer-logo {
  width: min(300px, 70vw);
  height: auto;
  margin-bottom: 24px;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-family: var(--sans);
  font-size: clamp(0.95rem, 1.1vw, 1.16rem);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.15;
}

.site-footer p,
.site-footer a {
  color: #d7e9ee;
}

.site-footer p {
  margin: 0;
  font-size: clamp(0.88rem, 1vw, 0.98rem);
  line-height: 1.55;
}

.footer-contact,
.footer-imprint,
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact strong {
  color: #fff;
}

.footer-contact a,
.footer-imprint a {
  text-decoration-color: rgba(57, 180, 172, 0.55);
  text-underline-offset: 3px;
}

.footer-contact a:hover,
.footer-imprint a:hover,
.footer-accordions a:hover {
  color: var(--teal);
}

.footer-legal-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 12px;
}

.footer-legal-tabs a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 14px;
  color: #fff;
  border: 1px solid rgba(203, 215, 220, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
}

.footer-legal-tabs a:hover {
  border-color: rgba(57, 180, 172, 0.7);
  color: #fff;
}

.footer-accordions {
  display: grid;
  gap: 12px;
}

.footer-accordions details {
  border: 1px solid rgba(203, 215, 220, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.footer-accordions summary {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 13px 16px;
  color: #fff;
  font-size: clamp(0.95rem, 1.05vw, 1.08rem);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.footer-accordions summary::-webkit-details-marker {
  display: none;
}

.footer-accordions summary::before {
  content: "+";
  display: inline-flex;
  width: 24px;
  color: var(--teal);
  font-weight: 900;
}

.footer-accordions details[open] summary::before {
  content: "-";
}

.footer-accordions details > div {
  display: grid;
  gap: 12px;
  padding: 0 18px 18px 42px;
}

.footer-accordions p {
  max-width: 1180px;
  color: #c6d6df;
  font-size: 0.88rem;
}

.footer-note {
  padding-top: 24px;
  border-top: 1px solid rgba(203, 215, 220, 0.2);
  color: #c6d6df;
  font-size: 0.86rem;
}

.footer-bottom {
  padding-top: 12px;
  color: #8ea2ad;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-item.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal-item {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .header-top,
  .hero-layout,
  .lead-story-grid,
  .analysis-layout,
  .pressure-layout,
  .request-layout,
  .coverage-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .ticker-row {
    grid-template-columns: 1fr;
  }

  .ticker-note {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .ticker ul {
    grid-template-columns: repeat(6, minmax(160px, 1fr));
  }

  .lead-story-grid {
    min-height: 0;
  }

  .editorial-media {
    min-height: 290px;
  }

  .secondary-board {
    min-height: 360px;
  }

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

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

@media (max-width: 700px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .advertorial-bar {
    justify-content: flex-start;
    font-size: 0.66rem;
  }

  .header-top {
    gap: 14px;
  }

  .brand-logo {
    width: min(250px, 72vw);
  }

  .header-deck {
    font-size: 1rem;
  }

  .header-brief {
    width: 100%;
  }

  .topic-nav-scroll {
    width: calc(100% - 24px);
    justify-content: flex-start;
  }

  .hero-newsroom,
  .editorial-band,
  .pressure-section,
  .numbers-section,
  .topic-desk,
  .request-section {
    padding: 38px 0;
  }

  .section-label-row,
  .section-heading-split {
    align-items: start;
    flex-direction: column;
  }

  .data-warning {
    text-align: left;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.5rem);
  }

  .lead-copy,
  .secondary-board,
  .analysis-column,
  .pressure-copy,
  .request-copy,
  .reader-form-card,
  .coverage-lead {
    padding: 22px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .analysis-ledger,
  .pressure-matrix,
  .indicator-board,
  .coverage-index {
    grid-template-columns: 1fr;
  }

  .indicator-card {
    min-height: 280px;
  }

  .coverage-index article {
    min-height: 0;
  }

  .sticky-cta {
    display: flex;
  }
}
