:root {
  --ink: #172033;
  --muted: #667085;
  --line: #d8dee8;
  --surface: #ffffff;
  --surface-2: #f4f7fa;
  --blue: #123a6f;
  --blue-2: #1f5f99;
  --green: #0f7a5f;
  --green-2: #18a077;
  --gold: #d9a441;
  --rose: #8b2f45;
  --sky: #dcecf7;
  --ivory: #fbfaf6;
  --paper: #f7f4ec;
  --copper: #b7794b;
  --deep: #071121;
  --shadow: 0 16px 40px rgba(17, 32, 51, 0.10);
  --radius: 8px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface-2);
  letter-spacing: 0;
  overflow-x: hidden;
}

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

button, input, select, textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  background: linear-gradient(180deg, #fbfaf6 0%, #eef4f6 100%);
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-symbol {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: block;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(18, 58, 111, 0.20);
}

.brand-symbol img {
  display: block;
  width: 100%;
  height: 100%;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.brand-copy span {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #344054;
  font-size: 14px;
  font-weight: 650;
}

.nav-direct,
.nav-trigger {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 0;
  border-radius: 8px;
  padding: 0 11px;
  background: transparent;
  color: #344054;
  cursor: pointer;
  font-weight: 750;
}

.nav-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-direct:hover,
.nav-trigger:hover,
.nav-item:focus-within .nav-trigger,
.nav-item:hover .nav-trigger {
  background: #f1f6f8;
  color: var(--blue);
}

.nav-direct.is-active,
.nav-trigger.is-active {
  background: #eef8f4;
  color: var(--green);
}

.nav-item {
  position: relative;
}

.submenu {
  position: absolute;
  z-index: 80;
  top: calc(100% + 10px);
  left: 0;
  width: 250px;
  display: grid;
  gap: 3px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(17, 32, 51, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
}

.submenu::before {
  content: "";
  position: absolute;
  left: 18px;
  top: -6px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  transform: rotate(45deg);
}

.nav-item:hover .submenu,
.nav-item:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu a {
  position: relative;
  border-radius: 8px;
  padding: 10px 11px;
  color: #344054;
  font-weight: 750;
  line-height: 1.25;
}

.submenu a:hover,
.submenu a:focus {
  outline: 0;
  background: #eef8f4;
  color: var(--green);
}

.submenu a.is-active {
  background: #eef8f4;
  color: var(--green);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
  padding: 9px 10px;
  min-width: 76px;
}

.btn {
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px 15px;
  font-weight: 750;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
}

.btn-primary:hover { background: #0d2e59; }

.btn-secondary {
  background: #fff;
  color: var(--blue);
  border-color: var(--line);
}

.btn-secondary:hover { border-color: var(--blue); }

.btn-green {
  background: var(--green);
  color: #fff;
}

.hero {
  min-height: calc(88vh - 72px);
  display: grid;
  align-items: center;
  padding: clamp(54px, 7vw, 104px) clamp(18px, 6vw, 76px) clamp(46px, 5vw, 74px);
  overflow: hidden;
}

.hero-image {
  background:
    linear-gradient(90deg, rgba(7, 17, 33, 0.94) 0%, rgba(7, 17, 33, 0.82) 42%, rgba(7, 17, 33, 0.16) 100%),
    url("/assets/evidence-hero-human.png");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero-content {
  width: min(780px, 100%);
  display: grid;
  gap: 24px;
  align-content: center;
}

.eyebrow {
  color: var(--green);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(54px, 8vw, 106px);
  line-height: 0.95;
  margin: 0;
  color: #fff;
  letter-spacing: 0;
  text-shadow: 0 18px 42px rgba(0,0,0,0.28);
}

.hero h1 span {
  display: block;
  color: rgba(255,255,255,0.92);
  font-size: clamp(25px, 3.4vw, 44px);
  line-height: 1.08;
  margin-top: 12px;
}

.hero .eyebrow {
  color: #8fe6ca;
}

.hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,0.84);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero-trust span {
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  font-weight: 750;
}

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

.hero-metrics {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 8px;
  overflow: hidden;
}

.hero-metrics div {
  padding: 16px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
}

.hero-metrics strong {
  display: block;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,0.76);
  font-size: 13px;
  font-weight: 700;
}

.regional-visual {
  position: relative;
  min-height: 620px;
  width: 100%;
}

.map-panel {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18,58,111,0.92), rgba(15,122,95,0.88)),
    linear-gradient(90deg, transparent 49%, rgba(255,255,255,0.12) 50%, transparent 51%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.map-panel::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.09) 1px, transparent 1px);
  background-size: 52px 52px;
}

