:root {
  --navy: #061b33;
  --midnight: #0b2e4a;
  --gold: #c79a3b;
  --gold-hover: #e0b75a;
  --soft: #f4f6f8;
  --muted: #8fa3b8;
  --ink: #102542;
  --border: #e2e8f0;
  --shadow-sm: 0 8px 22px rgba(6, 27, 51, .06);
  --shadow-md: 0 18px 44px rgba(6, 27, 51, .10);
  --shadow-lg: 0 28px 70px rgba(6, 27, 51, .16);
  --topbar-height: 36px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
}
h1, h2, h3, h4, .serif { font-family: Georgia, "Times New Roman", serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Local utility layer replacing the frontend Tailwind CDN for static review. */
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.w-full { width: 100%; }
.w-auto { width: auto; }
.h-20 { height: 5rem; }
.max-w-xl { max-width: 36rem; }
.max-w-\[560px\] { max-width: 560px; }
.min-h-\[210px\] { min-height: 210px; }
.min-h-\[230px\] { min-height: 230px; }
.min-h-\[260px\] { min-height: 260px; }
.min-h-\[360px\] { min-height: 360px; }
.mt-1 { margin-top: .25rem; }
.mt-2 { margin-top: .5rem; }
.mt-3 { margin-top: .75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-6 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-12 { gap: 3rem; }
.p-2 { padding: .5rem; }
.p-4 { padding: 1rem; }
.px-3 { padding-left: .75rem; padding-right: .75rem; }
.py-1 { padding-top: .25rem; padding-bottom: .25rem; }
.pl-5 { padding-left: 1.25rem; }
.text-xs { font-size: .75rem; line-height: 1rem; }
.text-sm { font-size: .875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.font-bold { font-weight: 700; }
.leading-none { line-height: 1; }
.text-white { color: #fff; }
.text-slate-200 { color: #e2e8f0; }
.text-slate-300 { color: #cbd5e1; }
.text-slate-500 { color: #64748b; }
.text-slate-600 { color: #475569; }
.text-slate-700 { color: #334155; }
.text-\[\#061B33\] { color: #061B33; }
.text-\[\#a96f1c\] { color: #a96f1c; }
.text-\[\#f2b94f\] { color: #f2b94f; }
.bg-white { background: #fff; }
.bg-\[\#061B33\] { background: #061B33; }
.border { border-width: 1px; border-style: solid; }
.border-l-2 { border-left-width: 2px; border-left-style: solid; }
.border-white\/20 { border-color: rgba(255,255,255,.2); }
.border-\[\#c79a3b\] { border-color: #c79a3b; }
.opacity-60 { opacity: .6; }
.overflow-hidden { overflow: hidden; }
.list-disc { list-style-type: disc; }
.rounded { border-radius: .25rem; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.space-y-2 > * + * { margin-top: .5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.\!h-auto { height: auto !important; }

@media (min-width: 768px) {
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-7xl { font-size: 4.5rem; line-height: 1; }
}

.container-nssi { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  background: #102235;
  color: white;
  font-size: 12px;
  border-top: 2px solid rgba(199,154,59,.55);
  position: sticky;
  top: 0;
  z-index: 70;
}
.main-header {
  background: #f5f7fb;
  border-bottom: 1px solid #d8dee7;
  box-shadow: 0 10px 24px rgba(6, 27, 51, .08);
  position: sticky;
  top: var(--topbar-height);
  z-index: 60;
}
.logo-img { height: 72px; width: auto; object-fit: contain; }
.nav-link { color: var(--navy); font-weight: 800; padding: 20px 10px 18px; border-bottom: 3px solid transparent; }
.nav-link.active, .nav-link:hover { color: #8a5c16; border-bottom-color: var(--gold); }
.has-arrow { display: inline-flex; align-items: center; gap: 5px; }
.chev {
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--gold-hover);
  border-bottom: 2px solid var(--gold-hover);
  transform: rotate(45deg) translateY(-2px);
}
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 220px; background: white; border: 1px solid var(--border);
  border-radius: 14px; box-shadow: var(--shadow-md); padding: 10px; display: none;
}
.dropdown:hover .dropdown-menu, .dropdown.open .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 10px 12px; color: var(--navy); font-size: 14px; }
.dropdown-menu a:hover { background: var(--soft); color: #8a5c16; }
.hero {
  color: white; min-height: 270px; display: flex; align-items: center; position: relative; overflow: hidden;
  background:
    linear-gradient(90deg, rgba(6,27,51,.98) 0%, rgba(6,27,51,.88) 38%, rgba(6,27,51,.42) 70%, rgba(6,27,51,.18) 100%),
    radial-gradient(circle at 78% 30%, rgba(143,191,222,.45), transparent 22%),
    linear-gradient(135deg, #061b33, #0b2e4a 45%, #7390a6);
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .28;
  background-image:
    radial-gradient(circle at 74% 45%, rgba(255,255,255,.22) 0 2px, transparent 3px),
    linear-gradient(115deg, transparent 0 52%, rgba(255,255,255,.16) 52.3%, transparent 53%),
    repeating-linear-gradient(0deg, transparent 0 18px, rgba(255,255,255,.045) 19px),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(255,255,255,.035) 19px);
}
.hero::after {
  content: ""; position: absolute; right: 5%; bottom: 0; width: 48%; height: 82%; opacity: .65;
  background:
    radial-gradient(ellipse at 58% 74%, rgba(255,255,255,.32), transparent 22%),
    linear-gradient(18deg, transparent 0 41%, rgba(255,255,255,.35) 41% 43%, transparent 43%),
    linear-gradient(165deg, transparent 0 48%, rgba(255,255,255,.24) 48% 51%, transparent 51%),
    radial-gradient(ellipse at 62% 72%, #233f55 0 8%, transparent 9%),
    radial-gradient(ellipse at 78% 44%, #d6e0e7 0 10%, transparent 11%);
}
.hero-content { position: relative; z-index: 1; padding: 46px 0; max-width: 620px; }
.hero h1 { font-size: clamp(42px, 5vw, 70px); line-height: .98; margin: 12px 0; }
.hero .lead { font-size: clamp(18px, 2vw, 24px); line-height: 1.45; color: #f4f7fb; }
.gold-line { width: 70px; height: 3px; background: var(--gold); margin: 18px 0; }
.eyebrow { color: #a96f1c; font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.hero .eyebrow { color: #f2b94f; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 44px; padding: 0 24px;
  border-radius: 12px; font-size: 14px; font-weight: 850; border: 1px solid transparent; cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.btn-gold { background: linear-gradient(#e3b765, #d6a247); color: #071d35; border-color: #d49d3b; }
.btn-outline { border-color: var(--gold); color: white; background: transparent; }
.btn-navy { background: var(--navy); color: white; }
.btn-soft { background: #fff; color: var(--navy); border-color: #d8e0ea; box-shadow: 0 8px 22px rgba(6,27,51,.05); }
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn:focus-visible, .mobile-toggle:focus-visible, .mobile-close:focus-visible, .form-control:focus-visible {
  outline: 3px solid rgba(199,154,59,.34);
  outline-offset: 3px;
}
.btn-gold:hover { background: linear-gradient(#ebc273, #e0b75a); }
.btn-navy:hover { background: #0b2e4a; }
.btn-outline:hover { background: rgba(255,255,255,.1); }
.btn-soft:hover { border-color: var(--gold); color: #8a5c16; background: #fffaf0; }
.section { padding: 84px 0; }
.section-soft { background: var(--soft); }
.section-title { display: flex; align-items: center; gap: 18px; margin-bottom: 24px; }
.section-title h2 { color: var(--navy); font-size: 32px; margin: 0; }
.section-title::after { content: ""; width: 56px; height: 1px; background: var(--gold); }

.card { background: white; border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow-sm); overflow: hidden; }
.card-pad { padding: 30px; }
.cover-art { min-height: 230px; color: white; padding: 22px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.cover-art {
  background:
    linear-gradient(135deg, rgba(6,27,51,.78), rgba(6,27,51,.36)),
    url("../images/institutional/nsssi-research-room.png") center / cover;
}
.meta { color: #5f7184; font-size: 14px; display: flex; gap: 16px; flex-wrap: wrap; }
.small-link { color: var(--navy); font-weight: 800; font-size: 14px; }
.small-link::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  transform: rotate(45deg) translateY(-1px);
  margin-left: 8px;
}
.cta-band { background: linear-gradient(90deg, var(--navy), #0b3455); color: white; padding: 56px 0; }
.footer { background: radial-gradient(circle at 86% 12%, rgba(34,107,150,.35), transparent 32%), var(--navy); color: white; }
.footer a { color: #eef5fb; display: block; margin: 7px 0; font-size: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); color: #c9d6e2; font-size: 13px; padding: 16px 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 44px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 30px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 20px; }
.split { display: grid; grid-template-columns: 1.4fr .9fr; gap: 34px; }
.form-control { width: 100%; border: 1px solid #cfd8e2; padding: 12px 14px; border-radius: 12px; min-height: 44px; background: white; color: var(--ink); }
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(199,154,59,.12); }
.date-badge { background: var(--navy); color: white; width: 58px; text-align: center; padding: 8px 0; font-family: Georgia, serif; }
.date-badge strong { display: block; color: var(--gold); font-size: 22px; line-height: 1; }
.filters { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.filters > * { min-width: 180px; }

.soon-page { min-height: 100vh; overflow: hidden; background: radial-gradient(circle at 76% 44%, rgba(199,154,59,.14), transparent 24%), linear-gradient(135deg, #061b33, #092844 62%, #111827); color: white; }
.soon-main { min-height: calc(100vh - 92px); display: grid; align-items: center; }
.countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; width: min(560px, 100%); }
.count-box { border: 1px solid rgba(199,154,59,.45); background: rgba(255,255,255,.06); padding: 18px 10px; text-align: center; }
.count-box strong { display: block; font: 700 36px Georgia, serif; color: #f5c76e; }
.clarity-visual { min-height: 420px; position: relative; }
.clarity-visual::before {
  content: ""; position: absolute; inset: 8% 0 0 8%; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.24), transparent 46%), repeating-conic-gradient(from 22deg, rgba(255,255,255,.18) 0 8deg, transparent 8deg 18deg);
  mask-image: radial-gradient(circle, black 0 52%, transparent 53%);
}
.clarity-visual::after {
  content: ""; position: absolute; right: 7%; top: 18%; width: 52%; height: 64%;
  background: linear-gradient(130deg, rgba(255,255,255,.06), rgba(255,255,255,.22));
  border: 1px solid rgba(255,255,255,.28); transform: skewX(-12deg);
  box-shadow: -30px 22px 0 rgba(199,154,59,.18);
}

@media (max-width: 900px) {
  .desktop-nav { display: none !important; }
  .mobile-toggle { display: inline-flex !important; }
  .logo-img { height: 58px; }
  .hero { min-height: 250px; }
  .hero::after { width: 65%; opacity: .35; }
  .grid-5, .grid-4, .grid-3, .grid-2, .split { grid-template-columns: 1fr; }
  .section { padding: 38px 0; }
  .filters > * { width: 100%; }
  .soon-main { min-height: auto; padding: 30px 0; }
  .countdown { grid-template-columns: repeat(2, 1fr); }
  .clarity-visual { display: none; }
}

@media (min-width: 901px) {
  .mobile-toggle { display: none !important; }
}

/* Agent 8 frontend blueprint implementation */
.topbar-inner, .header-inner, .footer-bottom-inner, .cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.topbar-inner { min-height: 36px; }
.topbar-brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.topbar-brand img {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  flex: 0 0 auto;
}
.topbar-brand span {
  min-width: 0;
  display: grid;
  gap: 1px;
}
.topbar-brand strong {
  font-size: 13px;
  line-height: 1.1;
  font-weight: 900;
  color: #fff;
}
.topbar-brand small {
  font-size: 11px;
  line-height: 1.15;
  color: rgba(255,255,255,.78);
}
.topbar-links, .topbar-actions, .footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-links a {
  color: rgba(255,255,255,.9);
  font-weight: 800;
}
.topbar-links a:hover {
  color: var(--gold-hover);
}
.topbar-search {
  border: 1px solid rgba(6,27,51,.12);
  border-radius: 6px;
  padding: 0;
  width: 46px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  background: #102235;
  color: #42e3d0;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.topbar-search svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.2;
}
.topbar-search:hover,
.topbar-search[aria-expanded="true"] {
  background: var(--navy);
  border-color: rgba(66,227,208,.72);
  transform: translateY(-1px);
}
.topbar-identity-search {
  display: none;
  flex: 0 0 auto;
  border-color: rgba(255,255,255,.22);
  background: transparent;
  color: white;
}
.topbar-identity-search:hover,
.topbar-identity-search[aria-expanded="true"] {
  background: rgba(255,255,255,.08);
  border-color: rgba(224,183,90,.72);
  color: var(--gold-hover);
}
.page-search-panel {
  position: fixed;
  top: calc(var(--topbar-height) + 68px);
  left: 0;
  right: 0;
  z-index: 65;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0 16px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  pointer-events: none;
  color: var(--navy);
}
.page-search-panel[hidden] {
  display: none;
}
.page-search-inner {
  width: min(620px, calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 0;
  padding: 10px;
  border: 1px solid rgba(199,154,59,.28);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(248,250,252,.98)),
    radial-gradient(circle at top right, rgba(199,154,59,.12), transparent 38%);
  box-shadow: 0 18px 44px rgba(6,27,51,.16);
  pointer-events: auto;
}
.page-search-inner::before {
  content: none;
}
.page-search-box {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid #d7e0ea;
  border-radius: 16px;
  background: white;
  box-shadow: 0 10px 24px rgba(6,27,51,.07);
}
.page-search-box svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex: 0 0 auto;
}
.page-search-box input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-size: 16px;
  font-weight: 750;
}
.page-search-box input::placeholder {
  color: #7b8794;
}
.page-search-close {
  height: 46px;
  border: 1px solid #d7e0ea;
  border-radius: 14px;
  background: white;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
}
.page-search-close {
  width: 48px;
  display: inline-grid;
  place-items: center;
}
.page-search-close svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}
.page-search-close:hover {
  border-color: rgba(199,154,59,.72);
  background: #fff7e6;
  color: #8a5c16;
}
.page-search-hit {
  background: rgba(224,183,90,.36);
  color: inherit;
  border-radius: 4px;
  padding: 0 2px;
}
.page-search-hit.current {
  background: var(--gold-hover);
  color: var(--navy);
  box-shadow: 0 0 0 2px rgba(224,183,90,.35);
}
.header-inner { min-height: 56px; }
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1 1 auto;
}
.mobile-toggle, .mobile-close {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(6,27,51,.16);
  border-radius: 12px;
  background: #fff;
  color: var(--navy);
  display: none;
  place-items: center;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}
.topbar-mobile-toggle {
  display: none;
  flex: 0 0 auto;
  border-color: rgba(255,255,255,.22);
  background: transparent;
  color: #fff;
}
.mobile-toggle svg, .mobile-close svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}
.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 27, 51, .48);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
  z-index: 80;
}
.mobile-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
body.drawer-open {
  overflow: hidden;
}
body.search-open {
  overflow: visible;
}
.mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 88vw);
  height: 100vh;
  display: block;
  border: 0;
  background: linear-gradient(180deg, #08213d 0%, #061b33 100%);
  color: #fff;
  transform: translateX(100%);
  transition: transform .25s ease;
  z-index: 90;
  box-shadow: -22px 0 55px rgba(6,27,51,.22);
  overflow-y: auto;
}
.mobile-panel.open {
  display: block;
  transform: translateX(0);
}
.mobile-drawer-head {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(224,183,90,.28);
}
.mobile-drawer-head img {
  height: 58px;
  width: auto;
}
.mobile-nav {
  display: grid;
  gap: 8px;
  padding: 20px;
}
.mobile-nav > a, .mobile-nav summary {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.92);
  font-weight: 850;
  border-radius: 12px;
  padding: 0 12px;
}
.mobile-nav summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg) translateY(-2px);
}
.mobile-nav > a:hover, .mobile-nav summary:hover {
  background: rgba(255,255,255,.08);
}
.mobile-nav details a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px 0 28px;
  color: rgba(255,255,255,.72);
}
.desktop-nav .btn-login {
  min-height: 40px;
  padding: 0 18px;
}
.brand-link { flex: none; }
.home-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: #061b33;
  color: white;
}
.home-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .55s ease;
  background:
    linear-gradient(90deg, rgba(6,27,51,.98), rgba(6,27,51,.86) 48%, rgba(6,27,51,.52)),
    radial-gradient(circle at 78% 32%, color-mix(in srgb, var(--slide-accent) 55%, transparent), transparent 26%),
    linear-gradient(135deg, #061b33, #0b2e4a 60%, #475569);
}
.home-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.home-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .23;
  background-image:
    linear-gradient(115deg, transparent 0 47%, rgba(255,255,255,.18) 47.2%, transparent 48%),
    repeating-linear-gradient(0deg, transparent 0 22px, rgba(255,255,255,.045) 23px),
    repeating-linear-gradient(90deg, transparent 0 22px, rgba(255,255,255,.035) 23px);
}
.home-slide-inner {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .75fr);
  align-items: center;
  gap: 72px;
  position: relative;
  z-index: 1;
  padding: 96px 0 104px;
}
.home-slide-copy h1 {
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.03;
  margin: 18px 0 26px;
  max-width: 760px;
}
.home-slide-copy .lead {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
  color: #e8eef6;
  max-width: 690px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
  position: relative;
  z-index: 5;
}
.hero-visual {
  min-height: 360px;
  border: 1px solid rgba(255,255,255,.22);
  background:
    linear-gradient(135deg, rgba(6,27,51,.32), rgba(6,27,51,.74)),
    url("../images/institutional/nsssi-research-room.png") center / cover;
  box-shadow: -28px 30px 0 color-mix(in srgb, var(--slide-accent) 35%, transparent);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-visual span {
  width: fit-content;
  color: #071d35;
  background: var(--slide-accent);
  border-radius: 999px;
  padding: 7px 13px;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
}
.hero-visual strong {
  font: 700 30px Georgia, "Times New Roman", serif;
  line-height: 1.15;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.12);
  color: white;
  font-size: 30px;
  display: grid;
  place-items: center;
}
.hero-prev { left: 22px; }
.hero-next { right: 22px; }
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}
.hero-dots button {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.6);
  background: transparent;
}
.hero-dots button.active {
  background: var(--gold);
  border-color: var(--gold);
}
.identity-strip {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid #e2e8f0;
  padding: 28px 0;
}
.identity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.identity-grid article {
  min-height: 172px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 24px;
  border: 1px solid #dfe7f0;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(248,250,252,.95)),
    radial-gradient(circle at top right, rgba(199,154,59,.14), transparent 42%);
  box-shadow: 0 14px 32px rgba(6,27,51,.06);
}
.identity-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #fff7e6;
  border: 1px solid #f2d49b;
  color: #8a5c16;
}
.identity-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}
.identity-grid strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.18;
  margin-bottom: 8px;
}
.identity-grid span {
  color: #64748b;
  font-size: 14px;
  line-height: 1.55;
}
.section-head {
  max-width: 760px;
  margin-bottom: 40px;
}
.section-head-row {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.section-head h2 {
  color: var(--navy);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  margin: 8px 0 0;
}
.slider-controls {
  display: flex;
  gap: 10px;
  flex: none;
}
.slider-controls button {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid #d8e0ea;
  background: white;
  color: var(--navy);
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}
.slider-controls button:hover {
  border-color: var(--gold);
  color: #8a5c16;
}
.insight-panel, .event-feature, .featured-research, .content-card, .feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.insight-panel {
  padding: 34px;
}
.insight-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  border-top: 1px solid #e2e8f0;
  padding: 20px 0;
}
.insight-row span, .badge {
  color: #8a5c16;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
}
.badge {
  display: inline-flex;
  background: #fff7e6;
  border: 1px solid #f2d49b;
  border-radius: 999px;
  padding: 5px 10px;
}
.feature-card h3, .content-card h3, .event-feature h3 {
  color: var(--navy);
  font: 700 22px Georgia, "Times New Roman", serif;
  line-height: 1.18;
  margin: 14px 0 10px;
}
.feature-card p, .content-card p, .event-feature p {
  color: #64748b;
  font-size: 14px;
}
.feature-media {
  min-height: 170px;
  background:
    linear-gradient(180deg, rgba(6,27,51,.05), rgba(6,27,51,.48)),
    url("../images/institutional/nsssi-research-room.png") center / cover;
}
.focus-slider {
  overflow: hidden;
}
.focus-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 60px) / 3);
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 2px 18px;
}
.focus-track::-webkit-scrollbar { display: none; }
.focus-card {
  scroll-snap-align: start;
  min-width: 0;
}
.focus-card .card-pad {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.focus-card .btn {
  margin-top: auto;
}
.featured-research {
  display: grid;
  grid-template-columns: .78fr 1fr;
  align-items: stretch;
}
.research-page-head {
  margin-top: 38px;
}
.research-page-head p {
  color: #64748b;
  font-size: 16px;
  line-height: 1.75;
  margin: 14px 0 0;
}
.research-featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}
.research-feature-card {
  min-height: 100%;
  display: grid;
  grid-template-columns: minmax(280px, .48fr) minmax(0, 1fr);
}
.research-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #d7bd83;
}
.research-feature-media {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: var(--navy);
}
.research-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: block;
  object-fit: cover;
}
.research-feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,27,51,.02), rgba(6,27,51,.62)),
    linear-gradient(90deg, rgba(199,154,59,.26), transparent 42%);
}
.research-feature-media span {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 999px;
  background: rgba(6,27,51,.72);
  color: white;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.research-feature-card .card-pad {
  padding: 34px;
}
.research-feature-card h3 {
  max-width: 680px;
}
.research-feature-card p {
  max-width: 720px;
}
.research-card-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 30px;
  align-items: stretch;
}
.research-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.research-card .card-pad {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.research-card h3 {
  color: var(--navy);
  font: 700 23px Georgia, "Times New Roman", serif;
  line-height: 1.17;
  margin: 0;
}
.research-card p {
  color: #64748b;
  line-height: 1.68;
  margin: 0;
}
.research-card .btn {
  margin-top: auto;
}
.content-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.content-card .meta {
  margin: 18px 0;
}
.content-card .btn {
  margin-top: auto;
}
.section-action {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}
.listing-pagination-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
}
.listing-more {
  grid-column: 2;
  justify-self: center;
  min-width: 132px;
}
.listing-more:disabled {
  cursor: default;
  opacity: .62;
  transform: none;
}
.listing-pagination {
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: white;
  box-shadow: var(--shadow-sm);
}
.listing-pagination button,
.listing-pagination a {
  width: 38px;
  height: 38px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
}
.listing-pagination button:hover,
.listing-pagination button.active,
.listing-pagination a:hover,
.listing-pagination a.active {
  border-color: rgba(199,154,59,.42);
  background: #fff7e6;
  color: #8a5c16;
}
.events-showcase {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: 52px;
  align-items: center;
}
.event-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
  max-width: 430px;
}
.event-mini-grid div {
  border: 1px solid #dbe3ed;
  border-radius: 16px;
  padding: 18px;
  background: #f8fafc;
}
.event-mini-grid strong {
  display: block;
  color: var(--navy);
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}
.event-mini-grid span {
  display: block;
  margin-top: 7px;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}
.event-feature {
  padding: 34px;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 28px;
}
.event-feature-premium {
  grid-template-columns: 112px 1fr;
  align-items: start;
  border-radius: 22px;
  border-color: #d6e0eb;
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(248,250,252,.98)),
    radial-gradient(circle at 100% 0%, rgba(199,154,59,.18), transparent 34%);
  box-shadow: var(--shadow-md);
}
.date-badge-premium {
  width: 112px;
  min-height: 132px;
  align-self: start;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 14px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
}
.date-badge-premium strong {
  font-size: 30px;
}
.date-badge-premium span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #f5c76e;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.event-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 22px;
}
.event-meta-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid #dbe3ed;
  border-radius: 999px;
  color: #475569;
  background: white;
  font-size: 13px;
  font-weight: 800;
}
.event-detail-layout {
  align-items: start;
}
.event-detail-copy .media-frame {
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}
.event-detail-copy p {
  font-size: 16px;
}
.event-objectives {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}
.event-objectives li {
  position: relative;
  padding: 14px 16px 14px 42px;
  border: 1px solid #dbe3ed;
  border-radius: 14px;
  background: #f8fafc;
  color: #334155;
}
.event-objectives li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 21px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(199,154,59,.14);
}
.event-glance-card {
  position: sticky;
  top: 134px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(199,154,59,.28);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(6,27,51,.98), rgba(11,46,74,.95)),
    radial-gradient(circle at 82% 10%, rgba(199,154,59,.24), transparent 34%);
  color: white;
  box-shadow: var(--shadow-md);
}
.event-glance-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), rgba(199,154,59,.08));
}
.event-glance-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.event-glance-head .eyebrow {
  color: var(--gold-hover);
}
.event-glance-head h3 {
  margin: 5px 0 0;
  font: 800 27px Georgia, "Times New Roman", serif;
  line-height: 1.08;
}
.event-glance-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 16px;
  background: rgba(199,154,59,.15);
  border: 1px solid rgba(224,183,90,.38);
  color: var(--gold-hover);
}
.event-glance-icon svg {
  width: 27px;
  height: 27px;
  stroke-width: 2;
}
.event-glance-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.event-glance-list div {
  padding: 14px 15px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
}
.event-glance-list span {
  display: block;
  color: rgba(224,183,90,.92);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.event-glance-list strong {
  display: block;
  margin-top: 5px;
  color: white;
  font-size: 15px;
  line-height: 1.45;
}
.event-glance-action {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 22px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  counter-reset: process-step;
}
.process-grid div {
  position: relative;
  min-height: 100%;
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(248,250,252,.94)),
    radial-gradient(circle at top right, rgba(199,154,59,.17), transparent 38%);
  border: 1px solid #d8e0ea;
  border-radius: 22px;
  padding: 34px 30px 32px;
  box-shadow: 0 22px 46px rgba(6,27,51,.08);
  overflow: hidden;
  counter-increment: process-step;
}
.process-grid div::before {
  content: counter(process-step, decimal-leading-zero);
  position: absolute;
  top: 22px;
  right: 22px;
  color: #8a5c16;
  background: #fff7e6;
  border: 1px solid #f2d49b;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 900;
}
.process-grid div::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), #8fbfde, rgba(199,154,59,0));
}
.process-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.step-tag {
  color: #8a5c16;
  background: #fff7e6;
  border: 1px solid #f2d49b;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 900;
}
.process-grid h3 {
  color: var(--navy);
  font: 800 24px Georgia, "Times New Roman", serif;
  line-height: 1.12;
  font-weight: 900;
  margin: 6px 0 14px;
}
.process-grid p {
  color: #475569;
  font-size: 15px;
  line-height: 1.72;
  margin: 0;
}
.process-grid ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}
.process-grid li {
  position: relative;
  padding-left: 18px;
  color: #0f2b45;
  font-size: 13px;
  font-weight: 850;
}
.process-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .75fr .75fr 1fr;
  gap: 34px;
  padding: 44px 0;
}
.footer h4 {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  color: white;
  margin-bottom: 12px;
}
.footer p, .footer-brand p {
  color: #dbe7f2;
  font-size: 14px;
  line-height: 1.6;
}
.footer-social a {
  display: inline-flex;
  margin: 0;
}

