:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #fbfdff;
  --surface-tint: #ffffff;
  --border: rgba(18, 42, 96, 0.1);
  --border-strong: #c8d8f2;
  --text: #16243c;
  --text-soft: #51617e;
  --text-muted: #7d8ba4;
  --accent: #365f9f;
  --accent-soft: rgba(54, 95, 159, 0.12);
  --accent-strong: #132a60;
  --success: rgba(47, 109, 84, 0.14);
  --success-text: #2f6d54;
  --negative: rgba(170, 75, 66, 0.12);
  --negative-text: #aa4b42;
  --navy: #132a60;
  --navy-soft: #1d3f86;
  --footer: #112956;
  --footer-border: rgba(255, 255, 255, 0.18);
  --shadow-soft: 0 26px 56px rgba(19, 42, 96, 0.08);
  --shadow-card: 0 16px 36px rgba(19, 42, 96, 0.06);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  color: var(--text);
  background-color: var(--bg);
  background-image: linear-gradient(180deg, var(--bg) 0%, var(--bg) 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid rgba(32, 72, 198, 0.45);
  outline-offset: 3px;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.insights-app {
  min-height: 100vh;
}

.insights-app::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(color-mix(in srgb, var(--navy) 4%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--navy) 4%, transparent) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 60%);
  opacity: 0.05;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px 38px 16px;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter: blur(22px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.04);
}

.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brandmark__seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--navy), color-mix(in srgb, var(--navy) 72%, white 28%));
  color: color-mix(in srgb, var(--accent) 78%, white 22%);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 16px 34px color-mix(in srgb, var(--navy) 20%, transparent);
}

.brandmark__copy {
  display: grid;
  gap: 2px;
}

.brandmark__title {
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--navy);
}

.brandmark__subtitle {
  color: var(--text-soft);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  min-width: 0;
}

.primary-nav a {
  position: relative;
  padding: 6px 0;
  color: var(--text-soft);
  font-size: 0.96rem;
  font-weight: 600;
}

.primary-nav a.is-active {
  color: var(--accent);
}

.primary-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -11px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.searchbox {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 312px;
  padding: 0 18px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.searchbox__icon,
[data-icon] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--text-soft);
}

.searchbox input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
  font-size: 0.92rem;
}

.searchbox input::placeholder {
  color: #8f9db3;
}

.icon-button,
.theme-switch,
.avatar-button {
  border: 0;
  background: transparent;
}

.icon-button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.icon-button:hover {
  background: rgba(32, 72, 198, 0.06);
}

.theme-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.theme-switch:hover {
  border-color: color-mix(in srgb, var(--navy) 22%, var(--border-strong));
  box-shadow: var(--shadow-card);
}

.theme-switch span[data-icon] {
  width: 15px;
  height: 15px;
}

.avatar-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface) 92%, white) 0%, color-mix(in srgb, var(--surface-soft) 80%, white) 100%);
}