.signal {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 9px rgba(217, 164, 65, 0.16), 0 0 28px rgba(217, 164, 65, 0.8);
}

.signal.s1 { left: 54%; top: 28%; }
.signal.s2 { left: 65%; top: 45%; background: #fff; }
.signal.s3 { left: 45%; top: 54%; background: #7fe0c2; }
.signal.s4 { left: 73%; top: 63%; background: #fff; }
.signal.s5 { left: 38%; top: 38%; }

.insight-strip {
  position: absolute;
  left: clamp(18px, 5vw, 48px);
  right: clamp(18px, 5vw, 48px);
  bottom: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  overflow: hidden;
}

.insight-strip div {
  padding: 18px;
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.insight-strip strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.insight-strip span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.78);
}

.section {
  padding: clamp(44px, 6vw, 78px) clamp(18px, 6vw, 76px);
}

.section.white { background: #fff; }
.section.tint { background: #eef4f6; }
.section.editorial-section { background: var(--ivory); }

.section-head {
  max-width: 880px;
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.section-head.wide {
  max-width: 1080px;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  margin: 0;
  letter-spacing: 0;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.service-grid,
.content-grid,
.institution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-grid-featured {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.service-item,
.content-item,
.institution-item,
.stat-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 8px 22px rgba(17, 32, 51, 0.05);
}

.service-item {
  position: relative;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.service-item:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 122, 95, 0.35);
  box-shadow: 0 20px 42px rgba(17, 32, 51, 0.10);
}

.service-grid-featured .service-item {
  min-height: 238px;
  display: grid;
  align-content: start;
}

.service-grid-featured .service-item:nth-child(1),
.service-grid-featured .service-item:nth-child(2) {
  grid-column: span 6;
  background:
    linear-gradient(135deg, rgba(18,58,111,0.03), rgba(15,122,95,0.06)),
    #fff;
}

.service-grid-featured .service-item:nth-child(n+3) {
  grid-column: span 4;
}

.service-item strong,
.content-item strong,
.institution-item strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.service-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #eef8f4;
  color: var(--green);
}

.service-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-tag {
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-item p,
.content-item p,
.institution-item p {
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.service-item small,
.content-item small,
.institution-item small {
  display: block;
  margin-top: 14px;
  color: #46617c;
  font-weight: 750;
  line-height: 1.45;
}

.phase-badge {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.editorial-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(26px, 6vw, 76px);
  align-items: start;
  border-bottom: 1px solid #ece6d9;
}

.editorial-lead h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  color: var(--blue);
}

.editorial-copy {
  display: grid;
  gap: 18px;
  padding-top: 28px;
}

.editorial-copy p {
  margin: 0;
  color: #475467;
  font-size: 19px;
  line-height: 1.7;
}

.story-grid,
.role-grid,
.proof-grid {
  display: grid;
  gap: 16px;
}

.story-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-card,
.role-grid article,
.trust-list div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.story-card {
  display: grid;
  gap: 18px;
  border-top: 5px solid var(--blue);
  box-shadow: 0 10px 24px rgba(17, 32, 51, 0.04);
}

.story-number {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.story-card strong,
.role-grid strong,
.trust-list strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
}

.story-card p,
.role-grid p,
.trust-list span,
.proof-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.accent-blue { border-top-color: var(--blue); }
.accent-green { border-top-color: var(--green); }
.accent-gold { border-top-color: var(--gold); }

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.workflow-steps div {
  min-height: 170px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 22px;
  background: #fff;
}

.workflow-steps strong {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 18px;
}

.workflow-steps span {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}

.mission-band.refined {
  align-items: center;
}

.report-section {
  background:
    linear-gradient(90deg, rgba(18,58,111,0.04), rgba(15,122,95,0.04)),
    #fff;
}

.report-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.62fr);
  gap: clamp(26px, 6vw, 80px);
  align-items: center;
}

.report-card h2 {
  margin: 0;
  max-width: 880px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  color: var(--blue);
}

.report-card p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.report-preview {
  border: 1px solid rgba(18,58,111,0.16);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 26px 60px rgba(17, 32, 51, 0.16);
}

.report-preview-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.report-preview-head span {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.report-score {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.report-score span {
  color: var(--muted);
  font-weight: 750;
}

.report-score strong {
  color: var(--blue);
  font-size: 42px;
  line-height: 1;
}

.report-score.ai strong { color: var(--green); }

.report-lines {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.report-lines i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), #e8edf3 70%);
}

.report-lines i:nth-child(2) { width: 82%; }
.report-lines i:nth-child(3) { width: 62%; }

.report-note {
  border-radius: 8px;
  padding: 13px;
  background: #f6fbf9;
  color: #075e49;
  font-size: 13px;
  font-weight: 750;
}

.role-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.role-grid article {
  border-left: 4px solid var(--green);
  display: grid;
  gap: 12px;
  align-content: start;
}

.role-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
}

.proof-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.proof-grid h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

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

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

.cta-section {
  background: #0e1728;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  color: #fff;
}

.cta-band h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
}

.cta-band p {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
}

.mission-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: stretch;
}

.mission-copy {
  padding: clamp(28px, 5vw, 54px);
  background: var(--blue);
  color: #fff;
  border-radius: 8px;
}

.mission-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 48px);
}