.icon-badge {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  flex: none;
  border-radius: 14px;
  background: linear-gradient(145deg, #fff8e8, #eaf5fb);
  border: 1px solid #f2d49b;
  color: #8a5c16;
  margin-bottom: 18px;
  box-shadow: 0 12px 26px rgba(6,27,51,.07);
}
.icon-badge svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}
.media-img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  display: block;
}
.media-frame {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  background: #0b2e4a;
}
.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,27,51,.05), rgba(6,27,51,.48));
}
.media-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  color: white;
  font-weight: 900;
}
.page-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 32px;
  align-items: center;
}
.story-card, .route-card, .value-card, .team-card, .record-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.story-card, .route-card, .value-card, .record-card {
  padding: 24px;
}
.story-card h3, .route-card h3, .value-card h3, .record-card h3, .team-card h3 {
  color: var(--navy);
  font-weight: 900;
  line-height: 1.18;
}
.route-card p, .value-card p, .record-card p, .team-card p {
  color: #64748b;
  font-size: 14px;
}
.listing-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) repeat(3, minmax(150px, auto));
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}
.listing-toolbar .btn, .listing-toolbar .form-control {
  min-width: 0;
  width: 100%;
}
.record-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.record-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.record-card .small-link {
  margin-top: auto;
}
.record-card .media-frame {
  margin: -24px -24px 18px;
  min-height: 185px;
}
.publication-list {
  grid-template-columns: 1fr;
  gap: 24px;
}
.publication-card {
  display: grid;
  grid-template-columns: minmax(280px, .38fr) minmax(0, 1fr);
  padding: 0;
  min-height: 268px;
}
.publication-card .media-frame {
  margin: 0;
  min-height: 100%;
  border-radius: 0;
}
.publication-card .media-img {
  min-height: 268px;
}
.publication-card-body {
  min-width: 0;
  padding: 30px 34px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.publication-card-body h3 {
  max-width: 760px;
  margin: 14px 0 10px;
  color: var(--navy);
  font: 800 26px Georgia, "Times New Roman", serif;
  line-height: 1.14;
}
.publication-card-body p {
  max-width: 760px;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}
.publication-card-body .meta {
  margin: 18px 0;
}
.publication-card-body .small-link {
  margin-top: auto;
}
.research-feature-card {
  display: grid;
  grid-template-columns: minmax(280px, .48fr) minmax(0, 1fr);
}
.team-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 210px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.team-card:hover, .record-card:hover, .story-card:hover, .route-card:hover, .value-card:hover, .feature-card:hover, .content-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #d7bd83;
}
.team-card img, .team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card .card-pad {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.team-detail {
  display: grid;
  grid-template-columns: minmax(250px, .75fr) minmax(0, 1.25fr);
  gap: 32px;
  align-items: start;
}
.profile-photo-card {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #d9e0e8;
  background: white;
  box-shadow: 0 18px 44px rgba(6,27,51,.08);
}
.profile-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.article-body {
  font-size: 16px;
  line-height: 1.75;
  color: #334155;
}
.article-body h2 {
  color: var(--navy);
  font: 700 30px Georgia, "Times New Roman", serif;
  margin-top: 30px;
}
.research-metadata-card {
  position: sticky;
  top: 134px;
  overflow: hidden;
  align-self: start;
  padding: 28px;
  border: 1px solid rgba(199,154,59,.28);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(6,27,51,.98), rgba(11,46,74,.95)),
    radial-gradient(circle at 82% 8%, rgba(199,154,59,.24), transparent 34%);
  color: white;
  box-shadow: var(--shadow-md);
}
.research-metadata-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), rgba(199,154,59,.08));
}
.research-metadata-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.research-metadata-head .eyebrow {
  color: var(--gold-hover);
}
.research-metadata-head h3 {
  margin: 5px 0 0;
  font: 800 27px Georgia, "Times New Roman", serif;
  line-height: 1.08;
}
.research-metadata-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 16px;
  background: rgba(199,154,59,.15);
  border: 1px solid rgba(224,183,90,.38);
  color: var(--gold-hover);
}
.research-metadata-icon svg {
  width: 27px;
  height: 27px;
  stroke-width: 2;
}
.research-metadata-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.research-metadata-list div {
  padding: 14px 15px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
}
.research-metadata-list span {
  display: block;
  color: rgba(224,183,90,.92);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.research-metadata-list strong {
  display: block;
  margin-top: 5px;
  color: white;
  font-size: 15px;
  line-height: 1.45;
}
.research-download-action {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 22px;
}
.team-hero, .team-member-hero {
  background:
    linear-gradient(90deg, rgba(6,27,51,.95), rgba(6,27,51,.82)),
    url("../images/institutional/nsssi-research-room.png") center / cover;
}
.team-intro-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .8fr);
  gap: 40px;
  align-items: center;
  padding: 34px;
  border: 1px solid #dbe3ed;
  border-radius: 22px;
  background:
    linear-gradient(145deg, #ffffff, #f8fafc),
    radial-gradient(circle at top right, rgba(199,154,59,.15), transparent 36%);
  box-shadow: var(--shadow-sm);
}
.team-intro-panel h2 {
  color: var(--navy);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  margin: 8px 0 0;
}
.team-intro-panel p:last-child {
  color: #475569;
  font-size: 16px;
  line-height: 1.72;
}
.team-leadership-grid {
  display: grid;
  grid-template-columns: 1.15fr .92fr .92fr;
  gap: 28px;
  align-items: stretch;
}
.team-leadership-structured {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.team-profile-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(280px, .48fr) minmax(0, 1fr);
  min-height: 430px;
}
.team-profile-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid #dbe3ed;
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.team-profile-card:hover, .department-card:hover, .profile-work-card:hover {
  transform: translateY(-2px);
  border-color: #d7bd83;
  box-shadow: var(--shadow-md);
}
.team-profile-featured {
  box-shadow: var(--shadow-md);
}
.team-photo-wrap {
  height: 340px;
  min-height: 0;
  background: #e2e8f0;
}
.team-profile-card:not(.team-profile-featured) .team-photo-wrap {
  height: 300px;
  min-height: 0;
}
.team-profile-wide .team-photo-wrap {
  height: 100%;
}
.team-photo-wrap img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}
.team-profile-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 30px;
}
.team-profile-body h3, .department-card h3 {
  color: var(--navy);
  font: 800 25px Georgia, "Times New Roman", serif;
  line-height: 1.12;
  margin: 0;
}
.team-role {
  color: #8a5c16 !important;
  font-weight: 900;
  margin-top: -6px !important;
}
.team-profile-body p, .department-card p {
  color: #64748b;
  line-height: 1.68;
  margin: 0;
}
.team-profile-body .btn {
  margin-top: auto;
}
.team-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 8px;
}
.team-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid #dbe3ed;
  border-radius: 999px;
  background: #f8fafc;
  color: #475569;
  font-size: 12px;
  font-weight: 800;
}
.department-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.department-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid #dbe3ed;
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.department-card > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.department-card .card-pad {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.department-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 4px 0 10px;
  list-style: none;
}
.department-card li {
  position: relative;
  padding-left: 18px;
  color: #0f2b45;
  font-size: 13px;
  font-weight: 850;
}
.department-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.department-card .btn {
  margin-top: auto;
}
.team-operating-model {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: center;
}
.operating-steps {
  display: grid;
  gap: 14px;
}
.operating-steps div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid #dbe3ed;
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow-sm);
}
.operating-steps strong {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #fff7e6;
  color: #8a5c16;
  border: 1px solid #f2d49b;
}
.operating-steps span {
  color: var(--navy);
  font-weight: 850;
}
.profile-showcase {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: 38px;
  align-items: stretch;
}
.profile-identity-card {
  overflow: hidden;
  border: 1px solid #dbe3ed;
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow-md);
}
.profile-identity-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.profile-identity-body {
  padding: 30px;
}
.profile-identity-body h2 {
  margin: 14px 0 8px;
  color: var(--navy);
  font-size: 32px;
}
.profile-identity-body p {
  color: #64748b;
  line-height: 1.6;
}
.profile-main-panel {
  padding: 40px;
  border: 1px solid #dbe3ed;
  border-radius: 24px;
  background:
    linear-gradient(145deg, #ffffff, #f8fafc),
    radial-gradient(circle at top right, rgba(199,154,59,.14), transparent 38%);
  box-shadow: var(--shadow-sm);
}
.profile-main-panel h2 {
  color: var(--navy);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  margin: 8px 0 18px;
}
.profile-main-panel p {
  color: #475569;
  font-size: 16px;
  line-height: 1.76;
}
.profile-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.profile-summary-grid div {
  padding: 18px;
  border: 1px solid #dbe3ed;
  border-radius: 16px;
  background: white;
}
.profile-summary-grid strong {
  display: block;
  color: var(--navy);
  margin-bottom: 8px;
}
.profile-summary-grid span {
  color: #64748b;
  font-size: 13px;
  line-height: 1.55;
}
.profile-work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.profile-work-card {
  padding: 30px;
  border: 1px solid #dbe3ed;
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.profile-work-card h3 {
  color: var(--navy);
  font: 800 23px Georgia, "Times New Roman", serif;
  margin: 0 0 12px;
}
.profile-work-card p {
  color: #64748b;
  line-height: 1.68;
  margin: 0;
}
.profile-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 38px;
  align-items: start;
}
.profile-narrative {
  color: #334155;
  font-size: 16px;
  line-height: 1.78;
}
.profile-narrative h2 {
  color: var(--navy);
  font-size: 32px;
  margin: 0 0 14px;
}
.profile-narrative h2 + p {
  margin-top: 0;
}
.profile-side-panel {
  position: sticky;
  top: 130px;
  padding: 24px;
  border: 1px solid #dbe3ed;
  border-radius: 20px;
  background: #f8fafc;
}
.profile-side-panel h3 {
  color: var(--navy);
  margin: 0 0 14px;
}
.profile-side-panel a {
  display: block;
  padding: 12px 0;
  border-top: 1px solid #e2e8f0;
  color: #475569;
  font-weight: 800;
}

/* Editorial team directory inspired by institutional research team pages. */
.team-directory {
  background: #fff;
}
.team-page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(6,27,51,.96), rgba(6,27,51,.88)),
    url("../images/institutional/nsssi-research-room.png") center / cover;
  color: white;
}
.team-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 52%, rgba(199,154,59,.12) 52.2%, transparent 53%),
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(255,255,255,.035) 29px);
  opacity: .65;
}
.team-page-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .58fr);
  gap: 48px;
  align-items: center;
  padding: 76px 0;
}
.team-page-hero-copy {
  max-width: 760px;
}
.team-page-hero .team-breadcrumb {
  color: #e2e8f0;
}
.team-page-hero h1 {
  color: white;
  font-size: clamp(44px, 6vw, 74px);
  line-height: .98;
  margin: 0;
}
.team-page-hero p:not(.team-breadcrumb) {
  color: #e8eef6;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
  margin: 0;
}
.team-page-hero-panel {
  padding: 30px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 24px 56px rgba(0,0,0,.18);
  backdrop-filter: blur(8px);
}
.team-page-hero-panel span {
  display: inline-flex;
  color: var(--navy);
  background: var(--gold);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.team-page-hero-panel strong {
  display: block;
  margin-top: 18px;
  font: 800 26px Georgia, "Times New Roman", serif;
  line-height: 1.18;
}
.team-page-hero-panel div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.team-page-hero-panel small {
  display: inline-flex;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  padding: 8px 12px;
  color: #f8fafc;
  font-size: 12px;
  font-weight: 850;
}
.team-directory-intro {
  padding: 70px 0 28px;
  background: #fff;
}
.team-directory-intro .container-nssi {
  max-width: 1120px;
}
.team-breadcrumb, .person-breadcrumb {
  color: #64748b;
  font-size: 12px;
  font-weight: 850;
  margin: 0 0 18px;
}
.team-directory-intro h1 {
  color: var(--navy);
  font-size: clamp(40px, 5.2vw, 60px);
  line-height: 1.02;
  margin: 0 0 18px;
}
.team-directory-intro p:not(.team-breadcrumb) {
  max-width: 760px;
  color: #475569;
  font-size: 17px;
  line-height: 1.7;
}
.team-directory-section {
  padding: 34px 0 58px;
}
.team-department-section {
  padding-top: 42px;
  background: #f8fafc;
}
.team-section-title {
  color: var(--navy);
  font-size: clamp(30px, 3.8vw, 44px);
  line-height: 1.06;
  margin: 0 0 34px;
}
.team-feature-row {
  width: min(360px, 100%);
}
.inss-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 34px;
}
.inss-person-card {
  display: block;
  color: inherit;
}
.inss-photo-frame {
  position: relative;
  min-height: 0;
  background:
    linear-gradient(180deg, #f8fafc, #eef3f7);
  overflow: visible;
  margin-bottom: 14px;
  border-bottom: 4px solid var(--navy);
}
.inss-person-card-featured .inss-photo-frame {
  min-height: 0;
}
.inss-photo-accent {
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100% - 16px);
  height: 12px;
  background: var(--gold);
  z-index: 0;
}
.inss-photo-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 320px;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  padding: 20px 18px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f6f8 100%);
}
.inss-person-card:not(.inss-person-card-featured) .inss-photo-frame img {
  height: 280px;
}
.department-person-card .inss-photo-frame img {
  object-fit: cover;
  object-position: center;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}
