:root {
  color-scheme: light dark;
  --bg: #f7f7f2;
  --surface: #fffefa;
  --surface-2: #f0f3ee;
  --ink: #17202d;
  --muted: #5e6d7f;
  --quiet: #647181;
  --line: #dde3dc;
  --line-strong: #c3cfc6;
  --navy: #14243a;
  --blue: #315f99;
  --teal: #2f766a;
  --copper: #91583a;
  --green: #3c8065;
  --max: 1180px;
}

:root[data-theme="dark"] {
  --bg: #10151c;
  --surface: #161d26;
  --surface-2: #1d2732;
  --ink: #edf2f0;
  --muted: #aeb9c5;
  --quiet: #8f9cac;
  --line: #2b3948;
  --line-strong: #46586a;
  --navy: #d8e5f2;
  --blue: #8eb5e9;
  --teal: #83d5c3;
  --copper: #e1b18d;
  --green: #94d2b6;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: auto;
}

body {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), transparent 360px),
    linear-gradient(125deg, rgba(47, 118, 106, 0.055), transparent 46%),
    linear-gradient(305deg, rgba(49, 95, 153, 0.048), transparent 48%),
    var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  overflow-x: clip;
}

:root[data-theme="dark"] body {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 380px),
    linear-gradient(125deg, rgba(131, 213, 195, 0.08), transparent 46%),
    linear-gradient(305deg, rgba(142, 181, 233, 0.08), transparent 48%),
    var(--bg);
}

#root {
  max-width: 100%;
  min-width: 0;
  overflow-x: clip;
}

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

a:focus-visible {
  outline: 3px solid rgba(49, 95, 153, 0.45);
  outline-offset: 3px;
}

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

.topbar {
  align-items: center;
  backdrop-filter: blur(22px);
  background: rgba(247, 247, 242, 0.88);
  border-bottom: 1px solid rgba(221, 227, 220, 0.82);
  display: flex;
  gap: 24px;
  left: 0;
  min-height: 98px;
  padding: 16px max(22px, calc((100vw - var(--max)) / 2 + 22px));
  position: sticky;
  top: 0;
  z-index: 20;
}

:root[data-theme="dark"] .topbar {
  background: rgba(16, 21, 28, 0.88);
  border-bottom-color: rgba(43, 57, 72, 0.9);
}

.skip-link {
  background: var(--navy);
  border-radius: 7px;
  color: #ffffff;
  font-weight: 560;
  left: 16px;
  padding: 10px 12px;
  position: fixed;
  top: 12px;
  transform: translateY(-72px);
  transition: transform 140ms ease;
  z-index: 50;
}

.skip-link:focus {
  transform: translateY(0);
}

.brand {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  font-weight: 620;
  gap: 12px;
  min-width: max-content;
  white-space: nowrap;
}

.nav-photo {
  aspect-ratio: 1;
  border: 1px solid rgba(195, 207, 198, 0.95);
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(28, 44, 60, 0.12);
  height: 68px;
  object-fit: cover;
  object-position: center 24%;
  width: 68px;
}

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

.brand-copy strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 650;
}

.brand-copy em {
  color: var(--quiet);
  display: grid;
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 520;
  gap: 1px;
  line-height: 1.22;
  overflow: visible;
  text-overflow: clip;
}

.brand-mark {
  align-items: center;
  background: var(--navy);
  border-radius: 7px;
  color: #ffffff;
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 640;
  height: 30px;
  justify-content: center;
  width: 30px;
}

nav {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  gap: 2px;
  justify-content: center;
  min-width: 0;
}

nav a {
  border: 1px solid transparent;
  border-radius: 999px;
  color: #526174;
  font-size: 0.9rem;
  padding: 7px 10px;
}

nav a.active,
nav a:hover {
  background: rgba(255, 254, 250, 0.76);
  border-color: var(--line);
  color: var(--ink);
}

nav a[aria-current="page"] {
  color: var(--ink);
}

.theme-toggle {
  align-items: center;
  background: rgba(255, 254, 250, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 560;
  gap: 9px;
  margin-left: auto;
  min-height: 40px;
  padding: 6px 12px 6px 7px;
}

.theme-toggle:hover {
  border-color: var(--line-strong);
  color: var(--blue);
}

.theme-toggle-track {
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 203, 5, 0.3), rgba(49, 95, 153, 0.12));
  border: 1px solid rgba(49, 95, 153, 0.2);
  border-radius: 999px;
  color: var(--blue);
  display: inline-flex;
  height: 28px;
  justify-content: center;
  padding: 2px;
  width: 48px;
}

.theme-toggle-knob {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(20, 36, 58, 0.13);
  color: var(--blue);
  display: inline-flex;
  height: 24px;
  justify-content: center;
  margin-right: auto;
  width: 24px;
}

.theme-toggle-knob svg {
  height: 15px;
  width: 15px;
}

.theme-toggle-knob svg path {
  fill: currentColor;
}