.mission-copy p {
  color: rgba(255,255,255,0.84);
  line-height: 1.65;
  font-size: 17px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stat-item strong {
  display: block;
  color: var(--blue);
  font-size: clamp(30px, 4vw, 44px);
}

.stat-item span {
  color: var(--muted);
  font-size: 14px;
}

.footer {
  background: #0e1728;
  color: #d5dde9;
  padding: 34px clamp(18px, 6vw, 76px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer small { color: #93a2b8; }

.page-site {
  background: #fff;
}

.public-page {
  background: #fff;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 17, 33, 0.96) 0%, rgba(18, 58, 111, 0.90) 46%, rgba(15, 122, 95, 0.50) 100%),
    url("/assets/evidence-hero-human.png");
  background-size: cover;
  background-position: center;
  padding: clamp(58px, 8vw, 112px) clamp(18px, 6vw, 76px);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 7px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--blue-2));
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  display: grid;
  gap: 18px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255,255,255,0.74);
  font-size: 13px;
  font-weight: 750;
}

.breadcrumb a {
  color: #91e4ca;
}

.breadcrumb span::before {
  content: "/";
  margin-right: 8px;
  color: rgba(255,255,255,0.42);
}

.page-hero .eyebrow {
  color: #91e4ca;
}

.page-hero h1 {
  max-width: 980px;
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 6.2vw, 84px);
  line-height: 0.98;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 850px;
  margin: 0;
  color: rgba(255,255,255,0.84);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.58;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.page-facts {
  width: min(880px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 12px;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,0.12);
}

.page-facts div {
  padding: 17px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
}

.page-facts strong {
  display: block;
  font-size: clamp(25px, 3.2vw, 38px);
  line-height: 1;
}

.page-facts span {
  display: block;
  margin-top: 7px;
  color: rgba(255,255,255,0.76);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}

.page-detail-section {
  padding-top: clamp(46px, 6vw, 80px);
}

.page-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 282px minmax(0, 1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
}

.page-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbfc;
}