.inss-person-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}
.inss-person-meta h3 {
  color: var(--navy);
  font: 900 19px Georgia, "Times New Roman", serif;
  line-height: 1.05;
  margin: 0 0 5px;
}
.inss-person-meta p {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.28;
  margin: 0;
}
.person-arrow {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-size: 18px;
  line-height: 1;
  margin-top: 2px;
  transition: background-color .18s ease, transform .18s ease;
}
.inss-person-card:hover .person-arrow {
  background: var(--gold);
  color: var(--navy);
  transform: translateX(2px);
}
.person-profile-page {
  background: #fff;
}
.person-hero {
  min-height: 250px;
  background: var(--navy);
  color: white;
  overflow: hidden;
}
.person-hero-inner {
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}
.person-hero h1 {
  font-size: clamp(38px, 5vw, 66px);
  line-height: .98;
  margin: 0 0 12px;
}
.person-hero p:not(.person-breadcrumb) {
  font-size: 20px;
  font-weight: 850;
  margin: 0;
}
.person-hero .person-breadcrumb {
  color: #f8fafc;
}
.person-watermark {
  color: rgba(255,255,255,.06);
  font-size: clamp(82px, 18vw, 180px);
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: 1;
  user-select: none;
}
.person-toolbar {
  padding: 46px 0 34px;
  background: white;
}
.person-toolbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.person-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}
.person-tabs a, .person-social a {
  color: #111827;
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.person-social {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
}
.person-content-section {
  padding: 20px 0 58px;
}
.person-content-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .8fr);
  gap: 90px;
  align-items: start;
}
.aqua-line {
  display: block;
  width: 58px;
  height: 5px;
  background: var(--gold);
  margin-bottom: 12px;
}
.person-cv h2 {
  color: #111827;
  font-size: 24px;
  margin: 0 0 18px;
}
.person-cv p {
  color: #111827;
  font-size: 16px;
  line-height: 1.82;
  margin: 0 0 20px;
}
.person-image-panel {
  padding-top: 54px;
}
.person-photo-block {
  position: relative;
  background: #f4f6f8;
  min-height: 270px;
  border-bottom: 4px solid var(--navy);
}
.person-photo-block .inss-photo-accent {
  width: calc(100% - 28px);
  height: 12px;
}
.person-photo-block img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 420px;
  object-fit: contain;
  object-position: center bottom;
  padding: 26px 24px 0;
  background: linear-gradient(180deg, #ffffff, #f4f6f8);
}
.download-link {
  display: inline-block;
  margin-top: 16px;
  color: #111827;
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.person-contact-strip {
  padding: 0 0 62px;
}
.person-contact-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #111827;
  padding-top: 20px;
  color: #111827;
  font-size: 14px;
}
.person-contact-inner a {
  color: #111827;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 850;
}
.contact-dot {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-size: 13px;
}
.person-related-section {
  padding: 42px 0 66px;
}
.person-related-soft {
  background: #f8fafc;
}
.person-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid #dbe3ed;
  padding-bottom: 18px;
}
.person-section-head h2 {
  margin: 0;
  color: #111827;
  font-size: 28px;
}
.person-section-head a {
  color: #111827;
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.person-output-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.person-output-grid article {
  padding: 24px;
  border: 1px solid #dbe3ed;
  background: white;
}
.person-output-grid span {
  display: block;
  color: #0f766e;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.person-output-grid h3 {
  color: #111827;
  font: 900 20px Georgia, "Times New Roman", serif;
  margin: 0 0 12px;
}
.person-output-grid p {
  color: #475569;
  line-height: 1.65;
  margin: 0;
}
.person-department-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.person-department-links a {
  display: block;
  padding: 18px;
  background: white;
  border: 1px solid #dbe3ed;
  color: #111827;
  font-weight: 900;
}
.contact-route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.contact-panel {
  position: relative;
  overflow: hidden;
  align-self: start;
  padding: 30px;
  border: 1px solid rgba(199,154,59,.28);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(6,27,51,.98), rgba(11,46,74,.94)),
    radial-gradient(circle at 86% 12%, rgba(199,154,59,.22), transparent 34%);
  color: white;
  box-shadow: var(--shadow-md);
}
.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), rgba(199,154,59,.12));
}
.contact-panel::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
}
.contact-panel-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.contact-panel-head .eyebrow {
  color: var(--gold-hover);
}
.contact-panel-head h3 {
  margin: 5px 0 0;
  font: 800 28px Georgia, "Times New Roman", serif;
  line-height: 1.05;
}
.contact-panel-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 16px;
  background: rgba(199,154,59,.15);
  border: 1px solid rgba(224,183,90,.38);
  color: var(--gold-hover);
}
.contact-panel-icon svg {
  width: 27px;
  height: 27px;
  stroke-width: 2;
}
.contact-info-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.contact-info-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
}
.contact-info-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  color: var(--gold-hover);
}
.contact-info-icon svg {
  width: 21px;
  height: 21px;
  stroke-width: 2;
}
.contact-info-row strong {
  display: block;
  color: white;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.contact-info-row p {
  margin: 5px 0 0;
  color: rgba(255,255,255,.78);
  line-height: 1.55;
  overflow-wrap: anywhere;
}
.login-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
  background: #f8fafc;
}
.login-brand-panel {
  background:
    linear-gradient(90deg, rgba(6,27,51,.92), rgba(6,27,51,.76)),
    url("../images/institutional/nsssi-research-room.png") center / cover;
  color: white;
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.login-form-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.login-form-panel form {
  width: min(100%, 430px);
}

.site-modal[hidden] {
  display: none;
}
.site-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
}
.site-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 27, 51, .55);
  backdrop-filter: blur(4px);
}
.site-modal-panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow-lg);
  padding: 28px;
}
.site-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: white;
  color: var(--navy);
}
.site-modal-close svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 1100px) {
  .desktop-nav { gap: 6px; }
  .nav-link { padding-left: 6px; padding-right: 6px; font-size: 13px; }
}

