:root {
  --ink: #15253d;
  --muted: #64748b;
  --line: #dfe7ee;
  --paper: #f4f7f8;
  --white: #ffffff;
  --navy: #0b2842;
  --teal: #007f7b;
  --teal-soft: #dff3ef;
  --coral: #ef765f;
  --coral-soft: #fff0eb;
  --gold: #e6aa3a;
  --gold-soft: #fff6dc;
  --blue: #3f70d8;
  --blue-soft: #eaf0ff;
  --shadow: 0 16px 50px rgba(24, 47, 70, .09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", 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: var(--navy);
  color: white;
  z-index: 5;
}
.brand { display: flex; align-items: center; gap: 13px; padding: 0 8px 34px; }
.brand-mark {
  width: 48px; height: 48px; border-radius: 16px;
  display: block;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(16, 190, 170, .2);
}
.brand h1 { margin: 2px 0 0; font-size: 20px; letter-spacing: -.03em; }
.eyebrow { margin: 0 0 6px; color: var(--teal); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.brand .eyebrow { color: #7bbcb8; font-size: 9px; }
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: #65c5bd; 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: #54ceb8; box-shadow: 0 0 0 5px rgba(84,206,184,.12); }
.report-link {
  margin: 8px 10px 0; color: #75d1c8; 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: #56ada7; box-shadow: 0 0 0 3px rgba(0,127,123,.1); }
.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; } }

.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: #8ed8f8;
  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; }

.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-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-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: #00635f; background: var(--teal-soft); }
.pill.moderate { color: #9a6711; background: var(--gold-soft); }
.pill.early { color: #ba4c38; background: var(--coral-soft); }
.pill.neutral { color: #46617a; background: #edf2f6; }
.pill.available { color: #00635f; background: var(--teal-soft); }
.pill.limited { color: #956713; background: var(--gold-soft); }
.pill.not-launched { color: #b64d3a; 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; }
.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, #e4f4f0, #f7fbfa);
}
.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, #087c78, #17a89c); }
.technology-card:nth-child(2) { background: linear-gradient(135deg, #315eaf, #4d82e5); }
.technology-card:nth-child(3) { background: linear-gradient(135deg, #d26c52, #ef8a6c); }
.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), #5ec9bd); }
.bar-row:nth-child(2) .bar-fill { background: linear-gradient(90deg, var(--blue), #79a1f1); }
.bar-row:nth-child(3) .bar-fill { background: linear-gradient(90deg, var(--gold), #f2c361); }
.bar-row:nth-child(4) .bar-fill { background: linear-gradient(90deg, var(--coral), #f4a08e); }
.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, #102f49 0%, #164d5c 62%, #15796f 100%);
  color: white; box-shadow: var(--shadow);
}
.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, #0b2b45, #146b68); 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: #102f49; 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, #f3faf8, #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, #0b2b45, #0b6264); 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; }
  .filter-bar { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .app-shell { grid-template-columns: 1fr; }
  .sidebar { position: static; height: auto; padding: 15px; }
  .brand { padding: 0 4px 14px; }
  .sidebar nav { grid-template-columns: repeat(4, 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-5, .span-7 { grid-column: span 12; }
  .compare-tray { left: 50%; width: calc(100vw - 34px); }
}
@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 { grid-template-columns: 1fr; padding: 29px 25px; }
  .metric-grid, .treatment-grid, .technology-grid, .india-intro { grid-template-columns: 1fr; }
  .filter-bar { grid-template-columns: 1fr; }
  .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; }
}