.page-sidebar strong {
  color: var(--blue);
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.page-sidebar a {
  border-radius: 8px;
  padding: 10px 11px;
  color: #475467;
  font-weight: 750;
  line-height: 1.35;
}

.page-sidebar a:hover,
.page-sidebar a.is-current {
  background: #eef8f4;
  color: var(--green);
}

.page-body {
  display: grid;
  gap: 18px;
}

.page-block {
  position: relative;
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18,58,111,0.035), rgba(15,122,95,0.035)),
    #fff;
  box-shadow: 0 12px 32px rgba(17, 32, 51, 0.06);
}

.page-block-index {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
}

.page-block h2 {
  max-width: 820px;
  margin: 0;
  color: var(--blue);
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1.08;
  letter-spacing: 0;
}

.page-block p {
  max-width: 860px;
  margin: 0;
  color: #596579;
  font-size: 17px;
  line-height: 1.65;
}

.page-point-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.page-point-grid span {
  min-height: 58px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(15,122,95,0.18);
  border-radius: 8px;
  padding: 12px;
  background: #f6fbf9;
  color: #075e49;
  font-weight: 750;
  line-height: 1.35;
}

.related-panel {
  display: grid;
  gap: 14px;
  margin-top: 6px;
  padding: clamp(22px, 4vw, 30px);
  border-radius: 8px;
  background: #0e1728;
  color: #fff;
}

.related-panel .eyebrow {
  color: #91e4ca;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.related-links a {
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.88);
  font-weight: 750;
}

.related-links a:hover {
  border-color: rgba(145,228,202,0.55);
  color: #91e4ca;
}

.auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 460px;
  background: #f4f7fa;
}

.auth-visual {
  padding: clamp(40px, 8vw, 96px);
  background:
    linear-gradient(135deg, rgba(7,17,33,0.94), rgba(15,122,95,0.78)),
    url("/assets/evidence-hero-human.png");
  background-size: cover;
  background-position: center;
  color: #fff;
  display: grid;
  align-content: space-between;
  min-height: 100vh;
}

.auth-visual h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
}

.auth-visual p {
  max-width: 620px;
  color: rgba(255,255,255,0.82);
  font-size: 19px;
  line-height: 1.55;
}

.auth-message {
  display: grid;
  gap: 18px;
}

.security-list {
  display: grid;
  gap: 10px;
}

.security-list div,
.access-note {
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255,255,255,0.10);
}

.security-list strong,
.security-list span,
.access-note strong,
.access-note span {
  display: block;
}

.security-list span {
  margin-top: 4px;
  color: rgba(255,255,255,0.78);
  line-height: 1.45;
}

.access-note {
  margin-top: 20px;
  background: #f5faf8;
  border-color: #cbe7dc;
}

.access-note span {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.45;
}

.auth-panel {
  display: grid;
  align-content: center;
  padding: 36px;
  background: #fff;
}

.auth-form {
  display: grid;
  gap: 16px;
}

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

.form-field label {
  font-size: 13px;
  font-weight: 750;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.alert {
  display: none;
  border-radius: 8px;
  padding: 12px;
  border: 1px solid #f0b8c4;
  color: #7a2035;
  background: #fff0f3;
}

.alert.show { display: block; }
.alert.success { border-color: #9edac8; color: #075e49; background: #effbf7; }

.app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px 1fr;
  max-width: 100%;
}

.app-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  background: #0e1728;
  color: #dbe6f3;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #1f2c42;
}

.app-sidebar .brand-mark {
  padding: 22px;
  border-bottom: 1px solid #1f2c42;
}

.app-nav {
  display: grid;
  gap: 4px;
  padding: 14px;
}

.app-nav button {
  border: 0;
  background: transparent;
  color: #b9c7d8;
  text-align: left;
  border-radius: 8px;
  padding: 11px 12px;
  cursor: pointer;
  font-weight: 700;
}

.app-nav button.active,
.app-nav button:hover {
  background: #17243a;
  color: #fff;
}

.app-main {
  min-width: 0;
  background: #f4f7fa;
}

