@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@600;700;800&display=swap");

:root {
  --ink: #142233;
  --muted: #62717f;
  --line: #d8dfdf;
  --paper: #f3f0ea;
  --white: #ffffff;
  --navy: #132233;
  --teal: #0e6861;
  --teal-soft: #deece8;
  --coral: #bf715c;
  --coral-soft: #f7ece7;
  --gold: #b38a4c;
  --gold-soft: #f4eddc;
  --blue: #62779a;
  --blue-soft: #e9eef4;
  --shadow: 0 18px 48px rgba(17, 32, 45, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
}
h1, h2, h3, h4, .metric strong { font-family: "Sora", "Manrope", sans-serif; }
button, input, select { font: inherit; }
button { cursor: pointer; }
a { color: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.app-shell { display: grid; grid-template-columns: 248px minmax(0, 1fr); min-height: 100vh; }

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 30px 22px 24px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #234051 0%, #325763 100%);
  color: white;
  z-index: 5;
}
.brand {
  margin: 0 6px 30px;
  padding: 14px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(241,247,249,.92) 100%);
  border: 1px solid rgba(255,255,255,.36);
  box-shadow: 0 18px 38px rgba(8, 28, 45, .18);
}
.brand-mark {
  width: min(100%, 214px);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(10, 42, 82, .14));
}
.eyebrow { margin: 0 0 6px; color: var(--teal); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
nav { display: grid; gap: 7px; }
.nav-item {
  width: 100%;
  display: flex; align-items: center; gap: 12px;
  padding: 13px 12px;
  border: 0; border-radius: 12px;
  background: transparent; color: #aebfcc;
  text-align: left; font-size: 14px; font-weight: 650;
}
.nav-item:hover, .nav-item.active { background: rgba(255,255,255,.09); color: white; }
.nav-icon { color: #97c4bb; font: 800 10px/1 monospace; }
.sidebar-note {
  display: flex; gap: 10px; align-items: flex-start;
  margin-top: auto; padding: 16px 10px;
  border-top: 1px solid rgba(255,255,255,.11);
  color: #d5e0e7; font-size: 12px;
}
.sidebar-note p { margin: 4px 0 0; color: #8da4b5; }
.status-dot { width: 8px; height: 8px; margin-top: 4px; border-radius: 50%; background: #71c3b7; box-shadow: 0 0 0 5px rgba(113,195,183,.12); }
.report-link {
  margin: 8px 10px 0; color: #9fd0c8; font-size: 12px; font-weight: 750; text-decoration: none;
}
.report-link:hover { text-decoration: underline; }

main { min-width: 0; padding: 0 34px 70px; }
.topbar {
  min-height: 102px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.topbar h2 { margin: 0; font-size: 26px; letter-spacing: -.035em; }
.topbar-actions { display: flex; align-items: center; gap: 10px; }
.search-box { position: relative; display: block; }
.search-box input {
  width: min(320px, 30vw); height: 42px;
  padding: 0 56px 0 15px;
  border: 1px solid var(--line); border-radius: 12px;
  background: white; color: var(--ink); outline: none;
}
.search-box input:focus { border-color: #7da8a3; box-shadow: 0 0 0 3px rgba(14,104,97,.12); }
.search-box kbd {
  position: absolute; right: 10px; top: 9px;
  padding: 4px 7px; border: 1px solid #dce3e8; border-radius: 6px;
  background: #f7f9fa; color: #7b8995; font-size: 10px;
}
.button {
  border: 0; border-radius: 10px; padding: 10px 14px;
  font-size: 12px; font-weight: 800;
}
.button.primary { background: var(--teal); color: white; }
.button.primary:disabled { opacity: .42; cursor: default; }
.button.secondary { background: white; color: var(--ink); border: 1px solid var(--line); }
.button.ghost { background: transparent; color: var(--muted); }
.text-button { border: 0; background: transparent; color: var(--teal); font-size: 12px; font-weight: 800; }

.view { display: none; animation: fade .24s ease; }
.view.active { display: block; }
@keyframes fade { from { opacity: .55; transform: translateY(4px); } to { opacity: 1; transform: none; } }

.briefing-hero {
  display: grid; grid-template-columns: minmax(0, 1.45fr) 330px; gap: 18px;
  padding: 30px; border-radius: 26px;
  background: linear-gradient(135deg, #faf6ee 0%, #e8f0ea 56%, #ddd9cb 120%);
  color: var(--ink); box-shadow: var(--shadow);
}
.briefing-hero-copy h3 { max-width: 900px; margin: 0; font-size: clamp(30px, 3vw, 44px); line-height: 1.04; letter-spacing: -.05em; }
.briefing-hero-copy p:not(.eyebrow) { max-width: 840px; margin: 16px 0 0; color: #4d6072; font-size: 14px; line-height: 1.65; }
.briefing-tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.briefing-tag {
  display: inline-flex; flex-direction: column; gap: 5px;
  padding: 11px 13px; border: 1px solid #d6dfde; border-radius: 14px;
  background: rgba(255,255,255,.82); color: #566778; font-size: 11px;
}
.briefing-tag strong { color: var(--ink); font-size: 8px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.briefing-cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.briefing-pulse {
  padding: 18px; border: 1px solid #d5dfde; border-radius: 20px;
  background: rgba(255,255,255,.82); backdrop-filter: blur(10px);
}
.briefing-pulse-label { display: block; color: #5d887f; font-size: 9px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.briefing-pulse strong { display: block; margin-top: 10px; color: var(--ink); font-size: 28px; letter-spacing: -.04em; font-family: "Sora", "Manrope", sans-serif; }
.briefing-pulse p { margin: 10px 0 0; color: #526577; font-size: 11px; line-height: 1.6; }
.briefing-pulse-list { display: grid; gap: 10px; margin-top: 16px; }
.briefing-pulse-item {
  width: 100%; padding: 12px 13px; border: 1px solid #dbe4e3; border-radius: 14px;
  background: #ffffff; color: var(--ink); text-align: left;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.briefing-pulse-item:hover { transform: translateY(-2px); border-color: #c9d7d5; background: #f8faf8; }
.briefing-pulse-item span { display: block; color: #5f897f; font-size: 8px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.briefing-pulse-item strong { display: block; margin: 7px 0 5px; font-size: 13px; line-height: 1.35; font-family: "Manrope", sans-serif; }
.briefing-pulse-item p { margin: 0; color: #5b6d7d; font-size: 10px; line-height: 1.5; }

.briefing-ribbon {
  display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(320px, 1fr); gap: 17px;
  margin: 18px 0 0;
}
.briefing-feature-card, .briefing-action-board { min-width: 0; }
.briefing-feature-button {
  width: 100%; height: 100%; padding: 24px; border: 1px solid #d2e3e7; border-radius: 22px;
  background: linear-gradient(145deg, #fffdf8 0%, #f3f0e8 62%, #ebf0f0 100%);
  color: var(--ink); text-align: left; box-shadow: 0 10px 30px rgba(15, 44, 67, .07);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.briefing-feature-button:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(15, 44, 67, .10); border-color: #b7d7d4; }
.briefing-feature-eyebrow { display: block; color: var(--teal); font-size: 9px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.briefing-feature-button h3 { margin: 10px 0 10px; font-size: 26px; line-height: 1.08; letter-spacing: -.04em; font-family: "Sora", "Manrope", sans-serif; }
.briefing-feature-button > p { margin: 0; color: #42556a; font-size: 12px; line-height: 1.7; }
.briefing-feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 18px; }
.briefing-feature-grid div { padding: 13px; border: 1px solid #e4ecef; border-radius: 15px; background: rgba(255,255,255,.76); }
.briefing-feature-grid span { display: block; margin-bottom: 6px; color: var(--muted); font-size: 8px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.briefing-feature-grid strong { display: block; color: #32475d; font-size: 10px; line-height: 1.6; font-family: "Manrope", sans-serif; }
.briefing-feature-foot {
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  margin-top: 18px; padding-top: 16px; border-top: 1px solid #e5edf1;
}
.briefing-feature-foot em { color: #4d6379; font-size: 10px; font-style: normal; line-height: 1.55; }
.briefing-feature-foot span { color: var(--teal); font-size: 11px; font-weight: 850; }
.briefing-action-board { display: grid; gap: 12px; }
.briefing-action-card {
  width: 100%; padding: 17px 18px; border: 1px solid var(--line); border-radius: 18px;
  background: white; text-align: left; box-shadow: 0 8px 24px rgba(28, 56, 79, .05);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.briefing-action-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: #c5dade; }
.briefing-action-card span { display: block; color: var(--muted); font-size: 8px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.briefing-action-card strong { display: block; margin: 8px 0 7px; font-size: 16px; line-height: 1.28; font-family: "Sora", "Manrope", sans-serif; }
.briefing-action-card p { margin: 0; color: #526577; font-size: 10px; line-height: 1.6; }
.briefing-action-card em { display: block; margin-top: 10px; color: var(--teal); font-size: 10px; font-style: normal; font-weight: 750; }

.hero {
  position: relative; overflow: hidden;
  min-height: 248px; padding: 38px 42px;
  display: grid; grid-template-columns: minmax(0, 1fr); align-items: center;
  border-radius: 24px;
  background: #d9e0e1;
  color: #05080b; box-shadow: var(--shadow);
}
.hero h3 { max-width: 920px; margin: 0; font-size: clamp(27px, 3vw, 42px); line-height: 1.06; letter-spacing: -.045em; }
.hero p:not(.eyebrow) { max-width: 840px; margin: 18px 0 0; color: #17202a; line-height: 1.6; font-size: 14px; }
.hero .eyebrow.light { color: #073f5c; }

.portfolio-hero {
  display: grid; grid-template-columns: minmax(0, 1fr) 220px; align-items: center; gap: 30px;
  padding: 34px 38px; border-radius: 24px;
  background: linear-gradient(130deg, #152435 0%, #355159 54%, #d7d3c6 130%);
  color: white; box-shadow: var(--shadow);
}
.portfolio-hero h3 { max-width: 940px; margin: 0; font-size: clamp(28px, 3vw, 40px); line-height: 1.08; letter-spacing: -.045em; }
.portfolio-hero p:not(.eyebrow) { max-width: 860px; margin: 14px 0 0; color: #d4e3e9; font-size: 13px; line-height: 1.6; }
.portfolio-hero .eyebrow.light { color: #97d1d8; }
.portfolio-stamp small { color: #c9dce1; }
.portfolio-backend-banner {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 14px 2px 2px; padding: 10px 14px; border: 1px solid #d9e5ea; border-radius: 999px;
  background: white; color: #46617a;
}
.portfolio-backend-banner p { margin: 0; font-size: 10px; font-weight: 700; letter-spacing: .02em; }
.portfolio-backend-banner .status-dot { flex: 0 0 auto; }

.insights-hero {
  display: grid; grid-template-columns: minmax(0, 1fr) 220px; align-items: center; gap: 30px;
  padding: 34px 38px; border-radius: 24px;
  background: linear-gradient(135deg, #142334 0%, #2a5458 55%, #b38a4c 120%);
  color: white; box-shadow: var(--shadow);
}
.insights-hero h3 { max-width: 900px; margin: 0; font-size: clamp(28px, 3vw, 40px); line-height: 1.08; letter-spacing: -.045em; }
.insights-hero p:not(.eyebrow) { max-width: 860px; margin: 14px 0 0; color: #d6e4e7; font-size: 13px; line-height: 1.6; }
.insights-hero .eyebrow.light { color: #9edfd7; }
.insight-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.insight-card, .insight-rail-item {
  width: 100%; border: 1px solid var(--line); text-align: left; background: white;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.insight-card {
  min-height: 275px; padding: 21px; border-radius: 20px; box-shadow: 0 8px 24px rgba(28,56,79,.045);
}
.insight-card:hover, .insight-rail-item:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.insight-card.teal { background: linear-gradient(180deg, #f3fbfa 0%, #ffffff 100%); border-color: #cfe6e2; }
.insight-card.blue { background: linear-gradient(180deg, #f4f7ff 0%, #ffffff 100%); border-color: #d9e4fb; }
.insight-card.gold { background: linear-gradient(180deg, #fff8ea 0%, #ffffff 100%); border-color: #f0dfb5; }
.insight-card.coral { background: linear-gradient(180deg, #fff3ed 0%, #ffffff 100%); border-color: #f1d2c8; }
.insight-eyebrow { display: block; color: var(--muted); font-size: 9px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.insight-card h3 { margin: 10px 0 8px; font-size: 20px; line-height: 1.16; letter-spacing: -.03em; }
.insight-card p { margin: 0; color: #526577; font-size: 11px; line-height: 1.62; }
.insight-body { display: grid; gap: 10px; margin-top: 16px; }
.insight-field { padding: 11px 12px; border: 1px solid #e7edf1; border-radius: 13px; background: rgba(255,255,255,.84); }
.insight-field span { display: block; margin-bottom: 5px; color: var(--muted); font-size: 8px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.insight-field p { margin: 0; color: #42556a; font-size: 10px; line-height: 1.55; }
.insight-foot { display: grid; gap: 7px; margin-top: 18px; padding-top: 16px; border-top: 1px solid #e7edf1; }
.insight-foot strong { font-size: 11px; line-height: 1.45; }
.insight-foot em { color: var(--muted); font-size: 9px; font-style: normal; }
.insight-foot span { color: var(--teal); font-size: 10px; font-weight: 850; }
.insight-rail { display: grid; gap: 12px; }
.insight-rail-item { min-height: 114px; padding: 16px; border-radius: 16px; }
.insight-rail-item span { display: block; color: var(--muted); font-size: 9px; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }
.insight-rail-item strong { display: block; margin: 8px 0 5px; font-size: 14px; line-height: 1.3; }
.insight-rail-item p { margin: 0; color: #526577; font-size: 10px; line-height: 1.55; }
.headline-preview-list { display: grid; gap: 10px; }
.headline-preview-header { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 12px; background: #f6f9fa; }
.headline-preview-header strong { font-size: 13px; }
.headline-preview-header span { color: var(--muted); font-size: 10px; }
.headline-preview-item {
  width: 100%; padding: 14px; border: 1px solid var(--line); border-radius: 14px; background: white; text-align: left;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.headline-preview-item:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.headline-preview-item span { display: block; color: var(--muted); font-size: 8px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.headline-preview-item strong { display: block; margin: 7px 0 5px; font-size: 13px; line-height: 1.35; }
.headline-preview-item p, .headline-preview-item em { margin: 0; color: #526577; font-size: 10px; line-height: 1.55; font-style: normal; }
.headline-preview-item em { display: block; margin-top: 7px; color: var(--teal); font-weight: 750; }

.archive-hero {
  display: grid; grid-template-columns: minmax(0, 1fr) 240px; align-items: center; gap: 30px;
  padding: 34px 38px; border-radius: 24px;
  background: linear-gradient(135deg, #152434 0%, #355059 55%, #c7d0bb 120%);
  color: white; box-shadow: var(--shadow);
}
.archive-hero h3 { max-width: 920px; margin: 0; font-size: clamp(28px, 3vw, 40px); line-height: 1.08; letter-spacing: -.045em; }
.archive-hero p:not(.eyebrow) { max-width: 860px; margin: 14px 0 0; color: #d8e6e1; font-size: 13px; line-height: 1.6; }
.archive-hero .eyebrow.light { color: #bfe6db; }
.archive-stamp small { color: #d4e7dd; }
.archive-months, .archive-edition-list, .archive-headline-list, .archive-spotlight-list { display: grid; gap: 12px; }
.archive-month-card { padding: 14px; border: 1px solid var(--line); border-radius: 14px; background: #f8fbfb; }
.archive-month-header { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 10px; }
.archive-month-header strong { font-size: 13px; }
.archive-month-header span { color: var(--muted); font-size: 10px; }
.archive-month-list { display: grid; gap: 8px; }
.archive-month-item, .archive-edition-card, .archive-spotlight-item {
  width: 100%; border: 1px solid var(--line); border-radius: 14px; background: white; text-align: left;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.archive-month-item:hover, .archive-edition-card:hover, .archive-spotlight-item:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.archive-month-item { padding: 12px; }
.archive-month-item span { display: block; color: var(--muted); font-size: 8px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.archive-month-item strong { display: block; margin: 7px 0 4px; font-size: 12px; line-height: 1.35; }
.archive-month-item p { margin: 0; color: var(--teal); font-size: 10px; font-weight: 750; }
.archive-edition-card { padding: 16px; }
.archive-edition-card.active { border-color: rgba(0,127,123,.35); box-shadow: 0 0 0 3px rgba(0,127,123,.08); }
.archive-edition-top { display: flex; justify-content: space-between; gap: 10px; align-items: center; margin-bottom: 10px; }
.archive-edition-top span { color: var(--ink); font-size: 13px; font-weight: 800; }
.archive-edition-top em { color: var(--teal); font-size: 9px; font-style: normal; font-weight: 850; text-transform: uppercase; letter-spacing: .07em; }
.archive-edition-card > strong { display: block; margin-bottom: 12px; font-size: 12px; line-height: 1.55; }
.archive-edition-meta, .archive-metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.archive-metric { padding: 12px; border-radius: 12px; background: #f5f8f9; }
.archive-metric span { display: block; color: var(--muted); font-size: 8px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.archive-metric strong { display: block; margin-top: 5px; font-size: 13px; }
.archive-detail { display: grid; gap: 16px; }
.archive-detail-hero {
  display: grid; grid-template-columns: minmax(0, 1fr) 250px; gap: 20px;
  padding: 22px; border-radius: 18px; background: linear-gradient(135deg, #183043, #30585b); color: white;
}
.archive-detail-hero h3 { margin: 0; font-size: 26px; letter-spacing: -.04em; }
.archive-detail-hero p:not(.eyebrow) { margin: 10px 0 0; color: #d7e5e2; font-size: 12px; line-height: 1.6; }
.archive-detail-stamp { padding: 16px; border: 1px solid rgba(255,255,255,.15); border-radius: 16px; background: rgba(255,255,255,.06); }
.archive-detail-stamp strong { display: block; font-size: 13px; line-height: 1.45; }
.archive-detail-stamp small { display: block; margin-top: 8px; color: #cfe1db; font-size: 10px; line-height: 1.5; }
.archive-detail-grid { gap: 16px; }
.archive-inner-panel { padding: 0; box-shadow: none; }
.archive-headline-item { padding: 18px 20px; border-bottom: 1px solid #edf1f4; }
.archive-headline-item:last-child { border-bottom: 0; }
.archive-headline-item span { display: block; color: var(--muted); font-size: 8px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.archive-headline-item strong { display: block; margin: 8px 0 6px; font-size: 14px; line-height: 1.35; }
.archive-headline-item p { margin: 0; color: #526577; font-size: 11px; line-height: 1.6; }
.archive-spotlight-item { padding: 16px 18px; }
.archive-spotlight-item strong { display: block; margin-bottom: 5px; font-size: 13px; }
.archive-spotlight-item p { margin: 0; color: #526577; font-size: 10px; line-height: 1.55; }

.current-edition-preview { display: block; }
.current-edition-card {
  padding: 18px; border: 1px solid #e2eaee; border-radius: 18px;
  background: linear-gradient(180deg, #fcfaf6 0%, #ffffff 100%);
}
.current-edition-label { display: block; color: var(--teal); font-size: 9px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.current-edition-card > strong { display: block; margin-top: 7px; font-size: 20px; letter-spacing: -.03em; font-family: "Sora", "Manrope", sans-serif; }
.current-edition-card > p { margin: 10px 0 0; color: #4c6075; font-size: 11px; line-height: 1.65; }
.current-edition-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 16px; }
.current-edition-mini-grid div { padding: 12px; border-radius: 13px; background: white; border: 1px solid #e7edf1; }
.current-edition-mini-grid span { display: block; color: var(--muted); font-size: 8px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.current-edition-mini-grid strong { display: block; margin-top: 6px; font-size: 14px; font-family: "Sora", "Manrope", sans-serif; }
.current-edition-headlines { display: grid; gap: 9px; margin-top: 16px; }
.current-edition-headline { padding: 12px; border: 1px solid #e7edf1; border-radius: 13px; background: rgba(255,255,255,.86); }
.current-edition-headline span { display: block; color: var(--muted); font-size: 8px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.current-edition-headline strong { display: block; margin-top: 6px; font-size: 11px; line-height: 1.55; font-family: "Manrope", sans-serif; }
.current-edition-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.current-edition-jump { color: var(--teal); }
.trust-list { display: grid; gap: 11px; }
.trust-item { padding: 15px; border: 1px solid #e4ecef; border-radius: 15px; background: linear-gradient(180deg, #fbf8f2, #ffffff); }
.trust-item strong { display: block; margin-bottom: 5px; font-size: 12px; }
.trust-item p { margin: 0; color: #55697b; font-size: 10px; line-height: 1.6; }

.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 17px 0; }
.metric-grid.compact { margin-bottom: 22px; }
.metric {
  padding: 20px; border: 1px solid var(--line); border-radius: 17px; background: white;
  box-shadow: 0 7px 25px rgba(28, 56, 79, .045);
}
.metric-button {
  width: 100%;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.metric-button:hover {
  transform: translateY(-2px);
  border-color: #c3d7dc;
  box-shadow: 0 14px 30px rgba(28, 56, 79, .08);
}
.metric-button:focus-visible {
  outline: 0;
  border-color: #7da8a3;
  box-shadow: 0 0 0 3px rgba(14,104,97,.12), 0 14px 30px rgba(28, 56, 79, .08);
}
.metric-top { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.metric-label { color: var(--muted); font-size: 11px; font-weight: 750; }
.metric-icon { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; background: var(--teal-soft); color: var(--teal); font-size: 11px; font-weight: 900; }
.metric strong { display: block; margin: 11px 0 4px; font-size: 29px; letter-spacing: -.04em; }
.metric small { color: var(--muted); font-size: 10px; }
.metric.coral .metric-icon { background: var(--coral-soft); color: var(--coral); }
.metric.gold .metric-icon { background: var(--gold-soft); color: #a87416; }
.metric.blue .metric-icon { background: var(--blue-soft); color: var(--blue); }

.dashboard-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 17px; }
.span-4 { grid-column: span 4; }
.span-8 { grid-column: span 8; }
.span-5 { grid-column: span 5; }
.span-7 { grid-column: span 7; }
.span-12 { grid-column: span 12; }
.panel { min-width: 0; padding: 25px; border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: 0 8px 30px rgba(28,56,79,.045); }
.panel-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 19px; }
.panel-heading h3 { margin: 0; font-size: 18px; letter-spacing: -.025em; }
.microcopy { color: var(--muted); font-size: 10px; }

.evidence-map { position: relative; height: 330px; padding: 26px 22px 38px 70px; }
.map-grid { position: absolute; inset: 26px 22px 38px 70px; background-image: linear-gradient(#e9eef2 1px, transparent 1px), linear-gradient(90deg, #e9eef2 1px, transparent 1px); background-size: 25% 33.33%; border-left: 1px solid #ccd6de; border-bottom: 1px solid #ccd6de; }
.axis-y { position: absolute; left: 0; top: 140px; transform: rotate(-90deg); color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.axis-x { position: absolute; bottom: 5px; left: 47%; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.bubble {
  position: absolute; z-index: 2;
  width: var(--size); height: var(--size);
  left: var(--x); bottom: var(--y);
  transform: translate(-50%, 50%);
  display: grid; place-items: center; padding: 7px;
  border: 3px solid rgba(255,255,255,.85); border-radius: 50%;
  color: white; background: var(--color);
  box-shadow: 0 7px 20px rgba(16,42,61,.18);
  font-size: 9px; line-height: 1.1; font-weight: 850; text-align: center;
  transition: transform .2s ease;
}
.bubble:hover { transform: translate(-50%, 50%) scale(1.09); z-index: 3; }
.map-label { position: absolute; color: #84929e; font-size: 9px; }
.map-label.high { top: 6px; left: 34px; }
.map-label.low { bottom: 32px; left: 34px; }
.map-label.early { bottom: 19px; left: 72px; }
.map-label.late { bottom: 19px; right: 22px; }

.priority-list { display: grid; gap: 11px; }
.priority-item { display: grid; grid-template-columns: 36px minmax(0, 1fr) auto; align-items: center; gap: 12px; padding: 13px; background: #f7f9fa; border-radius: 13px; }
.priority-rank { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 11px; background: var(--navy); color: white; font-size: 11px; font-weight: 850; }
.priority-item h4 { margin: 0 0 3px; font-size: 12px; }
.priority-item p { margin: 0; color: var(--muted); font-size: 10px; }
.priority-score { color: var(--teal); font-weight: 900; font-size: 12px; }

.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th { padding: 10px 12px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 9px; letter-spacing: .07em; text-align: left; text-transform: uppercase; }
td { padding: 13px 12px; border-bottom: 1px solid #edf1f4; font-size: 11px; vertical-align: top; line-height: 1.45; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: #f8fafb; }
.therapy-cell strong { display: block; font-size: 12px; }
.therapy-cell span { color: var(--muted); font-size: 9px; }
.pill { display: inline-flex; align-items: center; gap: 5px; padding: 5px 8px; border-radius: 999px; font-size: 9px; font-weight: 800; white-space: nowrap; }
.pill.high { color: #0b5a54; background: var(--teal-soft); }
.pill.moderate { color: #7b6332; background: var(--gold-soft); }
.pill.early { color: #965f50; background: var(--coral-soft); }
.pill.neutral { color: #556980; background: #edf2f6; }
.pill.available { color: #0b5a54; background: var(--teal-soft); }
.pill.limited { color: #7b6332; background: var(--gold-soft); }
.pill.not-launched { color: #965f50; background: var(--coral-soft); }

.filter-bar {
  display: grid; grid-template-columns: repeat(4, minmax(130px, 1fr)) auto; gap: 12px;
  padding: 17px; margin-bottom: 14px; border: 1px solid var(--line); border-radius: 16px; background: white;
}
.filter-bar label { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.filter-bar select { display: block; width: 100%; margin-top: 6px; padding: 9px 28px 9px 10px; border: 1px solid var(--line); border-radius: 9px; background: #f8fafb; color: var(--ink); font-size: 11px; text-transform: none; }
.filter-bar .button { align-self: end; height: 37px; }
.results-line { display: flex; align-items: baseline; gap: 5px; margin: 17px 2px; color: var(--muted); font-size: 11px; }
.results-line strong { color: var(--ink); font-size: 20px; }
.results-line span { margin-left: auto; }

.portfolio-toolbar {
  display: grid; grid-template-columns: minmax(280px, 2.1fr) minmax(180px, 1fr) auto; gap: 12px;
  padding: 17px; margin: 17px 0 14px; border: 1px solid var(--line); border-radius: 16px; background: white;
}
.portfolio-toolbar label { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.portfolio-toolbar select, .portfolio-search-box input {
  display: block; width: 100%; margin-top: 6px; padding: 10px 12px;
  border: 1px solid var(--line); border-radius: 10px; background: #f8fafb; color: var(--ink); font-size: 11px; text-transform: none;
}
.portfolio-search-box input:focus { border-color: #7da8a3; box-shadow: 0 0 0 3px rgba(14,104,97,.12); outline: none; }
.portfolio-toolbar .button { align-self: end; height: 41px; }
.portfolio-results { display: grid; gap: 12px; max-height: 920px; overflow: auto; padding-right: 4px; }
.portfolio-result {
  width: 100%; padding: 18px; border: 1px solid var(--line); border-radius: 16px;
  background: #fbfcfc; text-align: left; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.portfolio-result:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.portfolio-result.active { border-color: rgba(14,104,97,.35); background: linear-gradient(180deg, #faf8f2 0%, #ffffff 100%); box-shadow: 0 12px 34px rgba(24,47,70,.08); }
.portfolio-result-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.portfolio-lane {
  display: inline-flex; align-items: center; padding: 5px 8px; border-radius: 999px;
  font-size: 8px; font-weight: 850; letter-spacing: .05em; text-transform: uppercase;
}
.portfolio-lane.treatment { color: #00635f; background: var(--teal-soft); }
.portfolio-lane.followup { color: #4e627e; background: var(--blue-soft); }
.portfolio-lane.watchlist { color: #7a6336; background: var(--gold-soft); }
.portfolio-result-status { color: var(--muted); font-size: 9px; font-weight: 800; }
.portfolio-result h4 { margin: 0 0 5px; font-size: 16px; line-height: 1.25; letter-spacing: -.025em; }
.portfolio-result-copy { margin: 12px 0 0; color: #526577; font-size: 10px; line-height: 1.6; }
.portfolio-chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 13px 0 11px; }
.portfolio-chip {
  display: inline-flex; align-items: center; padding: 5px 8px; border-radius: 999px;
  background: #f0f4f7; color: #506476; font-size: 8px; font-weight: 800;
}
.portfolio-result strong { display: block; color: var(--teal); font-size: 10px; line-height: 1.5; }
.portfolio-detail { min-height: 100%; }
.portfolio-detail-hero {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 18px;
  padding: 24px; border-radius: 18px; background: linear-gradient(135deg, #183244, #2f605c); color: white;
}
.portfolio-detail-hero .eyebrow { color: #7fd8cd; }
.portfolio-detail-hero h3 { margin: 0; font-size: 30px; line-height: 1.08; letter-spacing: -.04em; }
.portfolio-detail-hero p:not(.eyebrow) { margin: 7px 0 0; color: #c5dbde; font-size: 11px; line-height: 1.55; }
.portfolio-detail-actions { display: flex; align-items: flex-start; }
.portfolio-detail-actions .button { white-space: nowrap; }
.portfolio-detail-body { padding-top: 18px; }
.portfolio-lead { margin: 0 0 18px; color: #42556a; font-size: 12px; line-height: 1.7; }
.treatment-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; }
.treatment-card {
  position: relative; display: flex; flex-direction: column; min-height: 330px;
  padding: 21px; border: 1px solid var(--line); border-radius: 18px; background: white;
  box-shadow: 0 8px 26px rgba(28,56,79,.045); transition: transform .18s ease, box-shadow .18s ease;
}
.treatment-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card-top { display: flex; justify-content: space-between; gap: 10px; }
.cancer-tag { color: var(--teal); font-size: 9px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.compare-toggle { border: 1px solid var(--line); border-radius: 8px; background: white; color: var(--muted); padding: 6px 8px; font-size: 9px; font-weight: 800; }
.compare-toggle.selected { color: white; border-color: var(--teal); background: var(--teal); }
.treatment-card h3 { margin: 15px 0 6px; font-size: 17px; line-height: 1.22; letter-spacing: -.025em; }
.company { margin: 0; color: var(--muted); font-size: 10px; }
.headline-result { margin: 20px 0 16px; padding: 13px; border-radius: 12px; background: #f5f9f9; }
.headline-result strong { display: block; color: var(--teal); font-size: 16px; }
.headline-result span { color: var(--muted); font-size: 9px; line-height: 1.4; }
.card-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-bottom: 16px; }
.card-meta div { padding: 9px; border: 1px solid #edf1f3; border-radius: 10px; }
.card-meta span { display: block; margin-bottom: 4px; color: var(--muted); font-size: 8px; text-transform: uppercase; }
.card-meta strong { font-size: 10px; line-height: 1.25; }
.card-actions { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.detail-button { border: 0; padding: 0; background: transparent; color: var(--teal); font-size: 10px; font-weight: 850; }
.empty-state { grid-column: 1/-1; padding: 70px; border: 1px dashed #bdcbd4; border-radius: 18px; color: var(--muted); text-align: center; background: white; }

.india-intro {
  display: grid; grid-template-columns: 1fr 220px; gap: 28px; align-items: center;
  margin-bottom: 16px; padding: 28px 32px; border-radius: 19px; background: linear-gradient(125deg, #e6efea, #f7f4ee);
}
.india-intro h3 { margin: 0; font-size: 28px; letter-spacing: -.04em; }
.india-intro p:not(.eyebrow) { max-width: 760px; margin: 9px 0 0; color: #546879; font-size: 12px; line-height: 1.55; }
.exchange-card { padding: 19px; border: 1px solid rgba(0,127,123,.18); border-radius: 15px; background: white; }
.exchange-card span, .exchange-card small { display: block; color: var(--muted); font-size: 9px; }
.exchange-card strong { display: block; margin: 7px 0 4px; color: var(--teal); font-size: 23px; }
.price-main { display: block; color: var(--ink); font-weight: 800; }
.price-note { color: var(--muted); font-size: 9px; }
.launch-note { max-width: 250px; color: var(--muted); }

.technology-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 17px; }
.technology-card { min-height: 180px; padding: 23px; border-radius: 17px; color: white; overflow: hidden; position: relative; }
.technology-card::after { content: ""; position: absolute; width: 130px; height: 130px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; right: -43px; bottom: -53px; }
.technology-card:nth-child(1) { background: linear-gradient(135deg, #1c5e58, #3d877e); }
.technology-card:nth-child(2) { background: linear-gradient(135deg, #425b78, #7386a3); }
.technology-card:nth-child(3) { background: linear-gradient(135deg, #9a6b59, #c08a77); }
.technology-card span { color: rgba(255,255,255,.73); font-size: 9px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.technology-card strong { display: block; margin: 18px 0 7px; font-size: 25px; letter-spacing: -.04em; }
.technology-card p { margin: 0; color: rgba(255,255,255,.82); font-size: 10px; line-height: 1.5; }
.technology-bars { display: grid; gap: 17px; }
.bar-row { display: grid; grid-template-columns: 140px 1fr 42px; align-items: center; gap: 12px; }
.bar-row label { font-size: 10px; font-weight: 750; }
.bar-track { height: 10px; overflow: hidden; border-radius: 999px; background: #eaf0f2; }
.bar-fill { height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--teal), #7ab9ae); }
.bar-row:nth-child(2) .bar-fill { background: linear-gradient(90deg, var(--blue), #97a7bd); }
.bar-row:nth-child(3) .bar-fill { background: linear-gradient(90deg, var(--gold), #ceb27a); }
.bar-row:nth-child(4) .bar-fill { background: linear-gradient(90deg, var(--coral), #d7a08c); }
.bar-row strong { color: var(--muted); font-size: 9px; }
.equity-stack { display: grid; gap: 12px; }
.equity-card { padding: 18px; border-radius: 14px; }
.equity-card.brazil { background: var(--gold-soft); }
.equity-card.kyrgyzstan { background: var(--blue-soft); }
.equity-card span { color: var(--muted); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.equity-card strong { display: block; margin: 8px 0 4px; font-size: 24px; }
.equity-card p { margin: 0; color: #536476; font-size: 10px; line-height: 1.5; }

.followup-hero {
  display: grid; grid-template-columns: minmax(0, 1fr) 190px; align-items: center; gap: 30px;
  padding: 34px 38px; border-radius: 21px;
  background: linear-gradient(125deg, #183244 0%, #2f575c 62%, #4c7262 100%);
  color: white; box-shadow: var(--shadow);
}
.watchlist-hero { background: linear-gradient(125deg, #2a3040 0%, #35505d 58%, #48675e 100%); }
.followup-hero h3 { max-width: 780px; margin: 0; font-size: 34px; letter-spacing: -.045em; }
.followup-hero p:not(.eyebrow) { max-width: 790px; margin: 13px 0 0; color: #c8dce1; font-size: 12px; line-height: 1.6; }
.followup-stamp { padding: 22px; border: 1px solid rgba(255,255,255,.18); border-radius: 17px; background: rgba(255,255,255,.09); text-align: center; }
.followup-stamp strong { display: block; font-size: 40px; letter-spacing: -.06em; }
.followup-stamp span, .followup-stamp small { display: block; }
.followup-stamp span { color: #d8e7e9; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.followup-stamp small { margin-top: 8px; color: #8fc5c2; font-size: 9px; }
.filter-bar.followup-filters { grid-template-columns: minmax(160px, 1fr) minmax(160px, 1fr) auto minmax(320px, 2fr); align-items: end; }
.followup-legend { display: flex; justify-content: flex-end; align-items: center; flex-wrap: wrap; gap: 13px; padding-bottom: 9px; color: var(--muted); font-size: 9px; }
.followup-legend span { display: flex; align-items: center; gap: 5px; }
.legend-dot { width: 8px; height: 8px; border-radius: 50%; }
.legend-dot.approved { background: var(--teal); }
.legend-dot.review { background: var(--blue); }
.legend-dot.guideline { background: var(--gold); }
.legend-dot.development { background: var(--coral); }
.followup-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; }
.followup-card { position: relative; overflow: hidden; padding: 20px; border: 1px solid var(--line); border-radius: 15px; background: #fbfcfc; }
.followup-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--status-color); }
.followup-card-top { display: flex; justify-content: space-between; gap: 12px; }
.followup-card h4 { margin: 6px 0 4px; font-size: 16px; letter-spacing: -.025em; }
.followup-card .company { margin-bottom: 14px; }
.status-chip { align-self: flex-start; padding: 5px 8px; border-radius: 999px; color: var(--status-color); background: var(--status-bg); font-size: 8px; font-weight: 850; text-transform: uppercase; letter-spacing: .05em; white-space: nowrap; }
.milestone-path { position: relative; display: grid; grid-template-columns: 1fr 24px 1fr; align-items: center; margin: 13px 0; }
.milestone { min-height: 72px; padding: 11px; border: 1px solid #e6ecef; border-radius: 11px; background: white; }
.milestone span { display: block; margin-bottom: 5px; color: var(--muted); font-size: 8px; font-weight: 800; text-transform: uppercase; }
.milestone strong { display: block; font-size: 10px; line-height: 1.4; }
.path-arrow { color: var(--status-color); text-align: center; font-weight: 900; }
.followup-assessment { margin: 0 0 12px; color: #526577; font-size: 10px; line-height: 1.55; }
.followup-links { display: flex; flex-wrap: wrap; gap: 12px; }
.followup-links a { color: var(--teal); font-size: 9px; font-weight: 800; text-decoration: none; }
.followup-links a:hover { text-decoration: underline; }
.register-program strong { display: block; font-size: 11px; }
.register-program span { color: var(--muted); font-size: 9px; }
.register-effect { max-width: 230px; }
.register-effect strong { display: block; font-size: 10px; }
.register-effect span { color: var(--muted); font-size: 9px; }
.dossier-button { border: 1px solid var(--line); border-radius: 8px; padding: 7px 9px; background: white; color: var(--teal); font-size: 9px; font-weight: 850; white-space: nowrap; }
.dossier-button:hover { border-color: var(--teal); background: var(--teal-soft); }
.dossier-summary { padding: 35px 40px 28px; background: linear-gradient(130deg, #173144, #33635d); color: white; }
.dossier-summary .eyebrow { color: #75d2c8; }
.dossier-summary h2 { max-width: 850px; margin: 0; font-size: 30px; letter-spacing: -.04em; }
.dossier-summary p { color: #c8dcdf; font-size: 11px; }
.dossier-status-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.dossier-status-row span { padding: 6px 9px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: white; background: rgba(255,255,255,.08); font-size: 9px; font-weight: 800; }
.dossier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; }
.dossier-field { padding: 14px; border: 1px solid var(--line); border-radius: 12px; background: #f8fafb; }
.dossier-field.wide { grid-column: span 2; }
.dossier-field.full { grid-column: 1 / -1; }
.dossier-field span { display: block; margin-bottom: 6px; color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.dossier-field strong, .dossier-field p { margin: 0; font-size: 10px; line-height: 1.55; }
.regional-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; margin-top: 20px; }
.region-card { padding: 15px; border-radius: 12px; background: #f4f8f8; }
.region-card span { color: var(--teal); font-size: 9px; font-weight: 850; text-transform: uppercase; }
.region-card p { margin: 6px 0 0; color: #526577; font-size: 10px; line-height: 1.55; }
.evidence-ledger { margin-top: 21px; padding-top: 20px; border-top: 1px solid var(--line); }
.evidence-ledger h3 { margin: 0 0 10px; font-size: 14px; }
.evidence-ledger a { display: block; margin: 7px 0; color: var(--teal); font-size: 10px; font-weight: 750; word-break: break-word; }
.followup-lessons { display: grid; gap: 11px; }
.lesson { display: grid; grid-template-columns: 34px 1fr; gap: 12px; padding: 13px; border-radius: 12px; background: #f6f9fa; }
.lesson b { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: var(--navy); color: white; font-size: 10px; }
.lesson strong { display: block; margin-bottom: 3px; font-size: 11px; }
.lesson p { margin: 0; color: var(--muted); font-size: 9px; line-height: 1.5; }
.method-list { display: grid; gap: 10px; }
.method-list p { margin: 0; padding: 12px; border-left: 3px solid var(--teal); background: #f6f9fa; color: var(--muted); font-size: 10px; line-height: 1.5; }
.method-list strong { color: var(--ink); }

.compare-tray {
  position: fixed; left: calc(248px + 50%); bottom: 20px; z-index: 10;
  width: min(650px, calc(100vw - 290px)); transform: translateX(-50%) translateY(120px);
  display: flex; justify-content: space-between; align-items: center; gap: 15px;
  padding: 13px 16px; border-radius: 15px; background: #173043; color: white;
  box-shadow: 0 14px 40px rgba(10,37,60,.3); transition: transform .25s ease;
}
.compare-tray.visible { transform: translateX(-50%) translateY(0); }
.compare-tray strong { display: block; font-size: 11px; }
.compare-tray span { display: block; margin-top: 3px; color: #a9bfcd; font-size: 9px; }
.compare-tray .button.ghost { color: #b7c8d2; }

.modal {
  width: min(760px, calc(100vw - 32px)); max-height: 88vh; padding: 0;
  border: 0; border-radius: 21px; color: var(--ink); background: white;
  box-shadow: 0 30px 90px rgba(9,38,62,.3);
}
.modal.wide { width: min(1120px, calc(100vw - 32px)); }
.modal::backdrop { background: rgba(5,23,37,.68); backdrop-filter: blur(4px); }
.modal-close { position: sticky; float: right; top: 14px; right: 14px; z-index: 2; width: 34px; height: 34px; border: 0; border-radius: 50%; background: #eef3f5; color: var(--ink); font-size: 22px; }
.modal-header { padding: 34px 38px 22px; background: linear-gradient(135deg, #f7f4ed, #fff); }
.modal-header h2 { margin: 0; font-size: 28px; letter-spacing: -.04em; }
.modal-header p:not(.eyebrow) { color: var(--muted); font-size: 12px; line-height: 1.55; }
.modal-body { padding: 27px 38px 38px; }
.detail-hero { padding: 36px 42px 30px; background: linear-gradient(135deg, #173144, #2d5f5c); color: white; }
.detail-hero .eyebrow { color: #6dd2c7; }
.detail-hero h2 { max-width: 650px; margin: 0; font-size: 29px; line-height: 1.1; letter-spacing: -.04em; }
.detail-hero p { color: #c5dadd; font-size: 11px; }
.detail-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 22px; }
.detail-kpi { padding: 14px; border-radius: 12px; background: #f5f8f9; }
.detail-kpi span { display: block; margin-bottom: 5px; color: var(--muted); font-size: 8px; text-transform: uppercase; }
.detail-kpi strong { font-size: 11px; line-height: 1.3; }
.detail-section { margin-top: 22px; }
.detail-section h3 { margin: 0 0 8px; font-size: 14px; }
.detail-section p { margin: 0; color: #526577; font-size: 11px; line-height: 1.65; }
.source-link { display: inline-block; margin-top: 10px; color: var(--teal); font-size: 10px; font-weight: 800; }
.compare-table td, .compare-table th { min-width: 180px; }
.compare-table th:first-child, .compare-table td:first-child { min-width: 130px; position: sticky; left: 0; background: white; }
.rating-guide { display: grid; gap: 10px; padding: 0 38px 38px; }
.rating-item { padding: 15px; border: 1px solid var(--line); border-radius: 12px; }
.rating-item h3 { margin: 0 0 5px; font-size: 12px; }
.rating-item p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.5; }

@media (max-width: 1080px) {
  .treatment-grid { grid-template-columns: repeat(2, 1fr); }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { grid-template-columns: 1fr; }
  .briefing-hero, .briefing-ribbon { grid-template-columns: 1fr; }
  .briefing-feature-grid { grid-template-columns: 1fr; }
  .portfolio-hero { grid-template-columns: 1fr; }
  .archive-hero, .archive-detail-hero { grid-template-columns: 1fr; }
  .insight-grid { grid-template-columns: 1fr; }
  .filter-bar { grid-template-columns: repeat(2, 1fr); }
  .portfolio-toolbar { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .app-shell { grid-template-columns: 1fr; }
  .sidebar { position: static; height: auto; padding: 15px; }
  .brand { margin: 0 0 14px; padding: 12px 14px; }
  .sidebar nav { grid-template-columns: repeat(3, 1fr); }
  .nav-item { justify-content: center; padding: 10px 5px; text-align: center; }
  .nav-icon, .sidebar-note, .report-link { display: none; }
  main { padding: 0 17px 60px; }
  .topbar { min-height: 92px; }
  .topbar .eyebrow, .topbar-actions .secondary, .search-box kbd { display: none; }
  .search-box input { width: 36vw; padding-right: 10px; }
  .span-4, .span-5, .span-7, .span-8 { grid-column: span 12; }
  .compare-tray { left: 50%; width: calc(100vw - 34px); }
  .portfolio-detail-hero { flex-direction: column; }
  .archive-edition-meta, .archive-metric-grid { grid-template-columns: 1fr 1fr; }
  .briefing-pulse strong { font-size: 24px; }
}
@media (max-width: 600px) {
  .sidebar nav { grid-template-columns: repeat(2, 1fr); }
  .topbar { align-items: flex-start; flex-direction: column; gap: 10px; padding: 18px 0; }
  .search-box input { width: calc(100vw - 34px); }
  .hero, .insights-hero, .portfolio-hero, .archive-hero, .briefing-hero { grid-template-columns: 1fr; padding: 29px 25px; }
  .metric-grid, .treatment-grid, .technology-grid, .india-intro { grid-template-columns: 1fr; }
  .filter-bar, .portfolio-toolbar { grid-template-columns: 1fr; }
  .portfolio-backend-banner { display: flex; border-radius: 16px; }
  .results-line span { display: none; }
  .evidence-map { overflow: hidden; }
  .india-intro { padding: 24px; }
  .detail-kpis { grid-template-columns: 1fr; }
  .modal-body, .modal-header, .detail-hero { padding-left: 23px; padding-right: 23px; }
  .followup-hero, .followup-grid { grid-template-columns: 1fr; }
  .filter-bar.followup-filters { grid-template-columns: 1fr; }
  .followup-legend { justify-content: flex-start; }
  .dossier-grid, .regional-grid { grid-template-columns: 1fr; }
  .dossier-field.wide { grid-column: auto; }
  .portfolio-detail-hero h3 { font-size: 25px; }
  .portfolio-results { max-height: none; }
  .archive-edition-meta, .archive-metric-grid { grid-template-columns: 1fr; }
  .archive-detail-hero { padding: 20px; }
  .briefing-cta-row, .current-edition-actions { flex-direction: column; align-items: stretch; }
  .briefing-pulse-list, .briefing-action-board, .current-edition-mini-grid { grid-template-columns: 1fr; }
  .briefing-feature-button, .briefing-pulse, .current-edition-card { padding: 18px; }
}