.avatar-button__face {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 36%, #ffd7bc 0 24%, transparent 24.5%),
    radial-gradient(circle at 50% 83%, #1a3d8f 0 37%, transparent 37.5%),
    radial-gradient(circle at 50% 22%, #18263f 0 19%, transparent 19.5%),
    linear-gradient(180deg, #f8d7bb 0%, #ffd7bc 100%);
  box-shadow: inset 0 -8px 0 rgba(255, 255, 255, 0.15);
}

.theme-panel {
  position: fixed;
  top: 74px;
  right: 40px;
  z-index: 30;
  width: 320px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface) 96%, transparent);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(24px);
}

.theme-panel__label {
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.theme-panel__options {
  display: grid;
  gap: 10px;
}

.theme-swatch {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: color-mix(in srgb, var(--surface-soft) 70%, transparent);
}

.theme-swatch.is-active {
  border-color: color-mix(in srgb, var(--navy) 28%, var(--border-strong));
  background: color-mix(in srgb, var(--navy) 8%, var(--surface));
}

.theme-swatch__preview {
  display: grid;
  gap: 8px;
  justify-items: start;
}

.theme-swatch__dots {
  display: flex;
  gap: 6px;
}

.theme-swatch__dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.theme-swatch__mode {
  display: inline-flex;
  min-height: 20px;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  color: var(--text-soft);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.theme-swatch__meta {
  display: grid;
  gap: 4px;
}

.theme-swatch__name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

.theme-swatch__description {
  color: var(--text-soft);
  font-size: 0.72rem;
  line-height: 1.5;
}

.page-wrap {
  padding: 30px 28px 40px;
}

.page-grid {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.left-rail {
  position: sticky;
  top: 106px;
  padding-top: 6px;
}

.rail-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 46px;
}

.rail-heading__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(180deg, #23828b 0%, #1f6f79 100%);
  color: #fff;
}

.rail-heading__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

.rail-heading__meta,
.rail-link,
.sidebar-copy,
.metric-card__label,
.analyst-card__role,
.feature-meta,
.story-card__eyebrow,
.detail-kicker,
.report-breadcrumb,
.detail-meta__label,
.related-card__meta,
.download-note,
.footer-label,
.footer-bottom {
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.rail-heading__meta,
.rail-link,
.sidebar-copy,
.metric-card__label,
.analyst-card__role,
.story-card__eyebrow,
.detail-kicker,
.report-breadcrumb,
.detail-meta__label,
.related-card__meta,
.download-note,
.footer-label,
.footer-bottom {
  font-size: 0.7rem;
  font-weight: 700;
}

.rail-heading__meta,
.sidebar-copy,
.story-card__summary,
.quote-block__credit,
.detail-paragraph,
.footer-copy,
.footer-links a,
.footer-bottom,
.support-links a,
.download-note,
.detail-body,
.hero-subtitle,
.market-copy {
  color: var(--text-soft);
}

.category-nav {
  display: grid;
  gap: 14px;
}

.category-button {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 16px 18px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  color: var(--navy);
  text-align: left;
}

.category-button__icon {
  width: 24px;
  height: 24px;
  color: #3f506d;
}

.category-button__label {
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.category-button.is-active {
  border-color: var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  color: var(--accent);
}

.category-divider {
  height: 1px;
  margin: 34px 0 36px;
  background: var(--border-strong);
}

.brand-finish-card {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
}

.brand-finish__eyebrow {
  margin: 0 0 4px;
  color: var(--text-muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-finish__title {
  margin: 0;
  color: var(--navy);
  font-size: 0.82rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.brand-finish__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.brand-finish__active {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface-soft) 65%, transparent);
}

.brand-finish__active-copy {
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 700;
}

.brand-finish__quick {
  display: grid;
  gap: 8px;
}

.brand-theme {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface-soft) 72%, transparent);
  text-align: left;
}

.brand-theme.is-active {
  border-color: color-mix(in srgb, var(--navy) 30%, var(--border-strong));
  background: color-mix(in srgb, var(--navy) 8%, var(--surface));
}

.brand-theme--compact {
  width: 100%;
  justify-content: flex-start;
}

.brand-theme__dots {
  display: flex;
  gap: 5px;
}

.brand-theme__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.brand-theme__name {
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
}

.brand-finish__button {
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-download {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  padding: 17px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy) 0%, color-mix(in srgb, var(--navy) 78%, var(--accent)) 100%);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 18px 42px color-mix(in srgb, var(--navy) 22%, transparent);
}

.support-links {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

.support-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
}

.support-links a span:first-child {
  width: 18px;
  height: 18px;
}

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

.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 334px;
  gap: 38px;
  align-items: start;
}

.landing-copy {
  min-width: 0;
}

.hero-kicker {
  margin: 0 0 10px;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  font-size: clamp(2.95rem, 5.2vw, 4.05rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
  color: var(--navy);
}

.hero-subtitle {
  max-width: 28ch;
  margin: 18px 0 0;
  font-size: 0.98rem;
  line-height: 1.68;
}

.hero-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.hero-meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-meta-copy {
  color: var(--text-soft);
  font-size: 0.86rem;
  font-weight: 600;
}

.hero-chip-row {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 18px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  padding: 14px 18px;
  border-radius: 16px;
  background: var(--surface-soft);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.hero-chip:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-card);
}

.hero-chip--live {
  background: color-mix(in srgb, var(--navy) 88%, white);
  color: #f7fbff;
}

.landing-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 334px;
  gap: 38px;
  margin-top: 34px;
  align-items: start;
}

.feature-card {
  display: grid;
  gap: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.12);
}

.feature-card__media {
  position: relative;
  height: 320px;
  background: #0b1735;
}

.feature-card__art,
.story-card__art,
.related-card__art {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.feature-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 18, 50, 0.14) 0%, rgba(6, 18, 50, 0.44) 58%, rgba(6, 18, 50, 0.72) 100%),
    linear-gradient(120deg, rgba(0, 0, 0, 0.18), transparent 50%);
}

.feature-card__body {
  padding: 18px 20px 20px;
}

.feature-badges {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-badge--navy {
  background: rgba(10, 28, 78, 0.88);
  color: #fff;
}

.feature-badge--green {
  background: rgba(124, 214, 110, 0.75);
  color: #d7ffd2;
}

.feature-title {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--navy);
}

.feature-summary {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}