.app-topbar {
  height: 70px;
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  background: rgba(255,255,255,0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.app-topbar > div:last-child {
  min-width: 0;
}

#currentUserLabel {
  max-width: 100%;
  overflow-wrap: anywhere;
  line-height: 1.35;
}

.app-content {
  padding: 26px 28px 44px;
}

.app-page { display: none; }
.app-page.active { display: block; }

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.kpi-grid > *,
.split-grid > *,
.form-grid > *,
.content-grid > *,
.service-grid > *,
.institution-grid > * {
  min-width: 0;
}

.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 18px;
  min-width: 0;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.panel-head h2,
.panel h2 {
  margin: 0;
  font-size: 20px;
}

.panel-note {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.overview-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: 8px;
  padding: 22px;
  margin-bottom: 18px;
}

.overview-band h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--blue);
}

.overview-band p {
  max-width: 900px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.quick-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.module-list,
.operation-list,
.source-list,
.country-list {
  display: grid;
  gap: 10px;
}

.module-row,
.source-row,
.country-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.module-row:last-child,
.source-row:last-child,
.country-row:last-child {
  border-bottom: 0;
}

.module-row strong,
.module-row span,
.operation-list span,
.operation-list strong,
.operation-list small,
.source-row span,
.source-row strong,
.country-row strong,
.country-row span {
  display: block;
}

.module-row span,
.operation-list span,
.operation-list small,
.country-row span {
  color: var(--muted);
  line-height: 1.45;
}

.module-row em {
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.status-live { color: #075e49; background: #e8f7f2; }
.status-pilot { color: #765100; background: #fff5d8; }
.status-roadmap { color: #584776; background: #f0edf7; }

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

.operation-list div {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.risk-meter {
  display: grid;
  grid-template-columns: 160px 1fr 54px;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
}

.risk-meter span {
  color: var(--muted);
  font-weight: 700;
}

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

.report-title strong,
.report-title span {
  display: block;
}

.report-title span {
  color: var(--muted);
  margin-top: 4px;
}

.source-row {
  padding: 9px 0;
}

.source-row strong {
  color: var(--blue);
}

.trend-bars {
  min-height: 170px;
  display: grid;
  grid-template-columns: repeat(12, minmax(28px, 1fr));
  gap: 12px;
  align-items: end;
}

.trend-item {
  display: grid;
  gap: 8px;
  justify-items: center;
  min-width: 0;
}

.trend-columns {
  height: 130px;
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 4px;
  border-bottom: 1px solid var(--line);
}

.trend-columns span,
.trend-columns em {
  display: block;
  width: 12px;
  min-height: 8px;
  border-radius: 4px 4px 0 0;
}

.trend-columns span { background: var(--blue); }
.trend-columns em { background: var(--green); }

.trend-item small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.legend-row {
  display: flex;
  gap: 18px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.legend-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.legend-row i {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  display: inline-block;
}

.legend-doc { background: var(--blue); }
.legend-report { background: var(--green); }

.country-row {
  grid-template-columns: 180px minmax(120px, 1fr) 70px;
}

.country-bar {
  height: 10px;
  background: #e7edf4;
  border-radius: 999px;
  overflow: hidden;
}

.country-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.country-row em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  text-align: right;
}

.code-sample {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.code-sample strong {
  font-size: 13px;
}

.code-sample code {
  display: block;
  white-space: pre-wrap;
  background: #0e1728;
  color: #fff;
  border-radius: 8px;
  padding: 12px;
  font-size: 13px;
  line-height: 1.45;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.data-table th,
.data-table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

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

.span-2 { grid-column: span 2; }

.report-detail {
  display: grid;
  gap: 12px;
}

.score-row {
  display: grid;
  grid-template-columns: 140px 1fr 60px;
  align-items: center;
  gap: 12px;
}

.bar {
  height: 10px;
  background: #e7edf4;
  border-radius: 999px;
  overflow: hidden;
}

.bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--rose));
}

.empty {
  color: var(--muted);
  padding: 18px 0;
}

@media (max-width: 1100px) {
  .hero,
  .mission-band,
  .auth-page,
  .split-grid,
  .overview-band,
  .proof-grid,
  .cta-band,
  .editorial-section,
  .report-card,
  .page-layout {
    grid-template-columns: 1fr;
  }

  .page-sidebar {
    position: relative;
    top: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-sidebar strong {
    grid-column: 1 / -1;
  }

  .service-grid-featured,
  .story-grid,
  .role-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid-featured .service-item,
  .service-grid-featured .service-item:nth-child(1),
  .service-grid-featured .service-item:nth-child(2),
  .service-grid-featured .service-item:nth-child(n+3) {
    grid-column: span 1;
  }

  .workflow-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .app-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .app-main,
  .app-content,
  .app-topbar {
    width: 100%;
    max-width: 100%;
  }

  .regional-visual { min-height: 420px; }
  .auth-visual { min-height: auto; }
  .app-sidebar { position: relative; height: auto; }
  .app-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quick-actions { justify-content: flex-start; }
}

@media (max-width: 760px) {
  .top-nav {
    height: auto;
    padding: 14px 16px;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .nav-direct,
  .nav-trigger {
    white-space: nowrap;
    min-height: 36px;
    padding: 0 10px;
    background: #f6f8fb;
  }

  .submenu {
    position: fixed;
    top: 118px;
    left: 16px;
    right: 16px;
    width: auto;
    max-height: 58vh;
    overflow: auto;
  }

  .submenu::before {
    display: none;
  }

  .page-hero {
    padding-top: 46px;
  }

  .page-hero h1 {
    font-size: clamp(38px, 14vw, 58px);
  }

  .page-sidebar {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero { min-height: auto; }
  .service-grid,
  .content-grid,
  .institution-grid,
  .stats-grid,
  .kpi-grid,
  .split-grid,
  .form-grid,
  .operation-list,
  .insight-strip {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .hero-image {
    background:
      linear-gradient(180deg, rgba(7, 17, 33, 0.98) 0%, rgba(7, 17, 33, 0.92) 58%, rgba(7, 17, 33, 0.84) 100%),
      url("/assets/evidence-hero-human.png");
    background-size: cover;
    background-position: 58% center;
  }

  .hero-metrics,
  .page-facts,
  .page-point-grid,
  .service-grid-featured,
  .story-grid,
  .workflow-steps,
  .role-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .workflow-steps div {
    min-height: 118px;
  }

  .risk-meter,
  .country-row {
    grid-template-columns: 1fr;
  }

  .country-row em {
    text-align: left;
  }

  .trend-bars {
    grid-template-columns: repeat(6, minmax(30px, 1fr));
  }

  .span-2 { grid-column: span 1; }
  .app-topbar { height: auto; padding: 16px; align-items: flex-start; gap: 12px; flex-direction: column; }
  .app-topbar > div:last-child {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr);
    width: 100%;
    min-width: 0;
  }
  #currentUserLabel {
    display: block;
    min-width: 0;
    font-size: 14px;
  }
  .app-content { padding: 18px 16px 32px; }
  .app-sidebar {
    display: block;
    border-right: 0;
    border-bottom: 1px solid #1f2c42;
  }
  .app-sidebar .brand-mark {
    padding: 14px 16px;
  }
  .app-nav {
    display: flex;
    overflow-x: auto;
    max-width: 100%;
    gap: 8px;
    padding: 10px 12px 14px;
  }
  .app-nav button {
    white-space: nowrap;
    min-width: max-content;
    padding: 9px 12px;
  }
  .app-sidebar > div:last-child {
    display: flex;
    justify-content: flex-end;
    padding: 0 12px 12px !important;
  }
  .app-sidebar > div:last-child .btn {
    min-height: 36px;
    width: auto !important;
    background: #17243a;
    color: #fff;
    border-color: #2b3a54;
  }
  .auth-panel {
    padding: 24px 18px;
  }
  .auth-visual {
    padding: 26px 18px;
    gap: 28px;
  }
}