.menu-toggle {
  align-items: center;
  background: rgba(255, 254, 250, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  display: none;
  height: 40px;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 44px;
}

.menu-toggle:hover {
  border-color: var(--line-strong);
  color: var(--blue);
}

.menu-toggle span {
  background: currentColor;
  border-radius: 999px;
  display: block;
  height: 2px;
  position: absolute;
  transition: transform 160ms ease, opacity 160ms ease;
  width: 18px;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

:root[data-theme="dark"] .theme-toggle-track {
  background: linear-gradient(135deg, rgba(142, 181, 233, 0.18), rgba(131, 213, 195, 0.12));
  border-color: rgba(170, 190, 214, 0.38);
}

:root[data-theme="dark"] .theme-toggle-knob {
  background: #f4f7f5;
  border-color: rgba(244, 247, 245, 0.82);
  color: #111820;
  margin-left: auto;
  margin-right: 0;
}

.section {
  margin: 0 auto;
  max-width: var(--max);
  padding: 74px 22px;
  scroll-margin-top: 88px;
  width: 100%;
}

.hero {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  min-height: min(76vh, 820px);
  min-width: 0;
  overflow: hidden;
  padding-top: 58px;
  position: relative;
}

.hero::after {
  background: linear-gradient(90deg, transparent, rgba(20, 36, 58, 0.12), transparent);
  bottom: 28px;
  content: "";
  height: 1px;
  left: 22px;
  position: absolute;
  right: 22px;
}

.hero-copy {
  max-width: min(550px, 100%);
  min-width: 0;
  position: relative;
  width: 100%;
  z-index: 2;
}

.hero-identity {
  align-items: center;
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.profile-photo {
  aspect-ratio: 1;
  border: 1px solid rgba(195, 207, 198, 0.95);
  border-radius: 12px;
  box-shadow: 0 16px 34px rgba(28, 44, 60, 0.12);
  flex: 0 0 auto;
  height: 78px;
  object-fit: cover;
  object-position: center 24%;
  width: 78px;
}

.role-line,
.section-label,
.card-eyebrow {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.45;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.role-line {
  margin-bottom: 0;
  max-width: 520px;
  text-transform: none;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  color: var(--ink);
  font-size: 3.34rem;
  font-weight: 520;
  line-height: 1.03;
  max-width: 560px;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h2 {
  color: var(--ink);
  font-size: 2.36rem;
  font-weight: 520;
  line-height: 1.12;
  max-width: 820px;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h3 {
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 580;
  line-height: 1.35;
}

.lede {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
  margin-top: 22px;
  max-width: 540px;
}

.signal-row {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
  max-width: 560px;
}

.signal-row span {
  background: rgba(255, 254, 250, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  display: grid;
  gap: 5px;
  line-height: 1.36;
  min-height: 76px;
  padding: 13px;
}

.signal-row strong {
  color: var(--ink);
  font-weight: 610;
}

.signal-row em {
  color: var(--muted);
  font-size: 0.9rem;
  font-style: normal;
}

.intro-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 28px;
}

.intro-links a,
.contact-links a,
.contact-links .contact-item {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  gap: 7px;
  font-weight: 560;
  text-decoration-color: #b8c5c0;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.contact-links .contact-item {
  text-decoration: none;
}

.intro-links a:hover,
.contact-links a:hover {
  color: var(--blue);
  text-decoration-color: var(--blue);
}

.link-icon {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--blue);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.68rem;
  font-weight: 700;
  height: 32px;
  justify-content: center;
  line-height: 1;
  min-width: 32px;
  overflow: visible;
  padding-inline: 0;
  text-transform: none;
  width: 32px;
}

.link-icon svg {
  fill: currentColor;
  height: 24px;
  width: 24px;
}

.link-icon img {
  height: 24px;
  object-fit: contain;
  width: 24px;
}

.link-icon--github {
  color: var(--ink);
}

.link-icon--award {
  color: var(--copper);
}

.link-icon--presentation {
  color: var(--teal);
}

.link-icon--project,
.link-icon--scholar {
  color: var(--teal);
}

.link-icon--one-cademy {
  background: transparent;
  padding: 1px;
}

.link-icon--one-cademy img {
  height: 28px;
  width: 28px;
}

.link-icon--arxiv {
  background: #b31b1b;
  border-color: #b31b1b;
}

.link-icon--linkedin,
.link-icon--orcid {
  background: transparent;
}

.link-icon--acm,
.link-icon--nature,
.link-icon--plos,
.link-icon--informs,
.link-icon--umsi,
.link-icon--mit {
  font-size: 0.6rem;
  min-width: 32px;
  padding-inline: 0;
  width: 32px;
}

.link-icon--acm {
  color: #005ca1;
}

.link-icon--nature {
  color: #614187;
}

.link-icon--plos {
  color: #108380;
}

.link-icon--informs {
  color: #005493;
}

.link-icon--umsi,
.link-icon--mit {
  color: #00274c;
}

.link-icon--acm img,
.link-icon--nature img,
.link-icon--plos img,
.link-icon--informs img,
.link-icon--umsi img,
.link-icon--mit img {
  height: 24px;
  max-width: 32px;
  width: auto;
}

.link-icon--github img {
  height: 24px;
  width: 24px;
}

.themed-logo--dark {
  display: none !important;
}

:root[data-theme="dark"] .themed-logo--light {
  display: none !important;
}

:root[data-theme="dark"] .themed-logo--dark {
  display: block !important;
}

.publisher-logo {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.65rem;
  font-weight: 780;
  justify-content: center;
  letter-spacing: 0;
  height: 52px;
  min-width: 112px;
  padding: 0;
  width: 112px;
}

.publisher-logo--image img {
  display: block;
  max-height: 38px;
  max-width: 102px;
  object-fit: contain;
}

.publisher-logo--arxiv,
.publisher-logo--informs,
.publisher-logo--plos {
  background: #b31b1b;
  border-color: #b31b1b;
  border-radius: 6px;
  box-sizing: border-box;
  height: 52px;
  padding: 4px 8px;
  width: 112px;
}

.publisher-logo--informs,
.publisher-logo--plos {
  background: #ffffff;
}

.publisher-logo--acm,
.publisher-logo--workshop,
.publisher-logo--working,
.publisher-logo--umsi {
  min-width: 112px;
  width: 112px;
}

.publisher-logo--acm img,
.publisher-logo--workshop img,
.publisher-logo--working img,
.publisher-logo--umsi img {
  max-height: 52px;
  max-width: 52px;
}

.publisher-logo--workshop img,
.publisher-logo--umsi img {
  max-height: 66px;
  max-width: 66px;
}

.publisher-logo--nature {
  min-width: 112px;
  width: 112px;
}

.publisher-logo--nature img {
  max-height: 38px;
  max-width: 102px;
}

.publisher-logo--informs img,
.publisher-logo--plos img {
  max-height: 38px;
  max-width: 102px;
}

.publisher-logo--plos img {
  max-height: 46px;
  max-width: 106px;
}

.publisher-logo--working img {
  max-height: 52px;
  max-width: 52px;
}

.brand-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.brand-card {
  align-items: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #445367;
  display: inline-flex;
  font-size: 0.84rem;
  font-weight: 560;
  gap: 0;
  min-height: 92px;
  padding: 6px 10px;
}

.brand-card:hover {
  background: #fffefa;
  border-color: var(--line-strong);
  color: var(--ink);
}

.institution-logo {
  align-items: center;
  background: transparent;
  border-radius: 0;
  color: #ffffff;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 720;
  height: 78px;
  justify-content: center;
  min-width: 94px;
  padding: 0;
}

.institution-logo--mit {
  background: transparent;
}

.institution-logo--honor {
  background: transparent;
}

.institution-logo--umich {
  background: transparent;
}

.institution-logo--one-cademy {
  background: transparent;
}

.institution-logo--image {
  height: 84px;
  min-width: 112px;
  padding: 0;
}

.text-logo {
  align-items: center;
  display: inline-flex;
  font-size: 0.6rem;
  font-weight: 780;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.institution-logo--image img {
  max-height: 82px;
  max-width: 158px;
  object-fit: contain;
  width: auto;
}

.institution-logo--honor.institution-logo--image {
  min-width: 260px;
}

.institution-logo--honor.institution-logo--image img {
  max-height: 42px;
  max-width: 250px;
}

.hero-visual {
  background: linear-gradient(145deg, rgba(255, 254, 250, 0.94), rgba(240, 243, 238, 0.84));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 28px 58px rgba(28, 44, 60, 0.08);
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  padding: 15px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.hero-visual::before {
  border: 1px solid rgba(195, 207, 198, 0.72);
  border-radius: 8px;
  content: "";
  inset: 10px;
  position: absolute;
  z-index: -1;
}

.hero-visual-card {
  display: grid;
  gap: 13px;
  min-width: 0;
  position: relative;
}

.hero-visual-card * {
  min-width: 0;
}

.hero-visual-header {
  border-bottom: 1px solid rgba(221, 227, 220, 0.88);
  display: grid;
  gap: 5px;
  padding: 8px 10px 13px;
}

.hero-visual-header span {
  color: var(--quiet);
  font-size: 0.78rem;
  font-weight: 520;
}

.hero-visual-header strong {
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 590;
  overflow-wrap: anywhere;
}

.research-engines {
  align-items: stretch;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) 74px minmax(0, 1fr);
}

.knowledge-spine {
  align-items: stretch;
  display: grid;
  gap: 9px;
  grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1.08fr) 34px minmax(0, 1fr);
}

.engine-card {
  background: rgba(255, 254, 250, 0.86);
  border: 1px solid rgba(221, 227, 220, 0.94);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 14px;
}

.engine-card span {
  align-items: center;
  color: var(--blue);
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 650;
  gap: 7px;
  text-transform: uppercase;
}

.engine-logo {
  background: transparent;
  border-radius: 0;
  height: 34px;
  object-fit: contain;
  padding: 0;
  width: 34px;
}

.engine-card strong {
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 610;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

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

.engine-list em {
  align-items: center;
  background: rgba(240, 243, 238, 0.74);
  border: 1px solid rgba(221, 227, 220, 0.94);
  border-radius: 7px;
  color: #405064;
  display: flex;
  font-size: 0.79rem;
  font-style: normal;
  line-height: 1.28;
  min-height: 34px;
  min-width: 0;
  overflow-wrap: anywhere;
  padding: 7px 9px;
}

.engine-card--map {
  border-color: rgba(47, 118, 106, 0.26);
}

.engine-card--source {
  border-color: rgba(169, 111, 75, 0.24);
}

.engine-card--source span {
  color: var(--copper);
}

.engine-card--source .engine-list em {
  background: rgba(169, 111, 75, 0.08);
  border-color: rgba(169, 111, 75, 0.18);
}

.engine-card--map .engine-list em,
.engine-card--graph .engine-list em {
  background: rgba(47, 118, 106, 0.08);
  border-color: rgba(47, 118, 106, 0.18);
}

.engine-card--graph {
  background: linear-gradient(145deg, rgba(255, 254, 250, 0.96), rgba(236, 244, 240, 0.96));
  border-color: rgba(47, 118, 106, 0.32);
  box-shadow: inset 0 0 0 1px rgba(47, 118, 106, 0.08);
}

.engine-card--views {
  border-color: rgba(49, 95, 153, 0.25);
}

.engine-card--views .engine-list em {
  background: rgba(49, 95, 153, 0.08);
  border-color: rgba(49, 95, 153, 0.18);
}

.engine-card--pipeline {
  background: linear-gradient(145deg, rgba(20, 36, 58, 0.97), rgba(49, 95, 153, 0.93));
  border-color: rgba(20, 36, 58, 0.82);
}

.engine-card--pipeline span,
.engine-card--pipeline strong {
  color: #ffffff;
}

.engine-card--pipeline .engine-list em {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
}

.engine-bridge {
  align-items: center;
  color: var(--quiet);
  display: grid;
  justify-items: center;
  min-width: 0;
  position: relative;
}

.engine-bridge::before,
.engine-bridge::after {
  background: var(--line-strong);
  content: "";
  height: 1px;
  position: absolute;
  top: 50%;
  width: 26px;
}

.engine-bridge::before {
  left: 0;
}

.engine-bridge::after {
  right: 0;
}

.engine-bridge span {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 610;
  line-height: 1.2;
  padding: 8px 9px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
}

.spine-arrow {
  align-items: center;
  color: var(--quiet);
  display: flex;
  font-size: 1.4rem;
  font-weight: 520;
  justify-content: center;
  line-height: 1;
}

.workflow-summary {
  background: rgba(240, 243, 238, 0.64);
  border: 1px solid rgba(221, 227, 220, 0.9);
  border-radius: 7px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.46;
  max-width: 100%;
  overflow-wrap: anywhere;
  padding: 10px 13px;
}

.section-heading {
  margin-bottom: 38px;
  position: relative;
  z-index: 2;
}

.section-label {
  color: var(--blue);
  margin-bottom: 12px;
}

.card-eyebrow {
  color: var(--blue);
  margin-bottom: 12px;
}

.section-heading p:not(.section-label) {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.68;
  margin-top: 18px;
  max-width: 760px;
}

.architecture-section,
.thesis-section,
.systems-section {
  position: relative;
}

.architecture-flow {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  position: relative;
  z-index: 2;
}

.architecture-flow::before {
  background: linear-gradient(90deg, rgba(195, 207, 198, 0), rgba(195, 207, 198, 0.88), rgba(195, 207, 198, 0));
  content: "";
  height: 1px;
  left: 7%;
  position: absolute;
  right: 7%;
  top: 43px;
  z-index: 0;
}

.architecture-step {
  background: rgba(255, 254, 250, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  min-height: 286px;
  padding: 18px;
  position: relative;
  z-index: 1;
}

.architecture-step-num {
  align-items: center;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue);
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 650;
  height: 34px;
  justify-content: center;
  margin-bottom: 16px;
  width: 34px;
}

.architecture-step:nth-child(2) .architecture-step-num,
.architecture-step:nth-child(4) .architecture-step-num {
  background: var(--navy);
  border-color: var(--navy);
  color: #ffffff;
}

.architecture-step p:not(.card-eyebrow):not(.architecture-return) {
  color: var(--muted);
  line-height: 1.58;
  margin-top: 13px;
}

.architecture-detail-row {
  align-content: end;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}

.architecture-detail-row span {
  background: rgba(240, 243, 238, 0.86);
  border: 1px solid rgba(221, 227, 220, 0.92);
  border-radius: 999px;
  color: #536176;
  font-size: 0.72rem;
  font-weight: 520;
  padding: 5px 8px;
}

.architecture-return {
  background: rgba(255, 254, 250, 0.64);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  line-height: 1.62;
  margin-top: 14px;
  padding: 16px 18px;
}

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

.thesis-card {
  background: rgba(255, 254, 250, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 220px;
  padding: 24px;
}

.thesis-card p:not(.card-eyebrow) {
  color: var(--muted);
  line-height: 1.62;
  margin-top: 14px;
}

.trajectory-section {
  position: relative;
}

.trajectory-layout {
  align-items: start;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.38fr);
}

.trajectory-timeline {
  display: grid;
  gap: 12px;
  position: relative;
}

.trajectory-timeline::before {
  background: linear-gradient(180deg, rgba(195, 207, 198, 0), rgba(195, 207, 198, 0.92), rgba(195, 207, 198, 0));
  bottom: 26px;
  content: "";
  left: 42px;
  position: absolute;
  top: 26px;
  width: 1px;
}

.trajectory-card {
  background: rgba(255, 254, 250, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  grid-template-columns: 178px minmax(0, 1fr);
  min-height: 132px;
  padding: 18px;
  position: relative;
}

.trajectory-card::before {
  background: var(--blue);
  border: 4px solid var(--surface);
  border-radius: 999px;
  box-shadow: 0 0 0 1px var(--line);
  content: "";
  height: 13px;
  left: 36px;
  position: absolute;
  top: 28px;
  width: 13px;
}

.trajectory-date {
  display: grid;
  align-content: start;
  gap: 12px;
  padding-left: 62px;
}

.trajectory-date strong {
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1;
  white-space: nowrap;
}

.trajectory-mark {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(47, 118, 106, 0.1), rgba(34, 81, 132, 0.06)),
    rgba(255, 254, 250, 0.88);
  border: 1px solid rgba(47, 118, 106, 0.22);
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(16, 39, 46, 0.09);
  color: var(--blue);
  display: inline-flex;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.trajectory-mark svg {
  display: block;
  fill: currentColor;
  height: 34px;
  width: 34px;
}

.trajectory-mark-logo {
  display: block;
  max-height: 40px;
  max-width: 42px;
  object-fit: contain;
}

.trajectory-mark--one-cademy .trajectory-mark-logo {
  max-height: 44px;
  max-width: 44px;
}

.trajectory-mark--mit-cci .trajectory-mark-logo {
  max-height: 42px;
  max-width: 46px;
}

.trajectory-copy h3 {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.3;
}

.trajectory-copy p {
  color: var(--muted);
  line-height: 1.6;
  margin-top: 9px;
}

.trajectory-throughlines {
  background:
    linear-gradient(180deg, rgba(47, 118, 106, 0.08), rgba(255, 254, 250, 0.78) 68%),
    rgba(255, 254, 250, 0.78);
  border: 1px solid rgba(47, 118, 106, 0.2);
  border-radius: 8px;
  color: var(--muted);
  line-height: 1.6;
  padding: 22px;
  position: sticky;
  top: 122px;
}

.trajectory-throughlines h3 {
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.32;
}

.trajectory-throughlines > p:not(.card-eyebrow) {
  margin-top: 12px;
}

.throughline-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.throughline-item {
  background: rgba(255, 254, 250, 0.68);
  border: 1px solid rgba(221, 227, 220, 0.88);
  border-radius: 8px;
  padding: 14px;
}

.throughline-item strong {
  color: var(--ink);
  display: block;
  font-size: 0.92rem;
  line-height: 1.34;
}

.throughline-item p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.54;
  margin-top: 7px;
}

.system-feature,
.paper-card {
  background: rgba(255, 254, 250, 0.8);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.system-showcase {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  position: relative;
  z-index: 2;
}

.system-feature {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: 148px minmax(0, 1fr);
  min-height: 260px;
  padding: 22px;
}

.system-feature p:not(.card-eyebrow) {
  color: var(--muted);
  line-height: 1.62;
  margin-top: 12px;
}

.system-logo {
  background: transparent;
  border-radius: 0;
  height: 88px;
  margin-bottom: 12px;
  object-fit: contain;
  padding: 0;
  width: 88px;
}

.system-mark-wrap {
  align-items: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  display: flex;
  height: 148px;
  justify-content: center;
  overflow: hidden;
  padding: 14px;
  width: 148px;
}

.system-logo--large {
  height: 130px;
  margin: 0;
  width: 130px;
}

.system-image-mark {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.system-initial {
  color: var(--blue);
  font-size: 1.4rem;
  font-weight: 780;
}

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

.blueprint {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(240, 243, 238, 0.76));
  border: 1px solid var(--line);
  border-radius: 7px;
  min-height: 0;
  overflow: hidden;
  padding: 15px;
}

.blueprint figcaption {
  display: grid;
  gap: 5px;
  margin-bottom: 14px;
}

.blueprint figcaption span {
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 600;
}

.blueprint figcaption strong {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 560;
  line-height: 1.28;
}

.blueprint p {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.44;
  margin-top: 13px;
}

.blueprint-image {
  align-items: center;
  background: rgba(255, 254, 250, 0.78);
  border: 1px solid rgba(221, 227, 220, 0.88);
  border-radius: 7px;
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
  min-height: 170px;
  overflow: hidden;
  padding: 10px;
}

.blueprint-image img {
  max-height: 220px;
  max-width: 100%;
  object-fit: contain;
}

.blueprint--compact .blueprint-image {
  min-height: 148px;
}

.blueprint--compact .blueprint-image img {
  max-height: 190px;
}

.blueprint-body {
  display: grid;
  gap: 8px;
  position: relative;
}

.blueprint-node {
  align-items: center;
  background: #fffefa;
  border: 1px solid rgba(195, 207, 198, 0.95);
  border-radius: 7px;
  color: #36445a;
  display: flex;
  gap: 9px;
  min-height: 44px;
  min-width: 0;
  padding: 8px 9px;
  position: relative;
  z-index: 1;
}

.blueprint-node span {
  align-items: center;
  background: rgba(49, 95, 153, 0.08);
  border-radius: 999px;
  color: var(--blue);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.64rem;
  font-weight: 600;
  height: 24px;
  justify-content: center;
  width: 24px;
}

.blueprint-node strong {
  color: #36445a;
  font-size: 0.8rem;
  font-weight: 540;
  line-height: 1.24;
}

.blueprint--graph .blueprint-body,
.blueprint--loop .blueprint-body,
.blueprint--evidence .blueprint-body {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blueprint--tree .blueprint-body {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blueprint--tree .blueprint-node:first-child,
.blueprint--evidence .blueprint-node:last-child {
  grid-column: 1 / -1;
}

.blueprint--loop .blueprint-node {
  border-color: rgba(47, 118, 106, 0.24);
}

.blueprint--loop .blueprint-node span {
  background: rgba(47, 118, 106, 0.08);
  color: var(--teal);
}

.blueprint--tree .blueprint-node:first-child {
  background: var(--navy);
  border-color: var(--navy);
}

.blueprint--tree .blueprint-node:first-child span,
.blueprint--tree .blueprint-node:first-child strong {
  color: #ffffff;
}

.blueprint--tree .blueprint-node:first-child span {
  background: rgba(255, 255, 255, 0.18);
}

.blueprint--compact {
  padding: 13px;
}

.paper-card .blueprint {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  min-height: 0;
  padding: 0;
}

.paper-card .blueprint figcaption,
.paper-card .blueprint-body,
.paper-card .blueprint p {
  display: none;
}

.paper-card .blueprint-image {
  background: rgba(247, 247, 242, 0.72);
  border: 0;
  margin: 0;
  min-height: 244px;
  padding: 0;
}

.paper-card .blueprint--frameless .blueprint-image {
  background: #ffffff;
  min-height: 244px;
}

.paper-card .blueprint-image img {
  height: 244px;
  max-height: none;
  object-fit: cover;
  width: 100%;
}

.paper-card .blueprint--frameless .blueprint-image img {
  height: 244px;
}

.paper-card .blueprint--fit-contain .blueprint-image {
  background: #fffefa;
}

.paper-card .blueprint--frameless.blueprint--fit-contain .blueprint-image {
  background: #ffffff;
}

.paper-card .blueprint--fit-contain .blueprint-image img {
  object-fit: contain;
}

.paper-card .blueprint--fill-height .blueprint-image img,
.paper-card .blueprint--fit-fill-height .blueprint-image img {
  height: 244px;
  object-fit: cover;
  object-position: center;
}

.detail-panel--visual .blueprint-image img {
  object-fit: contain;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tag-row span {
  background: rgba(240, 243, 238, 0.86);
  border: 1px solid rgba(221, 227, 220, 0.92);
  border-radius: 999px;
  color: #536176;
  font-size: 0.76rem;
  font-weight: 520;
  padding: 6px 9px;
}

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

.paper-card {
  align-items: start;
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  overflow: hidden;
  padding: 0;
}

.paper-card:hover {
  background: #fffefa;
  border-color: var(--line-strong);
}

.paper-card:focus-visible,
.system-feature:focus-visible {
  outline: 3px solid rgba(49, 95, 153, 0.34);
  outline-offset: 3px;
}

.paper-card:hover h3 {
  color: var(--blue);
}

.paper-copy {
  min-width: 0;
  padding: 20px;
}

.paper-meta {
  color: var(--quiet);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.82rem;
  font-weight: 520;
  gap: 8px;
  margin-bottom: 12px;
  align-items: center;
}

.paper-meta > span:not(.publisher-logo):first-of-type {
  color: var(--green);
}

.award-badge {
  align-items: center;
  color: var(--copper);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 620;
  gap: 7px;
  margin-bottom: 10px;
}

.paper-card p {
  color: var(--muted);
  line-height: 1.56;
  margin-top: 9px;
  max-width: 790px;
}

.paper-open,
.system-link-label {
  color: var(--blue);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 620;
  margin-top: 15px;
}

.system-feature:hover {
  background: #fffefa;
  border-color: var(--line-strong);
}

.system-feature:hover h3 {
  color: var(--blue);
}

.media-band {
  align-items: center;
  background: rgba(255, 254, 250, 0.78);
  border-block: 1px solid var(--line);
  display: grid;
  gap: 26px;
  grid-template-columns: 128px minmax(0, 1fr) auto;
  margin: 42px 0;
  padding: 42px max(22px, calc((100vw - var(--max)) / 2 + 22px));
}

.media-mark {
  align-content: center;
  background: var(--navy);
  border-radius: 8px;
  color: #ffffff;
  display: grid;
  gap: 6px;
  height: 74px;
  justify-items: center;
  padding: 10px;
  text-align: center;
}

.media-mark span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 520;
}

.media-mark strong {
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 560;
  line-height: 1.22;
}

.media-band h2 {
  font-size: 1.84rem;
}

.media-band p:not(.section-label) {
  color: var(--muted);
  line-height: 1.62;
  margin-top: 12px;
  max-width: 680px;
}

.button {
  background: var(--navy);
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  font-weight: 560;
  min-height: 42px;
  padding: 11px 16px;
}

.button:hover {
  background: #243a56;
}

.awards-section {
  padding-top: 18px;
}

.award-feature {
  align-items: center;
  background: linear-gradient(145deg, rgba(255, 254, 250, 0.9), rgba(245, 241, 235, 0.86));
  border: 1px solid rgba(145, 88, 58, 0.2);
  border-radius: 8px;
  display: grid;
  gap: 24px;
  grid-template-columns: 86px minmax(0, 1fr) minmax(260px, 0.34fr);
  padding: 22px;
}

.award-mark {
  align-items: center;
  background: rgba(145, 88, 58, 0.1);
  border: 1px solid rgba(145, 88, 58, 0.22);
  border-radius: 8px;
  display: flex;
  height: 72px;
  justify-content: center;
  width: 72px;
}

.award-logo,
.detail-award-logo {
  display: block;
  height: auto;
  object-fit: contain;
}

.award-logo {
  max-height: 64px;
  max-width: 64px;
}

.detail-award-logo {
  margin-bottom: 14px;
  max-height: 82px;
  max-width: 82px;
}

.award-mark .link-icon {
  height: 42px;
  min-width: 42px;
}

.award-mark svg {
  height: 24px;
  width: 24px;
}

.award-feature h2 {
  font-size: 1.78rem;
}

.award-feature p:not(.section-label) {
  color: var(--muted);
  line-height: 1.62;
  margin-top: 10px;
}

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

.award-paper-list a,
.award-paper-list article {
  background: rgba(255, 254, 250, 0.72);
  border: 1px solid rgba(145, 88, 58, 0.18);
  border-radius: 8px;
  color: var(--ink);
  display: grid;
  gap: 6px;
  padding: 13px;
}

.award-paper-list a:hover {
  border-color: rgba(145, 88, 58, 0.34);
  color: var(--copper);
}

.award-paper-list strong {
  font-size: 0.92rem;
  font-weight: 590;
  line-height: 1.34;
}

.award-paper-list span {
  color: var(--quiet);
  font-size: 0.78rem;
}

.certificates-section {
  padding-top: 22px;
}

.certificate-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr);
}

.certificate-card {
  align-items: start;
  background: rgba(255, 254, 250, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  display: grid;
  gap: 16px;
  grid-template-columns: 42px minmax(0, 1fr);
  line-height: 1.58;
  max-width: 760px;
  padding: 18px;
}

.certificate-card:hover {
  background: #fffefa;
  border-color: var(--line-strong);
}

.certificate-card strong {
  color: var(--ink);
  display: block;
  font-size: 1rem;
  font-weight: 620;
  margin-bottom: 4px;
}

.certificate-card span:not(.link-icon) {
  color: var(--quiet);
  display: block;
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.certificate-card p {
  margin: 0;
}

.peer-review-section {
  padding-top: 28px;
}

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

.peer-review-card {
  background: rgba(255, 254, 250, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  display: grid;
  gap: 14px;
  grid-template-columns: 42px minmax(0, 1fr);
  line-height: 1.56;
  padding: 18px;
}

.peer-review-card:hover {
  background: #fffefa;
  border-color: var(--line-strong);
}

.peer-review-card h3 {
  color: var(--ink);
  font-size: 1rem;
  margin: 0 0 5px;
}

.peer-review-card span:not(.link-icon) {
  color: var(--quiet);
  display: block;
  font-size: 0.82rem;
  margin-bottom: 9px;
}

.peer-review-card p {
  margin: 0;
}

.mentors-section {
  padding-top: 34px;
}

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

.mentor-card {
  background: rgba(255, 254, 250, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  display: grid;
  gap: 16px;
  line-height: 1.52;
  min-height: 342px;
  padding: 18px;
}

.mentor-card:hover {
  background: #fffefa;
  border-color: var(--line-strong);
}

.mentor-card img {
  aspect-ratio: 1;
  border: 1px solid rgba(195, 207, 198, 0.8);
  border-radius: 999px;
  height: 82px;
  object-fit: cover;
  object-position: center 22%;
  width: 82px;
}

.mentor-card h3 {
  color: var(--ink);
  font-size: 1.04rem;
  margin-bottom: 5px;
}

.mentor-card .mentor-role {
  color: var(--blue);
  display: block;
  font-size: 0.78rem;
  font-weight: 640;
  line-height: 1.34;
  margin-bottom: 8px;
}

.mentor-credential {
  color: var(--ink);
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.36;
  margin-bottom: 12px;
}

.mentor-card p {
  margin: 0;
}

.mentor-card em {
  color: var(--quiet);
  display: inline-block;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 620;
  margin-top: 16px;
}

.communities-section {
  padding-top: 34px;
}

.leadership-layout {
  display: grid;
  gap: 18px;
}

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

.leadership-card,
.leadership-evidence {
  background: rgba(255, 254, 250, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.leadership-card {
  color: var(--muted);
  display: grid;
  gap: 20px;
  line-height: 1.58;
  min-height: 314px;
  padding: 20px;
}

.leadership-card:hover {
  background: #fffefa;
  border-color: var(--line-strong);
}

.leadership-card--voluntary {
  background:
    linear-gradient(180deg, rgba(47, 118, 106, 0.075), rgba(255, 254, 250, 0.78) 62%),
    rgba(255, 254, 250, 0.78);
}

.leadership-card-top {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
}

.leadership-card-copy {
  align-self: end;
}

.leadership-card h3,
.leadership-evidence h3 {
  color: var(--ink);
}

.leadership-role {
  color: var(--quiet);
  font-size: 0.86rem;
  margin-top: 8px;
}

.leadership-scope {
  color: var(--ink);
  font-weight: 620;
  line-height: 1.42;
  margin: 18px 0 12px;
}

.leadership-evidence {
  align-items: center;
  color: var(--muted);
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 1.12fr) minmax(230px, 0.72fr);
  line-height: 1.58;
  padding: 24px;
}

.leadership-evidence-copy p:not(.card-eyebrow) {
  margin-top: 12px;
}

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

.leadership-stat {
  background: rgba(240, 243, 238, 0.76);
  border: 1px solid rgba(221, 227, 220, 0.92);
  border-radius: 7px;
  min-height: 102px;
  padding: 15px;
}

.leadership-stat strong {
  color: var(--navy);
  display: block;
  font-size: 1.62rem;
  letter-spacing: 0;
  line-height: 1.05;
}

.leadership-stat span {
  color: var(--muted);
  display: block;
  font-size: 0.82rem;
  line-height: 1.32;
  margin-top: 8px;
}

.leadership-recognition {
  background: rgba(49, 95, 153, 0.075);
  border: 1px solid rgba(49, 95, 153, 0.18);
  border-radius: 8px;
  display: grid;
  gap: 5px;
  padding: 16px;
}

.leadership-recognition span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 680;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.leadership-recognition strong {
  color: var(--ink);
  line-height: 1.35;
}

.leadership-recognition em {
  color: var(--quiet);
  font-size: 0.84rem;
  font-style: normal;
}

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

.community-card {
  align-items: start;
  background: rgba(255, 254, 250, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  display: grid;
  gap: 16px;
  grid-template-columns: 58px minmax(0, 1fr);
  line-height: 1.58;
  min-height: 232px;
  padding: 20px;
}

.community-card:hover {
  background: #fffefa;
  border-color: var(--line-strong);
}

.working-papers-section {
  padding-top: 44px;
}

.manuscript-group {
  margin-top: 30px;
}

.manuscript-group + .manuscript-group {
  border-top: 1px solid var(--line);
  margin-top: 38px;
  padding-top: 34px;
}

.manuscript-group-heading {
  margin-bottom: 18px;
  max-width: 760px;
}

.manuscript-group-heading h3 {
  font-size: 1.42rem;
  margin-bottom: 8px;
}

.manuscript-group-heading p:not(.card-eyebrow) {
  color: var(--muted);
  line-height: 1.58;
}

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

.working-paper-grid--submitted {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.working-paper-card {
  background: rgba(255, 254, 250, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  display: grid;
  overflow: hidden;
}

.working-paper-card--submitted {
  border-color: rgba(47, 118, 106, 0.26);
}

.working-paper-card:hover {
  background: #fffefa;
  border-color: var(--line-strong);
}

.working-paper-card img {
  aspect-ratio: 16 / 9;
  background: rgba(240, 243, 238, 0.72);
  border-bottom: 1px solid var(--line);
  height: auto;
  object-fit: cover;
  width: 100%;
}

.working-paper-card > div {
  padding: 18px;
}

.working-paper-card p {
  color: var(--muted);
  line-height: 1.55;
  margin-top: 9px;
}

.community-card h3 {
  margin-bottom: 8px;
}

.community-label {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 12px;
  padding: 7px 9px;
  text-transform: uppercase;
}

.community-logo {
  height: 58px;
  object-fit: contain;
  width: 58px;
}

.community-mark {
  align-items: center;
  background: var(--navy);
  border-radius: 8px;
  color: #ffffff;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 720;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.contact-links .link-icon {
  height: 30px;
  min-width: 30px;
  width: 30px;
}

.contact-links .link-icon img,
.contact-links .link-icon svg {
  height: 24px;
  max-width: 28px;
  width: 24px;
}

.detail-page {
  min-height: 72vh;
}

.detail-hero {
  padding-bottom: 34px;
}

.back-link {
  color: var(--blue);
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 610;
  margin-bottom: 34px;
  text-decoration: underline;
  text-decoration-color: #b8c5c0;
  text-underline-offset: 5px;
}

.detail-hero h1 {
  font-size: 3rem;
  max-width: 920px;
}

.detail-lede {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.72;
  margin-top: 22px;
  max-width: 850px;
}

.detail-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.detail-links a {
  align-items: center;
  background: rgba(255, 254, 250, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 560;
  gap: 7px;
  padding: 9px 12px;
}

.detail-links a:hover {
  border-color: var(--line-strong);
  color: var(--blue);
}

.detail-grid-section,
.detail-body {
  padding-top: 18px;
}

.detail-award {
  align-items: center;
  background: rgba(145, 88, 58, 0.08);
  border: 1px solid rgba(145, 88, 58, 0.2);
  border-radius: 999px;
  color: var(--copper);
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 620;
  gap: 8px;
  margin: 2px 0 20px;
  padding: 7px 11px;
}

.detail-award:hover {
  background: rgba(145, 88, 58, 0.12);
}

.detail-grid {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(420px, 0.48fr) minmax(0, 0.52fr);
}

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

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

.detail-panel {
  background: rgba(255, 254, 250, 0.8);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  line-height: 1.64;
  padding: 22px;
}

.detail-panel--visual {
  padding: 14px;
}

.detail-panel--visual .blueprint {
  height: auto;
}

.detail-panel--visual .blueprint-image {
  min-height: 300px;
}

.detail-panel--visual .blueprint-image img {
  max-height: 430px;
}

.paper-media-section {
  padding-bottom: 16px;
  padding-top: 8px;
}

.paper-detail-media {
  background: rgba(255, 254, 250, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.paper-detail-media img {
  background: #fffefa;
  display: block;
  max-height: 820px;
  object-fit: contain;
  width: 100%;
}

.paper-detail-media figcaption {
  align-items: baseline;
  border-top: 1px solid var(--line);
  color: var(--quiet);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.86rem;
  gap: 8px;
  line-height: 1.5;
  padding: 12px 16px;
}

.paper-detail-media figcaption span {
  color: var(--blue);
  font-weight: 650;
}

.paper-detail-media figcaption strong {
  color: var(--muted);
  font-weight: 540;
}

.detail-publisher-row {
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--quiet);
  display: flex;
  font-size: 0.86rem;
  font-weight: 560;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 14px;
}

.citation-block {
  background: rgba(255, 254, 250, 0.8);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.citation-toggle {
  align-items: center;
  background: var(--navy);
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  font: inherit;
  font-weight: 620;
  gap: 12px;
  min-height: 42px;
  padding: 10px 16px;
}

.citation-toggle span:last-child {
  align-items: center;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  display: inline-flex;
  height: 24px;
  justify-content: center;
  width: 24px;
}

:root[data-theme="dark"] .citation-toggle {
  background: #edf2f0;
  color: #17202d;
}

:root[data-theme="dark"] .citation-toggle span:last-child {
  background: rgba(23, 32, 45, 0.12);
}

.citation-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.citation-item {
  background: rgba(240, 243, 238, 0.7);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.citation-item-header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
}

.citation-item-header strong {
  color: var(--ink);
  font-size: 0.86rem;
}

.citation-item-header button {
  background: rgba(49, 95, 153, 0.1);
  border: 1px solid rgba(49, 95, 153, 0.2);
  border-radius: 999px;
  color: var(--blue);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 620;
  padding: 6px 10px;
}

.citation-item pre {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0;
  overflow-x: auto;
  padding: 12px;
  white-space: pre-wrap;
}

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

.working-detail-figure img {
  border-radius: 7px;
  width: 100%;
}

.working-detail-figure figcaption {
  color: var(--quiet);
  font-size: 0.82rem;
  line-height: 1.45;
}

.detail-panel p:not(.card-eyebrow):not(.detail-note) {
  max-width: 760px;
}

.detail-note {
  background: rgba(47, 118, 106, 0.06);
  border: 1px solid rgba(47, 118, 106, 0.15);
  border-radius: 8px;
  color: #4d625f;
  line-height: 1.56;
  margin-top: 18px;
  padding: 12px 13px;
}

.committee-block {
  border-top: 1px solid var(--line);
  margin-top: 22px;
  padding-top: 18px;
}

.detail-panel--award {
  background: linear-gradient(145deg, rgba(255, 254, 250, 0.9), rgba(245, 241, 235, 0.82));
  border-color: rgba(145, 88, 58, 0.22);
}

.detail-panel--award h2 {
  font-size: 1.74rem;
  margin-bottom: 10px;
}

.detail-panel--award .detail-links {
  margin-top: 18px;
}

.paper-section-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 18px;
}

.paper-section-card {
  background: rgba(255, 254, 250, 0.76);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  line-height: 1.62;
  min-height: 180px;
  padding: 22px;
}

.project-architecture-section {
  padding-top: 8px;
}

.project-architecture-section h2 {
  font-size: 2.1rem;
  max-width: 980px;
}

.project-architecture-figure {
  background: rgba(255, 254, 250, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 22px;
  overflow: hidden;
}

.project-architecture-figure img {
  display: block;
  width: 100%;
}

.project-architecture-figure figcaption {
  border-top: 1px solid var(--line);
  color: var(--quiet);
  font-size: 0.86rem;
  line-height: 1.5;
  padding: 12px 16px;
}

.project-detail-logo-panel {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 330px;
}

.project-detail-logo-panel img {
  display: block;
  max-height: 260px;
  max-width: min(76%, 360px);
  object-fit: contain;
}

.project-workflow-section {
  padding-top: 18px;
}

.project-workflow-section h2 {
  font-size: 1.96rem;
  margin-bottom: 20px;
}

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

.workflow-step {
  background: rgba(255, 254, 250, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  display: grid;
  gap: 12px;
  line-height: 1.56;
  min-height: 230px;
  padding: 20px;
}

.workflow-step > span {
  align-items: center;
  background: var(--navy);
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 650;
  height: 34px;
  justify-content: center;
  width: 34px;
}

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

.connection-card {
  background: rgba(240, 243, 238, 0.68);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  line-height: 1.62;
  padding: 22px;
}

.detail-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.detail-list li {
  padding-left: 3px;
}

.author-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.author-grid--cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.author-chip {
  align-items: center;
  background: rgba(240, 243, 238, 0.78);
  border: 1px solid rgba(221, 227, 220, 0.94);
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 560;
  gap: 8px;
  min-height: 38px;
  padding: 4px 10px 4px 4px;
}

.author-card {
  align-items: center;
  background: rgba(240, 243, 238, 0.72);
  border: 1px solid rgba(221, 227, 220, 0.94);
  border-radius: 8px;
  color: var(--ink);
  display: grid;
  gap: 10px;
  grid-template-columns: 46px minmax(0, 1fr);
  min-height: 64px;
  padding: 8px;
}

.author-chip:hover {
  background: #fffefa;
  border-color: var(--line-strong);
  color: var(--blue);
}

.author-card:hover {
  background: #fffefa;
  border-color: var(--line-strong);
}

.author-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.author-chip .author-copy {
  display: inline;
}

.author-copy strong {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 590;
  line-height: 1.22;
}

.author-copy em {
  color: var(--quiet);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 480;
  line-height: 1.24;
  overflow-wrap: anywhere;
}

.author-chip .author-copy em {
  display: none;
}

.author-avatar {
  align-items: center;
  background: var(--navy);
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  font-size: 0.68rem;
  font-weight: 650;
  height: 30px;
  justify-content: center;
  overflow: hidden;
  width: 30px;
}

.author-card .author-avatar {
  height: 46px;
  width: 46px;
}

.author-avatar img {
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  width: 100%;
}

footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--quiet);
  display: flex;
  font-size: 0.9rem;
  gap: 16px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
  padding: 24px 22px 44px;
}

:root[data-theme="dark"] nav a {
  color: #aab6c4;
}

:root[data-theme="dark"] .brand-card {
  color: var(--ink);
}

:root[data-theme="dark"] nav a.active,
:root[data-theme="dark"] nav a:hover,
:root[data-theme="dark"] .theme-toggle,
:root[data-theme="dark"] .menu-toggle,
:root[data-theme="dark"] .signal-row span,
:root[data-theme="dark"] .brand-card,
:root[data-theme="dark"] .hero-visual,
:root[data-theme="dark"] .engine-card,
:root[data-theme="dark"] .workflow-summary,
:root[data-theme="dark"] .architecture-step,
:root[data-theme="dark"] .architecture-return,
:root[data-theme="dark"] .thesis-card,
:root[data-theme="dark"] .trajectory-card,
:root[data-theme="dark"] .trajectory-throughlines,
:root[data-theme="dark"] .throughline-item,
:root[data-theme="dark"] .system-feature,
:root[data-theme="dark"] .paper-card,
:root[data-theme="dark"] .working-paper-card,
:root[data-theme="dark"] .award-feature,
:root[data-theme="dark"] .award-paper-list a,
:root[data-theme="dark"] .award-paper-list article,
:root[data-theme="dark"] .certificate-card,
:root[data-theme="dark"] .peer-review-card,
:root[data-theme="dark"] .mentor-card,
:root[data-theme="dark"] .leadership-card,
:root[data-theme="dark"] .leadership-evidence,
:root[data-theme="dark"] .community-card,
:root[data-theme="dark"] .media-band,
:root[data-theme="dark"] .detail-links a,
:root[data-theme="dark"] .detail-panel,
:root[data-theme="dark"] .citation-block,
:root[data-theme="dark"] .citation-item,
:root[data-theme="dark"] .paper-detail-media,
:root[data-theme="dark"] .paper-section-card,
:root[data-theme="dark"] .workflow-step,
:root[data-theme="dark"] .connection-card,
:root[data-theme="dark"] .project-architecture-figure,
:root[data-theme="dark"] .author-card,
:root[data-theme="dark"] .author-chip {
  background: rgba(22, 29, 38, 0.84);
}

:root[data-theme="dark"] .trajectory-mark {
  background:
    linear-gradient(180deg, rgba(127, 202, 180, 0.18), rgba(107, 154, 211, 0.12)),
    rgba(15, 28, 41, 0.9);
  border-color: rgba(147, 177, 170, 0.32);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32);
  color: #8bc9be;
}

:root[data-theme="dark"] .trajectory-mark--mit-cci {
  background: rgba(255, 255, 255, 0.92);
}

:root[data-theme="dark"] .paper-card:hover,
:root[data-theme="dark"] .working-paper-card:hover,
:root[data-theme="dark"] .system-feature:hover,
:root[data-theme="dark"] .certificate-card:hover,
:root[data-theme="dark"] .peer-review-card:hover,
:root[data-theme="dark"] .mentor-card:hover,
:root[data-theme="dark"] .leadership-card:hover,
:root[data-theme="dark"] .trajectory-card:hover,
:root[data-theme="dark"] .community-card:hover,
:root[data-theme="dark"] .author-card:hover,
:root[data-theme="dark"] .author-chip:hover {
  background: rgba(29, 39, 50, 0.95);
}

:root[data-theme="dark"] .brand-card {
  background: transparent;
  border-color: transparent;
}

:root[data-theme="dark"] .brand-card:hover {
  background: rgba(29, 39, 50, 0.34);
  border-color: rgba(67, 85, 105, 0.44);
}

:root[data-theme="dark"] .blueprint {
  background: linear-gradient(145deg, rgba(22, 29, 38, 0.94), rgba(24, 35, 44, 0.9));
}

:root[data-theme="dark"] .blueprint-image {
  background: rgba(9, 14, 20, 0.42);
}

:root[data-theme="dark"] .blueprint-node,
:root[data-theme="dark"] .architecture-detail-row span,
:root[data-theme="dark"] .tag-row span,
:root[data-theme="dark"] .engine-list em,
:root[data-theme="dark"] .leadership-stat {
  background: rgba(29, 39, 50, 0.86);
  border-color: var(--line);
  color: var(--muted);
}

:root[data-theme="dark"] .system-mark-wrap {
  background: transparent;
  border-color: transparent;
}

:root[data-theme="dark"] .blueprint-node strong {
  color: var(--ink);
}

:root[data-theme="dark"] .engine-card--graph,
:root[data-theme="dark"] .detail-panel--award {
  background: linear-gradient(145deg, rgba(25, 38, 45, 0.98), rgba(22, 29, 38, 0.94));
}

:root[data-theme="dark"] .leadership-card--voluntary,
:root[data-theme="dark"] .leadership-recognition {
  background: rgba(131, 213, 195, 0.075);
  border-color: rgba(131, 213, 195, 0.2);
}

:root[data-theme="dark"] .engine-bridge span {
  background: var(--surface);
}

:root[data-theme="dark"] .button,
:root[data-theme="dark"] .brand-mark,
:root[data-theme="dark"] .media-mark,
:root[data-theme="dark"] .workflow-step > span,
:root[data-theme="dark"] .community-mark,
:root[data-theme="dark"] .architecture-step:nth-child(2) .architecture-step-num,
:root[data-theme="dark"] .architecture-step:nth-child(4) .architecture-step-num {
  background: #25384e;
  border-color: #25384e;
  color: #ffffff;
}

:root[data-theme="dark"] .detail-note {
  background: rgba(131, 213, 195, 0.09);
  border-color: rgba(131, 213, 195, 0.2);
  color: #b7d6cf;
}

@media (max-width: 1120px) {
  .hero {
    gap: 30px;
    grid-template-columns: minmax(0, 0.86fr) minmax(330px, 0.74fr);
    min-height: min(68vh, 760px);
  }

  .hero-copy {
    max-width: 520px;
  }

  h1 {
    font-size: 2.78rem;
    max-width: 520px;
  }

  .lede,
  .role-line,
  .signal-row {
    max-width: 520px;
  }

  .hero-visual {
    margin-top: 6px;
    max-width: 520px;
    min-height: auto;
  }

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

  .architecture-flow::before {
    display: none;
  }

  .knowledge-spine {
    grid-template-columns: 1fr;
  }

  .spine-arrow {
    min-height: 22px;
    transform: rotate(90deg);
  }
}

@media (max-width: 920px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  nav {
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 0;
    width: 100%;
  }

  .theme-toggle {
    margin-left: 0;
  }

  nav a {
    font-size: 0.86rem;
    padding: 6px 9px;
  }

  .hero {
    align-items: start;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.64fr);
  }

  .hero-visual {
    max-width: 460px;
  }

  .thesis-grid,
  .trajectory-layout,
  .architecture-flow,
  .system-showcase,
  .system-feature,
  .paper-card,
  .paper-grid,
  .award-feature,
  .peer-review-grid,
  .leadership-layout,
  .leadership-grid,
  .leadership-evidence,
  .mentor-grid,
  .community-grid,
  .working-paper-grid,
  .paper-section-grid,
  .project-workflow,
  .connection-grid,
  .detail-grid,
  .detail-body,
  .media-band {
    grid-template-columns: 1fr;
  }

  .architecture-step {
    min-height: auto;
  }

  .trajectory-throughlines {
    position: static;
  }

  .paper-card .blueprint {
    max-width: none;
  }

  .system-feature {
    min-height: 0;
  }

  .leadership-card {
    min-height: 0;
  }

  .mentor-card {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    max-width: 520px;
  }

  .hero-visual {
    max-width: 620px;
  }
}

@media (max-width: 640px) {
  .topbar {
    align-items: center;
    column-gap: 8px;
    display: grid;
    gap: 10px 8px;
    grid-template-columns: minmax(0, 1fr) 40px 44px;
    min-height: 74px;
    padding: 10px 14px;
    position: sticky;
    top: 0;
  }

  .brand {
    gap: 10px;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .brand-copy {
    min-width: 0;
    overflow: hidden;
  }

  .brand-copy strong {
    font-size: 0.94rem;
    max-width: calc(100vw - 178px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .theme-toggle {
    box-sizing: border-box;
    flex: 0 0 40px;
    grid-column: 2;
    grid-row: 1;
    height: 40px;
    justify-content: center;
    margin-left: 0;
    min-height: 40px;
    min-width: 40px;
    overflow: hidden;
    padding: 6px;
    width: 40px;
  }

  .theme-toggle-track {
    background: transparent;
    border: 0;
    height: 28px;
    padding: 0;
    width: 28px;
  }

  .theme-toggle-knob {
    height: 24px;
    margin: 0;
    width: 24px;
  }

  :root[data-theme="dark"] .theme-toggle-knob {
    margin: 0;
  }

  .theme-toggle > span:not(.theme-toggle-track) {
    display: none;
  }

  .menu-toggle {
    box-sizing: border-box;
    display: inline-flex;
    flex: 0 0 44px;
    grid-column: 3;
    grid-row: 1;
    min-width: 44px;
  }

  .primary-nav {
    align-items: stretch;
    display: none;
    flex-direction: column;
    gap: 2px;
    grid-column: 1 / -1;
    grid-row: 2;
    padding: 10px 0 2px;
    width: 100%;
  }

  .primary-nav.nav-is-open {
    display: flex;
  }

  .nav-photo {
    height: 44px;
    width: 44px;
  }

  .brand-copy em {
    display: none;
  }

  .primary-nav a {
    border-radius: 7px;
    min-width: auto;
    padding: 8px 10px;
    text-align: left;
  }

  .primary-nav a.active,
  .primary-nav a:hover {
    background: rgba(255, 254, 250, 0.58);
    border-color: var(--line);
    color: var(--ink);
  }

  .section {
    padding: 62px 18px;
    scroll-margin-top: 92px;
  }

  .hero {
    min-height: 0;
    padding-top: 34px;
  }

  .hero-copy {
    max-width: calc(100vw - 36px);
  }

  .hero-identity {
    align-items: flex-start;
    gap: 12px;
  }

  .profile-photo {
    border-radius: 10px;
    height: 64px;
    width: 64px;
  }

  h1 {
    font-size: 2.02rem;
    max-width: 11.5ch;
    text-wrap: wrap;
  }

  h2 {
    font-size: 1.86rem;
  }

  .role-line,
  .lede {
    font-size: 1rem;
    max-width: 34ch;
  }

  .role-line {
    margin-bottom: 12px;
  }

  .hero-identity .role-line {
    margin-bottom: 0;
  }

  .lede {
    line-height: 1.62;
    margin-top: 16px;
  }

  .signal-row {
    grid-template-columns: 1fr;
  }

  .trajectory-timeline::before,
  .trajectory-card::before {
    display: none;
  }

  .trajectory-card {
    gap: 12px;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .trajectory-date {
    padding-left: 0;
  }

  .hero-visual {
    max-width: calc(100vw - 36px);
    margin-top: 0;
    width: 100%;
  }

  .hero-visual::before {
    left: 0;
    top: 12px;
  }

  .hero-visual {
    padding: 12px;
  }

  .hero-visual-header {
    padding-inline: 6px;
  }

  .hero-visual-header strong {
    font-size: 0.96rem;
  }

  .engine-card {
    gap: 8px;
    padding: 12px;
  }

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

  .engine-list em {
    min-height: 0;
    padding: 7px 8px;
  }

  .engine-card--source .engine-list em:last-child {
    grid-column: 1 / -1;
  }

  .detail-hero h1 {
    font-size: 2.02rem;
    max-width: none;
  }

  .detail-lede {
    font-size: 1rem;
    line-height: 1.62;
  }

  .detail-panel {
    padding: 18px;
  }

  .author-grid {
    gap: 8px;
  }

  .author-grid--cards {
    grid-template-columns: 1fr;
  }

  .award-feature {
    padding: 18px;
  }

  .workflow-summary {
    font-size: 0.84rem;
  }

  .knowledge-spine {
    gap: 8px;
  }

  .research-engines {
    grid-template-columns: 1fr;
  }

  .engine-bridge {
    min-height: 42px;
  }

  .engine-bridge::before,
  .engine-bridge::after {
    height: 16px;
    left: 50%;
    top: auto;
    transform: translateX(-50%);
    width: 1px;
  }

  .engine-bridge::before {
    bottom: calc(50% + 14px);
  }

  .engine-bridge::after {
    top: calc(50% + 14px);
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    padding-inline: 18px;
  }
}

@media (max-width: 420px) {
  .topbar {
    padding-inline: 12px;
  }

  .brand-copy strong {
    max-width: calc(100vw - 162px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .skip-link {
    transition: none;
  }
}