.feature-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-soft);
}

.feature-meta__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-muted);
}

.landing-rail {
  display: grid;
  gap: 24px;
}

.rail-panel {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  box-shadow: var(--shadow-card);
}

.panel-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.panel-heading h3,
.detail-panel h3,
.article-section-title,
.detail-related h3 {
  margin: 0;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
}

.panel-heading__icon {
  width: 20px;
  height: 20px;
  color: var(--text-soft);
}

.value-panel {
  padding: 24px 22px;
}

.value-list {
  display: grid;
  gap: 8px;
}

.value-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface-soft);
}

.value-item span {
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 600;
}

.value-item strong {
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.value-actions {
  display: grid;
  gap: 8px;
}

.value-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface-soft);
  color: var(--navy);
  font-size: 0.78rem;
  line-height: 1.45;
  font-weight: 600;
  transition: transform 160ms ease;
}

.value-actions a:hover {
  transform: translateX(2px);
}

.story-card__title,
.related-card__title,
.detail-title,
.article-lead h2,
.article-section h2,
.quote-block,
.analyst-card__name {
  color: var(--navy);
}

.analyst-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.analyst-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-card);
}

.analyst-card__avatar {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
}

.analyst-card__name {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.2;
  font-weight: 700;
}

.analyst-card__role {
  margin-top: 7px;
  color: var(--text-soft);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  margin-top: 38px;
}

.story-card {
  display: grid;
  gap: 16px;
  transition: transform 160ms ease;
}

.story-card:hover {
  transform: translateY(-2px);
}

.story-card--compact {
  align-content: start;
}

.story-card__media {
  position: relative;
  height: 292px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--navy), color-mix(in srgb, var(--navy) 72%, white 28%));
}

.story-card__media--compact {
  height: 220px;
}

.story-card__chip {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(233, 239, 247, 0.92);
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-card__eyebrow {
  margin: 0;
  color: var(--navy);
}

.story-card__title {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.35;
  font-weight: 700;
}

.story-card__summary {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.6;
}

.section-shell {
  margin-top: 52px;
}

.section-shell--stacked {
  margin-top: 64px;
}

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

.section-header__eyebrow {
  margin: 0 0 8px;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-header__title,
.section-cluster__title {
  margin: 0;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.section-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.section-link:hover {
  transform: translateY(-1px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-card);
}

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

.section-cluster-list {
  display: grid;
  gap: 34px;
}

.section-cluster {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  box-shadow: var(--shadow-card);
}

.section-cluster__header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 20px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 332px;
  gap: 42px;
  align-items: start;
}

.detail-main {
  min-width: 0;
}

.detail-header {
  max-width: 72ch;
}

.report-breadcrumb {
  margin-bottom: 18px;
  color: var(--text-muted);
}

.detail-title {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(2.25rem, 4.15vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 28px;
}

.detail-meta__item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding-right: 26px;
  margin-right: 26px;
  border-right: 1px solid var(--border);
}

.detail-meta__item:last-child {
  border-right: 0;
  padding-right: 0;
  margin-right: 0;
}

.detail-meta__item--text {
  grid-template-columns: 1fr;
}

.detail-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
}

.detail-meta__value {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}

.detail-side {
  display: grid;
  gap: 16px;
}

.detail-related {
  position: sticky;
  top: 102px;
  align-content: start;
}

.detail-panel,
.indicator-card,
.related-card,
.download-card,
.quote-block,
.chart-card {
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.detail-panel {
  padding: 24px 24px 26px;
}

.detail-panel h3 {
  margin: 0 0 14px;
}

.detail-facts {
  display: grid;
  gap: 8px;
}

.detail-fact {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 11px;
  border: 1px solid var(--border);
  background: var(--surface-soft);
}

.detail-fact span {
  color: var(--text-soft);
  font-size: 0.76rem;
  font-weight: 600;
}

.detail-fact strong {
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.source-links {
  display: grid;
  gap: 8px;
}

.source-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: var(--surface-soft);
  color: var(--navy);
  font-size: 0.76rem;
  line-height: 1.4;
  font-weight: 600;
}

.value-actions--tight a {
  min-height: 42px;
  font-size: 0.76rem;
}

.related-list {
  display: grid;
  gap: 12px;
}

.market-label {
  margin: 0 0 10px;
  color: var(--text-muted);
}

.article-body {
  margin-top: 34px;
}

.article-lead {
  max-width: 68ch;
}

.article-lead p,
.article-section p,
.article-body > p {
  margin: 0;
  font-size: 1.01rem;
  line-height: 1.82;
  color: #273a66;
}

.article-lead p::first-letter {
  float: left;
  margin-right: 12px;
  font-size: 3.6rem;
  line-height: 0.8;
  font-weight: 800;
  color: var(--navy);
}

.article-section {
  max-width: 66ch;
  margin-top: 38px;
}

.article-section--context {
  margin-top: 0;
}

.article-section h2 {
  margin: 0 0 16px;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.quote-block {
  max-width: 540px;
  margin: 34px 0 0;
  padding: 28px 28px 28px 30px;
  border-left: 3px solid var(--navy);
  font-size: 1.06rem;
  line-height: 1.5;
  font-style: italic;
}

.quote-block__credit {
  display: block;
  margin-top: 16px;
  color: var(--text-soft);
  font-size: 0.72rem;
  font-style: normal;
}

.article-section-title {
  margin: 58px 0 18px;
}

.chart-card {
  width: min(100%, 560px);
  padding: 18px 20px 20px;
  border: 1px solid var(--border);
}

.chart-caption {
  margin: 0 0 16px;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.08em;
}

.chart-subcaption {
  display: block;
  margin-top: 6px;
  font-size: 0.72rem;
  color: var(--text-soft);
  letter-spacing: normal;
  text-transform: none;
}

.research-disclaimer {
  max-width: 68ch;
  margin-top: 38px;
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: color-mix(in srgb, var(--surface-soft) 58%, transparent);
}

.research-disclaimer h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.research-disclaimer p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.84rem;
  line-height: 1.65;
}

.research-disclaimer p + p {
  margin-top: 8px;
}

.related-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  overflow: hidden;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.related-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.related-card__media {
  position: relative;
  height: 108px;
  background: #112451;
}

.related-card__body {
  padding: 0 4px 4px;
}

.related-card__title {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.45;
  font-weight: 700;
}

.related-card__meta {
  margin-top: 8px;
  color: var(--text-soft);
}

.download-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 22px 18px 18px;
  background: var(--surface-soft);
}

.download-card__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 204px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--navy);
  border-radius: 12px;
  background: transparent;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.download-card__button:hover {
  transform: translateY(-1px);
  background: var(--navy);
  color: #fff;
}