@media (max-width: 900px) {
  :root {
    --topbar-height: 76px;
  }
  body {
    padding-top: var(--topbar-height);
  }
  .topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
  }
  .page-search-panel {
    top: calc(var(--topbar-height) + 10px);
    z-index: 95;
  }
  .topbar-inner, .header-inner, .footer-bottom-inner, .cta-inner {
    align-items: center;
  }
  .topbar-inner {
    min-height: auto;
    padding: 12px 0;
    flex-wrap: nowrap;
    gap: 12px;
  }
  .topbar-brand {
    flex: 1 1 auto;
  }
  .topbar-brand strong {
    font-size: clamp(11px, 3vw, 14px);
    line-height: 1.15;
  }
  .topbar-brand small {
    font-size: clamp(9px, 2.4vw, 11px);
  }
  .topbar-links,
  .header-inner {
    display: none;
  }
  .main-header {
    height: 0;
    min-height: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }
  .desktop-nav { display: none !important; }
  .mobile-toggle, .mobile-close { display: grid !important; }
  .topbar-mobile-toggle {
    margin-left: auto;
  }
  .topbar-identity-search {
    display: inline-grid;
    margin-left: auto;
  }
  .topbar-identity-search + .topbar-mobile-toggle {
    margin-left: 8px;
  }
  .mobile-nav .btn { width: 100%; }
  .section { padding: 64px 0; }
  .cta-band { padding: 48px 0; }
  .grid-2, .grid-3, .grid-4, .process-grid {
    gap: 24px;
  }
  .section-head-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .slider-controls {
    align-self: flex-end;
  }
  .focus-track {
    grid-auto-columns: minmax(280px, 68vw);
  }
  .research-card-grid, .events-showcase {
    grid-template-columns: 1fr;
  }
  .research-card-large {
    grid-column: auto;
  }
  .home-hero, .home-slide-inner { min-height: 680px; }
  .home-slide-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 64px 0 84px;
  }
  .home-slide-copy h1 {
    font-size: clamp(36px, 8vw, 54px);
  }
  .hero-visual { min-height: 210px; box-shadow: none; }
  .hero-arrow { display: none; }
  .identity-grid, .process-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .identity-grid article {
    padding: 24px 20px;
    border-right: 0;
  }
  .featured-research, .event-feature, .event-feature-premium {
    grid-template-columns: 1fr;
  }
  .date-badge-premium {
    width: 100%;
    min-height: auto;
    flex-direction: row;
    justify-content: space-between;
  }
  .insight-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .page-intro-grid, .record-grid, .research-featured-grid, .team-detail, .contact-route-grid, .login-shell,
  .team-intro-panel, .team-leadership-grid, .team-leadership-structured, .team-profile-wide, .department-grid, .team-operating-model,
  .profile-showcase, .profile-work-grid, .profile-detail-layout,
  .inss-team-grid, .person-content-grid, .person-output-grid, .person-department-links {
    grid-template-columns: 1fr;
  }
  .team-page-hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 60px 0;
  }
  .team-page-hero-panel {
    max-width: 620px;
  }
  .team-profile-wide {
    grid-column: auto;
    min-height: 0;
  }
  .profile-summary-grid {
    grid-template-columns: 1fr;
  }
  .profile-side-panel {
    position: static;
  }
  .team-feature-row {
    width: min(420px, 100%);
  }
  .person-toolbar-inner, .person-section-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .person-content-grid {
    gap: 34px;
  }
  .person-image-panel {
    padding-top: 0;
  }
  .listing-toolbar {
    grid-template-columns: 1fr 1fr;
  }
  .team-card {
    grid-template-columns: 120px 1fr;
  }
  .login-brand-panel {
    min-height: 300px;
    padding: 34px;
  }
}

@media (max-width: 640px) {
  .page-search-panel {
    top: calc(var(--topbar-height) + 8px);
    padding: 0 10px;
  }
  .page-search-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    width: min(420px, calc(100% - 20px));
    padding: 8px;
    border-radius: 16px;
  }
  .page-search-inner::before {
    content: none;
  }
  .page-search-box {
    min-height: 46px;
    padding: 0 14px;
  }
  .page-search-close {
    width: 44px;
    height: 44px;
  }
  .topbar-inner {
    align-items: center;
    justify-content: space-between;
    text-align: left;
    flex-wrap: nowrap;
    gap: 10px;
  }
  .topbar-brand {
    width: auto;
    justify-content: flex-start;
  }
  .topbar-brand strong {
    display: block;
    max-width: 64vw;
    overflow-wrap: anywhere;
  }
  .topbar-brand small {
    display: block;
    max-width: 64vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  .listing-toolbar, .record-grid, .contact-route-grid {
    grid-template-columns: 1fr;
  }
  .research-feature-card {
    grid-template-columns: 1fr;
  }
  .team-card {
    grid-template-columns: 1fr;
  }
  .publication-card {
    grid-template-columns: 1fr;
  }
  .publication-card .media-frame,
  .publication-card .media-img {
    min-height: 240px;
  }
  .team-card img {
    aspect-ratio: 4 / 3;
  }
  .team-intro-panel, .profile-main-panel {
    padding: 24px;
  }
  .team-directory-intro {
    padding-top: 46px;
  }
  .team-page-hero-inner {
    min-height: auto;
    padding: 46px 0;
  }
  .team-page-hero-panel {
    padding: 24px;
  }
  .team-page-hero-panel strong {
    font-size: 22px;
  }
  .team-directory-section {
    padding: 28px 0 48px;
  }
  .inss-team-grid {
    gap: 36px;
  }
  .inss-photo-frame img, .inss-person-card:not(.inss-person-card-featured) .inss-photo-frame img {
    height: 220px;
  }
  .person-hero-inner {
    min-height: 220px;
  }
  .person-watermark {
    display: none;
  }
  .person-tabs {
    gap: 10px 14px;
  }
  .person-photo-block img {
    height: 280px;
  }
  .person-contact-inner {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .person-department-links {
    gap: 10px;
  }
  .team-profile-body, .profile-identity-body, .profile-work-card {
    padding: 24px;
  }
  .team-photo-wrap, .team-profile-card:not(.team-profile-featured) .team-photo-wrap, .team-profile-wide .team-photo-wrap {
    height: 240px;
    min-height: 0;
  }
  .operating-steps div {
    grid-template-columns: 52px 1fr;
  }
  .login-brand-panel {
    display: none;
  }
  .section { padding: 52px 0; }
  .home-hero, .home-slide-inner { min-height: 620px; }
  .home-slide-inner {
    padding: 48px 0 72px;
  }
  .home-slide-copy h1 {
    font-size: clamp(34px, 11vw, 42px);
    line-height: 1.08;
    margin-top: 14px;
  }
  .home-slide-copy .lead {
    font-size: 16px;
  }
  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }
  .card-pad, .content-card, .insight-panel, .event-feature, .process-grid div {
    padding: 24px;
  }
  .focus-track {
    grid-auto-columns: minmax(270px, 86vw);
    gap: 18px;
  }
  .slider-controls {
    align-self: flex-start;
  }
  .section-action .btn {
    width: 100%;
  }
  .listing-pagination-row {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }
  .listing-more,
  .listing-pagination {
    grid-column: auto;
    justify-self: stretch;
  }
  .listing-pagination {
    justify-content: flex-end;
  }
  .event-mini-grid {
    grid-template-columns: 1fr;
  }
  .event-feature-premium {
    padding: 22px;
  }
  .process-grid h3 {
    font-size: 22px;
  }
  .login-form-panel {
    min-height: 100vh;
    padding: 18px;
  }
  .hero-actions .btn, .cta-inner .btn {
    width: 100%;
  }
}