.page-footer {
  margin-top: 92px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface) 40%, transparent) 0%, color-mix(in srgb, var(--surface) 74%, transparent) 100%);
  color: var(--text);
}

.page-footer__inner {
  padding: 42px 42px 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 34px;
}

.footer-brand {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--navy);
}

.footer-copy {
  max-width: 34ch;
  margin-top: 20px;
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-soft);
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--navy);
  background: var(--surface);
}

.footer-label {
  margin: 0 0 18px;
  color: var(--text-muted);
}

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

.footer-links a {
  font-size: 0.86rem;
  color: var(--text-soft);
}

.footer-newsletter {
  display: grid;
  gap: 14px;
}

.footer-newsletter__copy {
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--text-soft);
}

.footer-newsletter__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
}

.footer-newsletter__form input {
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--navy);
}

.footer-newsletter__form input::placeholder {
  color: var(--text-muted);
}

.footer-newsletter__form button {
  min-width: 72px;
  border: 0;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: var(--text-soft);
}

.footer-bottom a {
  color: var(--text-soft);
}

.footer-bottom__links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.empty-state {
  padding: 28px;
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-card);
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.7;
}

@media (max-width: 1220px) {
  .topbar {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 18px;
  }

  .topbar__actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .searchbox {
    width: min(100%, 360px);
  }

  .page-grid,
  .landing-main,
  .landing-hero,
  .detail-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .left-rail {
    position: static;
  }

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

  .latest-grid,
  .lane-grid {
    grid-template-columns: 1fr;
  }

  .detail-related {
    position: static;
  }
}

@media (max-width: 840px) {
  .topbar,
  .page-wrap,
  .page-footer__inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .primary-nav {
    gap: 18px;
    overflow-x: auto;
    width: 100%;
    padding-bottom: 4px;
  }

  .page-grid {
    gap: 28px;
  }

  .landing-hero,
  .landing-main {
    gap: 24px;
  }

  .section-header,
  .section-cluster__header {
    flex-direction: column;
    align-items: start;
  }

  .hero-meta-row {
    flex-wrap: wrap;
  }

  .hero-title,
  .detail-title {
    font-size: 2.95rem;
  }

  .feature-card {
    border-radius: 16px;
  }

  .feature-card__media {
    height: 248px;
  }

  .feature-title {
    font-size: 1.55rem;
    max-width: 100%;
  }

  .detail-meta {
    display: grid;
    gap: 16px;
  }

  .detail-meta__item {
    margin: 0;
    padding: 0;
    border-right: 0;
  }

  .quote-block,
  .chart-card {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
